Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100953073
FilledInput.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
Tue, Feb 4, 06:31
Size
1 KB
Mime Type
text/x-java
Expires
Thu, Feb 6, 06:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24062958
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
FilledInput.d.ts
View Options
import { SxProps } from '@mui/system';
import { InternalStandardProps as StandardProps, Theme } from '..';
import { InputBaseProps } from '../InputBase';
import { FilledInputClasses } from './filledInputClasses';
export interface FilledInputProps extends StandardProps<InputBaseProps> {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<FilledInputClasses>;
/**
* If `true`, the label is hidden.
* This is used to increase density for a `FilledInput`.
* Be sure to add `aria-label` to the `input` element.
* @default false
*/
hiddenLabel?: boolean;
/**
* If `true`, the input will not have an underline.
*/
disableUnderline?: boolean;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
/**
*
* Demos:
*
* - [Text Field](https://mui.com/material-ui/react-text-field/)
*
* API:
*
* - [FilledInput API](https://mui.com/material-ui/api/filled-input/)
* - inherits [InputBase API](https://mui.com/material-ui/api/input-base/)
*/
declare const FilledInput: ((props: FilledInputProps) => JSX.Element) & { muiName: string };
export default FilledInput;
Event Timeline
Log In to Comment