qstd 0.3.31 → 0.3.32
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/react/index.cjs +1 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
package/dist/react/index.cjs
CHANGED
|
@@ -553,7 +553,7 @@ var tags = {
|
|
|
553
553
|
blockquote: styled("blockquote"),
|
|
554
554
|
pre: styled("pre")
|
|
555
555
|
};
|
|
556
|
-
var motionStyled = (tag) => framerMotion.motion(styled(tag));
|
|
556
|
+
var motionStyled = (tag) => framerMotion.motion.create(styled(tag));
|
|
557
557
|
var motionTags = {
|
|
558
558
|
div: motionStyled("div"),
|
|
559
559
|
a: motionStyled("a"),
|
package/dist/react/index.js
CHANGED
|
@@ -530,7 +530,7 @@ var tags = {
|
|
|
530
530
|
blockquote: styled("blockquote"),
|
|
531
531
|
pre: styled("pre")
|
|
532
532
|
};
|
|
533
|
-
var motionStyled = (tag) => motion(styled(tag));
|
|
533
|
+
var motionStyled = (tag) => motion.create(styled(tag));
|
|
534
534
|
var motionTags = {
|
|
535
535
|
div: motionStyled("div"),
|
|
536
536
|
a: motionStyled("a"),
|