motion-v 1.0.0-alpha.1 → 1.0.0-alpha.2
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/index.js
CHANGED
|
@@ -5887,7 +5887,7 @@ class AnimationFeature extends Feature {
|
|
|
5887
5887
|
directTransition
|
|
5888
5888
|
});
|
|
5889
5889
|
const factories = this.createAnimationFactories(prevTarget, animationOptions, controlDelay);
|
|
5890
|
-
const { getChildAnimations, childAnimations } = this.setupChildAnimations(animationOptions,
|
|
5890
|
+
const { getChildAnimations, childAnimations } = this.setupChildAnimations(animationOptions, this.state.activeStates, isFallback);
|
|
5891
5891
|
return this.executeAnimations({
|
|
5892
5892
|
factories,
|
|
5893
5893
|
getChildAnimations,
|
|
@@ -34,7 +34,7 @@ class AnimationFeature extends Feature {
|
|
|
34
34
|
directTransition
|
|
35
35
|
});
|
|
36
36
|
const factories = this.createAnimationFactories(prevTarget, animationOptions, controlDelay);
|
|
37
|
-
const { getChildAnimations, childAnimations } = this.setupChildAnimations(animationOptions,
|
|
37
|
+
const { getChildAnimations, childAnimations } = this.setupChildAnimations(animationOptions, this.state.activeStates, isFallback);
|
|
38
38
|
return this.executeAnimations({
|
|
39
39
|
factories,
|
|
40
40
|
getChildAnimations,
|