primevue-mirror/components/lib/badgedirective/BadgeDirective.d.ts

152 lines
3.7 KiB
TypeScript
Raw Normal View History

2023-03-02 11:05:45 +00:00
/**
*
* Badge directive is a small status indicator for another element.
*
2023-03-03 14:17:03 +00:00
* [Live Demo](https://primevue.org/badge)
*
* @module badgedirective
2023-03-02 11:05:45 +00:00
*/
import { DirectiveBinding, ObjectDirective } from 'vue';
2022-09-06 12:03:37 +00:00
2023-06-23 09:47:31 +00:00
/**
* Defines options of Badge.
*/
2023-06-23 14:51:42 +00:00
export interface BadgeDirectiveOptions {
2023-06-23 09:47:31 +00:00
/**
* Uses to pass attributes to DOM elements inside the component.
2023-06-23 14:51:42 +00:00
* @type {BadgeDirectivePassThroughOptions}
2023-06-23 09:47:31 +00:00
*/
2023-06-23 14:51:42 +00:00
pt?: BadgeDirectivePassThroughOptions;
2023-06-23 09:47:31 +00:00
}
/**
* Custom passthrough(pt) options.
2023-06-23 14:51:42 +00:00
* @see {@link BadgeDirectiveOptions.pt}
2023-06-23 09:47:31 +00:00
*/
2023-06-23 14:51:42 +00:00
export interface BadgeDirectivePassThroughOptions {
2023-06-23 09:47:31 +00:00
/**
* Uses to pass attributes to the root's DOM element.
2023-06-23 14:51:42 +00:00
* @see {@link BadgeDirectivePassThroughDirectiveOptions}
2023-06-23 09:47:31 +00:00
*/
2023-06-23 14:51:42 +00:00
root?: BadgeDirectivePassThroughDirectiveOptions;
2023-06-23 09:47:31 +00:00
}
/**
* Custom passthrough(pt) directive options.
*/
2023-06-23 14:51:42 +00:00
export interface BadgeDirectivePassThroughDirectiveOptions {
2023-06-23 09:47:31 +00:00
/**
* Uses to pass attributes to the life cycle hooks.
2023-06-23 14:51:42 +00:00
* @see {@link BadgeDirectivePassThroughHooksOptions}
2023-06-23 09:47:31 +00:00
*/
2023-06-23 14:51:42 +00:00
hooks?: BadgeDirectivePassThroughHooksOptions;
2023-06-23 09:47:31 +00:00
/**
* Uses to pass attributes to the styles.
2023-06-23 14:51:42 +00:00
* @see {@link BadgeDirectivePassThroughCSSOptions}
2023-06-23 09:47:31 +00:00
*/
2023-06-23 14:51:42 +00:00
css?: BadgeDirectivePassThroughCSSOptions;
2023-06-23 09:47:31 +00:00
}
2023-06-22 13:50:40 +00:00
/**
* Custom passthrough(pt) hooks options.
*/
2023-06-23 14:51:42 +00:00
export interface BadgeDirectivePassThroughHooksOptions {
2023-06-22 13:50:40 +00:00
/**
* Called before bound element's attributes or event listeners are applied.
*/
created?: DirectiveBinding;
/**
* Called right before the element is inserted into the DOM.
*/
beforeMount?: DirectiveBinding;
/**
* Called when the bound element's parent component and all its children are mounted.
*/
mounted?: DirectiveBinding;
/**
* Called before the parent component is updated.
*/
beforeUpdate?: DirectiveBinding;
/**
* Called after the parent component and all of its children have updated all of its children have updated.
*/
updated?: DirectiveBinding;
/**
* Called before the parent component is unmounted.
*/
beforeUnmount?: DirectiveBinding;
/**
* Called when the parent component is unmounted.
*/
unmounted?: DirectiveBinding;
}
/**
* Custom passthrough(pt) css options.
*/
2023-06-23 14:51:42 +00:00
export interface BadgeDirectivePassThroughCSSOptions {
2023-06-22 13:50:40 +00:00
/**
* Style class of the element.
*/
class?: any;
/**
* Inline style of the element.
*/
style?: any;
}
2023-03-02 11:05:45 +00:00
/**
* Defines modifiers of Badge directive.
*/
export interface BadgeDirectiveModifiers {
2023-03-02 11:05:45 +00:00
/**
2023-03-02 18:53:47 +00:00
* Info severity for Badge directive.
* @defaultValue true
2023-03-02 11:05:45 +00:00
*/
2023-03-02 18:53:47 +00:00
info?: boolean | undefined;
2023-03-02 11:05:45 +00:00
/**
2023-03-02 18:53:47 +00:00
* Success severity for Badge directive.
* @defaultValue false
2023-03-02 11:05:45 +00:00
*/
2023-03-02 18:53:47 +00:00
success?: boolean | undefined;
2023-03-02 11:05:45 +00:00
/**
* Warning severity for Badge directive.
2023-03-02 18:53:47 +00:00
* @defaultValue false
2023-03-02 11:05:45 +00:00
*/
2023-03-02 18:53:47 +00:00
warning?: boolean | undefined;
2023-03-02 11:05:45 +00:00
/**
* Danger severity for Badge directive.
2023-03-02 18:53:47 +00:00
* @defaultValue false
2023-03-02 11:05:45 +00:00
*/
2023-03-02 18:53:47 +00:00
danger?: boolean | undefined;
}
2023-03-02 11:05:45 +00:00
/**
* Binding of Badge directive.
*/
export interface BadgeDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {
/**
* Value of the Badge.
*/
2023-06-23 14:51:42 +00:00
value?: string | BadgeDirectiveOptions | undefined;
2023-03-02 11:05:45 +00:00
/**
* Modifiers of the Badge.
* @type {BadgeDirectiveModifiers}
*/
modifiers?: BadgeDirectiveModifiers | undefined;
}
/**
* **PrimeVue - Badge**
*
* _Badge directive provides advisory information for a component._
*
* [Live Demo](https://www.primevue.org/badge/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-02 11:05:45 +00:00
*
*/
2022-09-06 12:03:37 +00:00
declare const BadgeDirective: ObjectDirective;
export default BadgeDirective;