fix(Calendar): expose same attrs to pt context for day and day label

pull/5313/head
Damian Głowala 2024-02-20 10:18:07 +01:00
parent f6d86453b5
commit 0e7b65c3ca
1 changed files with 5 additions and 1 deletions

View File

@ -205,7 +205,9 @@
context: {
date,
today: date.today,
otherMonth: date.otherMonth
otherMonth: date.otherMonth,
selected: isSelected(date),
disabled: !date.selectable
}
})
"
@ -225,6 +227,8 @@
ptm('dayLabel', {
context: {
date,
today: date.today,
otherMonth: date.otherMonth,
selected: isSelected(date),
disabled: !date.selectable
}