primevue-mirror/components/lib/ripple/Ripple.d.ts

76 lines
1.8 KiB
TypeScript

/**
*
* Ripple directive adds ripple effect to the host element.
*
* [Live Demo](https://primevue.org/ripple)
*
* @module ripple
*/
import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective';
export declare type RippleDirectivePassThroughOptionType = RippleDirectivePassThroughAttributes | null | undefined;
/**
* Defines options of Ripple.
*/
export interface RippleOptions {
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {RippleDirectivePassThroughOptions}
*/
pt?: RippleDirectivePassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**
* Custom passthrough(pt) options.
* @see {@link RippleOptions.pt}
*/
export interface RippleDirectivePassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
*/
root?: RippleDirectivePassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* @see {@link BaseDirective.DirectiveHooks}
*/
hooks?: DirectiveHooks;
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface RippleDirectivePassThroughAttributes {
[key: string]: any;
}
/**
* Binding of Ripple directive.
*/
export interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {
/**
* Value of the Ripple.
*/
value?: RippleOptions | undefined;
}
/**
* **PrimeVue - Ripple**
*
* _Ripple directive adds ripple effect to the host element._
*
* [Live Demo](https://www.primevue.org/ripple/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
*/
declare const Ripple: ObjectDirective;
export default Ripple;