Mission Control Dashboard - Initial implementation
This commit is contained in:
12
node_modules/motion-dom/dist/es/animation/animate/single-value.mjs
generated
vendored
Normal file
12
node_modules/motion-dom/dist/es/animation/animate/single-value.mjs
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import { animateMotionValue } from '../interfaces/motion-value.mjs';
|
||||
import { motionValue } from '../../value/index.mjs';
|
||||
import { isMotionValue } from '../../value/utils/is-motion-value.mjs';
|
||||
|
||||
function animateSingleValue(value, keyframes, options) {
|
||||
const motionValue$1 = isMotionValue(value) ? value : motionValue(value);
|
||||
motionValue$1.start(animateMotionValue("", motionValue$1, keyframes, options));
|
||||
return motionValue$1.animation;
|
||||
}
|
||||
|
||||
export { animateSingleValue };
|
||||
//# sourceMappingURL=single-value.mjs.map
|
||||
Reference in New Issue
Block a user