Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99961554
InputLabel.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jan 27, 11:56
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Jan 29, 11:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23859401
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
InputLabel.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { OverridableStringUnion } from '@mui/types';
import { InternalStandardProps as StandardProps } from '..';
import { FormLabelProps } from '../FormLabel';
import { Theme } from '../styles';
import { InputLabelClasses } from './inputLabelClasses';
export interface InputLabelPropsSizeOverrides {}
export interface InputLabelProps extends StandardProps<FormLabelProps> {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* 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 'normal'
*/
size?: OverridableStringUnion<'small' | 'normal', 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';
}
/**
*
* 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/)
*/
export default function InputLabel(props: InputLabelProps): JSX.Element;
Event Timeline
Log In to Comment