worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
30
node_modules/@mui/material/FilledInput/filledInputClasses.d.ts
generated
vendored
Normal file
30
node_modules/@mui/material/FilledInput/filledInputClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
export interface FilledInputClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element if color secondary. */
|
||||
colorSecondary: string;
|
||||
/** Styles applied to the root element unless `disableUnderline={true}`. */
|
||||
underline: string;
|
||||
/** State class applied to the root element if the component is focused. */
|
||||
focused: string;
|
||||
/** State class applied to the root element if `disabled={true}`. */
|
||||
disabled: string;
|
||||
/** Styles applied to the root element if `startAdornment` is provided. */
|
||||
adornedStart: string;
|
||||
/** Styles applied to the root element if `endAdornment` is provided. */
|
||||
adornedEnd: string;
|
||||
/** State class applied to the root element if `error={true}`. */
|
||||
error: string;
|
||||
/** Styles applied to the root element if `size="small"`. */
|
||||
sizeSmall: string;
|
||||
/** Styles applied to the root element if `multiline={true}`. */
|
||||
multiline: string;
|
||||
/** Styles applied to the root element if `hiddenLabel={true}`. */
|
||||
hiddenLabel: string;
|
||||
/** Styles applied to the input element. */
|
||||
input: string;
|
||||
}
|
||||
export type FilledInputClassKey = keyof FilledInputClasses;
|
||||
export declare function getFilledInputUtilityClass(slot: string): string;
|
||||
declare const filledInputClasses: FilledInputClasses;
|
||||
export default filledInputClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue