/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/data/material/components/lists/CheckboxList.tsx
59 строк
2 KB
Siriwat K
[Checkbox][Radio][Switch] Remove deprecated inputProps and inputRef (#48059)
23 мар 2026, 09:29
Не верифицирован
23 мар 2026, 09:29
58cf9c2
Код
Авторство
О чём код?
import * as React from 'react'; import List from '@mui/material/List'; import ListItem from '@mui/material/ListItem'; import ListItemButton from '@mui/material/ListItemButton'; import ListItemIcon from '@mui/material/ListItemIcon'; import ListItemText from '@mui/material/ListItemText'; import Checkbox from '@mui/material/Checkbox'; import IconButton from '@mui/material/IconButton'; import CommentIcon from '@mui/icons-material/Comment'; export default function CheckboxList() { const [checked, setChecked] = React.useState([0]); const handleToggle = (value: number) => () => { const currentIndex = checked.indexOf(value); const newChecked = [...checked]; if (currentIndex === -1) { newChecked.push(value); } else { newChecked.splice(currentIndex, 1); } setChecked(newChecked); }; return ( <List sx={{ width: '100%', maxWidth: 360, bgcolor: 'background.paper' }}> {[0, 1, 2, 3].map((value) => { const labelId = `checkbox-list-label-${value}`; return ( <ListItem key={value} secondaryAction={ <IconButton edge="end" aria-label="comments"> <CommentIcon /> </IconButton> } disablePadding > <ListItemButton role={undefined} onClick={handleToggle(value)} dense> <ListItemIcon> <Checkbox edge="start" checked={checked.includes(value)} tabIndex={-1} disableRipple slotProps={{ input: { 'aria-labelledby': labelId } }} /> </ListItemIcon> <ListItemText id={labelId} primary={`Line item ${value + 1}`} /> </ListItemButton> </ListItem> ); })} </List> ); }