feat(Calendar): allow year and month buttons styling (#3672)

This commit is contained in:
Hugo Richard
2025-03-24 19:00:28 +01:00
committed by GitHub
parent ade16b76cf
commit 4a2b77d86c
4 changed files with 1453 additions and 4 deletions

View File

@@ -28,6 +28,10 @@ describe('Calendar', () => {
['with weekStartsOn', { props: { weekStartsOn: 1 } }],
['with weekdayFormat', { props: { weekdayFormat: 'short' } }],
['with numberOfMonths', { props: { numberOfMonths: 2 } }],
['with nextYear', { props: { nextYear: { size: 'lg', color: 'primary' } } }],
['with nextMonth', { props: { nextMonth: { size: 'lg', color: 'primary' } } }],
['with prevYear', { props: { prevYear: { size: 'lg', color: 'primary' } } }],
['with prevMonth', { props: { prevMonth: { size: 'lg', color: 'primary' } } }],
['without fixedWeeks', { props: { fixedWeeks: false } }],
['without monthControls', { props: { monthControls: false } }],
['without yearControls', { props: { yearControls: false } }],