mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Fixed #4783 - AccordionTab: isTabActive property is deprecated
This commit is contained in:
parent
4fdbe365ba
commit
d62493b08b
2 changed files with 7 additions and 1 deletions
|
@ -194,8 +194,14 @@ export interface AccordionTabSlots {
|
|||
/**
|
||||
* Whether the tab is active
|
||||
* @param {number} index - Index of the tab
|
||||
* @deprecated since v3.40.0. Use 'active' property instead.
|
||||
*/
|
||||
isTabActive: (index: number) => void;
|
||||
/**
|
||||
* Whether the tab is active
|
||||
* @param {number} index - Index of the tab
|
||||
*/
|
||||
active: (index: number) => void;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue