From 08801207660037d5b9283ba500238617e197f753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 24 Mar 2023 09:34:32 +0300 Subject: [PATCH] Update AccordionTab.d.ts --- components/lib/accordiontab/AccordionTab.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/lib/accordiontab/AccordionTab.d.ts b/components/lib/accordiontab/AccordionTab.d.ts index bcb295571..950cbf05a 100755 --- a/components/lib/accordiontab/AccordionTab.d.ts +++ b/components/lib/accordiontab/AccordionTab.d.ts @@ -73,30 +73,37 @@ export interface AccordionTabProps { header?: string | undefined; /** * Inline style of the tab header. + * @deprecated since v3.26.0. Use 'pt' property instead. */ headerStyle?: any; /** * Style class of the tab header. + * @deprecated since v3.26.0. Use 'pt' property instead. */ headerClass?: any; /** * Uses to pass all properties of the HTMLDivElement to the tab header. + * @deprecated since v3.26.0. Use 'pt' property instead. */ headerProps?: HTMLAttributes | undefined; /** * 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; /** * Inline style of the tab content. + * @deprecated since v3.26.0. Use 'pt' property instead. */ contentStyle?: any; /** * Style class of the tab content. + * @deprecated since v3.26.0. Use 'pt' property instead. */ contentClass?: any; /** * Uses to pass all properties of the HTMLDivElement to the tab content. + * @deprecated since v3.26.0. Use 'pt' property instead. */ contentProps?: HTMLAttributes | undefined; /** @@ -104,6 +111,11 @@ export interface AccordionTabProps { * @defaultValue false */ disabled?: boolean | undefined; + /** + * Uses to pass attributes to DOM elements inside the component. + * @type {AccordionTabPassThroughOptions} + */ + pt?: AccordionTabPassThroughOptions; } /**