Update StyleClass.d.ts

pull/4572/head
Tuğçe Küçükoğlu 2023-10-13 13:32:57 +03:00
parent 8ae55214d8
commit 11f06ee3ae
1 changed files with 6 additions and 6 deletions

View File

@ -22,27 +22,27 @@ export interface StyleClassOptions {
/** /**
* Style class to add when item begins to get displayed. * Style class to add when item begins to get displayed.
*/ */
enterClassName?: string | undefined; enterClass?: string | undefined;
/** /**
* Style class to add during enter animation. * Style class to add during enter animation.
*/ */
enterActiveClassName?: string | undefined; enterActiveClass?: string | undefined;
/** /**
* Style class to add when item begins to get displayed. * Style class to add when item begins to get displayed.
*/ */
enterToClassName?: string | undefined; enterToClass?: string | undefined;
/** /**
* Style class to add when item begins to get hidden. * Style class to add when item begins to get hidden.
*/ */
leaveClassName?: string | undefined; leaveClass?: string | undefined;
/** /**
* Style class to add during leave animation. * Style class to add during leave animation.
*/ */
leaveActiveClassName?: string | undefined; leaveActiveClass?: string | undefined;
/** /**
* Style class to add when leave animation is completed. * Style class to add when leave animation is completed.
*/ */
leaveToClassName?: string | undefined; leaveToClass?: string | undefined;
/** /**
* Whether to trigger leave animation when outside of the element is clicked. * Whether to trigger leave animation when outside of the element is clicked.
* @defaultValue false * @defaultValue false