Skip to content

Commit 834965c

Browse files
committed
Updating changelog
1 parent 4069086 commit 834965c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Motion adheres to [Semantic Versioning](http://semver.org/).
44

55
Undocumented 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

packages/framer-motion/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
*/
44
export type * from "./animation/types"
55
export { AnimatePresence } from "./components/AnimatePresence"
6+
export { PopChild } from "./components/AnimatePresence/PopChild"
7+
export { PresenceChild } from "./components/AnimatePresence/PresenceChild"
68
export { LayoutGroup } from "./components/LayoutGroup"
79
export { LazyMotion } from "./components/LazyMotion"
810
export { MotionConfig } from "./components/MotionConfig"

packages/motion-dom/src/value/spring-value.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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)) {

0 commit comments

Comments
 (0)