paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

View File

@@ -0,0 +1 @@
export * from "./transition.js";

View File

@@ -0,0 +1 @@
export {};

13
node_modules/@mui/material/modern/transitions/utils.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
export const reflow = node => node.scrollTop;
export function getTransitionProps(props, options) {
const {
timeout,
easing,
style = {}
} = props;
return {
duration: style.transitionDuration ?? (typeof timeout === 'number' ? timeout : timeout[options.mode] || 0),
easing: style.transitionTimingFunction ?? (typeof easing === 'object' ? easing[options.mode] : easing),
delay: style.transitionDelay
};
}