Skip to content

Commit

Permalink
try ignore command
Browse files Browse the repository at this point in the history
  • Loading branch information
sai6855 committed Jan 13, 2025
1 parent 5567dce commit 89a2570
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions packages/mui-material/src/Input/inputClasses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 89a2570

Please sign in to comment.