mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Directive modifiers update
This commit is contained in:
parent
af44e1017e
commit
6bb0ad1d60
2 changed files with 22 additions and 13 deletions
17
components/tooltip/Tooltip.d.ts
vendored
17
components/tooltip/Tooltip.d.ts
vendored
|
@ -48,24 +48,29 @@ export interface TooltipOptions {
|
|||
export interface TooltipDirectiveModifiers {
|
||||
/**
|
||||
* Right position for Tooltip.
|
||||
* @defaultValue true
|
||||
*/
|
||||
right?: string | undefined;
|
||||
right?: boolean | undefined;
|
||||
/**
|
||||
* Feft position for Tooltip.
|
||||
* Left position for Tooltip.
|
||||
* @defaultValue false
|
||||
*/
|
||||
left?: string | undefined;
|
||||
left?: boolean | undefined;
|
||||
/**
|
||||
* Top position for Tooltip.
|
||||
* @defaultValue false
|
||||
*/
|
||||
top?: string | undefined;
|
||||
top?: boolean | undefined;
|
||||
/**
|
||||
* Bottom position for Tooltip.
|
||||
* @defaultValue false
|
||||
*/
|
||||
bottom?: string | undefined;
|
||||
bottom?: boolean | undefined;
|
||||
/**
|
||||
* Focus event for Tooltip.
|
||||
* @defaultValue true
|
||||
*/
|
||||
focus?: string | undefined;
|
||||
focus?: boolean | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue