Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98196267
FormHelperText.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
Fri, Jan 10, 22:51
Size
2 KB
Mime Type
text/x-java
Expires
Sun, Jan 12, 22:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23528965
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
FormHelperText.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { OverridableStringUnion } from '@mui/types';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { Theme } from '../styles';
import { FormHelperTextClasses } from './formHelperTextClasses';
export interface FormHelperTextPropsVariantOverrides {}
export interface FormHelperTextTypeMap<P = {}, D extends React.ElementType = 'p'> {
props: P & {
/**
* The content of the component.
*
* If `' '` is provided, the component reserves one line height for displaying a future message.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<FormHelperTextClasses>;
/**
* If `true`, the helper text should be displayed in a disabled state.
*/
disabled?: boolean;
/**
* If `true`, helper text should be displayed in an error state.
*/
error?: boolean;
/**
* If `true`, the helper text should use filled classes key.
*/
filled?: boolean;
/**
* If `true`, the helper text should use focused classes key.
*/
focused?: boolean;
/**
* If `dense`, will adjust vertical spacing. This is normally obtained via context from
* FormControl.
*/
margin?: 'dense';
/**
* If `true`, the helper text should use required classes key.
*/
required?: boolean;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
/**
* The variant to use.
*/
variant?: OverridableStringUnion<
'standard' | 'outlined' | 'filled',
FormHelperTextPropsVariantOverrides
>;
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Text Field](https://mui.com/material-ui/react-text-field/)
*
* API:
*
* - [FormHelperText API](https://mui.com/material-ui/api/form-helper-text/)
*/
declare const FormHelperText: OverridableComponent<FormHelperTextTypeMap>;
export type FormHelperTextProps<
D extends React.ElementType = FormHelperTextTypeMap['defaultComponent'],
P = {},
> = OverrideProps<FormHelperTextTypeMap<P, D>, D>;
export default FormHelperText;
Event Timeline
Log In to Comment