mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #4929 - Add parent param to all pt method options
This commit is contained in:
parent
1a4bba8107
commit
eb00b8ee23
104 changed files with 399 additions and 158 deletions
9
components/lib/tabpanel/TabPanel.d.ts
vendored
9
components/lib/tabpanel/TabPanel.d.ts
vendored
|
@ -10,7 +10,6 @@
|
|||
import { AnchorHTMLAttributes, HTMLAttributes, LiHTMLAttributes, VNode } from 'vue';
|
||||
import { ComponentHooks } from '../basecomponent';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { TabViewPassThroughOptions } from '../tabview';
|
||||
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
||||
|
||||
export declare type TabPanelPassThroughOptionType = TabPanelPassThroughAttributes | ((options: TabPanelPassThroughMethodOptions) => TabPanelPassThroughAttributes | string) | string | null | undefined;
|
||||
|
@ -27,14 +26,14 @@ export interface TabPanelPassThroughMethodOptions {
|
|||
* Defines valid properties.
|
||||
*/
|
||||
props: TabPanelProps;
|
||||
/**
|
||||
* Defines parent instance.
|
||||
*/
|
||||
parent: TabViewPassThroughOptions;
|
||||
/**
|
||||
* Defines current options.
|
||||
*/
|
||||
context: TabPanelContext;
|
||||
/**
|
||||
* Defines parent options.
|
||||
*/
|
||||
parent: any;
|
||||
/**
|
||||
* Defines passthrough(pt) options in global config.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue