Fixed #4783 - AccordionTab: isTabActive property is deprecated

This commit is contained in:
tugcekucukoglu 2023-11-09 13:33:08 +03:00
parent 4fdbe365ba
commit d62493b08b
2 changed files with 7 additions and 1 deletions

View file

@ -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[];
}