Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100091691
Zoom.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
Tue, Jan 28, 03:40
Size
1 KB
Mime Type
text/x-java
Expires
Thu, Jan 30, 03:40 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23874357
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Zoom.d.ts
View Options
import * as React from 'react';
import { TransitionProps } from '../transitions/transition';
export interface ZoomProps extends TransitionProps {
/**
* 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.
* @default {
* enter: theme.transitions.duration.enteringScreen,
* exit: theme.transitions.duration.leavingScreen,
* }
*/
timeout?: TransitionProps['timeout'];
}
/**
* The Zoom transition can be used for the floating variant of the
* [Button](https://mui.com/material-ui/react-button/#floating-action-buttons) component.
* It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.
*
* Demos:
*
* - [Transitions](https://mui.com/material-ui/transitions/)
*
* API:
*
* - [Zoom API](https://mui.com/material-ui/api/zoom/)
* - inherits [Transition API](http://reactcommunity.org/react-transition-group/transition/#Transition-props)
*/
export default function Zoom(props: ZoomProps): JSX.Element;
Event Timeline
Log In to Comment