.d.ts updates

pull/3841/head
Tuğçe Küçükoğlu 2023-03-24 18:06:26 +03:00
parent 47b97b485f
commit 1ccf0f13b9
3 changed files with 7 additions and 4 deletions

View File

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

View File

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

View File

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