diff --git a/CHANGELOG.md b/CHANGELOG.md index b03018ba15..d697b28104 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ Motion adheres to [Semantic Versioning](http://semver.org/). Undocumented APIs should be considered internal and may change without warning. +## [12.30.0] 2026-02-02 + +### Added + +- `MotionConfig`: Add `skipAnimations` option. + +### Fixed + +- `animate`: Prevent error when calling `stop()` on removed elements. +- `animateLayout`: Fixing shared element animations when `animate` called before `animateLayout`. + ## [12.29.3] 2026-02-02 ### Fixed diff --git a/dev/html/package.json b/dev/html/package.json index 4ce792b5d4..d58ab3e796 100644 --- a/dev/html/package.json +++ b/dev/html/package.json @@ -1,7 +1,7 @@ { "name": "html-env", "private": true, - "version": "12.29.3", + "version": "12.30.0", "type": "module", "scripts": { "dev": "vite", @@ -10,9 +10,9 @@ "preview": "vite preview" }, "dependencies": { - "framer-motion": "^12.29.3", - "motion": "^12.29.3", - "motion-dom": "^12.29.2", + "framer-motion": "^12.30.0", + "motion": "^12.30.0", + "motion-dom": "^12.30.0", "react": "^18.3.1", "react-dom": "^18.3.1" }, diff --git a/dev/html/public/animate-layout/modal-open-after-animate.html b/dev/html/public/animate-layout/modal-open-after-animate.html new file mode 100644 index 0000000000..ce99e5f8ff --- /dev/null +++ b/dev/html/public/animate-layout/modal-open-after-animate.html @@ -0,0 +1,243 @@ + +
+ + + +