paradiego
This commit is contained in:
1
node_modules/@mui/material/modern/transitions/index.js
generated
vendored
Normal file
1
node_modules/@mui/material/modern/transitions/index.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from "./transition.js";
|
||||
1
node_modules/@mui/material/modern/transitions/transition.js
generated
vendored
Normal file
1
node_modules/@mui/material/modern/transitions/transition.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
||||
13
node_modules/@mui/material/modern/transitions/utils.js
generated
vendored
Normal file
13
node_modules/@mui/material/modern/transitions/utils.js
generated
vendored
Normal 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
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user