forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FormControl][material-next] Copy v5 FormControl (mui#39039)
- Loading branch information
1 parent
bbd9aec
commit c3f1c4e
Showing
10 changed files
with
948 additions
and
0 deletions.
There are no files selected for viewing
133 changes: 133 additions & 0 deletions
133
packages/mui-material-next/src/FormControl/FormControl.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
import * as React from 'react'; | ||
import { SxProps } from '@mui/system'; | ||
import { OverridableStringUnion, OverridableComponent, OverrideProps } from '@mui/types'; | ||
import { Theme } from '../styles'; | ||
import { FormControlClasses } from './formControlClasses'; | ||
|
||
export interface FormControlPropsSizeOverrides {} | ||
export interface FormControlPropsColorOverrides {} | ||
|
||
export interface FormControlOwnProps { | ||
/** | ||
* The content of the component. | ||
*/ | ||
children?: React.ReactNode; | ||
/** | ||
* Override or extend the styles applied to the component. | ||
*/ | ||
classes?: Partial<FormControlClasses>; | ||
/** | ||
* The color of the component. | ||
* It supports both default and custom theme colors, which can be added as shown in the | ||
* [palette customization guide](https://mui.com/material-ui/customization/palette/#adding-new-colors). | ||
* @default 'primary' | ||
*/ | ||
color?: OverridableStringUnion< | ||
'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning', | ||
FormControlPropsColorOverrides | ||
>; | ||
/** | ||
* If `true`, the label, input and helper text should be displayed in a disabled state. | ||
* @default false | ||
*/ | ||
disabled?: boolean; | ||
/** | ||
* If `true`, the label is displayed in an error state. | ||
* @default false | ||
*/ | ||
error?: boolean; | ||
/** | ||
* If `true`, the component will take up the full width of its container. | ||
* @default false | ||
*/ | ||
fullWidth?: boolean; | ||
/** | ||
* If `true`, the component is displayed in focused state. | ||
*/ | ||
focused?: boolean; | ||
/** | ||
* 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 `dense` or `normal`, will adjust vertical spacing of this and contained components. | ||
* @default 'none' | ||
*/ | ||
margin?: 'dense' | 'normal' | 'none'; | ||
/** | ||
* If `true`, the label will indicate that the `input` is required. | ||
* @default false | ||
*/ | ||
required?: boolean; | ||
/** | ||
* The size of the component. | ||
* @default 'medium' | ||
*/ | ||
size?: OverridableStringUnion<'small' | 'medium', FormControlPropsSizeOverrides>; | ||
/** | ||
* The system prop that allows defining system overrides as well as additional CSS styles. | ||
*/ | ||
sx?: SxProps<Theme>; | ||
/** | ||
* The variant to use. | ||
* @default 'outlined' | ||
*/ | ||
variant?: 'standard' | 'outlined' | 'filled'; | ||
} | ||
|
||
export interface FormControlTypeMap< | ||
AdditionalProps = {}, | ||
RootComponent extends React.ElementType = 'div', | ||
> { | ||
props: AdditionalProps & FormControlOwnProps; | ||
defaultComponent: RootComponent; | ||
} | ||
|
||
/** | ||
* Provides context such as filled/focused/error/required for form inputs. | ||
* Relying on the context provides high flexibility and ensures that the state always stays | ||
* consistent across the children of the `FormControl`. | ||
* This context is used by the following components: | ||
* | ||
* * FormLabel | ||
* * FormHelperText | ||
* * Input | ||
* * InputLabel | ||
* | ||
* You can find one composition example below and more going to [the demos](https://mui.com/material-ui/react-text-field/#components). | ||
* | ||
* ```jsx | ||
* <FormControl> | ||
* <InputLabel htmlFor="my-input">Email address</InputLabel> | ||
* <Input id="my-input" aria-describedby="my-helper-text" /> | ||
* <FormHelperText id="my-helper-text">We'll never share your email.</FormHelperText> | ||
* </FormControl> | ||
* ``` | ||
* | ||
* ⚠️ Only one `InputBase` can be used within a FormControl because it creates visual inconsistencies. | ||
* For instance, only one input can be focused at the same time, the state shouldn't be shared. | ||
* | ||
* Demos: | ||
* | ||
* - [Checkbox](https://mui.com/material-ui/react-checkbox/) | ||
* - [Radio Group](https://mui.com/material-ui/react-radio-button/) | ||
* - [Switch](https://mui.com/material-ui/react-switch/) | ||
* - [Text Field](https://mui.com/material-ui/react-text-field/) | ||
* | ||
* API: | ||
* | ||
* - [FormControl API](https://mui.com/material-ui/api/form-control/) | ||
*/ | ||
declare const FormControl: OverridableComponent<FormControlTypeMap>; | ||
|
||
export type FormControlProps< | ||
RootComponent extends React.ElementType = FormControlTypeMap['defaultComponent'], | ||
AdditionalProps = {}, | ||
> = OverrideProps<FormControlTypeMap<AdditionalProps, RootComponent>, RootComponent> & { | ||
component?: React.ElementType; | ||
}; | ||
|
||
export default FormControl; |
Oops, something went wrong.