export { useCssVars } from './helpers/useCssVars'
// DOM-only components
-export {
- Transition,
- type TransitionProps,
- forceReflow,
- addTransitionClass,
- removeTransitionClass,
-} from './components/Transition'
-export type { ElementWithTransition } from './components/Transition'
+export { Transition, type TransitionProps } from './components/Transition'
export {
TransitionGroup,
type TransitionGroupProps,
- hasCSSTransform,
- callPendingCbs,
- moveCbKey,
- handleMovedChildren,
- baseApplyTranslation,
} from './components/TransitionGroup'
// **Internal** DOM-only runtime directive helpers
export {
resolveTransitionProps,
TransitionPropsValidators,
+ forceReflow,
+ addTransitionClass,
+ removeTransitionClass,
+ type ElementWithTransition,
} from './components/Transition'
+/**
+ * @internal
+ */
+export {
+ hasCSSTransform,
+ callPendingCbs,
+ moveCbKey,
+ handleMovedChildren,
+ baseApplyTranslation,
+} from './components/TransitionGroup'