Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100887434
Grow.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 3, 15:30
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Feb 5, 15:30 (2 d)
Engine
blob
Format
Raw Data
Handle
24051037
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Grow.d.ts
View Options
import * as React from 'react';
import { TransitionProps } from '../transitions/transition';
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<any, 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](http://reactcommunity.org/react-transition-group/transition/#Transition-props)
*/
export default function Grow(props: GrowProps): JSX.Element;
Event Timeline
Log In to Comment