From 89a2570879289c9af16cfe003ef38e25e52bee28 Mon Sep 17 00:00:00 2001 From: sai6855 Date: Mon, 13 Jan 2025 19:01:59 +0530 Subject: [PATCH] try ignore command --- .../mui-material/src/Input/inputClasses.ts | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/packages/mui-material/src/Input/inputClasses.ts b/packages/mui-material/src/Input/inputClasses.ts index 6a81c8b3294137..1b42da32f18be2 100644 --- a/packages/mui-material/src/Input/inputClasses.ts +++ b/packages/mui-material/src/Input/inputClasses.ts @@ -5,16 +5,56 @@ import { inputBaseClasses } from '../InputBase'; export interface InputClasses { /** Styles applied to the root element. */ root: string; + /** Styles applied to the root element if the component is a descendant of `FormControl`. + * @ignore + */ + formControl: string; /** Styles applied to the root element if the component is focused. */ focused: string; /** Styles applied to the root element if `disabled={true}`. */ disabled: string; + /** Styles applied to the root element if color secondary. + * @ignore + */ + colorSecondary: string; /** Styles applied to the root element unless `disableUnderline={true}`. */ underline: string; /** State class applied to the root element if `error={true}`. */ error: string; + /** Styles applied to the input element if `size="small"`. + * @ignore + */ + sizeSmall: string; + /** Styles applied to the root element if `multiline={true}`. + * @ignore + */ + multiline: string; + /** Styles applied to the root element if `fullWidth={true}`. + * @ignore + */ + fullWidth: string; /** Styles applied to the input element. */ input: string; + /** Styles applied to the input element if `size="small"`. + * @ignore + */ + inputSizeSmall: string; + /** Styles applied to the input element if `multiline={true}`. + * @ignore + */ + inputMultiline: string; + /** Styles applied to the input element if `startAdornment` is provided. + * @ignore + */ + inputAdornedStart: string; + /** Styles applied to the input element if `endAdornment` is provided. + * @ignore + */ + inputAdornedEnd: string; + /** Styles applied to the input element if `type="search"`. + * @ignore + */ + inputTypeSearch: string; } export type InputClassKey = keyof InputClasses;