worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
113
node_modules/@mui/material/esm/MobileStepper/MobileStepper.d.ts
generated
vendored
Normal file
113
node_modules/@mui/material/esm/MobileStepper/MobileStepper.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { InternalStandardProps as StandardProps } from "../internal/index.js";
|
||||
import { PaperProps } from "../Paper/index.js";
|
||||
import { LinearProgressProps } from "../LinearProgress/index.js";
|
||||
import { MobileStepperClasses } from "./mobileStepperClasses.js";
|
||||
import { CreateSlotsAndSlotProps, SlotProps } from "../utils/types.js";
|
||||
export interface MobileStepperSlots {
|
||||
/**
|
||||
* The component that renders the root slot.
|
||||
* @default Paper
|
||||
*/
|
||||
root: React.ElementType;
|
||||
/**
|
||||
* The component that renders the progress slot.
|
||||
* @default LinearProgress
|
||||
*/
|
||||
progress: React.ElementType;
|
||||
/**
|
||||
* The component that renders the dots slot.
|
||||
* @default 'div'
|
||||
*/
|
||||
dots: React.ElementType;
|
||||
/**
|
||||
* The component that renders the dot slot.
|
||||
* @default 'div'
|
||||
*/
|
||||
dot: React.ElementType;
|
||||
}
|
||||
export interface MobileStepperRootSlotPropsOverrides {}
|
||||
export interface MobileStepperProgressSlotPropsOverrides {}
|
||||
export interface MobileStepperDotsSlotPropsOverrides {}
|
||||
export interface MobileStepperDotSlotPropsOverrides {}
|
||||
export type MobileStepperSlotsAndSlotProps = CreateSlotsAndSlotProps<MobileStepperSlots, {
|
||||
/**
|
||||
* Props forwarded to the root slot.
|
||||
* By default, the avaible props are based on the [Paper](https://mui.com/material-ui/api/paper/#props) component.
|
||||
*/
|
||||
root: SlotProps<React.ElementType<PaperProps>, MobileStepperRootSlotPropsOverrides, MobileStepperOwnerState>;
|
||||
/**
|
||||
* Props forwarded to the progress slot.
|
||||
* By default, the avaible props are based on the [LinearProgress](https://mui.com/material-ui/api/linear-progress/#props) component.
|
||||
*/
|
||||
progress: SlotProps<React.ElementType<LinearProgressProps>, MobileStepperProgressSlotPropsOverrides, MobileStepperOwnerState>;
|
||||
/**
|
||||
* Props forwarded to the dots slot.
|
||||
* By default, the avaible props are based on the div element.
|
||||
*/
|
||||
dots: SlotProps<'div', MobileStepperDotsSlotPropsOverrides, MobileStepperOwnerState>;
|
||||
/**
|
||||
* Props forwarded to the dot slot.
|
||||
* By default, the avaible props are based on the div element.
|
||||
*/
|
||||
dot: SlotProps<'div', MobileStepperDotSlotPropsOverrides, MobileStepperOwnerState>;
|
||||
}>;
|
||||
export interface MobileStepperProps extends StandardProps<PaperProps, 'children' | 'variant'>, MobileStepperSlotsAndSlotProps {
|
||||
/**
|
||||
* Set the active step (zero based index).
|
||||
* Defines which dot is highlighted when the variant is 'dots'.
|
||||
* @default 0
|
||||
*/
|
||||
activeStep?: number;
|
||||
/**
|
||||
* A back button element. For instance, it can be a `Button` or an `IconButton`.
|
||||
*/
|
||||
backButton: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<MobileStepperClasses>;
|
||||
/**
|
||||
* Props applied to the `LinearProgress` element.
|
||||
* @deprecated Use `slotProps.progress` instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
*/
|
||||
LinearProgressProps?: Partial<LinearProgressProps>;
|
||||
/**
|
||||
* A next button element. For instance, it can be a `Button` or an `IconButton`.
|
||||
*/
|
||||
nextButton: React.ReactNode;
|
||||
/**
|
||||
* Set the positioning type.
|
||||
* @default 'bottom'
|
||||
*/
|
||||
position?: 'bottom' | 'top' | 'static';
|
||||
/**
|
||||
* The total steps.
|
||||
*/
|
||||
steps: number;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
/**
|
||||
* The variant to use.
|
||||
* @default 'dots'
|
||||
*/
|
||||
variant?: 'text' | 'dots' | 'progress';
|
||||
}
|
||||
export interface MobileStepperOwnerState extends Omit<MobileStepperProps, 'slots' | 'slotProps'> {}
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Stepper](https://mui.com/material-ui/react-stepper/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [MobileStepper API](https://mui.com/material-ui/api/mobile-stepper/)
|
||||
* - inherits [Paper API](https://mui.com/material-ui/api/paper/)
|
||||
*/
|
||||
export default function MobileStepper(props: MobileStepperProps): React.JSX.Element;
|
||||
Loading…
Add table
Add a link
Reference in a new issue