Update AccordionTab.d.ts

pull/3841/head
Tuğçe Küçükoğlu 2023-03-24 09:34:32 +03:00
parent 311734be29
commit 0880120766
1 changed files with 12 additions and 0 deletions

View File

@ -73,30 +73,37 @@ export interface AccordionTabProps {
header?: string | undefined; header?: string | undefined;
/** /**
* Inline style of the tab header. * Inline style of the tab header.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/ */
headerStyle?: any; headerStyle?: any;
/** /**
* Style class of the tab header. * Style class of the tab header.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/ */
headerClass?: any; headerClass?: any;
/** /**
* Uses to pass all properties of the HTMLDivElement to the tab header. * Uses to pass all properties of the HTMLDivElement to the tab header.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/ */
headerProps?: HTMLAttributes | undefined; headerProps?: HTMLAttributes | undefined;
/** /**
* Uses to pass all properties of the HTMLAnchorElement to the focusable anchor element inside the tab header. * Uses to pass all properties of the HTMLAnchorElement to the focusable anchor element inside the tab header.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/ */
headerActionProps?: AnchorHTMLAttributes | undefined; headerActionProps?: AnchorHTMLAttributes | undefined;
/** /**
* Inline style of the tab content. * Inline style of the tab content.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/ */
contentStyle?: any; contentStyle?: any;
/** /**
* Style class of the tab content. * Style class of the tab content.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/ */
contentClass?: any; contentClass?: any;
/** /**
* Uses to pass all properties of the HTMLDivElement to the tab content. * Uses to pass all properties of the HTMLDivElement to the tab content.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/ */
contentProps?: HTMLAttributes | undefined; contentProps?: HTMLAttributes | undefined;
/** /**
@ -104,6 +111,11 @@ export interface AccordionTabProps {
* @defaultValue false * @defaultValue false
*/ */
disabled?: boolean | undefined; disabled?: boolean | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {AccordionTabPassThroughOptions}
*/
pt?: AccordionTabPassThroughOptions;
} }
/** /**