Fixed #4000 - Update context option of pt in AccordionTab

This commit is contained in:
mertsincan 2023-05-29 14:38:47 +01:00
parent 77812ed971
commit 7e8f8a7c7c
2 changed files with 17 additions and 1 deletions

View file

@ -123,6 +123,18 @@ export interface AccordionTabContext {
* Current index of the tab.
*/
index: number;
/**
* Count of tabs
*/
count: number;
/**
* Whether the tab is first.
*/
first: boolean;
/**
* Whether the tab is last.
*/
last: boolean;
}
/**