Jesus sucks
This commit is contained in:
56
backend/frontend/node_modules/@mui/material/StepContent/StepContent.d.ts
generated
vendored
Normal file
56
backend/frontend/node_modules/@mui/material/StepContent/StepContent.d.ts
generated
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { InternalStandardProps as StandardProps } from '..';
|
||||
import { Theme } from '../styles';
|
||||
import { TransitionProps } from '../transitions/transition';
|
||||
import { StepContentClasses } from './stepContentClasses';
|
||||
|
||||
export interface StepContentProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<StepContentClasses>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
/**
|
||||
* The component used for the transition.
|
||||
* [Follow this guide](/material-ui/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.
|
||||
* @default Collapse
|
||||
*/
|
||||
TransitionComponent?: React.JSXElementConstructor<
|
||||
TransitionProps & { children: React.ReactElement<any, any> }
|
||||
>;
|
||||
/**
|
||||
* Adjust the duration of the content expand transition.
|
||||
* Passed as a prop to the transition component.
|
||||
*
|
||||
* Set to 'auto' to automatically calculate transition time based on height.
|
||||
* @default 'auto'
|
||||
*/
|
||||
transitionDuration?: TransitionProps['timeout'] | 'auto';
|
||||
/**
|
||||
* Props applied to the transition element.
|
||||
* By default, the element is based on this [`Transition`](https://reactcommunity.org/react-transition-group/transition/) component.
|
||||
*/
|
||||
TransitionProps?: TransitionProps;
|
||||
}
|
||||
|
||||
export type StepContentClasskey = keyof NonNullable<StepContentProps['classes']>;
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Stepper](https://mui.com/material-ui/react-stepper/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [StepContent API](https://mui.com/material-ui/api/step-content/)
|
||||
*/
|
||||
export default function StepContent(props: StepContentProps): React.JSX.Element;
|
||||
Reference in New Issue
Block a user