2023-03-02 11:11:01 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Ripple directive adds ripple effect to the host element.
|
|
|
|
*
|
|
|
|
* - [Live Demo](https://primevue.org/ripple)
|
|
|
|
*/
|
|
|
|
import { DirectiveBinding, ObjectDirective } from 'vue';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-02 11:11:01 +00:00
|
|
|
/**
|
|
|
|
* Binding of Ripple directive.
|
|
|
|
*/
|
|
|
|
export interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* **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.svg)
|
|
|
|
*
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
declare const Ripple: ObjectDirective;
|
|
|
|
|
|
|
|
export default Ripple;
|