diff --git a/components/lib/calendar/BaseCalendar.vue b/components/lib/calendar/BaseCalendar.vue
index f4d1ef971..52a6c9614 100644
--- a/components/lib/calendar/BaseCalendar.vue
+++ b/components/lib/calendar/BaseCalendar.vue
@@ -200,13 +200,13 @@ const classes = {
weekLabelContainer: 'p-disabled',
day: ({ date }) => [{ 'p-datepicker-other-month': date.otherMonth, 'p-datepicker-today': date.today }],
dayLabel: ({ instance, date }) => [{ 'p-highlight': instance.isSelected(date), 'p-disabled': !date.selectable }],
- ariaSelectedDay: 'p-hidden-accessible',
+ hiddenSelectedDay: 'p-hidden-accessible',
monthPicker: 'p-monthpicker',
month: ({ instance, month, index }) => ['p-monthpicker-month', { 'p-highlight': instance.isMonthSelected(index), 'p-disabled': !month.selectable }],
- ariaMonth: 'p-hidden-accessible',
+ hiddenMonth: 'p-hidden-accessible',
yearPicker: 'p-yearpicker',
year: ({ instance, year }) => ['p-yearpicker-year', { 'p-highlight': instance.isYearSelected(year.value), 'p-disabled': !year.selectable }],
- ariaYear: 'p-hidden-accessible',
+ hiddenYear: 'p-hidden-accessible',
timePicker: 'p-timepicker',
hourPicker: 'p-hour-picker',
incrementButton: 'p-link',
diff --git a/components/lib/calendar/Calendar.d.ts b/components/lib/calendar/Calendar.d.ts
index 8a2571172..8b44c4f2b 100755
--- a/components/lib/calendar/Calendar.d.ts
+++ b/components/lib/calendar/Calendar.d.ts
@@ -199,7 +199,7 @@ export interface CalendarPassThroughOptions {
/**
* Uses to pass attributes to the aria selected day's DOM element.
*/
- ariaSelectedDay?: CalendarPassThroughOptionType;
+ hiddenSelectedDay?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the month picker's DOM element.
*/
@@ -211,7 +211,7 @@ export interface CalendarPassThroughOptions {
/**
* Uses to pass attributes to the aria month's DOM element.
*/
- ariaMonth?: CalendarPassThroughOptionType;
+ hiddenMonth?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the year picker's DOM element.
*/
@@ -223,7 +223,7 @@ export interface CalendarPassThroughOptions {
/**
* Uses to pass attributes to the aria year's DOM element.
*/
- ariaYear?: CalendarPassThroughOptionType;
+ hiddenYear?: CalendarPassThroughOptionType;
/**
* Uses to pass attributes to the time picker's DOM element.
*/
diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue
index 03ccf56d6..b1038009b 100755
--- a/components/lib/calendar/Calendar.vue
+++ b/components/lib/calendar/Calendar.vue
@@ -165,7 +165,7 @@
>