mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #4379 - Menu components: RouterBindProps typing
This commit is contained in:
parent
e895b78e99
commit
411d62df2c
10 changed files with 206 additions and 10 deletions
16
components/lib/dock/Dock.d.ts
vendored
16
components/lib/dock/Dock.d.ts
vendored
|
@ -134,6 +134,20 @@ export interface DockTooltipOptions {
|
|||
[key: string]: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid router binding props in Dock component.
|
||||
*/
|
||||
export interface DockRouterBindProps {
|
||||
/**
|
||||
* Action element binding
|
||||
*/
|
||||
action: object;
|
||||
/**
|
||||
* Icon element binding
|
||||
*/
|
||||
icon: object;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid properties in Dock component.
|
||||
*/
|
||||
|
@ -217,7 +231,7 @@ export interface DockSlots {
|
|||
/**
|
||||
* Binding properties of the menuitem
|
||||
*/
|
||||
props: (...args: any) => string;
|
||||
props: DockRouterBindProps;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom icon content.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue