.d.ts updates
parent
47b97b485f
commit
1ccf0f13b9
|
@ -76,9 +76,9 @@ export interface AccordionState {
|
|||
*/
|
||||
id: string;
|
||||
/**
|
||||
* Current active index state as a boolean
|
||||
* Current active index state.
|
||||
*/
|
||||
d_activeIndex: boolean;
|
||||
d_activeIndex: number | number[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -86,7 +86,8 @@ export interface PanelPassThroughAttributes {
|
|||
*/
|
||||
export interface PanelState {
|
||||
/**
|
||||
* Current collapsed state as a boolean
|
||||
* Current collapsed state as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
d_collapsed: boolean;
|
||||
}
|
||||
|
|
|
@ -97,7 +97,7 @@ export interface TabViewPassThroughAttributes {
|
|||
*/
|
||||
export interface TabViewState {
|
||||
/**
|
||||
* Current collapsed state as a boolean.
|
||||
* Current active index state.
|
||||
*/
|
||||
d_activeIndex: number;
|
||||
/**
|
||||
|
@ -106,10 +106,12 @@ export interface TabViewState {
|
|||
id: string;
|
||||
/**
|
||||
* Current state of previous button.
|
||||
* @defaultValue true
|
||||
*/
|
||||
isPrevButtonDisabled: boolean;
|
||||
/**
|
||||
* Current state of the next button.
|
||||
* @defaultValue false
|
||||
*/
|
||||
isNextButtonDisabled: boolean;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue