/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-lab/src/themeAugmentation/props.ts
32 строки
1 KB
Diego Andai
[lab] Remove components which were moved from lab to material (#45232)
07 фев 2025, 17:43
Не верифицирован
07 фев 2025, 17:43
94f35f3
Код
Авторство
О чём код?
import { LoadingButtonProps } from '../LoadingButton'; import { TabListProps } from '../TabList'; import { TabPanelProps } from '../TabPanel'; import { TimelineConnectorProps } from '../TimelineConnector'; import { TimelineContentProps } from '../TimelineContent'; import { TimelineDotProps } from '../TimelineDot'; import { TimelineItemProps } from '../TimelineItem'; import { TimelineOppositeContentProps } from '../TimelineOppositeContent'; import { TimelineProps } from '../Timeline'; import { TimelineSeparatorProps } from '../TimelineSeparator'; import { MasonryProps } from '../Masonry'; export interface LabComponentsPropsList { MuiLoadingButton: LoadingButtonProps; MuiMasonry: MasonryProps; MuiTabList: TabListProps; MuiTabPanel: TabPanelProps; MuiTimeline: TimelineProps; MuiTimelineConnector: TimelineConnectorProps; MuiTimelineContent: TimelineContentProps; MuiTimelineDot: TimelineDotProps; MuiTimelineItem: TimelineItemProps; MuiTimelineOppositeContent: TimelineOppositeContentProps; MuiTimelineSeparator: TimelineSeparatorProps; } declare module '@mui/material/styles' { interface ComponentsPropsList extends LabComponentsPropsList {} } // disable automatic export export {};