18 lines
609 B
JavaScript
18 lines
609 B
JavaScript
import { isVariantLabel } from '../../render/utils/is-variant-label.mjs';
|
|
import { isControllingVariants } from '../../render/utils/is-controlling-variants.mjs';
|
|
|
|
function getCurrentTreeVariants(props, context) {
|
|
if (isControllingVariants(props)) {
|
|
const { initial, animate } = props;
|
|
return {
|
|
initial: initial === false || isVariantLabel(initial)
|
|
? initial
|
|
: undefined,
|
|
animate: isVariantLabel(animate) ? animate : undefined,
|
|
};
|
|
}
|
|
return props.inherit !== false ? context : {};
|
|
}
|
|
|
|
export { getCurrentTreeVariants };
|