Accordion pt completed - panel dts changes

This commit is contained in:
Bahadır Sofuoğlu 2023-03-23 17:42:14 +03:00 committed by Tuğçe Küçükoğlu
parent aff4519b9d
commit 311734be29
4 changed files with 130 additions and 8 deletions

View file

@ -10,7 +10,15 @@
import { ButtonHTMLAttributes, VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type PanelPassThroughOptionType = PanelPassThroughAttributes | ((options: { props: PanelProps; state: PanelState }) => PanelPassThroughAttributes) | null | undefined;
export declare type PanelPassThroughOptionType = PanelPassThroughAttributes | ((options: PanelPassThroughMethodOptions) => PanelPassThroughAttributes) | null | undefined;
/**
* Custom passthrough(pt) option method.
*/
export interface PanelPassThroughMethodOptions {
props: PanelProps;
state: PanelState;
}
/**
* Custom toggle event.