worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
79
node_modules/@mui/material/InputLabel/InputLabel.d.ts
generated
vendored
Normal file
79
node_modules/@mui/material/InputLabel/InputLabel.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { OverridableStringUnion } from '@mui/types';
|
||||
import { FormLabelProps, ExtendFormLabelTypeMap } from "../FormLabel/index.js";
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { InputLabelClasses } from "./inputLabelClasses.js";
|
||||
import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
|
||||
export interface InputLabelPropsSizeOverrides {}
|
||||
export interface InputLabelOwnProps extends Pick<FormLabelProps, 'children'> {
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<InputLabelClasses>;
|
||||
color?: FormLabelProps['color'];
|
||||
/**
|
||||
* If `true`, the transition animation is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disableAnimation?: boolean;
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
*/
|
||||
disabled?: boolean;
|
||||
/**
|
||||
* If `true`, the label is displayed in an error state.
|
||||
*/
|
||||
error?: boolean;
|
||||
/**
|
||||
* If `true`, the `input` of this label is focused.
|
||||
*/
|
||||
focused?: boolean;
|
||||
/**
|
||||
* If `dense`, will adjust vertical spacing. This is normally obtained via context from
|
||||
* FormControl.
|
||||
*/
|
||||
margin?: 'dense';
|
||||
/**
|
||||
* if `true`, the label will indicate that the `input` is required.
|
||||
*/
|
||||
required?: boolean;
|
||||
/**
|
||||
* If `true`, the label is shrunk.
|
||||
*/
|
||||
shrink?: boolean;
|
||||
/**
|
||||
* The size of the component.
|
||||
* @default 'medium'
|
||||
*/
|
||||
size?: OverridableStringUnion<'small' | 'medium', InputLabelPropsSizeOverrides>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
/**
|
||||
* The variant to use.
|
||||
*/
|
||||
variant?: 'standard' | 'outlined' | 'filled';
|
||||
}
|
||||
export type InputLabelTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'label'> = ExtendFormLabelTypeMap<{
|
||||
props: AdditionalProps & InputLabelOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}>;
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Text Field](https://mui.com/material-ui/react-text-field/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [InputLabel API](https://mui.com/material-ui/api/input-label/)
|
||||
* - inherits [FormLabel API](https://mui.com/material-ui/api/form-label/)
|
||||
*/
|
||||
declare const InputLabel: OverridableComponent<InputLabelTypeMap>;
|
||||
export type InputLabelProps<RootComponent extends React.ElementType = InputLabelTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<InputLabelTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default InputLabel;
|
||||
Loading…
Add table
Add a link
Reference in a new issue