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