mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
76
components/lib/styleclass/StyleClass.d.ts
vendored
Normal file
76
components/lib/styleclass/StyleClass.d.ts
vendored
Normal file
|
@ -0,0 +1,76 @@
|
|||
/**
|
||||
*
|
||||
* StyleClass manages css classes declaratively to during enter/leave animations or just to toggle classes on an element.
|
||||
*
|
||||
* [Live Demo](https://primevue.org/styleclass)
|
||||
*
|
||||
* @module styleclass
|
||||
*/
|
||||
import { DirectiveBinding, ObjectDirective } from 'vue';
|
||||
|
||||
/**
|
||||
* Defines options of StyleClass.
|
||||
*/
|
||||
export interface StyleClassOptions {
|
||||
/**
|
||||
* Selector to define the target element. Available selectors are '@next', '@prev', '@parent' and '@grandparent'.
|
||||
*/
|
||||
selector?: '@next' | '@prev' | '@parent' | '@grandparent' | string | undefined;
|
||||
/**
|
||||
* Style class to add when item begins to get displayed.
|
||||
*/
|
||||
enterClassName?: string | undefined;
|
||||
/**
|
||||
* Style class to add during enter animation.
|
||||
*/
|
||||
enterActiveClassName?: string | undefined;
|
||||
/**
|
||||
* Style class to add when item begins to get displayed.
|
||||
*/
|
||||
enterToClassName?: string | undefined;
|
||||
/**
|
||||
* Style class to add when item begins to get hidden.
|
||||
*/
|
||||
leaveClassName?: string | undefined;
|
||||
/**
|
||||
* Style class to add during leave animation.
|
||||
*/
|
||||
leaveActiveClassName?: string | undefined;
|
||||
/**
|
||||
* Style class to add when leave animation is completed.
|
||||
*/
|
||||
leaveToClassName?: string | undefined;
|
||||
/**
|
||||
* Whether to trigger leave animation when outside of the element is clicked.
|
||||
* @defaultValue false
|
||||
*/
|
||||
hideOnOutsideClick?: boolean | undefined;
|
||||
/**
|
||||
* Adds or removes a class when no enter-leave animation is required.
|
||||
*/
|
||||
toggleClass?: string | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Binding of StyleClass directive.
|
||||
*/
|
||||
export interface StyleClassDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {
|
||||
/**
|
||||
* Value of the StyleClass.
|
||||
*/
|
||||
value?: StyleClassOptions | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* **PrimeVue - StyleClass**
|
||||
*
|
||||
* _StyleClass manages css classes declaratively to during enter/leave animations or just to toggle classes on an element._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/styleclass/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
*/
|
||||
declare const StyleClass: ObjectDirective;
|
||||
|
||||
export default StyleClass;
|
Loading…
Add table
Add a link
Reference in a new issue