/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/data/material/components/text-fields/FormPropsTextFields.js
145 строк
4 KB
Brijesh Bittu
[code-infra] Remove React import requirement for jsx (#47146)
29 окт 2025, 20:55
Не верифицирован
29 окт 2025, 20:55
6c9e82f
Код
Авторство
О чём код?
import Box from '@mui/material/Box'; import TextField from '@mui/material/TextField'; export default function FormPropsTextFields() { return ( <Box component="form" sx={{ '& .MuiTextField-root': { m: 1, width: '25ch' } }} noValidate autoComplete="off" > <div> <TextField required id="outlined-required" label="Required" defaultValue="Hello World" /> <TextField disabled id="outlined-disabled" label="Disabled" defaultValue="Hello World" /> <TextField id="outlined-password-input" label="Password" type="password" autoComplete="current-password" /> <TextField id="outlined-read-only-input" label="Read Only" defaultValue="Hello World" slotProps={{ input: { readOnly: true, }, }} /> <TextField id="outlined-search" label="Search field" type="search" /> <TextField id="outlined-helperText" label="Helper text" defaultValue="Default Value" helperText="Some important text" /> </div> <div> <TextField required id="filled-required" label="Required" defaultValue="Hello World" variant="filled" /> <TextField disabled id="filled-disabled" label="Disabled" defaultValue="Hello World" variant="filled" /> <TextField id="filled-password-input" label="Password" type="password" autoComplete="current-password" variant="filled" /> <TextField id="filled-read-only-input" label="Read Only" defaultValue="Hello World" variant="filled" slotProps={{ input: { readOnly: true, }, }} /> <TextField id="filled-search" label="Search field" type="search" variant="filled" /> <TextField id="filled-helperText" label="Helper text" defaultValue="Default Value" helperText="Some important text" variant="filled" /> </div> <div> <TextField required id="standard-required" label="Required" defaultValue="Hello World" variant="standard" /> <TextField disabled id="standard-disabled" label="Disabled" defaultValue="Hello World" variant="standard" /> <TextField id="standard-password-input" label="Password" type="password" autoComplete="current-password" variant="standard" /> <TextField id="standard-read-only-input" label="Read Only" defaultValue="Hello World" variant="standard" slotProps={{ input: { readOnly: true, }, }} /> <TextField id="standard-search" label="Search field" type="search" variant="standard" /> <TextField id="standard-helperText" label="Helper text" defaultValue="Default Value" helperText="Some important text" variant="standard" /> </div> </Box> ); }