forked from primefaces/primereact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.md
4461 lines (3561 loc) · 369 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
# Changelog
## [10.8.3](https://github.com/primefaces/primereact/tree/10.8.3) (2024-09-16)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.2...10.8.3)
- Fix #6987: Dropdown filter freezes screen [#6987](https://github.com/primefaces/primereact/pull/6991)
- Fix #6997: MenuBar re-render on props.model changes [#6997](https://github.com/primefaces/primereact/pull/6999)
- Fix #6993: fix Editor bullet issue when using Quill 2.0.2 [#6993](https://github.com/primefaces/primereact/pull/7004)
- Fix #7002: Dropdown improve Android key handling [#7002](https://github.com/primefaces/primereact/pull/7003)
- Fix #6995: Key should be reference on element and not spread [#6995](https://github.com/primefaces/primereact/pull/7000)
- Fix #7005: Avoid droppoints within undroppable node, not around [#7005](https://github.com/primefaces/primereact/pull/7005)
- Fix #7006: typos in DataTable documentation [#7006](https://github.com/primefaces/primereact/pull/7006)
- Fix #7008: calendar not closing on escape key press [#7008](https://github.com/primefaces/primereact/pull/7008)
- Fix #7016: Revert CascadeSelect type for input [#7016](https://github.com/primefaces/primereact/pull/7019)
- Fix #7014: inserting mentions results in duplicated text [#7014](https://github.com/primefaces/primereact/pull/7017)
- Fix #7015: Calendar passthrough type definition and docs [#7015](https://github.com/primefaces/primereact/pull/7021)
- Fix #7016: CascadeSelect passthrough type definition and docs [#7016](https://github.com/primefaces/primereact/pull/7020)
- Fix #6996: keep the selected row in its position when it gets focused [#6996](https://github.com/primefaces/primereact/pull/7022)
- Fix #7023: Toast typescript def for content [#7023](https://github.com/primefaces/primereact/pull/7024)
- Fix #7027: remove v-model example from iconfield documentation [#7027](https://github.com/primefaces/primereact/pull/7027)
- Fix #7029: remove v-model example from iconfield documentation [#7029](https://github.com/primefaces/primereact/pull/7029)
- Fix #7030: missing commas in PrimeReact message examples [#7030](https://github.com/primefaces/primereact/pull/7030)
- Fix #7032: Passthrough options type and missing docs [#7032](https://github.com/primefaces/primereact/pull/7033)
- Fix #7035: Dropdown: Remove unused depreciated code [#7035](https://github.com/primefaces/primereact/pull/7036)
- Fix #7013: Fix RadioButton appearing without tailwind style [#7013](https://github.com/primefaces/primereact/pull/7047)
- Fix #7046: TreeTable typescript for PT row/column [#7046](https://github.com/primefaces/primereact/pull/7048)
- Fix #7050: HeaderCheckbox passthrough [#7050](https://github.com/primefaces/primereact/pull/7053)
- Fix #6998: add closest check condition to detect handle icon drag [#6998](https://github.com/primefaces/primereact/pull/7051)
- Fix #6868: Refactor location of tailwind styles [#6868](https://github.com/primefaces/primereact/pull/7057)
- Fix #7037: Dropdown: Cannot change icon when expanding or collapsing options [#7037](https://github.com/primefaces/primereact/pull/7038)
- Fix #7061: Typo in Tailwind secondary button style [#7061](https://github.com/primefaces/primereact/pull/7062)
- Fix #7040: Stepper: add header position [#7040](https://github.com/primefaces/primereact/pull/7040)
- Fix #7042: Add Tailwind styling for IconField [#7042](https://github.com/primefaces/primereact/pull/7066)
- Fix #6855: ConfirmDialog group missing from typescript [#6855](https://github.com/primefaces/primereact/pull/7068)
- Fix #7074: ConfirmDialog - RejectButton classes in unstyled mode are not applied [#7074](https://github.com/primefaces/primereact/pull/7075)
- Fix #7069: Correct passthrough (pt) implementation for Stepperpanel [#7069](https://github.com/primefaces/primereact/pull/7069)
- Fix #7078: Typo in tailwinddoc of splitter [#7078](https://github.com/primefaces/primereact/pull/7078)
- Fix #7079: allow zero value using nullish coalescing operator(Slider) [#7079](https://github.com/primefaces/primereact/pull/7079)
- Fix #7084: formatting [#7084](https://github.com/primefaces/primereact/pull/7084)
- Fix #7086: add build project in window os [#7086](https://github.com/primefaces/primereact/pull/7086)
- Fix #7098: chore(deps): bump chart.js from 4.4.3 to 4.4.4 [#7098](https://github.com/primefaces/primereact/pull/7098)
- Fix #7099: chore(deps-dev): bump @types/node from 20.14.2 to 22.5.2 [#7099](https://github.com/primefaces/primereact/pull/7099)
- Fix #7100: chore(deps-dev): bump @testing-library/jest-dom from 6.4.8 to 6.5.0 [#7100](https://github.com/primefaces/primereact/pull/7100)
- Fix #7101: Ensure steps can be programmatically styled [#7101](https://github.com/primefaces/primereact/pull/7101)
- Fix #7104: Don't mix controlled and uncontrolled filter [#7104](https://github.com/primefaces/primereact/pull/7104)
- Fix #7102: DataView fix listTemplate typescript def [#7102](https://github.com/primefaces/primereact/pull/7105)
- Fix #7113: Multiselect focus problem [#7113](https://github.com/primefaces/primereact/pull/7113)
- Fix #7073: Add missing focused context [#7073](https://github.com/primefaces/primereact/pull/7107)
- Fix #7109: SplitterPanel pass onClick through [#7109](https://github.com/primefaces/primereact/pull/7114)
- Fix #6784: Toast onRemove message [#6784](https://github.com/primefaces/primereact/pull/7108)
- Fix #7110: SpeedDial : Fix aria-controls values [#7110](https://github.com/primefaces/primereact/pull/7111)
- Fix #7118: Updating Chart accessibility documentation [#7118](https://github.com/primefaces/primereact/pull/7119)
- Fix #6093: Fix Tailwind styles in unstyled mode [#6093](https://github.com/primefaces/primereact/pull/7124)
- Fix #7039: Correct Event handling for Cut Command [#7039](https://github.com/primefaces/primereact/pull/7127)
- Fix #7120: Breadcrumb shows a trailing separator when there [#7120](https://github.com/primefaces/primereact/pull/7133)
- Fix #7128: document undocumented start and end options, add types & improve [#7128](https://github.com/primefaces/primereact/pull/7128)
- Fix #5644: Add missing tailwind styles [#5644](https://github.com/primefaces/primereact/pull/7123)
- Fix #7134: Refactor Dropdown component to support using option as value [#7134](https://github.com/primefaces/primereact/pull/7141)
- Fix #7137: MultiSelect template docs [#7137](https://github.com/primefaces/primereact/pull/7143)
- Fix #7136: Defines a new File type extended with custom objectURL property [#7136](https://github.com/primefaces/primereact/pull/7145)
- Fix #6857: Adjust top up by 1px when gridlines are active [#6857](https://github.com/primefaces/primereact/pull/7151)
- Fix #7149: make AdditionalProps argument in IconOptions type optional [#7149](https://github.com/primefaces/primereact/pull/7149)
- Fix #7126: update Tree TypeScript documentation [#7126](https://github.com/primefaces/primereact/pull/7160)
- Fix #7161: replace src value in DataTable typescript documentation [#7161](https://github.com/primefaces/primereact/pull/7162)
- Fix #7166: Datatable : fix ColumnFilter aria-controls [#7166](https://github.com/primefaces/primereact/pull/7167)
- Fix #7163: Refactor AutoComplete.js to fix the group selection [#7163](https://github.com/primefaces/primereact/pull/7164)
- Fix #7155: prevent onselect event when prev, next calendar button [#7155](https://github.com/primefaces/primereact/pull/7155)
- Fix #7165: Badge/Tag typescript add secondary and contrast [#7165](https://github.com/primefaces/primereact/pull/7168)
- Fix #7171: TabMenu - resolve rendering issue of stackblitz apps for Command and Template examples [#7171](https://github.com/primefaces/primereact/pull/7171)
- Fix #7174: Datatable frozen columns bug [#7174](https://github.com/primefaces/primereact/pull/7174)
- Fix #7175: Fixing accessibility issue of dropdown [#7175](https://github.com/primefaces/primereact/pull/7175)
- Fix #7178: Panel Menu Component highlights bug [#7178](https://github.com/primefaces/primereact/pull/7178)
- Fix #7139: InputOtp IntegerOnly mode accepts "space" [#7139](https://github.com/primefaces/primereact/pull/7139)
- Fix #7181: Tree missing drag drop functionality [#7181](https://github.com/primefaces/primereact/pull/7181)
- Fix #7183: FloatLabel proper SPAN attributes [#7183](https://github.com/primefaces/primereact/pull/7183)
- Fix #7189: Pressing buttons on touch devices will not focus InputText in turn Keyboard [#7189](https://github.com/primefaces/primereact/pull/7189)
- Fix #7190: ContextMenu import error [#7190](https://github.com/primefaces/primereact/pull/7191)
- Fix #7188: Provide readable input value based on selected option labels [#7188](https://github.com/primefaces/primereact/pull/7188)
## [10.8.2](https://github.com/primefaces/primereact/tree/10.8.2) (2024-08-06)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.1...10.8.2)
- Fixes Font Issues
- Fix #6989: Datatable errors in console by @melloware [#6990](https://github.com/primefaces/primereact/pull/6990)
- Fixes to undroppable tree nodes by @rpiaggio [#6988](https://github.com/primefaces/primereact/pull/6988)
## [10.8.1](https://github.com/primefaces/primereact/tree/10.8.1) (2024-08-05)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.0...10.8.1)
- Fixed typo VUE => React by @sja-cslab [#6947](https://github.com/primefaces/primereact/pull/6947)
- Editor doesn't show initial value in some cases by @avasuro [#6951](https://github.com/primefaces/primereact/pull/6951)
- Update Transitions for unstyled Accordion in tailwinddoc.js by @samy-mssi [#6954](https://github.com/primefaces/primereact/pull/6954)
- Autocomplete autoHighlight prop is inconsistent by @nitrogenous [#6958](https://github.com/primefaces/primereact/pull/6958)
- Inplace update doc for active and controlled mode by @melloware [#6959](https://github.com/primefaces/primereact/pull/6959)
- Added ((data: any) => string) to dataKey property definition by @sja-cslab [#6960](https://github.com/primefaces/primereact/pull/6960)
- InputOtp passthrough input correctly by @melloware [#6965](https://github.com/primefaces/primereact/pull/6965)
- Bump eslint-config-next from 14.2.4 to 14.2.5 by @dependabot [#6966](https://github.com/primefaces/primereact/pull/6966)
- Bump @docsearch/react from 3.6.0 to 3.6.1 by @dependabot [#6968](https://github.com/primefaces/primereact/pull/6968)
- Bump @stackblitz/sdk from 1.10.0 to 1.11.0 by @dependabot [#6969](https://github.com/primefaces/primereact/pull/6969)
- Bump @testing-library/jest-dom from 6.4.6 to 6.4.8 by @dependabot [#6970](https://github.com/primefaces/primereact/pull/6970)
- Fix calendar overlay requiring double click on date to select a value when mask is present by @frle10 [#6972](https://github.com/primefaces/primereact/pull/6972)
- Show how to preserve filter object when mixing column and row by @Et7f3 [#6974](https://github.com/primefaces/primereact/pull/6974)
- Fix failed to decode font by @KOliver94 [#6977](https://github.com/primefaces/primereact/pull/6977)
- Make sure header checkbox pt gets set properly in datatable by @peconomou929 [#6979](https://github.com/primefaces/primereact/pull/6979)
- DT HeaderCheckbox passthrough by @melloware [#6981](https://github.com/primefaces/primereact/pull/6981)
- Fix(InputNumber): Remove styled true option in useHandleStyle by @KumJungMin [#6980](https://github.com/primefaces/primereact/pull/6980)
- Stepper onChangeStep function not initially set by @meddvedev [#6982](https://github.com/primefaces/primereact/pull/6982)
- DataTable with Virtual Scroller and Multiselect; onSelection by @kl-nevermore [#6985](https://github.com/primefaces/primereact/pull/6985)
- Calendar does not display up-to-date value if date is manually entered by @avasuro [#6986](https://github.com/primefaces/primereact/pull/6986)
## [10.8.0](https://github.com/primefaces/primereact/tree/10.8.0) (2024-07-29)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.7.0...10.8.0)
- Refactor Dropdown.js to improve optionLabel and optionValue retrieval by @Rekl0w [#6831](https://github.com/primefaces/primereact/pull/6831)
- Update ToastMessage severity options by @Rekl0w [#6832](https://github.com/primefaces/primereact/pull/6832)
- TreeTable onFilter type def by @melloware [#6837](https://github.com/primefaces/primereact/pull/6837)
- Add 'contrast' style option to ButtonProps by @Rekl0w [#6839](https://github.com/primefaces/primereact/pull/6839)
- Updating activeStep does not actually change the active step by @PuppetFoam [#6841](https://github.com/primefaces/primereact/pull/6841)
- TreeTableSelectionKeys type def by @melloware [#6847](https://github.com/primefaces/primereact/pull/6847)
- TreeTable Typescript for page event by @melloware [#6848](https://github.com/primefaces/primereact/pull/6848)
- Datatable loader unstyled non-boolean attribute warning by @meddvedev [#6849](https://github.com/primefaces/primereact/pull/6849)
- PanelMenu typedef for onOpen/onClose by @melloware [#6850](https://github.com/primefaces/primereact/pull/6850)
- Sort icons match PrimeVue by @melloware [#6853](https://github.com/primefaces/primereact/pull/6853)
- Fix panel style in DropdownBase.js by @Rekl0w [#6856](https://github.com/primefaces/primereact/pull/6856)
- Update z-index for submenu list in MenubarBase.js by @Rekl0w [#6869](https://github.com/primefaces/primereact/pull/6869)
- Re-rendering of Sidebar component by @jpranays [#6860](https://github.com/primefaces/primereact/pull/6860)
- Dropdown crashes when label is an empty string by @VytautasLozickas [#6871](https://github.com/primefaces/primereact/pull/6871)
- Return scalar values directly as a label for Dropdown by @VytautasLozickas [#6872](https://github.com/primefaces/primereact/pull/6872)
- Change the order of applying default values to props by @KumJungMin [#6879](https://github.com/primefaces/primereact/pull/6879)
- Hide clear button when options is empty in Dropdown by @KumJungMin [#6880](https://github.com/primefaces/primereact/pull/6880)
- Revert #6058 by @melloware [#6885](https://github.com/primefaces/primereact/pull/6885)
- Fix: Combine the className props in the Menu separator by @jijiseong [#6884](https://github.com/primefaces/primereact/pull/6884)
- TreeTable onResizeEnd incorrect column value by @melloware [#6886](https://github.com/primefaces/primereact/pull/6886)
- Update onDateSelect function to include isUpdateViewDate parameter by @Rekl0w [#6890](https://github.com/primefaces/primereact/pull/6890)
- Tree inputText's onChange in nodeTemplate does not respond to a space key by @akshayaqburst [#6891](https://github.com/primefaces/primereact/pull/6891)
- MultiSelect emptyMessage prop is not working by @ivanpajon [#6894](https://github.com/primefaces/primereact/pull/6894)
- MultiSelect internal value is never updated by @ivanpajon [#6896](https://github.com/primefaces/primereact/pull/6896)
- Related to PR #6896 by @ivanpajon [#6897](https://github.com/primefaces/primereact/pull/6897)
- FocusOnShow prop in Dialog component by @ivanpajon [#6899](https://github.com/primefaces/primereact/pull/6899)
- Custom passthrough options for bodyRow by @ivanpajon [#6902](https://github.com/primefaces/primereact/pull/6902)
- Missing rowGroupToggler and rowGroupTogglerIcon by @ivanpajon [#6904](https://github.com/primefaces/primereact/pull/6904)
- Missing props in MessagesPassThroughMethodOptions and MessagesProps by @ivanpajon [#6909](https://github.com/primefaces/primereact/pull/6909)
- Improve changeTheme logic and javadoc by @melloware [#6913](https://github.com/primefaces/primereact/pull/6913)
- Fix(Calendar): Reset the isOverlayClicked value after overlayVisibleState is set to false by @KumJungMin [#6921](https://github.com/primefaces/primereact/pull/6921)
- Fix(Calendar): Allow the end date to be the same as the start date using input by @KumJungMin [#6919](https://github.com/primefaces/primereact/pull/6919)
- Fix: Listbox crash in CI by @avasuro [#6925](https://github.com/primefaces/primereact/pull/6925)
- Autocomplete fix input passthrough TS by @melloware [#6926](https://github.com/primefaces/primereact/pull/6926)
- Unstyled prop forwarded to InputText by @melloware [#6930](https://github.com/primefaces/primereact/pull/6930)
- Removing chips in multiselect cause open/close multiselect by @meddvedev [#6933](https://github.com/primefaces/primereact/pull/6933)
- Radio Button Pass Through Options by @peconomou929 [#6935](https://github.com/primefaces/primereact/pull/6935)
- Editor get focus on init and on every value change by @avasuro [#6937](https://github.com/primefaces/primereact/pull/6937)
- Fix: Overlap icons in the dropdown filter component by @nitrogenous [#6865](https://github.com/primefaces/primereact/pull/6865)
- Fix input passthrough TS by @melloware [#6938](https://github.com/primefaces/primereact/pull/6938)
- Datatable fix row checkbox/radiobutton PT by @melloware [#6941](https://github.com/primefaces/primereact/pull/6941)
- Datatable reorderable rows in unstyled mode by @gcko [#6943](https://github.com/primefaces/primereact/pull/6943)
## [10.7.0](https://github.com/primefaces/primereact/tree/10.7.0) (2024-07-03)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.6...10.7.0)
**Fixed Bugs:**
- Error in type definition [\#6670](https://github.com/primefaces/primereact/pull/6670)
- emptyMessage prop and default label in unstyled mode [\#6672](https://github.com/primefaces/primereact/pull/6672)
- Bump quill from 2.0.0 to 2.0.2 [\#6673](https://github.com/primefaces/primereact/pull/6673)
- Types in CalendarPassThroughOptions [\#6676](https://github.com/primefaces/primereact/pull/6676)
- Bump sass from 1.69.5 to 1.77.2 [\#6674](https://github.com/primefaces/primereact/pull/6674)
- Missing prop in SidebarPassThroughMethodOptions [\#6689](https://github.com/primefaces/primereact/pull/6689)
- Tooltip: Escape key not dismissing tooltip (WCAG 2.1 1.4.13) [\#6687](https://github.com/primefaces/primereact/pull/6687)
- onEditorCallback row data not being updated [\#6685](https://github.com/primefaces/primereact/pull/6685)
- colorpicker: Color picker popup not closing on escape button click in some specific scenarios [\#6694](https://github.com/primefaces/primereact/pull/6694)
- fix default editMode value [\#6692](https://github.com/primefaces/primereact/pull/6692)
- metergroup typos [\#6699](https://github.com/primefaces/primereact/pull/6699)
- TieredMenu remove aria-level [\#6705](https://github.com/primefaces/primereact/pull/6705)
- Datatable selection aria locale label [\#6707](https://github.com/primefaces/primereact/pull/6707)
- Dropdown: Select value with Enter when optionValue is set [\#6703](https://github.com/primefaces/primereact/pull/6703)
- DataTable: Tabulation is not working properly [\#6710](https://github.com/primefaces/primereact/pull/6710)
- escape key not working in dialog [\#6719](https://github.com/primefaces/primereact/pull/6719)
- InputNumber keydown bugfix [\#6728](https://github.com/primefaces/primereact/pull/6728)
- fix InputOtp keyDown [\#6731](https://github.com/primefaces/primereact/pull/6731)
- Datatable respect editMode to determine if editable [\#6736](https://github.com/primefaces/primereact/pull/6736)
- Calendar month navigator [\#6739](https://github.com/primefaces/primereact/pull/6739)
- Add content prop to Menubar component [\#6742](https://github.com/primefaces/primereact/pull/6742)
- Fix Calendar onDateSelect function [\#6748](https://github.com/primefaces/primereact/pull/6748)
- package.json security updates for braces [\#6750](https://github.com/primefaces/primereact/pull/6750)
- Bump @testing-library/jest-dom from 6.4.2 to 6.4.6 [\#6752](https://github.com/primefaces/primereact/pull/6752)
- Bump gulp from 4.0.2 to 5.0.0 [\#6713](https://github.com/primefaces/primereact/pull/6713)
- Fix TreeSelect filter for space key [\#6754](https://github.com/primefaces/primereact/pull/6754)
- React 19 support [\#6725](https://github.com/primefaces/primereact/pull/6725)
- incorrect default value for minFractionDigits when set to null [\#6762](https://github.com/primefaces/primereact/pull/6762)
- highlight range of month in datePicker [\#6759](https://github.com/primefaces/primereact/pull/6759)
- highlight range of year in datePicker [\#6760](https://github.com/primefaces/primereact/pull/6760)
- (Tooltip): not dynamically update align when position is mouse [\#6764](https://github.com/primefaces/primereact/pull/6764)
- Added checks for dragdropScope being defined before conversion [\#6767](https://github.com/primefaces/primereact/pull/6767)
- Rename previousButton to prevButton [\#6775](https://github.com/primefaces/primereact/pull/6775)
- (ColorPicker): apply s and b of previous hsb to hsbValue [\#6788](https://github.com/primefaces/primereact/pull/6788)
- apply year change in Calendar when input changed [\#6794](https://github.com/primefaces/primereact/pull/6794)
- check for visibleOptions existing before looking up the index [\#6797](https://github.com/primefaces/primereact/pull/6797)
- onMonthChange prop not being called when user increments / decrements month using arrow buttons [\#6799](https://github.com/primefaces/primereact/pull/6799)
- Fix a few typos in markdown files [\#6801](https://github.com/primefaces/primereact/pull/6801)
- Make sure editable dropdown opens when user types [\#6810](https://github.com/primefaces/primereact/pull/6810)
- DataTable column resize on touchscreens [\#6726](https://github.com/primefaces/primereact/pull/6726)
- Calendar's monthNavigatorTemplate Not Working [\#6818](https://github.com/primefaces/primereact/pull/6818)
- FocusTrap better handling of autoFocus property [\#6721](https://github.com/primefaces/primereact/pull/6721)
- Datatable radiobuttons and types [\#6698](https://github.com/primefaces/primereact/pull/6698)
- ListBox keyboard navigation like primevue [\#6570](https://github.com/primefaces/primereact/pull/6570)
- Checkbox: Component fail to render [\#6679](https://github.com/primefaces/primereact/pull/6679)
## [10.6.6](https://github.com/primefaces/primereact/tree/10.6.6) (2024-05-24)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.5...10.6.6)
**Fixed Bugs:**
- Add ariaLabel method to Typescript [\#6582](https://github.com/primefaces/primereact/pull/6582)
- Locale fix [\#6586](https://github.com/primefaces/primereact/pull/6586)
- Row reorder icon image won't break drag 'ghost' [\#6581](https://github.com/primefaces/primereact/pull/6581)
- Add paste key [\#6577](https://github.com/primefaces/primereact/pull/6577)
- Check meta key for MacOS [\#6588](https://github.com/primefaces/primereact/pull/6588)
- InputOtp respect props.value change [\#6595](https://github.com/primefaces/primereact/pull/6595)
- Fix typo in Scale doc [\#6596](https://github.com/primefaces/primereact/pull/6596)
- Fix typo in PrimeFlex doc [\#6597](https://github.com/primefaces/primereact/pull/6597)
- Password fix tab ordering of toggle mask [\#6598](https://github.com/primefaces/primereact/pull/6598)
- Fix typo [\#6601](https://github.com/primefaces/primereact/pull/6601)
- Show headless sidebar in all window sizes [\#6605](https://github.com/primefaces/primereact/pull/6605)
- IconOptions typescript updated for FontAwesome [\#6579](https://github.com/primefaces/primereact/pull/6579)
- PanelMenu MenuItem Id Prop Not Passed [\#6607](https://github.com/primefaces/primereact/pull/6607)
- MeterGroup render items in percentage [\#6612](https://github.com/primefaces/primereact/pull/6612)
- Minus sign after all selection - InputNumber [\#6566](https://github.com/primefaces/primereact/pull/6566)
- Tabview Core Styles Moved to SASS Theme and Removed Inkbar for Lara [\#6616](https://github.com/primefaces/primereact/pull/6616)
- Chart update TypeScript to inherit DIV [\#6618](https://github.com/primefaces/primereact/pull/6618)
- Fix: Cannot npm link primereact on local project [\#6619](https://github.com/primefaces/primereact/pull/6619)
- Added new capabilities and properties to Column and Dialog [\#6611](https://github.com/primefaces/primereact/pull/6611)
- Dropdown fix checkIcon [\#6630](https://github.com/primefaces/primereact/pull/6630)
- Feat: Stateful TreeTable [\#6384](https://github.com/primefaces/primereact/pull/6384)
- InputOtp keyboard navigation [\#6638](https://github.com/primefaces/primereact/pull/6638)
- DataTable: Column: onCellEditComplete is fired twice [\#6641](https://github.com/primefaces/primereact/pull/6641)
- VirtualScroller improve useUpdate comparison [\#6643](https://github.com/primefaces/primereact/pull/6643)
- Fixed typo [\#6654](https://github.com/primefaces/primereact/pull/6654)
- BodyRow tab key handling [\#6658](https://github.com/primefaces/primereact/pull/6658)
- Multiselect use unique label key [\#6652](https://github.com/primefaces/primereact/pull/6652)
- Tooltip default position to 'right' if undefined [\#6651](https://github.com/primefaces/primereact/pull/6651)
- PageLinks use totalPages [\#6649](https://github.com/primefaces/primereact/pull/6649)
- Add missing components to primereact.all.js [\#6637](https://github.com/primefaces/primereact/pull/6637)
- autocomplete value selection fix [\#6664](https://github.com/primefaces/primereact/pull/6664)
- Galleria image in fullscreen mode not closing on escape button click [\#6645](https://github.com/primefaces/primereact/pull/6645)
- DragDrop Tree keyboard navigation [\#6646](https://github.com/primefaces/primereact/pull/6646)
## [10.6.5](https://github.com/primefaces/primereact/tree/10.6.5) (2024-05-03)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.4...10.6.5)
**Fixed Bugs:**
- pt headerContent fix in [\#6529](https://github.com/primefaces/primereact/pull/6529)
- fix optionLabel in [\#6520](https://github.com/primefaces/primereact/pull/6520)
- remove unused codes in [\#6509](https://github.com/primefaces/primereact/pull/6509)
- remove unused code in [\#6511](https://github.com/primefaces/primereact/pull/6511)
- fix unexpected type coercion and removed unused code in [\#6513](https://github.com/primefaces/primereact/pull/6513)
- removed unused code in [\#6515](https://github.com/primefaces/primereact/pull/6515)
- removed unused codes in [\#6517](https://github.com/primefaces/primereact/pull/6517)
- Multiselect checkbox CSS class in [\#6532](https://github.com/primefaces/primereact/pull/6532)
- Datatable expose sorts and filters in ref in [\#6533](https://github.com/primefaces/primereact/pull/6533)
- MeterGroup correct CSS handle style in [\#6534](https://github.com/primefaces/primereact/pull/6534)
- Stepper fix TS docs to onChangeStep in [\#6546](https://github.com/primefaces/primereact/pull/6546)
- Button as link docs in [\#6547](https://github.com/primefaces/primereact/pull/6547)
- pt submenu fix in [\#6544](https://github.com/primefaces/primereact/pull/6544)
- AccordionTab PT error in [\#6549](https://github.com/primefaces/primereact/pull/6549)
- Remove setTokens in onPaste on InputOtp to avoid duplicate values in [\#6526](https://github.com/primefaces/primereact/pull/6526)
- dropdown filter fix in [\#6551](https://github.com/primefaces/primereact/pull/6551)
- fix updateViewDate event in [\#6559](https://github.com/primefaces/primereact/pull/6559)
- Missing PT Option for IconField in Password in [\#6560](https://github.com/primefaces/primereact/pull/6560)
## [10.6.4](https://github.com/primefaces/primereact/tree/10.6.4) (2024-04-3O)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.3...10.6.4)
**Enhancements:**
- remove unused codes in [\#6504](https://github.com/primefaces/primereact/pull/6504)
- add menu context to menu in [\#6488](https://github.com/primefaces/primereact/pull/6488)
- OverlayPanel add isVisible method to external API in [\#6453](https://github.com/primefaces/primereact/pull/6453)
**Fixed Bugs:**
- unit tests in [\#6348](https://github.com/primefaces/primereact/pull/6348)
- fix Tailwind classes for inputswitch and checkbox as styling is broken in [\#6347](https://github.com/primefaces/primereact/pull/6347)
- Locale update to use ariaLabel method in [\#6313](https://github.com/primefaces/primereact/pull/6313)
- Sidebar doc fix in [\#6354](https://github.com/primefaces/primereact/pull/6354)
- InputOtp fix typescript case in [\#6361](https://github.com/primefaces/primereact/pull/6361)
- Stepper proper forwardRef in [\#6362](https://github.com/primefaces/primereact/pull/6362)
- Stepper demos in [\#6363](https://github.com/primefaces/primereact/pull/6363)
- Revert typedoc in [\#6368](https://github.com/primefaces/primereact/pull/6368)
- Bump chart.js from 4.4.1 to 4.4.2 in [\#6282](https://github.com/primefaces/primereact/pull/6282)
- Bump @testing-library/user-event from 14.5.1 to 14.5.2 in [\#6280](https://github.com/primefaces/primereact/pull/6280)
- Bump prettier from 3.1.0 to 3.2.5 in [\#6372](https://github.com/primefaces/primereact/pull/6372)
- Bump @types/react-transition-group from 4.4.9 to 4.4.10 in [\#6373](https://github.com/primefaces/primereact/pull/6373)
- Bump eslint-config-next from 14.1.0 to 14.1.4 in [\#6369](https://github.com/primefaces/primereact/pull/6369)
- InputOtp wrong import in [\#6383](https://github.com/primefaces/primereact/pull/6383)
- Add missing children prop in FloatLabel.d.ts in [\#6388](https://github.com/primefaces/primereact/pull/6388)
- MultiSelect - SelectionLimit issue in [\#6218](https://github.com/primefaces/primereact/pull/6218)
- fixed issue on selecting option by key event when using optionValue prop in [\#6374](https://github.com/primefaces/primereact/pull/6374)
- typescript definition for ButtonGroup in [\#6360](https://github.com/primefaces/primereact/pull/6360)
- Locale prevent prototype pollution in [\#6395](https://github.com/primefaces/primereact/pull/6395)
- Showcase examples use IconField in [\#6386](https://github.com/primefaces/primereact/pull/6386)
- Calendar inputClassName missing in [\#6398](https://github.com/primefaces/primereact/pull/6398)
- FileUpload: add missing type definition for cancelIcon in [\#6400](https://github.com/primefaces/primereact/pull/6400)
- DataTable custom filter example in [\#6401](https://github.com/primefaces/primereact/pull/6401)
- DataTable - onContextMenu does not return row data in [\#6403](https://github.com/primefaces/primereact/pull/6403)
- typescript definition for Stepper and StepperPanel in [\#6356](https://github.com/primefaces/primereact/pull/6356)
- AutoComplete: Fix the issue of passing an undefined key while rendering lists. in [\#6365](https://github.com/primefaces/primereact/pull/6365)
- Fix Tailwind theme for TriStateCheckbox in [\#6406](https://github.com/primefaces/primereact/pull/6406)
- Password removed invalid props from PT in [\#6409](https://github.com/primefaces/primereact/pull/6409)
- Password fix invalid/variant props in [\#6412](https://github.com/primefaces/primereact/pull/6412)
- Megamenu single array fix in [\#6416](https://github.com/primefaces/primereact/pull/6416)
- Added Fragment at doc in [\#6421](https://github.com/primefaces/primereact/pull/6421)
- Calendar updateViewDate fix in [\#6425](https://github.com/primefaces/primereact/pull/6425)
- InputOtp updateTokens fix in [\#6433](https://github.com/primefaces/primereact/pull/6433)
- InputOtp import fix in [\#6441](https://github.com/primefaces/primereact/pull/6441)
- FloatLabel prop fix in [\#6440](https://github.com/primefaces/primereact/pull/6440)
- Variable names fix in [\#6444](https://github.com/primefaces/primereact/pull/6444)
- TabView round scrollLeft like PrimeVue in [\#6449](https://github.com/primefaces/primereact/pull/6449)
- TreeTable: call customer sortFunction for column set as sortField in [\#6436](https://github.com/primefaces/primereact/pull/6436)
- Typescript boolean instead of false in [\#6378](https://github.com/primefaces/primereact/pull/6378)
- Toast close by id fix in [\#6457](https://github.com/primefaces/primereact/pull/6457)
- Dialog onHide prop call in [\#6458](https://github.com/primefaces/primereact/pull/6458)
- PrimeIcons v7 constants in [\#6465](https://github.com/primefaces/primereact/pull/6465)
- PrimeIcons v7 constants in [\#6466](https://github.com/primefaces/primereact/pull/6466)
- PrimeIcons v7 constants in [\#6467](https://github.com/primefaces/primereact/pull/6467)
- Ripple doc fix in [\#6470](https://github.com/primefaces/primereact/pull/6470)
- VirtualScroller/Ripple TS updates in [\#6472](https://github.com/primefaces/primereact/pull/6472)
- TreeSelect header fix in [\#6471](https://github.com/primefaces/primereact/pull/6471)
- StepperHeader add type button in [\#6463](https://github.com/primefaces/primereact/pull/6463)
- Chips respect removable function in [\#6428](https://github.com/primefaces/primereact/pull/6428)
- TreeSelect pass emptyMessage to Tree in [\#6411](https://github.com/primefaces/primereact/pull/6411)
- Passthrough accordiontab not tab in [\#6390](https://github.com/primefaces/primereact/pull/6390)
- ColumnFilter proper ID handling in [\#6367](https://github.com/primefaces/primereact/pull/6367)
- MeterGroup minor refactor similar to other components in [\#6355](https://github.com/primefaces/primereact/pull/6355)
- DataScroller pt doc img fix in [\#6480](https://github.com/primefaces/primereact/pull/6480)
- Checkbox onClick TS def in [\#6485](https://github.com/primefaces/primereact/pull/6485)
- Stepper add p-component to Stepper action in [\#6350](https://github.com/primefaces/primereact/pull/6350)
- date picker value entering in [\#6478](https://github.com/primefaces/primereact/pull/6478)
- KeyFilter handle AZERTY and dead keys in [\#6484](https://github.com/primefaces/primereact/pull/6484)
- fixed the issue with the home separator if home prop is null/undefined in [\#6375](https://github.com/primefaces/primereact/pull/6375)
- InputNumber allowing accent/dead characters in [\#6352](https://github.com/primefaces/primereact/pull/6352)
- Quill 2.0.0 support in [\#6429](https://github.com/primefaces/primereact/pull/6429)
- Dropdown navigation like PrimeVue in [\#6430](https://github.com/primefaces/primereact/pull/6430)
- Dropdown scroll into view on focus in [\#6452](https://github.com/primefaces/primereact/pull/6452)
- Menu align focus with PrimeVue in [\#6381](https://github.com/primefaces/primereact/pull/6381)
- Calendar updateViewDate fix in [\#6447](https://github.com/primefaces/primereact/pull/6447)
- Autocomplete Not able to delete a manually added chip in [\#6474](https://github.com/primefaces/primereact/pull/6474)
- primefaces #6234, TreeSelect: (accessiblility) cannot access and clear the selected input using using keyboard in [\#6235](https://github.com/primefaces/primereact/pull/6235)
- Stepper add get/set active step in [\#6486](https://github.com/primefaces/primereact/pull/6486)
- Update templatedoc.js with correct reference in [\#6495](https://github.com/primefaces/primereact/pull/6495)
- Dialog refactor using FocusTrap in [\#6435](https://github.com/primefaces/primereact/pull/6435)
- Listbox focused option index fix in [\#6500](https://github.com/primefaces/primereact/pull/6500)
- Splitter can work with multiple panels in [\#6490](https://github.com/primefaces/primereact/pull/6490)
- Password use IconField for toggle mask in [\#6493](https://github.com/primefaces/primereact/pull/6493)
- PanelMenu isItemActive Update in [\#6502](https://github.com/primefaces/primereact/pull/6502)
- Fix formatting in [\#6505](https://github.com/primefaces/primereact/pull/6505)
## [10.6.3](https://github.com/primefaces/primereact/tree/10.6.3) (2024-04-09)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.2...10.6.3)
**New Features:**
- New component InputOtp [\#6327](https://github.com/primefaces/primereact/issues/6327)
**Enhancements:**
- Unable to select item in Autcomplete with keyboard [\#6308](https://github.com/primefaces/primereact/issues/6308)
- Core: p-hidden-accessible modernization [\#6163](https://github.com/primefaces/primereact/issues/6163)
- Multiselect: must hit TAB key twice to move focus to next dropdown element [\#6288](https://github.com/primefaces/primereact/issues/6288)
**Fixed bugs:**
- Dropdown filter : Filter Field Resets to Empty String on Empty Filter Result when uing onFilterEvent to fetch options dynamically [\#6265](https://github.com/primefaces/primereact/issues/6265)
- Multiselect scroll position reset bug [\#6305](https://github.com/primefaces/primereact/issues/6305)
- InputNumber: does not work with czech and slovak keyboard layout [\#6237](https://github.com/primefaces/primereact/issues/6237)
- InputNumber: Cannot insert value on Android [\#6275](https://github.com/primefaces/primereact/issues/6275)
- InputNumber: cannot shift + num key [\#6257](https://github.com/primefaces/primereact/issues/6257)
- ButtonGroup: missing children prop [\#6333](https://github.com/primefaces/primereact/issues/6333)
- InputText: It doesn't take classNames when unstyled is true [\#6274](https://github.com/primefaces/primereact/issues/6274)
- Dropdown: Focus change when editable and filter enabled [\#6297](https://github.com/primefaces/primereact/issues/6297)
- DataTable: Drag Selection Highlight Doesn't Appear in 10.6.2 [\#6272](https://github.com/primefaces/primereact/issues/6272)
- Core: Merging PT props only respects lower-case props [\#6289](https://github.com/primefaces/primereact/issues/6289)
- Calendar: Incorrect year with numberOfMonths and yearNavigator [\#6285](https://github.com/primefaces/primereact/issues/6285)
- Core: Unstyled property does not inherit to children [\#6142](https://github.com/primefaces/primereact/issues/6142)
- Vite: Build issues [\#6276](https://github.com/primefaces/primereact/issues/6276)
- ButtonGroup: forwardRef render functions accept exactly two parameters [\#6263](https://github.com/primefaces/primereact/issues/6263)
- MeterGroup: Component is not exported from the library [\#6268](https://github.com/primefaces/primereact/issues/6268)
- Tree: row selection checkbox not getting checked [\#6216](https://github.com/primefaces/primereact/issues/6216)
- Multiple Components: classnames not being set in unstyled mode [\#6329](https://github.com/primefaces/primereact/issues/6329)
- ToggleButton: Checkboxes showing before button [\#6222](https://github.com/primefaces/primereact/issues/6222)
## [10.6.2](https://github.com/primefaces/primereact/tree/10.6.2) (2024-03-29)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.1...10.6.2)
## [10.6.1](https://github.com/primefaces/primereact/tree/10.6.1) (2024-03-29)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.0...10.6.1)
## [10.6.0](https://github.com/primefaces/primereact/tree/10.6.0) (2024-03-29)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.3...10.6.0)
**New Features:**
- New Component - Stepper [\#6250](https://github.com/primefaces/primereact/issues/6250)
- New Component - ButtonGroup [\#6251](https://github.com/primefaces/primereact/issues/6251)
- New Component - FloatLabel [\#6190](https://github.com/primefaces/primereact/issues/6190)
- New Component - IconField | InputIcon [\#6229](https://github.com/primefaces/primereact/issues/6229)
- Datatable: "not-in" mode for filter function [\#6252](https://github.com/primefaces/primereact/issues/6252)
**Enhancements:**
- Component structure enhancement - Tree TreeTable [\#6240](https://github.com/primefaces/primereact/issues/6240)
- MultistateCheckbox update [\#6249](https://github.com/primefaces/primereact/issues/6249)
- Enhancement focusOnHover Prop [\#6230](https://github.com/primefaces/primereact/issues/6230)
- TreeSelect: can't change default text "No results found" when not find data in filter TreeSelect [\#6173](https://github.com/primefaces/primereact/issues/6173)
- Listbox - focusOnHover prop [\#6171](https://github.com/primefaces/primereact/issues/6171)
- Upgrade PrimeIcons 7.0.0 [\#6255](https://github.com/primefaces/primereact/issues/6255)
**Fixed bugs:**
- Paginator: JumpToPageInput is broken by latest changes in Paginator [\#6226](https://github.com/primefaces/primereact/issues/6226)
- RadioButton: onChange is being triggered twice. [\#6223](https://github.com/primefaces/primereact/issues/6223)
- MultiSelect: selectionMessage not changing using locales [\#6220](https://github.com/primefaces/primereact/issues/6220)
- DataTable: NumpadEnter ignored during cell editing (and many other cases) [\#6023](https://github.com/primefaces/primereact/issues/6023)
- InputNumber: Does not allow copy/pasting [\#6192](https://github.com/primefaces/primereact/issues/6192)
- DataTable: RowClass conditional styling not working [\#6194](https://github.com/primefaces/primereact/issues/6194)
- Calendar: AM/PM does not work properly if minDate and maxDate validations are provided as prop [\#6151](https://github.com/primefaces/primereact/issues/6151)
- Calendar: When using timeonly and stepMinute prop together, minute is not showing correctly in the input field [\#5998](https://github.com/primefaces/primereact/issues/5998)
- DataTable 10.5.3: Drag to select doesn't work on any page past page 1 when paginated [\#6211](https://github.com/primefaces/primereact/issues/6211)
- Checkbox: Warning: specify either the checked prop, or the defaultChecked prop, but not both [\#6197](https://github.com/primefaces/primereact/issues/6197)
- Dropdown: missing hover style [\#6196](https://github.com/primefaces/primereact/issues/6196)
- TabView: Id doubles at root and nav elements [\#6201](https://github.com/primefaces/primereact/issues/6201)
- RadioButton, ToggleButton: Warning: Invalid DOM property readonly. Did you mean readOnly? [\#6186](https://github.com/primefaces/primereact/issues/6186)
- RadioButtoCheckBox wrong display [\#6181](https://github.com/primefaces/primereact/issues/6181)
- Checkbox: prop onClick changes the event type in 10.5.3 [\#6231](https://github.com/primefaces/primereact/issues/6231)
- TabView: TabPanel doesn't close if the 'closeIcon' prop is used [\#6165](https://github.com/primefaces/primereact/issues/6165)
- DataTable: Column Filter Typescript fix [\#6233](https://github.com/primefaces/primereact/issues/6233)
- ListBox: throw undefined error calling preventDefault() when running jest tests. [\#6184](https://github.com/primefaces/primereact/issues/6184)
## [10.5.3](https://github.com/primefaces/primereact/tree/10.5.3) (2024-03-19)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.2...10.5.3)
**Fixed bugs:**
- Messages Missing MergeProps [\#6179](https://github.com/primefaces/primereact/issues/6179)
## [10.5.2](https://github.com/primefaces/primereact/tree/10.5.2) (2024-03-19)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.1...10.5.2)
**New Features:**
- Calendar: add 'hideOnRangeSelection' from PrimeVue [\#5970](https://github.com/primefaces/primereact/issues/5970)
- New MeterGroup Component [\#5977](https://github.com/primefaces/primereact/issues/5977)
- New invalid properties [\#6139](https://github.com/primefaces/primereact/issues/6139)
**Enhancements:**
- Primereact uses document.getElementById(undefined) for appending component styles [\#6079](https://github.com/primefaces/primereact/issues/6079)
- InputNumber: onChange and onValueChange events are not triggered when using keyboard shortcut for "cut" action [\#6047](https://github.com/primefaces/primereact/issues/6047)
- StyleClass: deprecate enterClassName/leaveClassName use enterFromClassName/leaveFromClassName [\#6105](https://github.com/primefaces/primereact/issues/6105)
- Contrast and Secondary Variants for Badge/Tag/Message/Toast [\#5985](https://github.com/primefaces/primereact/issues/5985)
- LastPageLink in Paginator: doesn't give "totalPages" in options [\#5978](https://github.com/primefaces/primereact/issues/5978)
- Toast: onRemove's message changes its data structure [\#5972](https://github.com/primefaces/primereact/issues/5972)
- Password: (accessiblility) cannot access toggle button using keyboard [\#6046](https://github.com/primefaces/primereact/issues/6046)
- DataTable_BodyCell: Duplicate key "aria-label" in object literal [\#6168](https://github.com/primefaces/primereact/issues/6168)
- Splitter: Accessibility updates [\#6039](https://github.com/primefaces/primereact/issues/6039)
- Tree : Accessibility issues [\#5426](https://github.com/primefaces/primereact/issues/5426)
- Primereact Dropdown accessibility. Value isn't being read by VoiceOver screen reader. [\#5836](https://github.com/primefaces/primereact/issues/5836)
- Multiselect: Accessibility issue aria-allowed-role - list-box role not allowed [\#5446](https://github.com/primefaces/primereact/issues/5446)
- ListBox: options not focusable using keyboard [\#3672](https://github.com/primefaces/primereact/issues/3672)
- Dropdown: NVDA failed to read correctly readonly [\#1413](https://github.com/primefaces/primereact/issues/1413)
**Fixed bugs:**
- MultiStateCheckbox: unstyled prop doesnt work properly [\#6061](https://github.com/primefaces/primereact/issues/6061)
- Dropdown: unselects option when loses focus [\#6035](https://github.com/primefaces/primereact/issues/6035)
- Image: Preview toolbar buttons only close the preview in unstyled NextJS 14 [\#6037](https://github.com/primefaces/primereact/issues/6037)
- Dropdown component fails to expand the dropdown box after adding the filter and editable properties. [\#6027](https://github.com/primefaces/primereact/issues/6027)
- Tree: Lazy loaded tree crashes when using keyboard navigation (right arrow) to expand [\#6049](https://github.com/primefaces/primereact/issues/6049)
- DomHandler.js: getComputedStyle getPropertyValue should be in hyphen case. [\#6055](https://github.com/primefaces/primereact/issues/6055)
- AutoComplete: Resetting value doesn't work [\#6044](https://github.com/primefaces/primereact/issues/6044)
- Chips: the component doesn't function properly on mobile devices [\#6086](https://github.com/primefaces/primereact/issues/6086)
- MultiSelect: selectedOption undefined on MultiSelectChangeEvent [\#6097](https://github.com/primefaces/primereact/issues/6097)
- Documentation: Problem with Dark Theme in Default column on Components API section [\#6125](https://github.com/primefaces/primereact/issues/6125)
- Datatable: Horizontal scroller with selection/checkbox resets to initial position on clicking row [\#3155](https://github.com/primefaces/primereact/issues/3155)
- Password: the feedback bar does not reset when I clear the field [\#6119](https://github.com/primefaces/primereact/issues/6119)
- Slider: Null event.value within the onSlideEnd [\#6101](https://github.com/primefaces/primereact/issues/6101)
- Typescript: update LocaleOptions interface [\#6050](https://github.com/primefaces/primereact/issues/6050)
- Accordion/PanelMenu: (Tailwind) animation issues [\#5540](https://github.com/primefaces/primereact/issues/5540)
- InputNumber onValueChange ignores Numpad Enter [\#6107](https://github.com/primefaces/primereact/issues/6107)
- Dialog: inconsistency between theming documentation and used classnames (from source code) [\#6024](https://github.com/primefaces/primereact/issues/6024)
- OrganizationChart: Documentation issue in Basic and Template sections. [\#6070](https://github.com/primefaces/primereact/issues/6070)
- TreeTable: Documentation issues [\#6078](https://github.com/primefaces/primereact/issues/6078)
- Sidebar: "Pass Through" documentation corrections [\#6068](https://github.com/primefaces/primereact/issues/6068)
- Speed Dial: TypeError: Cannot read properties of undefined (reading 'visible') [\#6156](https://github.com/primefaces/primereact/issues/6156)
- TextInput: className property is written two times into the class attribute in DOM [\#6160](https://github.com/primefaces/primereact/issues/6160)
- Typo error in the DataTable documentation [\#6147](https://github.com/primefaces/primereact/issues/6147)
- MultiSelect: loading prop in typescript shows error when called [\#6113](https://github.com/primefaces/primereact/issues/6113)
- Documentation: Duplicate useState in HeadlessSidebar Demo Full Code Example [\#6033](https://github.com/primefaces/primereact/issues/6033)
- Tailwind: content does not exist in MenuPassThroughOption [\#6063](https://github.com/primefaces/primereact/issues/6063)
- Tooltip component shows unstyled error [\#6080](https://github.com/primefaces/primereact/issues/6080)
- Calendar: TypeScript Definitions do not match with actual PT props [\#6094](https://github.com/primefaces/primereact/issues/6094)
- Tree_Drag and Drop: validateDropPoint function is throwing error [\#6048](https://github.com/primefaces/primereact/issues/6048)
- Tree: Custom icon assignation is not working [\#6116](https://github.com/primefaces/primereact/issues/6116)
- ConfirmDialog. Error message: "Warning: Invalid value for prop content on div tag. [\#6111](https://github.com/primefaces/primereact/issues/6111)
- Accordion: Wrong prop in TailwindDoc [\#6132](https://github.com/primefaces/primereact/issues/6132)
- AutoComplete: event type in onInput prop is FormEvent-HtmlSpanElement [\#6145](https://github.com/primefaces/primereact/issues/6145)
- Dropdown: editable prop requires optionLabel to be exactly "name" and options object to contain a "name" key [\#6076](https://github.com/primefaces/primereact/issues/6076)
- TreeTable: Accessibility navigation is triggered when editing a cell following 10.3.3 update [\#6018](https://github.com/primefaces/primereact/issues/6018)
- DataTable: Memory leak when data updated continuously [\#5927](https://github.com/primefaces/primereact/issues/5927)
- DataTable: Virtual Scroller position resets upon lazy loaded [\#6015](https://github.com/primefaces/primereact/issues/6015)
- Knobs: Wrong component shown in basic code example for React Hook Form [\#6013](https://github.com/primefaces/primereact/issues/6013)
- Showcase: Problem For DataTable in TS [\#6002](https://github.com/primefaces/primereact/issues/6002)
- useDisplayOrder: clears incorrect [\#6000](https://github.com/primefaces/primereact/issues/6000)
- DataTable: Virtual Scroll error in dev mode [\#6006](https://github.com/primefaces/primereact/issues/6006)
- Datatable + Virtual Scroller: Multiselect passes undefined to onSelectionChange [\#5870](https://github.com/primefaces/primereact/issues/5870)
- Dropdown: editable input get console error when optionValue is not 'name' [\#6004](https://github.com/primefaces/primereact/issues/6004)
- DataTable: rowClassName don't take prevalence over passthrough tailwind [\#5983](https://github.com/primefaces/primereact/issues/5983)
- TabMenu is not updating its style when using unstyled mode and controlled mode [\#5992](https://github.com/primefaces/primereact/issues/5992)
- SelectButton: Inappropriate UI [\#5841](https://github.com/primefaces/primereact/issues/5841)
- Calendar: using yearNavigator cause exception error [\#5973](https://github.com/primefaces/primereact/issues/5973)
- MenubarSub: Each child in a list should have a unique "key" prop. [\#5976](https://github.com/primefaces/primereact/issues/5976)
- Sidebar: Unable to write unit test: groupToDisplayedElements'group'.findLastIndex is not a function [\#5954](https://github.com/primefaces/primereact/issues/5954)
- BlockUI: setting blocked to false has no effect [\#5889](https://github.com/primefaces/primereact/issues/5889)
- Select button accepts children but doesnt render them [\#5888](https://github.com/primefaces/primereact/issues/5888)
- DataTableColReorderEvent.columns has a wrong type [\#5962](https://github.com/primefaces/primereact/issues/5962)
## [10.5.1](https://github.com/primefaces/primereact/tree/10.5.1) (2024-02-14)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.0...10.5.1)
**New Features:**
- Icon: BlankIcon [\#5957](https://github.com/primefaces/primereact/issues/5957)
**Enhancements:**
- Tree: Missing emptyMessage prop [\#5950](https://github.com/primefaces/primereact/issues/5950)
- MultiSelect: no way to change MultiSelect chips appearence [\#5935](https://github.com/primefaces/primereact/issues/5935)
**Fixed bugs:**
- metaKeySelection default type is changed as false [\#5956](https://github.com/primefaces/primereact/issues/5956)
- Hydration attribute mismatch on Icons [\#5955](https://github.com/primefaces/primereact/issues/5955)
- Dropdown component is triggering onChange when tabbing over [\#5942](https://github.com/primefaces/primereact/issues/5942)
- Menu component with routes rerenders all the components on every route [\#5941](https://github.com/primefaces/primereact/issues/5941)
- Remove CodeSandbox Demos [\#5946](https://github.com/primefaces/primereact/issues/5946)
- Multi-select / Dropdown will not lose focus [\#5929](https://github.com/primefaces/primereact/issues/5929)
- Add ID to menubar top level prevents focus [\#5930](https://github.com/primefaces/primereact/issues/5930)
- Splitter: local storage sync is not working [\#5916](https://github.com/primefaces/primereact/issues/5916)
- DataTable: onRowEditValidator rowData is old value not newly updated value [\#2424](https://github.com/primefaces/primereact/issues/2424)
- Tooltip Passthrough Options Not Styling [\#5932](https://github.com/primefaces/primereact/issues/5932)
- PanelMenu: "activeItems" is read-only [\#5928](https://github.com/primefaces/primereact/issues/5928)
- SplitButton appendTo="self" placement is wrong [\#5921](https://github.com/primefaces/primereact/issues/5921)
- MultiSelect: Enter | Space Overlay Closes [\#5914](https://github.com/primefaces/primereact/issues/5914)
- Calendar: Panel width too small with default Tailwind [\#5830](https://github.com/primefaces/primereact/issues/5830)
- Password: Hand/Pointer icon not displayed while hovering over the eye icon in password ToggleMask mode [\#5905](https://github.com/primefaces/primereact/issues/5905)
## [10.5.0](https://github.com/primefaces/primereact/tree/10.5.0) (2024-02-06)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.4.0...10.5.0)
**Enhancements:**
- TabView/TabPanel: Can't have TabPanels in a JSX fragment [\#5900](https://github.com/primefaces/primereact/issues/5900)
- Input Accessibility [\#5991](https://github.com/primefaces/primereact/issues/5991)
**Fixed bugs:**
- Menu: No ripple effect [\#5901](https://github.com/primefaces/primereact/issues/5901)
- FilterMatchMode.CUSTOM & filterFunction broken + custom filter type errors [\#3325](https://github.com/primefaces/primereact/issues/3325)
- Calendar: Panel width too small with default Tailwind [\#5830](https://github.com/primefaces/primereact/issues/5830)
- Menu: separator style missing in default Tailwind [\#5890](https://github.com/primefaces/primereact/issues/5890)
- Paginator JumpToPageInput not working [\#5893](https://github.com/primefaces/primereact/issues/5893)
- Primereact Splitter resize [\#5892](https://github.com/primefaces/primereact/issues/5892)
- Password component hide/show button shouldnt be wrapped with [\#5880](https://github.com/primefaces/primereact/issues/5880)
- Menu: Unhandled Runtime Error with Nextjs and Tailwind passthrough [\#5885](https://github.com/primefaces/primereact/issues/5885)
- Dock: Sample code missing DockDemo.css [\#5882](https://github.com/primefaces/primereact/issues/5882)
- Prevent multiselect/dropdown box from closing on page scroll [\#5872](https://github.com/primefaces/primereact/issues/5872)
- Calendar : enabledDates is not evaluated with disabledDays [\#5863](https://github.com/primefaces/primereact/issues/5863)
## [10.4.0](https://github.com/primefaces/primereact/tree/10.4.0) (2024-02-01)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.3...10.4.0)
**Enhancements:**
- Splitter: missing/incorrect accessibility features [\#5849](https://github.com/primefaces/primereact/issues/5849)
- New Component | FocusTrap [\#5829](https://github.com/primefaces/primereact/issues/5829)
- Enhancement: DataTable accessibility [\#5839](https://github.com/primefaces/primereact/issues/5839)
**Fixed bugs:**
- Divider (Tailwind): className not used [\#5862](https://github.com/primefaces/primereact/issues/5862)
- Calendar : enabledDates is not evaluated with disabledDays [\#5863](https://github.com/primefaces/primereact/issues/5863)
- Tree : Need "no results found" message if no matches found in the filter [\#5813](https://github.com/primefaces/primereact/issues/5813)
- Showcase: TypeScript demos are failing in StackBlitz/CodeSandbox [\#5800](https://github.com/primefaces/primereact/issues/5800)
- Dropdown: items focused when pressing letters in contexts where they shouldn't [\#5855](https://github.com/primefaces/primereact/issues/5855)
- Unnecessary Javascript-Warning in Galleria onShow and onHide [\#5854](https://github.com/primefaces/primereact/issues/5854)
- Calendar blur not working [\#5850](https://github.com/primefaces/primereact/issues/5850)
- Dropdown: Missing property loading in DropdownProps Interface [\#5847](https://github.com/primefaces/primereact/issues/5847)
- Carousel: Visual bugs when loading carousel with responsiveCarouselOptions [\#5166](https://github.com/primefaces/primereact/issues/5166)
- Sidebar with content prop gives console warning [\#5834](https://github.com/primefaces/primereact/issues/5834)
- Menubar: Does not respect the MenuItem id property [\#5827](https://github.com/primefaces/primereact/issues/5827)
- Chips: Separator by new line doesn't work by pasting value [\#5824](https://github.com/primefaces/primereact/issues/5824)
- Editor: Editor missing unordered list in the header [\#5818](https://github.com/primefaces/primereact/issues/5818)
- Threshold not working useIntersectionObserver hook [\#5809](https://github.com/primefaces/primereact/issues/5809)
- Accordion (Tailwind): Cannot read properties of undefined (reading 'disabled') [\#5804](https://github.com/primefaces/primereact/issues/5804)
- Datatable Column Filter: Clear Button will not show if filter menu button is hidden [\#5802](https://github.com/primefaces/primereact/issues/5802)
- className is not passes to TieredMenu items [\#5868](https://github.com/primefaces/primereact/issues/5868)
## [10.3.3](https://github.com/primefaces/primereact/tree/10.3.3) (2024-01-18)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.2...10.3.3)
**Enhancements:**
- Accessibility | Data Components (Part 1) [\#5675](https://github.com/primefaces/primereact/issues/5675)
- Accessibility | Input Components (Part 1) [\#5720](https://github.com/primefaces/primereact/issues/5720)
- Calendar: timeOnly Today button should be Now [\#5722](https://github.com/primefaces/primereact/issues/5722)
- Remove primeflex dependency from DataView [\#5798](https://github.com/primefaces/primereact/issues/5798)
**Fixed bugs:**
- Menu items are not rendered when the page is opened with a router [\#5794](https://github.com/primefaces/primereact/issues/5794)
## [10.3.2](https://github.com/primefaces/primereact/tree/10.3.2) (2024-01-17)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.1...10.3.2)
**Fixed bugs:**
- FileUpload component, file content for non-image file types [\#5786](https://github.com/primefaces/primereact/issues/5786)
- Mega Menu is not working on mobile devices [\#5788](https://github.com/primefaces/primereact/issues/5788)
- Megamenu demo pages should sync with primevue megamenu demos [\#5791](https://github.com/primefaces/primereact/issues/5791)
- Panel Menu opens empty item [\#5789](https://github.com/primefaces/primereact/issues/5789)
- Menubar demo classname typo [\#5790](https://github.com/primefaces/primereact/issues/5790)
- Float Label demo is broken in mobile mode [\#5781](https://github.com/primefaces/primereact/issues/5781)
- Megamenu demo pages should sync with primevue megamenu demos [\#5791](https://github.com/primefaces/primereact/issues/5791)
- PanelMenu:Items not displaying correctly [\#5777](https://github.com/primefaces/primereact/issues/5777)
- ConfirmDialog:confirmDialog method in unstyled mode, the pop-up window style not apply [\#5656](https://github.com/primefaces/primereact/issues/5656)
- Image: image zoomed out when opening second time [\#5771](https://github.com/primefaces/primereact/issues/5771)
- Global Escape Key Listener Already Exists Error When Opening Multiple Dialogs [\#5767](https://github.com/primefaces/primereact/issues/5767)
- Calendar: Month does not change when the onViewDateChange property is used [\#5754](https://github.com/primefaces/primereact/issues/5754)
- TieredMenu and Megamenu: not rendering content [\#5766](https://github.com/primefaces/primereact/issues/5766)
- InputMask: cannot test component with @testing-library/user-event >= 14.0.0 [\#5747](https://github.com/primefaces/primereact/issues/5747)
- Locale: Clarify configuration [\#5760](https://github.com/primefaces/primereact/issues/5760)
- Accordion: Error reading disabled [\#5757](https://github.com/primefaces/primereact/issues/5757)
- DataTable: cell editing can't be cancelled when invalid [\#5750](https://github.com/primefaces/primereact/issues/5750)
- Panel: Passthrough not working for header [\#5570](https://github.com/primefaces/primereact/issues/5570)
- Calendar input pt [\#5564](https://github.com/primefaces/primereact/issues/5564)
- ConfirmDialog pt prop style doesn't work with tailwind classes [\#5144](https://github.com/primefaces/primereact/issues/5144)
- InputNumber: format error after the decimal point when Locale set de-DE [\#5745](https://github.com/primefaces/primereact/issues/5745)
- TieredMenu: Reference error - create Submenu [\#5751](https://github.com/primefaces/primereact/issues/5751)
- PrimeReactPTOptions: typo for multi state checkbox [\#5752](https://github.com/primefaces/primereact/issues/5752)
- DataTable: Cannot update a component while rendering a different component warning [\#5556](https://github.com/primefaces/primereact/issues/5556)
- TreeTable: column align header is not working [\#5315](https://github.com/primefaces/primereact/issues/5315)
- TabView: the right scrollable is always true even if there is only one Tab [\#5743](https://github.com/primefaces/primereact/issues/5743)
- Menu: click on menu item with url does nothing [\#5785](https://github.com/primefaces/primereact/issues/5785)
- OrderList: Behavior when using spread syntax in onChange [\#4089](https://github.com/primefaces/primereact/issues/4089)
- PickList: Behavior when using spread syntax in onChange [\#5739](https://github.com/primefaces/primereact/issues/5739)
- InputNumber: Pos1/End places caret before/after prefix/postfix [\#5730](https://github.com/primefaces/primereact/issues/5730)
- Documentation (Sidebar): fullScreen not visible by default [\#5741](https://github.com/primefaces/primereact/issues/5741)
- DataTable: ResizeableColumns doesnt work with unstyled [\#5706](https://github.com/primefaces/primereact/issues/5706)
- Dropdown: After selecting an option, clearing the value using close icon should clear the filter input [\#5735](https://github.com/primefaces/primereact/issues/5735)
- InputNumber: 0 Decimal Entry Issue using Currency Mode [\#5728](https://github.com/primefaces/primereact/issues/5728)
- Calendar - Pasting a datetime value with AM in it results in PM time instead [\#5719](https://github.com/primefaces/primereact/issues/5719)
- Form Components: Convert class selector to data selector [\#5686](https://github.com/primefaces/primereact/issues/5686)
- TieredMenu appears broken? - "ReferenceError: item is not defined" even on your own demo page [\#5724](https://github.com/primefaces/primereact/issues/5724)
## [10.3.1](https://github.com/primefaces/primereact/tree/10.3.1) (2024-01-10)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.0...10.3.1)
**Fixed bugs:**
- Port missing fixes [\#5707](https://github.com/primefaces/primereact/issues/5707)
- Image: ReferenceError: rotate is not defined image.esm.js (948:0) [\#5704](https://github.com/primefaces/primereact/issues/5704)
- 'content' property now required for several components [\#5701](https://github.com/primefaces/primereact/issues/5701)
- MegaMenu: Menu Items not showing without StrictMode (production) only after a stateupdate [\#5699](https://github.com/primefaces/primereact/issues/5699)
- Confirm Dialog: Demo opening dialog 3 times [\#5697](https://github.com/primefaces/primereact/issues/5697)
- Primereact in the Shadow DOM has problems with the Dropdown component style [\#5246](https://github.com/primefaces/primereact/issues/5246)
- TypeScript: 10.3.0 Components complaining content is required [\#5692](https://github.com/primefaces/primereact/issues/5692)
## [10.3.0](https://github.com/primefaces/primereact/tree/10.3.0) (2024-01-05)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.2.1...10.3.0)
**New Features:**
- ConfirmDialog/ConfirmPopup: Add defaultFocus option like PrimeVue [\#4051](https://github.com/primefaces/primereact/issues/4051)
**Enhancements:**
- Dialog: DialogProps missing footerClassName [\#5661](https://github.com/primefaces/primereact/issues/5661)
- DataTable: disable the rowEditor prop dynamically, as is done in rowExpansion [\#5640](https://github.com/primefaces/primereact/issues/5640)
- TreeSelect: TreeSelect component is not supporting tooltips and is an issue in multiple select mode. [\#5613](https://github.com/primefaces/primereact/issues/5613)
- Calendar:about disabled logic [\#5581](https://github.com/primefaces/primereact/issues/5581)
- TreeTable: Incorrect typing for sortable prop [\#5591](https://github.com/primefaces/primereact/issues/5591)
- InputNumber: Support roundingMode for the InputNumber [\#5528](https://github.com/primefaces/primereact/issues/5528)
- Chip: onRemove callback function doesn't return the removed value [\#5530](https://github.com/primefaces/primereact/issues/5530)
- confirmPopup: Remove deprecated code imports [\#5520](https://github.com/primefaces/primereact/issues/5520)
- confirmPopup: Remove deprecated code imports [\#5520](https://github.com/primefaces/primereact/issues/5520)
- Accessibility | Messages [\#5428](https://github.com/primefaces/primereact/issues/5428)
- Accessibility | Media Section [\#5422](https://github.com/primefaces/primereact/issues/5422)
- Headless Mode Update
- Dialog, ConfirmDialog, ConfirmPopup, Sidebar, Toast
- Showcase Updates
**Fixed bugs:**
- PrimeReactProvider: Error next14 app router [\#5127](https://github.com/primefaces/primereact/issues/5127)
- TabView: Doesn't render in NextJS 14 [\#5395](https://github.com/primefaces/primereact/issues/5395)
- Issue with fileUpload progressBarTemplate [\#5664](https://github.com/primefaces/primereact/issues/5664)
- Calendar: When enabledDates array is set, user will get stuck on month/year selection [\#5662](https://github.com/primefaces/primereact/issues/5662)
- DataTable: Subheader row group along with date sorting not working as intended [\#5651](https://github.com/primefaces/primereact/issues/5651)
- Ripple effect is not working on buttons inside the sidebar [\#5652](https://github.com/primefaces/primereact/issues/5652)
- Input Number: Value pasted by the user is not entered when suffix and decimals are used. [\#4802](https://github.com/primefaces/primereact/issues/4802)
- SideBar: aria-label disappear on close button [\#5637](https://github.com/primefaces/primereact/issues/5637)
- A maximizable dialog cannot be maximized properly after its position has been changed [\#5635](https://github.com/primefaces/primereact/issues/5635)
- InputNumber:format error when Locale set de-DE [\#5633](https://github.com/primefaces/primereact/issues/5633)
- TreeTable/Datatable: Calendar not showing correctly [\#5529](https://github.com/primefaces/primereact/issues/5529)
- Image preview zoom in bug [\#5627](https://github.com/primefaces/primereact/issues/5627)
- Otherprops not working for InputSwitch [\#5623](https://github.com/primefaces/primereact/issues/5623)
- InputNumber: (Germany) second step of currency can't changed [\#5589](https://github.com/primefaces/primereact/issues/5589)
- InputNumber: Incorrect duplication of fractional part of number [\#5607](https://github.com/primefaces/primereact/issues/5607)
- InputNumber: Cursor stuck when using minFractionDigits and comma as decimal separator [\#5548](https://github.com/primefaces/primereact/issues/5548)
- When RadioButton is selected, clicking on it does not trigger the onClick event. [\#5610](https://github.com/primefaces/primereact/issues/5610)
- TreeTable: missing import [\#5600](https://github.com/primefaces/primereact/issues/5600)
- TreeTable: Column "align" prop aligns the header rather than the content [\#5597](https://github.com/primefaces/primereact/issues/5597)
- Dialog: breakpoints are janky [\#5551](https://github.com/primefaces/primereact/issues/5551)
- TreeTable: sorting not triggered when clicking header with custom HTML [\#5584](https://github.com/primefaces/primereact/issues/5584)
- Calendar: After the currentview changed, the panel position is wrong [\#5577](https://github.com/primefaces/primereact/issues/5577)
- DataTable: appendTo on HTML element doesn't work [\#5266](https://github.com/primefaces/primereact/issues/5266)
- Calendar position error when appendTo: 'self' is set [\#5058](https://github.com/primefaces/primereact/issues/5058)
- select components: props appendTo Incorrect first time mount [\#5311](https://github.com/primefaces/primereact/issues/5311)
- MultiSelect: selectAllLabel property error inside React Router [\#5572](https://github.com/primefaces/primereact/issues/5572)
- Inplace: active prop not working [\#5561](https://github.com/primefaces/primereact/issues/5561)
- DataTable: Error when updating a cell [\#5556](https://github.com/primefaces/primereact/issues/5556)
- Calender: even with the viewDate prop the user can scroll past viewable dates [\#5558](https://github.com/primefaces/primereact/issues/5558)
- InputNumber: Text selection not working on input focus when using a suffix or prefix [\#5537](https://github.com/primefaces/primereact/issues/5537)
- TreeTable: Plenty of warnings in codesandbox demos [\#5542](https://github.com/primefaces/primereact/issues/5542)
- DataTable: Resize "fit" doesnt work with unstyled [\#5489](https://github.com/primefaces/primereact/issues/5489)
- Calendar: viewDate change does not update displayed year [\#4147](https://github.com/primefaces/primereact/issues/4147)
- Incorrect year display in Calendar after navigating to next year [\#5533](https://github.com/primefaces/primereact/issues/5533)
- Calendar: InputText does not immediately reflect locale changes [\#5535](https://github.com/primefaces/primereact/issues/5535)
- BlockUI lost focus [\#5523](https://github.com/primefaces/primereact/issues/5523)
- TreeTable: Header's columns not aligned with body's columns in scrollable mode [\#5487](https://github.com/primefaces/primereact/issues/5487)
- TreeTable: Rows are not aligned when frozen [\#5508](https://github.com/primefaces/primereact/issues/5508)
- useDebounce is wrong [\#5490](https://github.com/primefaces/primereact/issues/5490)
- Messages: No animations in v10 [\#5485](https://github.com/primefaces/primereact/issues/5485)
- ComponentBase: fkey used before declaration [\#5477](https://github.com/primefaces/primereact/issues/5477)
- Tabview: There is No style when use PrimeReact & Tailwind [\#5445](https://github.com/primefaces/primereact/issues/5445)
- Dialog: "esc" close dialogs in wrong order [\#5019](https://github.com/primefaces/primereact/issues/5019)
- CascadeSelect: activeOptionState not working as expected [\#5425](https://github.com/primefaces/primereact/issues/5425)
- Calendar: Size of picker panel when in month view [\#5435](https://github.com/primefaces/primereact/issues/5435)
- DataTable demo performance | Add DeferredDemo component [\#5688](https://github.com/primefaces/primereact/issues/5688)
- TreeSelect: panel hide after uncheck [\#5447](https://github.com/primefaces/primereact/issues/5447)
- InputText: className is added twice [\#5440](https://github.com/primefaces/primereact/issues/5440)
- TreeTable: Errors "React does not recognize the xxx prop on a DOM element" on rendering TreeTable component [\#5427](https://github.com/primefaces/primereact/issues/5427)
- CascadeSelect: onInputKeyDown error in unstyled model [\#5424](https://github.com/primefaces/primereact/issues/5424)
- Datatable: Cell editor ColumnEditorOptions param is broken [\#5233](https://github.com/primefaces/primereact/issues/5233)
- Dropdown: component interactable in disabled div [\#5414](https://github.com/primefaces/primereact/issues/5414)
- Dropdown: Tailwind optionDisabled with function not working [\#5676](https://github.com/primefaces/primereact/issues/5676)
- ConfirmDialog:confirmDialog method in unstyled mode, the pop-up window style not apply [\#5656](https://github.com/primefaces/primereact/issues/5656)
- ConfirmDialog: acceptButton's pt don't respect button [\#5653](https://github.com/primefaces/primereact/issues/5653)
- ToggleButton (Tailwind): Imported theming from documentation crashes button [\#5609](https://github.com/primefaces/primereact/issues/5609)
- Calendar (Tailwind): Calendar Input border rounded when showIcon is set [\#5590](https://github.com/primefaces/primereact/issues/5590)
- Calendar (Tailwind): Calendar missing styling [\#5579](https://github.com/primefaces/primereact/issues/5579)
- MultiSelect: PT filterInput not work [\#5568](https://github.com/primefaces/primereact/issues/5568)
- DataTable (Tailwind): frozen is undefined when data is empty array [\#5555](https://github.com/primefaces/primereact/issues/5555)
- TreeTable: need to be converted to data- lookups instead of className lookups [\#5553](https://github.com/primefaces/primereact/issues/5553)
- Accordion (Tailwind): Prop type error in console [\#5546](https://github.com/primefaces/primereact/issues/5546)
- OverlayPanel (Tailwind): showCloseIcon is at wrong position [\#5543](https://github.com/primefaces/primereact/issues/5543)
- DataTable: need to be converted to data- lookups instead of className lookups [\#5524](https://github.com/primefaces/primereact/issues/5524)
- Dropdown (Tailwind): Focus shadow not working [\#5512](https://github.com/primefaces/primereact/issues/5512)
- FileUpload: Missing basicButton theming in Tailwind [\#5515](https://github.com/primefaces/primereact/issues/5515)
- Button: Loading Spinner has no margin by default (Tailwind) [\#5509](https://github.com/primefaces/primereact/issues/5509)
- CascadeSelect: missing some values in pt [\#5479](https://github.com/primefaces/primereact/issues/5479)
- Picklist Tailwind is not responsive [\#5417](https://github.com/primefaces/primereact/issues/5417)
- Tailwind: Chips camelCase properties [\#5500](https://github.com/primefaces/primereact/issues/5500)
- Tailwind: Autocomplete camelCase [\#5499](https://github.com/primefaces/primereact/issues/5499)
- Tailwind: Multiselect issues and camelCase on properties [\#5493](https://github.com/primefaces/primereact/issues/5493)
- Tailwind: Listbox camelCase properties and Context property focused is missing [\#5492](https://github.com/primefaces/primereact/issues/5492)
- Tailwind: Calendar dropdownbutton [\#5471](https://github.com/primefaces/primereact/issues/5471)
- Tailwind: Button in Speedial does not have access to parent [\#5467](https://github.com/primefaces/primereact/issues/5467)
- Tailwind: InputNumber input is not a function [\#5464](https://github.com/primefaces/primereact/issues/5464)
- Tailwind: Tooltip missing context [\#5468](https://github.com/primefaces/primereact/issues/5468)
- Tailwind: Slider starthandler and endhandler, deprecated? [\#5466](https://github.com/primefaces/primereact/issues/5466)
- Tailwind: SidebarPassThroughOptions closeButtonIcon property missing [\#5465](https://github.com/primefaces/primereact/issues/5465)
- Tailwind: Dropdown itemGroup camelCase missing [\#5469](https://github.com/primefaces/primereact/issues/5469)
- Tailwind: ConfirmDialogPassThroughOptions does not a transition property [\#5463](https://github.com/primefaces/primereact/issues/5463)
- Tailwind: Card subtitle vs subTitle and similar issues [\#5461](https://github.com/primefaces/primereact/issues/5461)
- Tailwind: CascadeSelectPassThroughOptions is missing sublist [\#5462](https://github.com/primefaces/primereact/issues/5462)
- TabMenu: activeIndex not rerendering tabs with Tailwind [\#5457](https://github.com/primefaces/primereact/issues/5457)
- Tailwind: Rating readOnly property seems incorrect [\#5443](https://github.com/primefaces/primereact/issues/5443)
- Tailwind: modelValue property [\#5444](https://github.com/primefaces/primereact/issues/5444)
- RadioButton: data selector and Hook Form doc display error [\#5679](https://github.com/primefaces/primereact/issues/5679)
- ScrollPanel: test failed [\#5672](https://github.com/primefaces/primereact/issues/5672)
- Table: Sort icons are not showing correct amount directions [\#5617](https://github.com/primefaces/primereact/issues/5617)
- TreeTable: Wrong typing for emptyMessage [\#5588](https://github.com/primefaces/primereact/issues/5588)
- Button (Tailwind): Theming Documentation is missing attributes for button without label [\#5526](https://github.com/primefaces/primereact/issues/5526)
- Updating demo environments to Vite [\#5455](https://github.com/primefaces/primereact/issues/5455)
- Animated Text Highlight Problem [\#5480](https://github.com/primefaces/primereact/issues/5480)
- RowEdit: Programmatic Demo [\#5452](https://github.com/primefaces/primereact/issues/5452)
- Calendar: lag when navigating between months [\#5202](https://github.com/primefaces/primereact/issues/5202)
- Datatable: CRUD Filter but [\#5691](https://github.com/primefaces/primereact/pull/5691)
## [10.2.1](https://github.com/primefaces/primereact/tree/10.2.1) (2023-11-27)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.2.0...10.2.1)
**Fixed bugs:**
- Tree Table Header Bug [\#5412](https://github.com/primefaces/primereact/issues/5412)
## [10.2.0](https://github.com/primefaces/primereact/tree/10.2.0) (2023-11-27)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.1.1...10.2.0)
**Enhancements:**
- MISC Section | Accessibility [\#5356](https://github.com/primefaces/primereact/issues/5356)
- Chip Removable Icon to have button role [\#4190](https://github.com/primefaces/primereact/issues/4190)
- TreeTable: selected rows are not highlighted [\#5370](https://github.com/primefaces/primereact/issues/5370)
- CascadeSelect: Popup does not close on escape key press [\#5360](https://github.com/primefaces/primereact/issues/5360)
- SplitButton: SplitButton popup not closing on escape button click [\#5365](https://github.com/primefaces/primereact/issues/5365)
- Speed Dial: Speed Dial Menu does not close on escape key press [\#5367](https://github.com/primefaces/primereact/issues/5367)
- PanelMenu: Menu items with no sub-items toggling border [\#5349](https://github.com/primefaces/primereact/issues/5349)
**Fixed bugs:**
- DataTable: Cell editing with Dropdown doesn't work [\#3079](https://github.com/primefaces/primereact/issues/3079)
- DataTable editor with 3rd party dropdown / overlay [\#2097](https://github.com/primefaces/primereact/issues/2097)
- Mention: Page Breaks when navigating to Mention component [\#5363](https://github.com/primefaces/primereact/issues/5363)
- TabView: Closes all tabs on click [\#5369](https://github.com/primefaces/primereact/issues/5369)
- DataTable: Cell edit support Dropdown [\#2666](https://github.com/primefaces/primereact/issues/2666)
- DataTable: editMode="cell" and Dropdown z-Index issue [\#5320](https://github.com/primefaces/primereact/issues/5320)
- AccordionTab: Invalid values for props $$typeof, type on div tag [\#5379](https://github.com/primefaces/primereact/issues/5379)
- Password: inputClassName doesn't work with Tailwind [\#5385](https://github.com/primefaces/primereact/issues/5385)
- TreeTable: Unable to hide a column with hidden prop [\#5384](https://github.com/primefaces/primereact/issues/5384)
- Calendar: monthNavigator={true} with numberOfMonths={>1} shows controls for the first month only [\#5390](https://github.com/primefaces/primereact/issues/5390)
- TreeTable: column align header is not working [\#5315](https://github.com/primefaces/primereact/issues/5315)
- Tree: Custom collapseIcon/expandIcon is not applied on children [\#5393](https://github.com/primefaces/primereact/issues/5393)
- Slider: Setting min boundary value component is breaking the component. [\#5398](https://github.com/primefaces/primereact/issues/5398)
- MultiSelect emptyMessage prop results in error [\#5340](https://github.com/primefaces/primereact/issues/5340)
- SplitButton: pt attribute doesn't behave as described in documentation [\#4883](https://github.com/primefaces/primereact/issues/4883)
- Tailwind: Button tailwind/index.js [\#5407](https://github.com/primefaces/primereact/issues/5407)
- DataTable: memory leak when data updated continuously [\#4656](https://github.com/primefaces/primereact/issues/4656)
- Removing style section from pages [\#5354](https://github.com/primefaces/primereact/issues/5354)
- Missing type definition in for hideOverlaysOnDocumentScrolling in APIOptions [\#5378](https://github.com/primefaces/primereact/issues/5378)
- Misc Demos Refactor [\#5357](https://github.com/primefaces/primereact/issues/5357)
- Tailwind: Documentation transition: TRANSITIONS.overlay [\#5387](https://github.com/primefaces/primereact/issues/5387)
- Mention: Component not rendering [\#5374](https://github.com/primefaces/primereact/issues/5374)
- Primereact Tooltip props children and content have different types [\#5376](https://github.com/primefaces/primereact/issues/5376)
- Slider: Setting min boundary value component is breaking the component. [\#5398](https://github.com/primefaces/primereact/issues/5398)
## [10.1.1](https://github.com/primefaces/primereact/tree/10.1.1) (2023-11-21)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.1.0...10.1.1)
**Fixed bugs:**
- Calendar with touchUI prop always adds p-overflow-hidden to body in the mounted phase [\#5352](https://github.com/primefaces/primereact/issues/5352)
- DataTable: Moving selection up with keyboard not working [\#5347](https://github.com/primefaces/primereact/issues/5347)
- DataTable: fire onRowClickwhen unselect row [\#5342](https://github.com/primefaces/primereact/issues/5342)
## [10.1.0](https://github.com/primefaces/primereact/tree/10.1.0) (2023-11-20)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.9...10.1.0)
**Enhancements:**
- MultiSelect: Add onRemove callback function, the same as in the Chip component [\#5247](https://github.com/primefaces/primereact/issues/5247)
- Dropdown: Allow control of dropdownIcon based on state [\#5308](https://github.com/primefaces/primereact/issues/5308)
- Password: Strength meter does not close on escape key press [\#5321](https://github.com/primefaces/primereact/issues/5321)
- MultiSelect: Add onRemove callback function, the same as in the Chip component [\#5329](https://github.com/primefaces/primereact/issues/5329)
- Lara theme enhancements [\#5343](https://github.com/primefaces/primereact/issues/5343)
- New Showcase Implementation [\#5258](https://github.com/primefaces/primereact/issues/5258)
**Fixed bugs:**
- Slider - Prop style did not match [\#5346](https://github.com/primefaces/primereact/issues/5346)
- Bootstrap: Example is broken [\#5310](https://github.com/primefaces/primereact/issues/5310)
- Datatable: Setting rowEditorInitIcon has no effect. [\#4430](https://github.com/primefaces/primereact/issues/4430)
- InputNumber: unable to input a decimal point [\#5338](https://github.com/primefaces/primereact/issues/5338)
- Missing icons [\#5333](https://github.com/primefaces/primereact/issues/5333)
- PrimeReactProvider: Panels closing on scroll even with hideOverlaysOnDocumentScrolling: false [\#5332](https://github.com/primefaces/primereact/issues/5332)
- HeroSection:import case sensitive [\#5328](https://github.com/primefaces/primereact/issues/5328)
- Tooltip: tooltip does not close when cpu throttled x6 [\#5312](https://github.com/primefaces/primereact/issues/5312)
- Tooltip: Stuck after hovering when used in complex page [\#3965](https://github.com/primefaces/primereact/issues/3965)
- select components: props appendTo Incorrect first time mount [\#5311](https://github.com/primefaces/primereact/issues/5311)
- InputMask: Pasting does not respect the cursor selection [\#5285](https://github.com/primefaces/primereact/issues/5285)
- Documentation: Ripple needs to be enable, docs says false [\#5316](https://github.com/primefaces/primereact/issues/5316)
- Tailwind: Dialog - mask: modal property is undefined [\#5296](https://github.com/primefaces/primereact/issues/5296)
- Tooltip with showOnDisabled prop breaks some input component style [\#5300](https://github.com/primefaces/primereact/issues/5300)
- Fix with showondisabled prop breaks some input component style [\#5301](https://github.com/primefaces/primereact/issues/5301)
- Code Display spacing [\#5303](https://github.com/primefaces/primereact/issues/5303)
- Tailwind: CSS fixes from PrimeVue [\#5294](https://github.com/primefaces/primereact/issues/5294)
- Tailwind: Under DataTable theming props.frozenRow but are not DataTableProps [\#5288](https://github.com/primefaces/primereact/issues/5288)
- InputText inherits size from HTMLInputElement and size is number [\#5283](https://github.com/primefaces/primereact/issues/5283)
- DataTable: Infinite loop onValueChange [\#5160](https://github.com/primefaces/primereact/issues/5160)
- DataTable: onValueChange fires if the selection if updated [\#5281](https://github.com/primefaces/primereact/issues/5281)
- InputNumer: PageSpeed Accessibility: ARIA IDs are unique [\#5270](https://github.com/primefaces/primereact/issues/5270)
- Added plain text [\#5278](https://github.com/primefaces/primereact/issues/5278)
- InputNumber: PageSpeed Accessibility - Buttons do not have an accessible name [\#5269](https://github.com/primefaces/primereact/issues/5269)
- Splitter: stateString is undefined [\#5276](https://github.com/primefaces/primereact/issues/5276)
- Tailwind Theming for Button uses a property plain but plain is not part of ButtonProps [\#5273](https://github.com/primefaces/primereact/issues/5273)
- Tailwind CSS issue [\#4987](https://github.com/primefaces/primereact/issues/4987)
- Component Styles: Remove use of !important now that @layer is used [\#5096](https://github.com/primefaces/primereact/issues/5096)
- Sidebar fullscreen unnecessary class assignments fix [\#5271](https://github.com/primefaces/primereact/issues/5271)
- Updating documentation under theming [\#5276](https://github.com/primefaces/primereact/issues/5276)
- SplitButton: Outlined SplitButton right border duplication on hover [\#5264](https://github.com/primefaces/primereact/issues/5264)
- PanelMenu: command of MenuItem without child cannot be triggered [\#5255](https://github.com/primefaces/primereact/issues/5255)
- TreeSelect: In unstyled mode, the selected and checked style not work [\#5254](https://github.com/primefaces/primereact/issues/5254)
- TabView: Dynamically created TabPanels and onTabClose closes more than one Tab [\#2842](https://github.com/primefaces/primereact/issues/2842)
- TreeTable: filter row ignored when frozen column enabled [\#5252](https://github.com/primefaces/primereact/issues/5252)
- MultiSelect: stopPropgation on multiSelect items [\#5250](https://github.com/primefaces/primereact/issues/5250)
- Add support for faster progressive and incremental builds [\#5231](https://github.com/primefaces/primereact/issues/5231)
- InputNumber: button event repeats infinitely if input is disabled [\#5245](https://github.com/primefaces/primereact/issues/5245)
- AutoComplete: Primitive value 0 does not display correctly [\#5241](https://github.com/primefaces/primereact/issues/5241)
- Calendar: Wrong docs in Pass Through [\#5243](https://github.com/primefaces/primereact/issues/5243)
- TabView: Dynamic Tabs not working [\#5229](https://github.com/primefaces/primereact/issues/5229)
- OverlayPanel: Toast is appearing when page is loaded [\#5235](https://github.com/primefaces/primereact/issues/5235)
- InputNumber: Enter leading 0 when using prefix/suffix [\#5234](https://github.com/primefaces/primereact/issues/5234)
- FileUpload: Uploaded file is cleared in advanced mode [\#5226](https://github.com/primefaces/primereact/issues/5226)
- Mention: Mentioning someone keeps the search text [\#5216](https://github.com/primefaces/primereact/issues/5216)
- ComponentBase: TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5168](https://github.com/primefaces/primereact/issues/5168)
- TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5203](https://github.com/primefaces/primereact/issues/5203)
## [10.0.9](https://github.com/primefaces/primereact/tree/10.0.9) (2023-11-01)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.8...10.0.9)
**Fixed bugs:**
- useHandleStyle Broken: Styles not loading [\#5213](https://github.com/primefaces/primereact/issues/5213)
## [10.0.8](https://github.com/primefaces/primereact/tree/10.0.8) (2023-11-01)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.7...10.0.8)
**Fixed bugs:**
- MultiSelect: Dropdown body detaches from dropdown head/button [\#5210](https://github.com/primefaces/primereact/issues/5210)
- "Command" docs are missing [\#5205](https://github.com/primefaces/primereact/issues/5205)
- Tailwind: Panelmenu: Some classes not being picked up during Styling [\#5206](https://github.com/primefaces/primereact/issues/5206)
- ComponentBase: TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5168](https://github.com/primefaces/primereact/issues/5168)
- TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5203](https://github.com/primefaces/primereact/issues/5203)
- Tailwind: MultiSelect: multiple conflicting classname keys [\#5200](https://github.com/primefaces/primereact/issues/5200)
- Tailwind: PanelMenu: Documentation Pointing to Incorrect TRANSITION [\#5198](https://github.com/primefaces/primereact/issues/5198)
- Datatable: Missing rowEditorSaveButton and rowEditorSaveIcon on ColumnPassThroughOptions [\#5196](https://github.com/primefaces/primereact/issues/5196)
- DataTable: Redefine column width after resizing a column manually [\#5123](https://github.com/primefaces/primereact/issues/5123)
- DataTable: When using InputTextarea as editor, pressing Ctrl + Enter or Shift + Enter results in a submission [\#5193](https://github.com/primefaces/primereact/issues/5193)
- InputNumber: Minus Sign not working for Currency INR [\#5185](https://github.com/primefaces/primereact/issues/5185)
- PanelMenu: Visual defect [\#5190](https://github.com/primefaces/primereact/issues/5190)
- Tailwind with Menubar end attribute does not align-right [\#5181](https://github.com/primefaces/primereact/issues/5181)
- DataTable with frozen columns and displayFilter 'row' doesn't freeze filter cell [\#5164](https://github.com/primefaces/primereact/issues/5164)
- Add missing pi-file-edit icon [\#5179](https://github.com/primefaces/primereact/issues/5179)
- OrderList: order of selection reversed when moving multiple items to top or bottom [\#5177](https://github.com/primefaces/primereact/issues/5177)
- 10.0.7: forwardRef Warning [\#5172](https://github.com/primefaces/primereact/issues/5172)
- id not passed to SplitterPanel [\#5169](https://github.com/primefaces/primereact/issues/5169)
## [10.0.7](https://github.com/primefaces/primereact/tree/10.0.7) (2023-10-26)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.6...10.0.7)
**Fixed bugs:**
- SplitButton: Missing styles [\#5163](https://github.com/primefaces/primereact/issues/5163)
## [10.0.6](https://github.com/primefaces/primereact/tree/10.0.6) (2023-10-26)
[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.5...10.0.6)
**Fixed bugs:**
- FileUpload: Adding pending text to localization in component [\#5161](https://github.com/primefaces/primereact/issues/5161)
- AvatarGroup -> Avatar Hover tooltip [\#4181](https://github.com/primefaces/primereact/issues/4181)
- MultiSelect: Clicking on "selectAll" checkbox closes options dropdown [\#5151](https://github.com/primefaces/primereact/issues/5151)
- AccordionTab cannot be used in custom wrapper [\#2052](https://github.com/primefaces/primereact/issues/2052)
- SpeedDial: className property not being applied to list items [\#5148](https://github.com/primefaces/primereact/issues/5148)
- MultiSelect: Clear button marks variable as undefined [\#5142](https://github.com/primefaces/primereact/issues/5142)
- Mispell of 'inteface' instead of 'interface' [\#5138](https://github.com/primefaces/primereact/issues/5138)
- Calendar with mask does not work as expected when editing input. [\#5137](https://github.com/primefaces/primereact/issues/5137)
- DataTable: passthrough styling is ignored [\#5131](https://github.com/primefaces/primereact/issues/5131)
- Column: Pass Through does not apply header classes correctly [\#5125](https://github.com/primefaces/primereact/issues/5125)