mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Accordion pt completed - panel dts changes
This commit is contained in:
parent
aff4519b9d
commit
311734be29
4 changed files with 130 additions and 8 deletions
10
components/lib/panel/Panel.d.ts
vendored
10
components/lib/panel/Panel.d.ts
vendored
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue