]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: update export
authordaiwei <daiwei521@126.com>
Mon, 17 Mar 2025 03:19:59 +0000 (11:19 +0800)
committerdaiwei <daiwei521@126.com>
Mon, 17 Mar 2025 03:19:59 +0000 (11:19 +0800)
packages/runtime-dom/src/index.ts

index 521bb46498a275b58d3c11f951b3712fed37d38d..8a475892c22851faaead7b2174183210430495f9 100644 (file)
@@ -271,22 +271,10 @@ export { useCssModule } from './helpers/useCssModule'
 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
@@ -366,4 +354,18 @@ export {
 export {
   resolveTransitionProps,
   TransitionPropsValidators,
+  forceReflow,
+  addTransitionClass,
+  removeTransitionClass,
+  type ElementWithTransition,
 } from './components/Transition'
+/**
+ * @internal
+ */
+export {
+  hasCSSTransform,
+  callPendingCbs,
+  moveCbKey,
+  handleMovedChildren,
+  baseApplyTranslation,
+} from './components/TransitionGroup'