1
0
Fork 0

worked on GarageApp stuff

This commit is contained in:
Techognito 2025-08-25 17:46:11 +02:00
parent 60aaf17af3
commit eb606572b0
51919 changed files with 2168177 additions and 18 deletions

49
node_modules/@mui/material/esm/Grow/Grow.d.ts generated vendored Normal file
View file

@ -0,0 +1,49 @@
import * as React from 'react';
import { TransitionProps } from "../transitions/transition.js";
export interface GrowProps extends Omit<TransitionProps, 'timeout'> {
/**
* Perform the enter transition when it first mounts if `in` is also `true`.
* Set this to `false` to disable this behavior.
* @default true
*/
appear?: boolean;
/**
* A single child content element.
*/
children: React.ReactElement<unknown, any>;
/**
* The transition timing function.
* You may specify a single easing or a object containing enter and exit values.
*/
easing?: TransitionProps['easing'];
/**
* If `true`, the component will transition in.
*/
in?: boolean;
ref?: React.Ref<unknown>;
/**
* The duration for the transition, in milliseconds.
* You may specify a single timeout for all transitions, or individually with an object.
*
* Set to 'auto' to automatically calculate transition time based on height.
* @default 'auto'
*/
timeout?: TransitionProps['timeout'] | 'auto';
}
/**
* The Grow transition is used by the [Tooltip](https://mui.com/material-ui/react-tooltip/) and
* [Popover](https://mui.com/material-ui/react-popover/) components.
* It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.
*
* Demos:
*
* - [Popover](https://mui.com/material-ui/react-popover/)
* - [Transitions](https://mui.com/material-ui/transitions/)
*
* API:
*
* - [Grow API](https://mui.com/material-ui/api/grow/)
* - inherits [Transition API](https://reactcommunity.org/react-transition-group/transition/#Transition-props)
*/
export default function Grow(props: GrowProps): React.JSX.Element;