Mission Control Dashboard - Initial implementation
This commit is contained in:
20
node_modules/motion-dom/dist/es/render/svg/utils/scrape-motion-values.mjs
generated
vendored
Normal file
20
node_modules/motion-dom/dist/es/render/svg/utils/scrape-motion-values.mjs
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { isMotionValue } from '../../../value/utils/is-motion-value.mjs';
|
||||
import { transformPropOrder } from '../../utils/keys-transform.mjs';
|
||||
import { scrapeMotionValuesFromProps as scrapeMotionValuesFromProps$1 } from '../../html/utils/scrape-motion-values.mjs';
|
||||
|
||||
function scrapeMotionValuesFromProps(props, prevProps, visualElement) {
|
||||
const newValues = scrapeMotionValuesFromProps$1(props, prevProps, visualElement);
|
||||
for (const key in props) {
|
||||
if (isMotionValue(props[key]) ||
|
||||
isMotionValue(prevProps[key])) {
|
||||
const targetKey = transformPropOrder.indexOf(key) !== -1
|
||||
? "attr" + key.charAt(0).toUpperCase() + key.substring(1)
|
||||
: key;
|
||||
newValues[targetKey] = props[key];
|
||||
}
|
||||
}
|
||||
return newValues;
|
||||
}
|
||||
|
||||
export { scrapeMotionValuesFromProps };
|
||||
//# sourceMappingURL=scrape-motion-values.mjs.map
|
||||
Reference in New Issue
Block a user