framer-motion 11.2.3 → 11.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{dom-entry-CCyDjnwB.js → dom-entry-B8v-FJGg.js} +2 -2
- package/dist/cjs/dom-entry.js +1 -1
- package/dist/cjs/index.js +25 -18
- package/dist/dom.js +1 -1
- package/dist/es/render/utils/motion-values.mjs +1 -1
- package/dist/es/value/index.mjs +1 -1
- package/dist/es/value/use-spring.mjs +25 -18
- package/dist/framer-motion.dev.js +26 -19
- package/dist/framer-motion.js +1 -1
- package/dist/projection.dev.js +2 -2
- package/package.json +2 -2
package/dist/projection.dev.js
CHANGED
|
@@ -1013,7 +1013,7 @@
|
|
|
1013
1013
|
* This will be replaced by the build step with the latest version number.
|
|
1014
1014
|
* When MotionValues are provided to motion components, warn if versions are mixed.
|
|
1015
1015
|
*/
|
|
1016
|
-
this.version = "11.2.
|
|
1016
|
+
this.version = "11.2.4";
|
|
1017
1017
|
/**
|
|
1018
1018
|
* Tracks whether this value can output a velocity. Currently this is only true
|
|
1019
1019
|
* if the value is numerical, but we might be able to widen the scope here and support
|
|
@@ -4042,7 +4042,7 @@
|
|
|
4042
4042
|
* and warn against mismatches.
|
|
4043
4043
|
*/
|
|
4044
4044
|
{
|
|
4045
|
-
warnOnce(nextValue.version === "11.2.
|
|
4045
|
+
warnOnce(nextValue.version === "11.2.4", `Attempting to mix Framer Motion versions ${nextValue.version} with 11.2.4 may not work as expected.`);
|
|
4046
4046
|
}
|
|
4047
4047
|
}
|
|
4048
4048
|
else if (isMotionValue(prevValue)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "framer-motion",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.4",
|
|
4
4
|
"description": "A simple and powerful JavaScript animation library",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/es/index.mjs",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"maxSize": "34.1 kB"
|
|
119
119
|
}
|
|
120
120
|
],
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "9179b930cdae6e6da4662a9da090b49ce99fd8a3"
|
|
122
122
|
}
|