Hex Core JS
    Preparing search index...

    Type Alias CSSTransitionProps<Ref>

    CSSTransitionProps: {
        addEndListener?: (node: HTMLElement, done: () => void) => void & (
            done: () => void,
        ) => void;
        classNames?:
            | string
            | Partial<
                {
                    appear: string;
                    appearActive: string;
                    appearDone: string;
                    enter: string;
                    enterActive: string;
                    enterDone: string;
                    exit: string;
                    exitActive: string;
                    exitDone: string;
                },
            >;
        condition?: boolean;
        mountOnEnter?: boolean;
        nodeRef?: React.RefObject<Ref>;
        onEnter?: () => void;
        onEntered?: () => void;
        onEntering?: () => void;
        onExit?: () => void;
        onExited?: () => void;
        onExiting?: () => void;
        timeoutMS: number;
        unmountOnExit?: boolean;
    } & Partial<ChildrenProps>

    Type Parameters

    • Ref extends HTMLElement | undefined