worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
51
node_modules/@mui/material/esm/StepButton/StepButton.d.ts
generated
vendored
Normal file
51
node_modules/@mui/material/esm/StepButton/StepButton.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { ButtonBaseTypeMap, ExtendButtonBase, ExtendButtonBaseTypeMap } from "../ButtonBase/index.js";
|
||||
import { OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { StepButtonClasses } from "./stepButtonClasses.js";
|
||||
export interface StepButtonOwnProps {
|
||||
/**
|
||||
* Can be a `StepLabel` or a node to place inside `StepLabel` as children.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<StepButtonClasses>;
|
||||
/**
|
||||
* The icon displayed by the step label.
|
||||
*/
|
||||
icon?: React.ReactNode;
|
||||
/**
|
||||
* The optional node to display.
|
||||
*/
|
||||
optional?: React.ReactNode;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
export type StepButtonTypeMap<AdditionalProps, RootComponent extends React.ElementType> = ExtendButtonBaseTypeMap<{
|
||||
props: AdditionalProps & StepButtonOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
ignoredProps: 'disabled';
|
||||
}>;
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Stepper](https://mui.com/material-ui/react-stepper/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [StepButton API](https://mui.com/material-ui/api/step-button/)
|
||||
* - inherits [ButtonBase API](https://mui.com/material-ui/api/button-base/)
|
||||
*/
|
||||
declare const StepButton: ExtendButtonBase<StepButtonTypeMap<{}, ButtonBaseTypeMap['defaultComponent']>>;
|
||||
export type StepButtonClasskey = keyof NonNullable<StepButtonProps['classes']>;
|
||||
export type StepButtonProps<RootComponent extends React.ElementType = ButtonBaseTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<StepButtonTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default StepButton;
|
||||
Loading…
Add table
Add a link
Reference in a new issue