fix(ui): support new large-section-heading in header

This commit is contained in:
ArneBo 2025-03-29 10:55:41 +01:00
parent 3df42ad972
commit 44fa157278
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ const props = defineProps<{
} & {
[H in `h${ '1' | '2' | '3' | '4' | '5' | '6' }`]? : string
} & {
[S in 'page-heading' | 'section-heading' | 'subsection-heading' | 'caption' | 'title' | 'radio' | 'secondary' ]? : true
[S in 'page-heading' | 'section-heading' | 'large-section-heading' | 'subsection-heading' | 'caption' | 'title' | 'radio' | 'secondary' ]? : true
} & {
[Operation in 'expand' | 'collapse']?: () => void
}>()