Fixed #3904 - Panel: Header accessibility issue
parent
0142b37aa5
commit
00bedf4181
|
@ -137,7 +137,16 @@ export interface PanelSlots {
|
||||||
/**
|
/**
|
||||||
* Custom header template.
|
* Custom header template.
|
||||||
*/
|
*/
|
||||||
header(): VNode[];
|
header(scope: {
|
||||||
|
/**
|
||||||
|
* Current id state as a string
|
||||||
|
*/
|
||||||
|
id: boolean;
|
||||||
|
/**
|
||||||
|
* Style class of the icon
|
||||||
|
*/
|
||||||
|
class: string;
|
||||||
|
}): VNode[];
|
||||||
/**
|
/**
|
||||||
* Custom icons template.
|
* Custom icons template.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div :class="containerClass" v-bind="ptm('root')">
|
<div :class="containerClass" v-bind="ptm('root')">
|
||||||
<div class="p-panel-header" v-bind="ptm('header')">
|
<div class="p-panel-header" v-bind="ptm('header')">
|
||||||
<slot name="header">
|
<slot :id="ariaId + '_header'" name="header" class="p-panel-title">
|
||||||
<span v-if="header" :id="ariaId + '_header'" class="p-panel-title" v-bind="ptm('title')">{{ header }}</span>
|
<span v-if="header" :id="ariaId + '_header'" class="p-panel-title" v-bind="ptm('title')">{{ header }}</span>
|
||||||
</slot>
|
</slot>
|
||||||
<div class="p-panel-icons" v-bind="ptm('icons')">
|
<div class="p-panel-icons" v-bind="ptm('icons')">
|
||||||
|
|
Loading…
Reference in New Issue