Directive modifiers update
parent
af44e1017e
commit
6bb0ad1d60
|
@ -12,22 +12,26 @@ import { DirectiveBinding, ObjectDirective } from 'vue';
|
||||||
* Defines modifiers of Badge directive.
|
* Defines modifiers of Badge directive.
|
||||||
*/
|
*/
|
||||||
export interface BadgeDirectiveModifiers {
|
export interface BadgeDirectiveModifiers {
|
||||||
/**
|
|
||||||
* Success severity for Badge directive.
|
|
||||||
*/
|
|
||||||
success?: string | undefined;
|
|
||||||
/**
|
/**
|
||||||
* Info severity for Badge directive.
|
* Info severity for Badge directive.
|
||||||
|
* @defaultValue true
|
||||||
*/
|
*/
|
||||||
info?: string | undefined;
|
info?: boolean | undefined;
|
||||||
|
/**
|
||||||
|
* Success severity for Badge directive.
|
||||||
|
* @defaultValue false
|
||||||
|
*/
|
||||||
|
success?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Warning severity for Badge directive.
|
* Warning severity for Badge directive.
|
||||||
|
* @defaultValue false
|
||||||
*/
|
*/
|
||||||
warning?: string | undefined;
|
warning?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Danger severity for Badge directive.
|
* Danger severity for Badge directive.
|
||||||
|
* @defaultValue false
|
||||||
*/
|
*/
|
||||||
danger?: string | undefined;
|
danger?: boolean | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -48,24 +48,29 @@ export interface TooltipOptions {
|
||||||
export interface TooltipDirectiveModifiers {
|
export interface TooltipDirectiveModifiers {
|
||||||
/**
|
/**
|
||||||
* Right position for Tooltip.
|
* 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.
|
* Top position for Tooltip.
|
||||||
|
* @defaultValue false
|
||||||
*/
|
*/
|
||||||
top?: string | undefined;
|
top?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Bottom position for Tooltip.
|
* Bottom position for Tooltip.
|
||||||
|
* @defaultValue false
|
||||||
*/
|
*/
|
||||||
bottom?: string | undefined;
|
bottom?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Focus event for Tooltip.
|
* Focus event for Tooltip.
|
||||||
|
* @defaultValue true
|
||||||
*/
|
*/
|
||||||
focus?: string | undefined;
|
focus?: boolean | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue