File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ Motion adheres to [Semantic Versioning](http://semver.org/).
44
55Undocumented APIs should be considered internal and may change without warning.
66
7+ ## [ 12.23.23] 2025-10-10
8+
9+ ### Added
10+
11+ - Exporting ` PresenceChild ` and ` PopChild ` type for internal use.
12+
713## [ 12.23.22] 2025-09-25
814
915### Added
Original file line number Diff line number Diff line change 33 */
44export type * from "./animation/types"
55export { AnimatePresence } from "./components/AnimatePresence"
6+ export { PopChild } from "./components/AnimatePresence/PopChild"
7+ export { PresenceChild } from "./components/AnimatePresence/PresenceChild"
68export { LayoutGroup } from "./components/LayoutGroup"
79export { LazyMotion } from "./components/LazyMotion"
810export { MotionConfig } from "./components/MotionConfig"
Original file line number Diff line number Diff line change @@ -71,8 +71,6 @@ export function attachSpring<T extends AnyResolvedKeyframe>(
7171 latestSetter = ( latest ) => set ( parseValue ( latest , unit ) as T )
7272
7373 frame . postRender ( startAnimation )
74-
75- return value . get ( )
7674 } , stopAnimation )
7775
7876 if ( isMotionValue ( source ) ) {
You can’t perform that action at this time.
0 commit comments