index
int64 0
0
| repo_id
stringlengths 16
181
| file_path
stringlengths 28
270
| content
stringlengths 1
11.6M
| __index_level_0__
int64 0
10k
|
---|---|---|---|---|
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/input-label.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './input-label.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/input-label',
false,
/input-label.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,700 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/input-label.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'error'<br>| 'info'<br>| 'primary'<br>| 'secondary'<br>| 'success'<br>| 'warning'<br>| string"
}
},
"disableAnimation": { "type": { "name": "bool" }, "default": "false" },
"disabled": { "type": { "name": "bool" } },
"error": { "type": { "name": "bool" } },
"focused": { "type": { "name": "bool" } },
"margin": { "type": { "name": "enum", "description": "'dense'" } },
"required": { "type": { "name": "bool" } },
"shrink": { "type": { "name": "bool" } },
"size": {
"type": {
"name": "union",
"description": "'normal'<br>| 'small'<br>| string"
},
"default": "'normal'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"variant": {
"type": {
"name": "enum",
"description": "'filled'<br>| 'outlined'<br>| 'standard'"
}
}
},
"name": "InputLabel",
"imports": [
"import InputLabel from '@mui/material/InputLabel';",
"import { InputLabel } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"focused",
"disabled",
"error",
"required",
"asterisk",
"formControl",
"sizeSmall",
"shrink",
"animated",
"filled",
"outlined",
"standard"
],
"globalClasses": {
"focused": "Mui-focused",
"disabled": "Mui-disabled",
"error": "Mui-error",
"required": "Mui-required"
},
"name": "MuiInputLabel"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiInputLabel",
"forwardsRefTo": "HTMLLabelElement",
"filename": "/packages/mui-material/src/InputLabel/InputLabel.js",
"inheritance": { "component": "FormLabel", "pathname": "/material-ui/api/form-label/" },
"demos": "<ul><li><a href=\"/material-ui/react-text-field/\">Text Field</a></li></ul>",
"cssComponent": false
}
| 4,701 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/input.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './input.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/input', false, /input.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,702 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/input.json | {
"props": {
"autoComplete": { "type": { "name": "string" } },
"autoFocus": { "type": { "name": "bool" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'primary'<br>| 'secondary'<br>| string"
}
},
"components": {
"type": { "name": "shape", "description": "{ Input?: elementType, Root?: elementType }" },
"default": "{}"
},
"componentsProps": {
"type": { "name": "shape", "description": "{ input?: object, root?: object }" },
"default": "{}"
},
"defaultValue": { "type": { "name": "any" } },
"disabled": { "type": { "name": "bool" } },
"disableUnderline": { "type": { "name": "bool" } },
"endAdornment": { "type": { "name": "node" } },
"error": { "type": { "name": "bool" } },
"fullWidth": { "type": { "name": "bool" }, "default": "false" },
"id": { "type": { "name": "string" } },
"inputComponent": { "type": { "name": "elementType" }, "default": "'input'" },
"inputProps": { "type": { "name": "object" }, "default": "{}" },
"inputRef": { "type": { "name": "custom", "description": "ref" } },
"margin": { "type": { "name": "enum", "description": "'dense'<br>| 'none'" } },
"maxRows": { "type": { "name": "union", "description": "number<br>| string" } },
"minRows": { "type": { "name": "union", "description": "number<br>| string" } },
"multiline": { "type": { "name": "bool" }, "default": "false" },
"name": { "type": { "name": "string" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLTextAreaElement | HTMLInputElement>) => void",
"describedArgs": ["event"]
}
},
"placeholder": { "type": { "name": "string" } },
"readOnly": { "type": { "name": "bool" } },
"required": { "type": { "name": "bool" } },
"rows": { "type": { "name": "union", "description": "number<br>| string" } },
"slotProps": {
"type": { "name": "shape", "description": "{ input?: object, root?: object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ input?: elementType, root?: elementType }" },
"default": "{}"
},
"startAdornment": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"type": { "type": { "name": "string" }, "default": "'text'" },
"value": { "type": { "name": "any" } }
},
"name": "Input",
"imports": ["import Input from '@mui/material/Input';", "import { Input } from '@mui/material';"],
"styles": {
"classes": [
"root",
"formControl",
"focused",
"disabled",
"colorSecondary",
"underline",
"error",
"sizeSmall",
"multiline",
"fullWidth",
"input",
"inputSizeSmall",
"inputMultiline",
"inputAdornedStart",
"inputAdornedEnd",
"inputTypeSearch"
],
"globalClasses": { "focused": "Mui-focused", "disabled": "Mui-disabled", "error": "Mui-error" },
"name": "MuiInput"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiInput",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Input/Input.js",
"inheritance": { "component": "InputBase", "pathname": "/material-ui/api/input-base/" },
"demos": "<ul><li><a href=\"/material-ui/react-text-field/\">Text Field</a></li></ul>",
"cssComponent": false
}
| 4,703 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/linear-progress.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './linear-progress.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/linear-progress',
false,
/linear-progress.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,704 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/linear-progress.json | {
"props": {
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'inherit'<br>| 'primary'<br>| 'secondary'<br>| string"
},
"default": "'primary'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "number" } },
"valueBuffer": { "type": { "name": "number" } },
"variant": {
"type": {
"name": "enum",
"description": "'buffer'<br>| 'determinate'<br>| 'indeterminate'<br>| 'query'"
},
"default": "'indeterminate'"
}
},
"name": "LinearProgress",
"imports": [
"import LinearProgress from '@mui/material/LinearProgress';",
"import { LinearProgress } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"colorPrimary",
"colorSecondary",
"determinate",
"indeterminate",
"buffer",
"query",
"dashed",
"dashedColorPrimary",
"dashedColorSecondary",
"bar",
"barColorPrimary",
"barColorSecondary",
"bar1Indeterminate",
"bar1Determinate",
"bar1Buffer",
"bar2Indeterminate",
"bar2Buffer"
],
"globalClasses": {},
"name": "MuiLinearProgress"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiLinearProgress",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/LinearProgress/LinearProgress.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-progress/\">Progress</a></li></ul>",
"cssComponent": false
}
| 4,705 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/link.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './link.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/link', false, /link.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,706 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/link.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": { "type": { "name": "any" }, "default": "'primary'" },
"component": { "type": { "name": "custom", "description": "element type" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"TypographyClasses": { "type": { "name": "object" } },
"underline": {
"type": {
"name": "enum",
"description": "'always'<br>| 'hover'<br>| 'none'"
},
"default": "'always'"
},
"variant": {
"type": {
"name": "union",
"description": "'body1'<br>| 'body2'<br>| 'button'<br>| 'caption'<br>| 'h1'<br>| 'h2'<br>| 'h3'<br>| 'h4'<br>| 'h5'<br>| 'h6'<br>| 'inherit'<br>| 'overline'<br>| 'subtitle1'<br>| 'subtitle2'<br>| string"
},
"default": "'inherit'"
}
},
"name": "Link",
"imports": ["import Link from '@mui/material/Link';", "import { Link } from '@mui/material';"],
"styles": {
"classes": [
"root",
"underlineNone",
"underlineHover",
"underlineAlways",
"button",
"focusVisible"
],
"globalClasses": { "focusVisible": "Mui-focusVisible" },
"name": "MuiLink"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiLink",
"forwardsRefTo": "HTMLAnchorElement",
"filename": "/packages/mui-material/src/Link/Link.js",
"inheritance": { "component": "Typography", "pathname": "/material-ui/api/typography/" },
"demos": "<ul><li><a href=\"/material-ui/react-breadcrumbs/\">Breadcrumbs</a></li>\n<li><a href=\"/material-ui/react-link/\">Links</a></li></ul>",
"cssComponent": false
}
| 4,707 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-avatar.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list-item-avatar.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/list-item-avatar',
false,
/list-item-avatar.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,708 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-avatar.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItemAvatar",
"imports": [
"import ListItemAvatar from '@mui/material/ListItemAvatar';",
"import { ListItemAvatar } from '@mui/material';"
],
"styles": {
"classes": ["root", "alignItemsFlexStart"],
"globalClasses": {},
"name": "MuiListItemAvatar"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiListItemAvatar",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/ListItemAvatar/ListItemAvatar.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,709 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-button.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list-item-button.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/list-item-button',
false,
/list-item-button.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,710 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-button.json | {
"props": {
"alignItems": {
"type": { "name": "enum", "description": "'center'<br>| 'flex-start'" },
"default": "'center'"
},
"autoFocus": { "type": { "name": "bool" }, "default": "false" },
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"dense": { "type": { "name": "bool" }, "default": "false" },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"disableGutters": { "type": { "name": "bool" }, "default": "false" },
"divider": { "type": { "name": "bool" }, "default": "false" },
"focusVisibleClassName": { "type": { "name": "string" } },
"selected": { "type": { "name": "bool" }, "default": "false" },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItemButton",
"imports": [
"import ListItemButton from '@mui/material/ListItemButton';",
"import { ListItemButton } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"focusVisible",
"dense",
"alignItemsFlexStart",
"disabled",
"divider",
"gutters",
"selected"
],
"globalClasses": {
"focusVisible": "Mui-focusVisible",
"disabled": "Mui-disabled",
"selected": "Mui-selected"
},
"name": "MuiListItemButton"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiListItemButton",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/ListItemButton/ListItemButton.js",
"inheritance": { "component": "ButtonBase", "pathname": "/material-ui/api/button-base/" },
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,711 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-icon.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list-item-icon.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/list-item-icon',
false,
/list-item-icon.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,712 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-icon.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItemIcon",
"imports": [
"import ListItemIcon from '@mui/material/ListItemIcon';",
"import { ListItemIcon } from '@mui/material';"
],
"styles": {
"classes": ["root", "alignItemsFlexStart"],
"globalClasses": {},
"name": "MuiListItemIcon"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiListItemIcon",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/ListItemIcon/ListItemIcon.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,713 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-secondary-action.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list-item-secondary-action.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/list-item-secondary-action',
false,
/list-item-secondary-action.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,714 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-secondary-action.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItemSecondaryAction",
"imports": [
"import ListItemSecondaryAction from '@mui/material/ListItemSecondaryAction';",
"import { ListItemSecondaryAction } from '@mui/material';"
],
"styles": {
"classes": ["root", "disableGutters"],
"globalClasses": {},
"name": "MuiListItemSecondaryAction"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiListItemSecondaryAction",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/ListItemSecondaryAction/ListItemSecondaryAction.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,715 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-text.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list-item-text.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/list-item-text',
false,
/list-item-text.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,716 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item-text.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"disableTypography": { "type": { "name": "bool" }, "default": "false" },
"inset": { "type": { "name": "bool" }, "default": "false" },
"primary": { "type": { "name": "node" } },
"primaryTypographyProps": { "type": { "name": "object" } },
"secondary": { "type": { "name": "node" } },
"secondaryTypographyProps": { "type": { "name": "object" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItemText",
"imports": [
"import ListItemText from '@mui/material/ListItemText';",
"import { ListItemText } from '@mui/material';"
],
"styles": {
"classes": ["root", "multiline", "dense", "inset", "primary", "secondary"],
"globalClasses": {},
"name": "MuiListItemText"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiListItemText",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/ListItemText/ListItemText.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,717 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list-item.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/list-item', false, /list-item.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,718 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-item.json | {
"props": {
"alignItems": {
"type": { "name": "enum", "description": "'center'<br>| 'flex-start'" },
"default": "'center'"
},
"autoFocus": {
"type": { "name": "bool" },
"default": "false",
"deprecated": true,
"deprecationInfo": "checkout <a href=\"/material-ui/api/list-item-button/\">ListItemButton</a> instead"
},
"button": {
"type": { "name": "bool" },
"default": "false",
"deprecated": true,
"deprecationInfo": "checkout <a href=\"/material-ui/api/list-item-button/\">ListItemButton</a> instead"
},
"children": { "type": { "name": "custom", "description": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"components": {
"type": { "name": "shape", "description": "{ Root?: elementType }" },
"default": "{}"
},
"componentsProps": {
"type": { "name": "shape", "description": "{ root?: object }" },
"default": "{}"
},
"ContainerComponent": {
"type": { "name": "custom", "description": "element type" },
"default": "'li'",
"deprecated": true
},
"ContainerProps": { "type": { "name": "object" }, "default": "{}", "deprecated": true },
"dense": { "type": { "name": "bool" }, "default": "false" },
"disabled": {
"type": { "name": "bool" },
"default": "false",
"deprecated": true,
"deprecationInfo": "checkout <a href=\"/material-ui/api/list-item-button/\">ListItemButton</a> instead"
},
"disableGutters": { "type": { "name": "bool" }, "default": "false" },
"disablePadding": { "type": { "name": "bool" }, "default": "false" },
"divider": { "type": { "name": "bool" }, "default": "false" },
"secondaryAction": { "type": { "name": "node" } },
"selected": {
"type": { "name": "bool" },
"default": "false",
"deprecated": true,
"deprecationInfo": "checkout <a href=\"/material-ui/api/list-item-button/\">ListItemButton</a> instead"
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItem",
"imports": [
"import ListItem from '@mui/material/ListItem';",
"import { ListItem } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"container",
"focusVisible",
"dense",
"alignItemsFlexStart",
"disabled",
"divider",
"gutters",
"padding",
"button",
"secondaryAction",
"selected"
],
"globalClasses": {
"focusVisible": "Mui-focusVisible",
"disabled": "Mui-disabled",
"selected": "Mui-selected"
},
"name": "MuiListItem"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiListItem",
"forwardsRefTo": "HTMLLIElement",
"filename": "/packages/mui-material/src/ListItem/ListItem.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li>\n<li><a href=\"/material-ui/react-transfer-list/\">Transfer List</a></li></ul>",
"cssComponent": false
}
| 4,719 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-subheader.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list-subheader.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/list-subheader',
false,
/list-subheader.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,720 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list-subheader.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "enum",
"description": "'default'<br>| 'inherit'<br>| 'primary'"
},
"default": "'default'"
},
"component": { "type": { "name": "elementType" } },
"disableGutters": { "type": { "name": "bool" }, "default": "false" },
"disableSticky": { "type": { "name": "bool" }, "default": "false" },
"inset": { "type": { "name": "bool" }, "default": "false" },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListSubheader",
"imports": [
"import ListSubheader from '@mui/material/ListSubheader';",
"import { ListSubheader } from '@mui/material';"
],
"styles": {
"classes": ["root", "colorPrimary", "colorInherit", "gutters", "inset", "sticky"],
"globalClasses": {},
"name": "MuiListSubheader"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiListSubheader",
"forwardsRefTo": "HTMLLIElement",
"filename": "/packages/mui-material/src/ListSubheader/ListSubheader.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,721 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './list.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/list', false, /list.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,722 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/list.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"dense": { "type": { "name": "bool" }, "default": "false" },
"disablePadding": { "type": { "name": "bool" }, "default": "false" },
"subheader": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "List",
"imports": ["import List from '@mui/material/List';", "import { List } from '@mui/material';"],
"styles": {
"classes": ["root", "padding", "dense", "subheader"],
"globalClasses": {},
"name": "MuiList"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiList",
"forwardsRefTo": "HTMLUListElement",
"filename": "/packages/mui-material/src/List/List.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-list/\">Lists</a></li>\n<li><a href=\"/material-ui/react-transfer-list/\">Transfer List</a></li></ul>",
"cssComponent": false
}
| 4,723 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/loading-button.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './loading-button.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/loading-button',
false,
/loading-button.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,724 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/loading-button.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"loading": { "type": { "name": "bool" }, "default": "false" },
"loadingIndicator": {
"type": { "name": "node" },
"default": "<CircularProgress color=\"inherit\" size={16} />"
},
"loadingPosition": {
"type": {
"name": "custom",
"description": "'start'<br>| 'end'<br>| 'center'"
},
"default": "'center'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"variant": {
"type": {
"name": "union",
"description": "'contained'<br>| 'outlined'<br>| 'text'<br>| string"
},
"default": "'text'"
}
},
"name": "LoadingButton",
"imports": [
"import LoadingButton from '@mui/lab/LoadingButton';",
"import { LoadingButton } from '@mui/lab';"
],
"styles": {
"classes": [
"root",
"text",
"textInherit",
"textPrimary",
"textSecondary",
"textSuccess",
"textError",
"textInfo",
"textWarning",
"outlined",
"outlinedInherit",
"outlinedPrimary",
"outlinedSecondary",
"outlinedSuccess",
"outlinedError",
"outlinedInfo",
"outlinedWarning",
"contained",
"containedInherit",
"containedPrimary",
"containedSecondary",
"containedSuccess",
"containedInfo",
"containedError",
"containedWarning",
"disableElevation",
"focusVisible",
"disabled",
"colorInherit",
"textSizeSmall",
"textSizeMedium",
"textSizeLarge",
"outlinedSizeSmall",
"outlinedSizeMedium",
"outlinedSizeLarge",
"containedSizeSmall",
"containedSizeMedium",
"containedSizeLarge",
"sizeSmall",
"sizeMedium",
"sizeLarge",
"fullWidth",
"startIcon",
"endIcon",
"iconSizeSmall",
"iconSizeMedium",
"iconSizeLarge",
"loading",
"loadingIndicator",
"loadingIndicatorCenter",
"loadingIndicatorStart",
"loadingIndicatorEnd",
"endIconLoadingEnd",
"startIconLoadingStart"
],
"globalClasses": { "focusVisible": "Mui-focusVisible", "disabled": "Mui-disabled" },
"name": "MuiLoadingButton"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiLoadingButton",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-lab/src/LoadingButton/LoadingButton.js",
"inheritance": { "component": "Button", "pathname": "/material-ui/api/button/" },
"demos": "<ul><li><a href=\"/material-ui/react-button/\">Button</a></li></ul>",
"cssComponent": false
}
| 4,725 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/masonry.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './masonry.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/masonry', false, /masonry.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,726 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/masonry.json | {
"props": {
"children": { "type": { "name": "node" }, "required": true },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"columns": {
"type": {
"name": "union",
"description": "Array<number<br>| string><br>| number<br>| object<br>| string"
},
"default": "4"
},
"component": { "type": { "name": "elementType" } },
"defaultColumns": { "type": { "name": "number" } },
"defaultHeight": { "type": { "name": "number" } },
"defaultSpacing": { "type": { "name": "number" } },
"spacing": {
"type": {
"name": "union",
"description": "Array<number<br>| string><br>| number<br>| object<br>| string"
},
"default": "1"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "Masonry",
"imports": ["import Masonry from '@mui/lab/Masonry';", "import { Masonry } from '@mui/lab';"],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiMasonry" },
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiMasonry",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-lab/src/Masonry/Masonry.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-masonry/\">Masonry</a></li></ul>",
"cssComponent": false
}
| 4,727 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/menu-item.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './menu-item.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/menu-item', false, /menu-item.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,728 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/menu-item.json | {
"props": {
"autoFocus": { "type": { "name": "bool" }, "default": "false" },
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"dense": { "type": { "name": "bool" }, "default": "false" },
"disableGutters": { "type": { "name": "bool" }, "default": "false" },
"divider": { "type": { "name": "bool" }, "default": "false" },
"focusVisibleClassName": { "type": { "name": "string" } },
"selected": { "type": { "name": "bool" }, "default": "false" },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "MenuItem",
"imports": [
"import MenuItem from '@mui/material/MenuItem';",
"import { MenuItem } from '@mui/material';"
],
"styles": {
"classes": ["root", "focusVisible", "dense", "disabled", "divider", "gutters", "selected"],
"globalClasses": {
"focusVisible": "Mui-focusVisible",
"disabled": "Mui-disabled",
"selected": "Mui-selected"
},
"name": "MuiMenuItem"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiMenuItem",
"forwardsRefTo": "HTMLLIElement",
"filename": "/packages/mui-material/src/MenuItem/MenuItem.js",
"inheritance": { "component": "ButtonBase", "pathname": "/material-ui/api/button-base/" },
"demos": "<ul><li><a href=\"/material-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
| 4,729 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/menu-list.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './menu-list.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/menu-list', false, /menu-list.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,730 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/menu-list.json | {
"props": {
"autoFocus": { "type": { "name": "bool" }, "default": "false" },
"autoFocusItem": { "type": { "name": "bool" }, "default": "false" },
"children": { "type": { "name": "node" } },
"disabledItemsFocusable": { "type": { "name": "bool" }, "default": "false" },
"disableListWrap": { "type": { "name": "bool" }, "default": "false" },
"variant": {
"type": { "name": "enum", "description": "'menu'<br>| 'selectedMenu'" },
"default": "'selectedMenu'"
}
},
"name": "MenuList",
"imports": [
"import MenuList from '@mui/material/MenuList';",
"import { MenuList } from '@mui/material';"
],
"styles": {
"classes": ["root", "padding", "dense", "subheader"],
"globalClasses": {},
"name": "MuiMenuList"
},
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiMenuList",
"forwardsRefTo": "HTMLUListElement",
"filename": "/packages/mui-material/src/MenuList/MenuList.js",
"inheritance": { "component": "List", "pathname": "/material-ui/api/list/" },
"demos": "<ul><li><a href=\"/material-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
| 4,731 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/menu.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './menu.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/menu', false, /menu.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,732 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/menu.json | {
"props": {
"open": { "type": { "name": "bool" }, "required": true },
"anchorEl": { "type": { "name": "union", "description": "HTML element<br>| func" } },
"autoFocus": { "type": { "name": "bool" }, "default": "true" },
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"disableAutoFocusItem": { "type": { "name": "bool" }, "default": "false" },
"MenuListProps": { "type": { "name": "object" }, "default": "{}" },
"onClose": {
"type": { "name": "func" },
"signature": {
"type": "function(event: object, reason: string) => void",
"describedArgs": ["event", "reason"]
}
},
"PopoverClasses": { "type": { "name": "object" } },
"slotProps": {
"type": {
"name": "shape",
"description": "{ paper?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ paper?: elementType, root?: elementType }" },
"default": "{}"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"transitionDuration": {
"type": {
"name": "union",
"description": "'auto'<br>| number<br>| { appear?: number, enter?: number, exit?: number }"
},
"default": "'auto'"
},
"TransitionProps": { "type": { "name": "object" }, "default": "{}" },
"variant": {
"type": { "name": "enum", "description": "'menu'<br>| 'selectedMenu'" },
"default": "'selectedMenu'"
}
},
"name": "Menu",
"imports": ["import Menu from '@mui/material/Menu';", "import { Menu } from '@mui/material';"],
"styles": { "classes": ["root", "paper", "list"], "globalClasses": {}, "name": "MuiMenu" },
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiMenu",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Menu/Menu.js",
"inheritance": { "component": "Popover", "pathname": "/material-ui/api/popover/" },
"demos": "<ul><li><a href=\"/material-ui/react-app-bar/\">App Bar</a></li>\n<li><a href=\"/material-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
| 4,733 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/mobile-stepper.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './mobile-stepper.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/mobile-stepper',
false,
/mobile-stepper.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,734 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/mobile-stepper.json | {
"props": {
"steps": { "type": { "name": "custom", "description": "integer" }, "required": true },
"activeStep": { "type": { "name": "custom", "description": "integer" }, "default": "0" },
"backButton": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"LinearProgressProps": { "type": { "name": "object" } },
"nextButton": { "type": { "name": "node" } },
"position": {
"type": {
"name": "enum",
"description": "'bottom'<br>| 'static'<br>| 'top'"
},
"default": "'bottom'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"variant": {
"type": {
"name": "enum",
"description": "'dots'<br>| 'progress'<br>| 'text'"
},
"default": "'dots'"
}
},
"name": "MobileStepper",
"imports": [
"import MobileStepper from '@mui/material/MobileStepper';",
"import { MobileStepper } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"positionBottom",
"positionTop",
"positionStatic",
"dots",
"dot",
"dotActive",
"progress"
],
"globalClasses": {},
"name": "MuiMobileStepper"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiMobileStepper",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/MobileStepper/MobileStepper.js",
"inheritance": { "component": "Paper", "pathname": "/material-ui/api/paper/" },
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,735 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/modal.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './modal.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/modal', false, /modal.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,736 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/modal.json | {
"props": {
"children": { "type": { "name": "custom", "description": "element" }, "required": true },
"open": { "type": { "name": "bool" }, "required": true },
"BackdropComponent": {
"type": { "name": "elementType" },
"default": "styled(Backdrop, {\n name: 'MuiModal',\n slot: 'Backdrop',\n overridesResolver: (props, styles) => {\n return styles.backdrop;\n },\n})({\n zIndex: -1,\n})",
"deprecated": true,
"deprecationInfo": "Use <code>slots.backdrop</code> instead. While this prop currently works, it will be removed in the next major version."
},
"BackdropProps": {
"type": { "name": "object" },
"deprecated": true,
"deprecationInfo": "Use <code>slotProps.backdrop</code> instead."
},
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"closeAfterTransition": { "type": { "name": "bool" }, "default": "false" },
"component": { "type": { "name": "elementType" } },
"components": {
"type": { "name": "shape", "description": "{ Backdrop?: elementType, Root?: elementType }" },
"default": "{}"
},
"componentsProps": {
"type": {
"name": "shape",
"description": "{ backdrop?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"container": { "type": { "name": "union", "description": "HTML element<br>| func" } },
"disableAutoFocus": { "type": { "name": "bool" }, "default": "false" },
"disableEnforceFocus": { "type": { "name": "bool" }, "default": "false" },
"disableEscapeKeyDown": { "type": { "name": "bool" }, "default": "false" },
"disablePortal": { "type": { "name": "bool" }, "default": "false" },
"disableRestoreFocus": { "type": { "name": "bool" }, "default": "false" },
"disableScrollLock": { "type": { "name": "bool" }, "default": "false" },
"hideBackdrop": { "type": { "name": "bool" }, "default": "false" },
"keepMounted": { "type": { "name": "bool" }, "default": "false" },
"onBackdropClick": {
"type": { "name": "func" },
"deprecated": true,
"deprecationInfo": "Use the <code>onClose</code> prop with the <code>reason</code> argument to handle the <code>backdropClick</code> events."
},
"onClose": {
"type": { "name": "func" },
"signature": {
"type": "function(event: object, reason: string) => void",
"describedArgs": ["event", "reason"]
}
},
"onTransitionEnter": { "type": { "name": "func" } },
"onTransitionExited": { "type": { "name": "func" } },
"slotProps": {
"type": {
"name": "shape",
"description": "{ backdrop?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ backdrop?: elementType, root?: elementType }" },
"default": "{}"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "Modal",
"imports": ["import Modal from '@mui/material/Modal';", "import { Modal } from '@mui/material';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiModal" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiModal-root"
},
{
"name": "backdrop",
"description": "The component that renders the backdrop.",
"class": ".MuiModal-backdrop"
}
],
"classes": { "classes": ["hidden"], "globalClasses": {} },
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiModal",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Modal/Modal.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-modal/\">Modal</a></li></ul>",
"cssComponent": false
}
| 4,737 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/native-select.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './native-select.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/native-select',
false,
/native-select.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,738 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/native-select.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": {
"type": { "name": "object" },
"default": "{}",
"additionalInfo": { "cssApi": true }
},
"IconComponent": { "type": { "name": "elementType" }, "default": "ArrowDropDownIcon" },
"input": { "type": { "name": "element" }, "default": "<Input />" },
"inputProps": { "type": { "name": "object" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLSelectElement>) => void",
"describedArgs": ["event"]
}
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "any" } },
"variant": {
"type": {
"name": "enum",
"description": "'filled'<br>| 'outlined'<br>| 'standard'"
}
}
},
"name": "NativeSelect",
"imports": [
"import NativeSelect from '@mui/material/NativeSelect';",
"import { NativeSelect } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"select",
"multiple",
"filled",
"outlined",
"standard",
"disabled",
"icon",
"iconOpen",
"iconFilled",
"iconOutlined",
"iconStandard",
"nativeInput",
"error"
],
"globalClasses": { "disabled": "Mui-disabled", "error": "Mui-error" },
"name": "MuiNativeSelect"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiNativeSelect",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/NativeSelect/NativeSelect.js",
"inheritance": { "component": "Input", "pathname": "/material-ui/api/input/" },
"demos": "<ul><li><a href=\"/material-ui/react-select/\">Select</a></li></ul>",
"cssComponent": false
}
| 4,739 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/outlined-input.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './outlined-input.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/outlined-input',
false,
/outlined-input.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,740 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/outlined-input.json | {
"props": {
"autoComplete": { "type": { "name": "string" } },
"autoFocus": { "type": { "name": "bool" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'primary'<br>| 'secondary'<br>| string"
}
},
"components": {
"type": { "name": "shape", "description": "{ Input?: elementType, Root?: elementType }" },
"default": "{}"
},
"defaultValue": { "type": { "name": "any" } },
"disabled": { "type": { "name": "bool" } },
"endAdornment": { "type": { "name": "node" } },
"error": { "type": { "name": "bool" } },
"fullWidth": { "type": { "name": "bool" }, "default": "false" },
"id": { "type": { "name": "string" } },
"inputComponent": { "type": { "name": "elementType" }, "default": "'input'" },
"inputProps": { "type": { "name": "object" }, "default": "{}" },
"inputRef": { "type": { "name": "custom", "description": "ref" } },
"label": { "type": { "name": "node" } },
"margin": { "type": { "name": "enum", "description": "'dense'<br>| 'none'" } },
"maxRows": { "type": { "name": "union", "description": "number<br>| string" } },
"minRows": { "type": { "name": "union", "description": "number<br>| string" } },
"multiline": { "type": { "name": "bool" }, "default": "false" },
"name": { "type": { "name": "string" } },
"notched": { "type": { "name": "bool" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLTextAreaElement | HTMLInputElement>) => void",
"describedArgs": ["event"]
}
},
"placeholder": { "type": { "name": "string" } },
"readOnly": { "type": { "name": "bool" } },
"required": { "type": { "name": "bool" } },
"rows": { "type": { "name": "union", "description": "number<br>| string" } },
"slots": {
"type": { "name": "shape", "description": "{ input?: elementType, root?: elementType }" },
"default": "{}"
},
"startAdornment": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"type": { "type": { "name": "string" }, "default": "'text'" },
"value": { "type": { "name": "any" } }
},
"name": "OutlinedInput",
"imports": [
"import OutlinedInput from '@mui/material/OutlinedInput';",
"import { OutlinedInput } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"colorSecondary",
"focused",
"disabled",
"adornedStart",
"adornedEnd",
"error",
"sizeSmall",
"multiline",
"notchedOutline",
"input",
"inputSizeSmall",
"inputMultiline",
"inputAdornedStart",
"inputAdornedEnd",
"inputTypeSearch"
],
"globalClasses": { "focused": "Mui-focused", "disabled": "Mui-disabled", "error": "Mui-error" },
"name": "MuiOutlinedInput"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiOutlinedInput",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/OutlinedInput/OutlinedInput.js",
"inheritance": { "component": "InputBase", "pathname": "/material-ui/api/input-base/" },
"demos": "<ul><li><a href=\"/material-ui/react-text-field/\">Text Field</a></li></ul>",
"cssComponent": false
}
| 4,741 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/pagination-item.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './pagination-item.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/pagination-item',
false,
/pagination-item.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,742 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/pagination-item.json | {
"props": {
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'primary'<br>| 'secondary'<br>| 'standard'<br>| string"
},
"default": "'standard'"
},
"component": { "type": { "name": "elementType" } },
"components": {
"type": {
"name": "shape",
"description": "{ first?: elementType, last?: elementType, next?: elementType, previous?: elementType }"
},
"default": "{}"
},
"disabled": { "type": { "name": "bool" }, "default": "false" },
"page": { "type": { "name": "node" } },
"selected": { "type": { "name": "bool" }, "default": "false" },
"shape": {
"type": { "name": "enum", "description": "'circular'<br>| 'rounded'" },
"default": "'circular'"
},
"size": {
"type": {
"name": "union",
"description": "'small'<br>| 'medium'<br>| 'large'<br>| string"
},
"default": "'medium'"
},
"slots": {
"type": {
"name": "shape",
"description": "{ first?: elementType, last?: elementType, next?: elementType, previous?: elementType }"
},
"default": "{}"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"type": {
"type": {
"name": "enum",
"description": "'end-ellipsis'<br>| 'first'<br>| 'last'<br>| 'next'<br>| 'page'<br>| 'previous'<br>| 'start-ellipsis'"
},
"default": "'page'"
},
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'text'<br>| string"
},
"default": "'text'"
}
},
"name": "PaginationItem",
"imports": [
"import PaginationItem from '@mui/material/PaginationItem';",
"import { PaginationItem } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"page",
"sizeSmall",
"sizeLarge",
"text",
"textPrimary",
"textSecondary",
"outlined",
"outlinedPrimary",
"outlinedSecondary",
"rounded",
"ellipsis",
"firstLast",
"previousNext",
"focusVisible",
"disabled",
"selected",
"icon"
],
"globalClasses": {
"focusVisible": "Mui-focusVisible",
"disabled": "Mui-disabled",
"selected": "Mui-selected"
},
"name": "MuiPaginationItem"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiPaginationItem",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-material/src/PaginationItem/PaginationItem.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-pagination/\">Pagination</a></li></ul>",
"cssComponent": false
}
| 4,743 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/pagination.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './pagination.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/pagination', false, /pagination.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,744 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/pagination.json | {
"props": {
"boundaryCount": { "type": { "name": "custom", "description": "integer" }, "default": "1" },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'primary'<br>| 'secondary'<br>| 'standard'<br>| string"
},
"default": "'standard'"
},
"count": { "type": { "name": "custom", "description": "integer" }, "default": "1" },
"defaultPage": { "type": { "name": "custom", "description": "integer" }, "default": "1" },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"getItemAriaLabel": {
"type": { "name": "func" },
"signature": {
"type": "function(type: string, page: number, selected: bool) => string",
"describedArgs": ["type", "page", "selected"]
}
},
"hideNextButton": { "type": { "name": "bool" }, "default": "false" },
"hidePrevButton": { "type": { "name": "bool" }, "default": "false" },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<unknown>, page: number) => void",
"describedArgs": ["event", "page"]
}
},
"page": { "type": { "name": "custom", "description": "integer" } },
"renderItem": {
"type": { "name": "func" },
"default": "(item) => <PaginationItem {...item} />",
"signature": {
"type": "function(params: PaginationRenderItemParams) => ReactNode",
"describedArgs": ["params"]
}
},
"shape": {
"type": { "name": "enum", "description": "'circular'<br>| 'rounded'" },
"default": "'circular'"
},
"showFirstButton": { "type": { "name": "bool" }, "default": "false" },
"showLastButton": { "type": { "name": "bool" }, "default": "false" },
"siblingCount": { "type": { "name": "custom", "description": "integer" }, "default": "1" },
"size": {
"type": {
"name": "union",
"description": "'small'<br>| 'medium'<br>| 'large'<br>| string"
},
"default": "'medium'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'text'<br>| string"
},
"default": "'text'"
}
},
"name": "Pagination",
"imports": [
"import Pagination from '@mui/material/Pagination';",
"import { Pagination } from '@mui/material';"
],
"styles": {
"classes": ["root", "ul", "outlined", "text"],
"globalClasses": {},
"name": "MuiPagination"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiPagination",
"forwardsRefTo": "HTMLElement",
"filename": "/packages/mui-material/src/Pagination/Pagination.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-pagination/\">Pagination</a></li></ul>",
"cssComponent": false
}
| 4,745 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/paper.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './paper.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/paper', false, /paper.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,746 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/paper.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"elevation": { "type": { "name": "custom", "description": "integer" }, "default": "1" },
"square": { "type": { "name": "bool" }, "default": "false" },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"variant": {
"type": {
"name": "union",
"description": "'elevation'<br>| 'outlined'<br>| string"
},
"default": "'elevation'"
}
},
"name": "Paper",
"imports": ["import Paper from '@mui/material/Paper';", "import { Paper } from '@mui/material';"],
"styles": {
"classes": [
"root",
"rounded",
"outlined",
"elevation",
"elevation0",
"elevation1",
"elevation2",
"elevation3",
"elevation4",
"elevation5",
"elevation6",
"elevation7",
"elevation8",
"elevation9",
"elevation10",
"elevation11",
"elevation12",
"elevation13",
"elevation14",
"elevation15",
"elevation16",
"elevation17",
"elevation18",
"elevation19",
"elevation20",
"elevation21",
"elevation22",
"elevation23",
"elevation24"
],
"globalClasses": {},
"name": "MuiPaper"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiPaper",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Paper/Paper.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-card/\">Card</a></li>\n<li><a href=\"/material-ui/react-paper/\">Paper</a></li></ul>",
"cssComponent": false
}
| 4,747 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/popover.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './popover.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/popover', false, /popover.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,748 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/popover.json | {
"props": {
"open": { "type": { "name": "bool" }, "required": true },
"action": { "type": { "name": "custom", "description": "ref" } },
"anchorEl": { "type": { "name": "custom", "description": "HTML element<br>| func" } },
"anchorOrigin": {
"type": {
"name": "shape",
"description": "{ horizontal: 'center'<br>| 'left'<br>| 'right'<br>| number, vertical: 'bottom'<br>| 'center'<br>| 'top'<br>| number }"
},
"default": "{\n vertical: 'top',\n horizontal: 'left',\n}"
},
"anchorPosition": {
"type": { "name": "shape", "description": "{ left: number, top: number }" }
},
"anchorReference": {
"type": {
"name": "enum",
"description": "'anchorEl'<br>| 'anchorPosition'<br>| 'none'"
},
"default": "'anchorEl'"
},
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"container": { "type": { "name": "union", "description": "HTML element<br>| func" } },
"disableScrollLock": { "type": { "name": "bool" }, "default": "false" },
"elevation": { "type": { "name": "custom", "description": "integer" }, "default": "8" },
"marginThreshold": { "type": { "name": "number" }, "default": "16" },
"onClose": { "type": { "name": "func" } },
"PaperProps": {
"type": { "name": "shape", "description": "{ component?: element type }" },
"default": "{}",
"deprecated": true,
"deprecationInfo": "Use <code>slotProps.paper</code> instead."
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ paper?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ paper?: elementType, root?: elementType }" },
"default": "{}"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"transformOrigin": {
"type": {
"name": "shape",
"description": "{ horizontal: 'center'<br>| 'left'<br>| 'right'<br>| number, vertical: 'bottom'<br>| 'center'<br>| 'top'<br>| number }"
},
"default": "{\n vertical: 'top',\n horizontal: 'left',\n}"
},
"TransitionComponent": { "type": { "name": "elementType" }, "default": "Grow" },
"transitionDuration": {
"type": {
"name": "union",
"description": "'auto'<br>| number<br>| { appear?: number, enter?: number, exit?: number }"
},
"default": "'auto'"
},
"TransitionProps": { "type": { "name": "object" }, "default": "{}" }
},
"name": "Popover",
"imports": [
"import Popover from '@mui/material/Popover';",
"import { Popover } from '@mui/material';"
],
"styles": { "classes": ["root", "paper"], "globalClasses": {}, "name": "MuiPopover" },
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiPopover",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Popover/Popover.js",
"inheritance": { "component": "Modal", "pathname": "/material-ui/api/modal/" },
"demos": "<ul><li><a href=\"/material-ui/react-menu/\">Menu</a></li>\n<li><a href=\"/material-ui/react-popover/\">Popover</a></li></ul>",
"cssComponent": false
}
| 4,749 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/popper.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './popper.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/popper', false, /popper.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,750 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/popper.json | {
"props": {
"open": { "type": { "name": "bool" }, "required": true },
"anchorEl": {
"type": {
"name": "union",
"description": "HTML element<br>| object<br>| func"
}
},
"children": { "type": { "name": "union", "description": "node<br>| func" } },
"component": { "type": { "name": "elementType" } },
"components": {
"type": { "name": "shape", "description": "{ Root?: elementType }" },
"default": "{}"
},
"componentsProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"container": { "type": { "name": "union", "description": "HTML element<br>| func" } },
"disablePortal": { "type": { "name": "bool" }, "default": "false" },
"keepMounted": { "type": { "name": "bool" }, "default": "false" },
"modifiers": {
"type": {
"name": "arrayOf",
"description": "Array<{ data?: object, effect?: func, enabled?: bool, fn?: func, name?: any, options?: object, phase?: 'afterMain'<br>| 'afterRead'<br>| 'afterWrite'<br>| 'beforeMain'<br>| 'beforeRead'<br>| 'beforeWrite'<br>| 'main'<br>| 'read'<br>| 'write', requires?: Array<string>, requiresIfExists?: Array<string> }>"
}
},
"placement": {
"type": {
"name": "enum",
"description": "'auto-end'<br>| 'auto-start'<br>| 'auto'<br>| 'bottom-end'<br>| 'bottom-start'<br>| 'bottom'<br>| 'left-end'<br>| 'left-start'<br>| 'left'<br>| 'right-end'<br>| 'right-start'<br>| 'right'<br>| 'top-end'<br>| 'top-start'<br>| 'top'"
},
"default": "'bottom'"
},
"popperOptions": {
"type": {
"name": "shape",
"description": "{ modifiers?: array, onFirstUpdate?: func, placement?: 'auto-end'<br>| 'auto-start'<br>| 'auto'<br>| 'bottom-end'<br>| 'bottom-start'<br>| 'bottom'<br>| 'left-end'<br>| 'left-start'<br>| 'left'<br>| 'right-end'<br>| 'right-start'<br>| 'right'<br>| 'top-end'<br>| 'top-start'<br>| 'top', strategy?: 'absolute'<br>| 'fixed' }"
},
"default": "{}"
},
"popperRef": { "type": { "name": "custom", "description": "ref" } },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"transition": { "type": { "name": "bool" }, "default": "false" }
},
"name": "Popper",
"imports": [
"import Popper from '@mui/material/Popper';",
"import { Popper } from '@mui/material';"
],
"styles": { "classes": [], "globalClasses": {}, "name": null },
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiPopper",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Popper/Popper.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-autocomplete/\">Autocomplete</a></li>\n<li><a href=\"/material-ui/react-menu/\">Menu</a></li>\n<li><a href=\"/material-ui/react-popper/\">Popper</a></li></ul>",
"cssComponent": false
}
| 4,751 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/radio-group.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './radio-group.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/radio-group',
false,
/radio-group.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,752 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/radio-group.json | {
"props": {
"children": { "type": { "name": "node" } },
"defaultValue": { "type": { "name": "any" } },
"name": { "type": { "name": "string" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLInputElement>, value: string) => void",
"describedArgs": ["event", "value"]
}
},
"value": { "type": { "name": "any" } }
},
"name": "RadioGroup",
"imports": [
"import RadioGroup from '@mui/material/RadioGroup';",
"import { RadioGroup } from '@mui/material';"
],
"styles": {
"classes": ["root", "row", "error"],
"globalClasses": { "error": "Mui-error" },
"name": "MuiRadioGroup"
},
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiRadioGroup",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/RadioGroup/RadioGroup.js",
"inheritance": { "component": "FormGroup", "pathname": "/material-ui/api/form-group/" },
"demos": "<ul><li><a href=\"/material-ui/react-radio-button/\">Radio Group</a></li></ul>",
"cssComponent": false
}
| 4,753 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/radio.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './radio.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/radio', false, /radio.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,754 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/radio.json | {
"props": {
"checked": { "type": { "name": "bool" } },
"checkedIcon": { "type": { "name": "node" }, "default": "<RadioButtonIcon checked />" },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'default'<br>| 'primary'<br>| 'secondary'<br>| 'error'<br>| 'info'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'primary'"
},
"disabled": { "type": { "name": "bool" } },
"disableRipple": { "type": { "name": "bool" }, "default": "false" },
"icon": { "type": { "name": "node" }, "default": "<RadioButtonIcon />" },
"id": { "type": { "name": "string" } },
"inputProps": { "type": { "name": "object" } },
"inputRef": { "type": { "name": "custom", "description": "ref" } },
"name": { "type": { "name": "string" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLInputElement>) => void",
"describedArgs": ["event"]
}
},
"required": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'medium'<br>| 'small'<br>| string"
},
"default": "'medium'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "any" } }
},
"name": "Radio",
"imports": ["import Radio from '@mui/material/Radio';", "import { Radio } from '@mui/material';"],
"styles": {
"classes": ["root", "checked", "disabled", "colorPrimary", "colorSecondary", "sizeSmall"],
"globalClasses": { "checked": "Mui-checked", "disabled": "Mui-disabled" },
"name": "MuiRadio"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiRadio",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/Radio/Radio.js",
"inheritance": { "component": "ButtonBase", "pathname": "/material-ui/api/button-base/" },
"demos": "<ul><li><a href=\"/material-ui/react-radio-button/\">Radio Group</a></li></ul>",
"cssComponent": false
}
| 4,755 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/rating.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './rating.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/rating', false, /rating.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,756 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/rating.json | {
"props": {
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"defaultValue": { "type": { "name": "number" }, "default": "null" },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"emptyIcon": { "type": { "name": "node" }, "default": "<StarBorder fontSize=\"inherit\" />" },
"emptyLabelText": { "type": { "name": "node" }, "default": "'Empty'" },
"getLabelText": {
"type": { "name": "func" },
"default": "function defaultLabelText(value) {\n return `${value} Star${value !== 1 ? 's' : ''}`;\n}",
"signature": { "type": "function(value: number) => string", "describedArgs": ["value"] }
},
"highlightSelectedOnly": { "type": { "name": "bool" }, "default": "false" },
"icon": { "type": { "name": "node" }, "default": "<Star fontSize=\"inherit\" />" },
"IconContainerComponent": {
"type": { "name": "elementType" },
"default": "function IconContainer(props) {\n const { value, ...other } = props;\n return <span {...other} />;\n}"
},
"max": { "type": { "name": "number" }, "default": "5" },
"name": { "type": { "name": "string" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.SyntheticEvent, value: number | null) => void",
"describedArgs": ["event", "value"]
}
},
"onChangeActive": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.SyntheticEvent, value: number) => void",
"describedArgs": ["event", "value"]
}
},
"precision": { "type": { "name": "custom", "description": "number" }, "default": "1" },
"readOnly": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'small'<br>| 'medium'<br>| 'large'<br>| string"
},
"default": "'medium'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "number" } }
},
"name": "Rating",
"imports": [
"import Rating from '@mui/material/Rating';",
"import { Rating } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"sizeSmall",
"sizeMedium",
"sizeLarge",
"readOnly",
"disabled",
"focusVisible",
"visuallyHidden",
"label",
"labelEmptyValueActive",
"icon",
"iconEmpty",
"iconFilled",
"iconHover",
"iconFocus",
"iconActive",
"decimal"
],
"globalClasses": {
"readOnly": "Mui-readOnly",
"disabled": "Mui-disabled",
"focusVisible": "Mui-focusVisible"
},
"name": "MuiRating"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiRating",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/Rating/Rating.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-rating/\">Rating</a></li></ul>",
"cssComponent": false
}
| 4,757 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/scoped-css-baseline.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './scoped-css-baseline.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/scoped-css-baseline',
false,
/scoped-css-baseline.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,758 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/scoped-css-baseline.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"enableColorScheme": { "type": { "name": "bool" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ScopedCssBaseline",
"imports": [
"import ScopedCssBaseline from '@mui/material/ScopedCssBaseline';",
"import { ScopedCssBaseline } from '@mui/material';"
],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiScopedCssBaseline" },
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiScopedCssBaseline",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/ScopedCssBaseline/ScopedCssBaseline.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-css-baseline/\">CSS Baseline</a></li></ul>",
"cssComponent": false
}
| 4,759 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/select.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './select.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/select', false, /select.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,760 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/select.json | {
"props": {
"autoWidth": { "type": { "name": "bool" }, "default": "false" },
"children": { "type": { "name": "node" } },
"classes": {
"type": { "name": "object" },
"default": "{}",
"additionalInfo": { "cssApi": true }
},
"defaultOpen": { "type": { "name": "bool" }, "default": "false" },
"defaultValue": { "type": { "name": "any" } },
"displayEmpty": { "type": { "name": "bool" }, "default": "false" },
"IconComponent": { "type": { "name": "elementType" }, "default": "ArrowDropDownIcon" },
"id": { "type": { "name": "string" } },
"input": { "type": { "name": "element" } },
"inputProps": { "type": { "name": "object" } },
"label": { "type": { "name": "node" } },
"labelId": { "type": { "name": "string" } },
"MenuProps": { "type": { "name": "object" } },
"multiple": { "type": { "name": "bool" }, "default": "false" },
"native": { "type": { "name": "bool" }, "default": "false" },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: SelectChangeEvent<Value>, child?: object) => void",
"describedArgs": ["event", "child"]
}
},
"onClose": {
"type": { "name": "func" },
"signature": { "type": "function(event: object) => void", "describedArgs": ["event"] }
},
"onOpen": {
"type": { "name": "func" },
"signature": { "type": "function(event: object) => void", "describedArgs": ["event"] }
},
"open": { "type": { "name": "bool" } },
"renderValue": {
"type": { "name": "func" },
"signature": { "type": "function(value: any) => ReactNode", "describedArgs": ["value"] }
},
"SelectDisplayProps": { "type": { "name": "object" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "union", "description": "''<br>| any" } },
"variant": {
"type": {
"name": "enum",
"description": "'filled'<br>| 'outlined'<br>| 'standard'"
},
"default": "'outlined'"
}
},
"name": "Select",
"imports": [
"import Select from '@mui/material/Select';",
"import { Select } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"select",
"multiple",
"filled",
"outlined",
"standard",
"disabled",
"icon",
"iconOpen",
"iconFilled",
"iconOutlined",
"iconStandard",
"nativeInput",
"error"
],
"globalClasses": { "disabled": "Mui-disabled", "error": "Mui-error" },
"name": "MuiSelect"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSelect",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Select/Select.js",
"inheritance": { "component": "OutlinedInput", "pathname": "/material-ui/api/outlined-input/" },
"demos": "<ul><li><a href=\"/material-ui/react-select/\">Select</a></li></ul>",
"cssComponent": false
}
| 4,761 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/skeleton.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './skeleton.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/skeleton', false, /skeleton.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,762 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/skeleton.json | {
"props": {
"animation": {
"type": {
"name": "enum",
"description": "'pulse'<br>| 'wave'<br>| false"
},
"default": "'pulse'"
},
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"height": { "type": { "name": "union", "description": "number<br>| string" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"variant": {
"type": {
"name": "union",
"description": "'circular'<br>| 'rectangular'<br>| 'rounded'<br>| 'text'<br>| string"
},
"default": "'text'"
},
"width": { "type": { "name": "union", "description": "number<br>| string" } }
},
"name": "Skeleton",
"imports": [
"import Skeleton from '@mui/material/Skeleton';",
"import { Skeleton } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"text",
"rectangular",
"rounded",
"circular",
"pulse",
"wave",
"withChildren",
"fitContent",
"heightAuto"
],
"globalClasses": {},
"name": "MuiSkeleton"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSkeleton",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/Skeleton/Skeleton.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-skeleton/\">Skeleton</a></li></ul>",
"cssComponent": false
}
| 4,763 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/slide.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './slide.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/slide', false, /slide.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,764 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/slide.json | {
"props": {
"children": { "type": { "name": "custom", "description": "element" }, "required": true },
"addEndListener": { "type": { "name": "func" } },
"appear": { "type": { "name": "bool" }, "default": "true" },
"container": {
"type": { "name": "custom", "description": "HTML element<br>| func" }
},
"direction": {
"type": {
"name": "enum",
"description": "'down'<br>| 'left'<br>| 'right'<br>| 'up'"
},
"default": "'down'"
},
"easing": {
"type": {
"name": "union",
"description": "{ enter?: string, exit?: string }<br>| string"
},
"default": "{\n enter: theme.transitions.easing.easeOut,\n exit: theme.transitions.easing.sharp,\n}"
},
"in": { "type": { "name": "bool" } },
"timeout": {
"type": {
"name": "union",
"description": "number<br>| { appear?: number, enter?: number, exit?: number }"
},
"default": "{\n enter: theme.transitions.duration.enteringScreen,\n exit: theme.transitions.duration.leavingScreen,\n}"
}
},
"name": "Slide",
"imports": ["import Slide from '@mui/material/Slide';", "import { Slide } from '@mui/material';"],
"styles": { "classes": [], "globalClasses": {}, "name": null },
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiSlide",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Slide/Slide.js",
"inheritance": {
"component": "Transition",
"pathname": "http://reactcommunity.org/react-transition-group/transition/#Transition-props"
},
"demos": "<ul><li><a href=\"/material-ui/react-dialog/\">Dialog</a></li>\n<li><a href=\"/material-ui/transitions/\">Transitions</a></li></ul>",
"cssComponent": false
}
| 4,765 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/slider.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './slider.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/slider', false, /slider.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,766 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/slider.json | {
"props": {
"aria-label": { "type": { "name": "custom", "description": "string" } },
"aria-labelledby": { "type": { "name": "string" } },
"aria-valuetext": { "type": { "name": "custom", "description": "string" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'primary'<br>| 'secondary'<br>| 'error'<br>| 'info'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'primary'"
},
"components": {
"type": {
"name": "shape",
"description": "{ Input?: elementType, Mark?: elementType, MarkLabel?: elementType, Rail?: elementType, Root?: elementType, Thumb?: elementType, Track?: elementType, ValueLabel?: elementType }"
},
"default": "{}"
},
"componentsProps": {
"type": {
"name": "shape",
"description": "{ input?: func<br>| object, mark?: func<br>| object, markLabel?: func<br>| object, rail?: func<br>| object, root?: func<br>| object, thumb?: func<br>| object, track?: func<br>| object, valueLabel?: func<br>| { children?: element, className?: string, open?: bool, style?: object, value?: number, valueLabelDisplay?: 'auto'<br>| 'off'<br>| 'on' } }"
},
"default": "{}"
},
"defaultValue": {
"type": { "name": "union", "description": "Array<number><br>| number" }
},
"disabled": { "type": { "name": "bool" }, "default": "false" },
"disableSwap": { "type": { "name": "bool" }, "default": "false" },
"getAriaLabel": {
"type": { "name": "func" },
"signature": { "type": "function(index: number) => string", "describedArgs": ["index"] }
},
"getAriaValueText": {
"type": { "name": "func" },
"signature": {
"type": "function(value: number, index: number) => string",
"describedArgs": ["value", "index"]
}
},
"marks": {
"type": {
"name": "union",
"description": "Array<{ label?: node, value: number }><br>| bool"
},
"default": "false"
},
"max": { "type": { "name": "number" }, "default": "100" },
"min": { "type": { "name": "number" }, "default": "0" },
"name": { "type": { "name": "string" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: Event, value: number | Array<number>, activeThumb: number) => void",
"describedArgs": ["event", "value", "activeThumb"]
}
},
"onChangeCommitted": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.SyntheticEvent | Event, value: number | Array<number>) => void",
"describedArgs": ["event", "value"]
}
},
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"scale": {
"type": { "name": "func" },
"default": "function Identity(x) {\n return x;\n}",
"signature": { "type": "function(x: any) => any", "describedArgs": [] }
},
"size": {
"type": {
"name": "union",
"description": "'small'<br>| 'medium'<br>| string"
},
"default": "'medium'"
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ input?: func<br>| object, mark?: func<br>| object, markLabel?: func<br>| object, rail?: func<br>| object, root?: func<br>| object, thumb?: func<br>| object, track?: func<br>| object, valueLabel?: func<br>| { children?: element, className?: string, open?: bool, style?: object, value?: number, valueLabelDisplay?: 'auto'<br>| 'off'<br>| 'on' } }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ input?: elementType, mark?: elementType, markLabel?: elementType, rail?: elementType, root?: elementType, thumb?: elementType, track?: elementType, valueLabel?: elementType }"
},
"default": "{}"
},
"step": { "type": { "name": "number" }, "default": "1" },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"tabIndex": { "type": { "name": "number" } },
"track": {
"type": {
"name": "enum",
"description": "'inverted'<br>| 'normal'<br>| false"
},
"default": "'normal'"
},
"value": {
"type": { "name": "union", "description": "Array<number><br>| number" }
},
"valueLabelDisplay": {
"type": { "name": "enum", "description": "'auto'<br>| 'off'<br>| 'on'" },
"default": "'off'"
},
"valueLabelFormat": {
"type": { "name": "union", "description": "func<br>| string" },
"default": "function Identity(x) {\n return x;\n}"
}
},
"name": "Slider",
"imports": [
"import Slider from '@mui/material/Slider';",
"import { Slider } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"colorPrimary",
"colorSecondary",
"colorError",
"colorInfo",
"colorSuccess",
"colorWarning",
"marked",
"vertical",
"disabled",
"dragging",
"rail",
"track",
"trackFalse",
"trackInverted",
"thumb",
"active",
"focusVisible",
"mark",
"markActive",
"markLabel",
"markLabelActive",
"sizeSmall",
"thumbColorPrimary",
"thumbColorSecondary",
"thumbColorError",
"thumbColorInfo",
"thumbColorSuccess",
"thumbColorWarning",
"thumbSizeSmall",
"valueLabel",
"valueLabelOpen",
"valueLabelCircle",
"valueLabelLabel"
],
"globalClasses": {
"disabled": "Mui-disabled",
"active": "Mui-active",
"focusVisible": "Mui-focusVisible"
},
"name": "MuiSlider"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSlider",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/Slider/Slider.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-slider/\">Slider</a></li></ul>",
"cssComponent": false
}
| 4,767 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/snackbar-content.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './snackbar-content.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/snackbar-content',
false,
/snackbar-content.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,768 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/snackbar-content.json | {
"props": {
"action": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"message": { "type": { "name": "node" } },
"role": { "type": { "name": "string" }, "default": "'alert'" },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "SnackbarContent",
"imports": [
"import SnackbarContent from '@mui/material/SnackbarContent';",
"import { SnackbarContent } from '@mui/material';"
],
"styles": {
"classes": ["root", "message", "action"],
"globalClasses": {},
"name": "MuiSnackbarContent"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSnackbarContent",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/SnackbarContent/SnackbarContent.js",
"inheritance": { "component": "Paper", "pathname": "/material-ui/api/paper/" },
"demos": "<ul><li><a href=\"/material-ui/react-snackbar/\">Snackbar</a></li></ul>",
"cssComponent": false
}
| 4,769 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/snackbar.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './snackbar.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/snackbar', false, /snackbar.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,770 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/snackbar.json | {
"props": {
"action": { "type": { "name": "node" } },
"anchorOrigin": {
"type": {
"name": "shape",
"description": "{ horizontal: 'center'<br>| 'left'<br>| 'right', vertical: 'bottom'<br>| 'top' }"
},
"default": "{ vertical: 'bottom', horizontal: 'left' }"
},
"autoHideDuration": { "type": { "name": "number" }, "default": "null" },
"children": { "type": { "name": "element" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"ClickAwayListenerProps": { "type": { "name": "object" } },
"ContentProps": { "type": { "name": "object" } },
"disableWindowBlurListener": { "type": { "name": "bool" }, "default": "false" },
"key": { "type": { "name": "custom", "description": "any" } },
"message": { "type": { "name": "node" } },
"onClose": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.SyntheticEvent<any> | Event, reason: string) => void",
"describedArgs": ["event", "reason"]
}
},
"open": { "type": { "name": "bool" } },
"resumeHideDuration": { "type": { "name": "number" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"TransitionComponent": { "type": { "name": "elementType" }, "default": "Grow" },
"transitionDuration": {
"type": {
"name": "union",
"description": "number<br>| { appear?: number, enter?: number, exit?: number }"
},
"default": "{\n enter: theme.transitions.duration.enteringScreen,\n exit: theme.transitions.duration.leavingScreen,\n}"
},
"TransitionProps": { "type": { "name": "object" }, "default": "{}" }
},
"name": "Snackbar",
"imports": [
"import Snackbar from '@mui/material/Snackbar';",
"import { Snackbar } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"anchorOriginTopCenter",
"anchorOriginBottomCenter",
"anchorOriginTopRight",
"anchorOriginBottomRight",
"anchorOriginTopLeft",
"anchorOriginBottomLeft"
],
"globalClasses": {},
"name": "MuiSnackbar"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSnackbar",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Snackbar/Snackbar.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-snackbar/\">Snackbar</a></li></ul>",
"cssComponent": false
}
| 4,771 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/speed-dial-action.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './speed-dial-action.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/speed-dial-action',
false,
/speed-dial-action.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,772 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/speed-dial-action.json | {
"props": {
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"delay": { "type": { "name": "number" }, "default": "0" },
"FabProps": { "type": { "name": "object" }, "default": "{}" },
"icon": { "type": { "name": "node" } },
"id": { "type": { "name": "string" } },
"open": { "type": { "name": "bool" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"TooltipClasses": { "type": { "name": "object" } },
"tooltipOpen": { "type": { "name": "bool" }, "default": "false" },
"tooltipPlacement": {
"type": {
"name": "enum",
"description": "'bottom-end'<br>| 'bottom-start'<br>| 'bottom'<br>| 'left-end'<br>| 'left-start'<br>| 'left'<br>| 'right-end'<br>| 'right-start'<br>| 'right'<br>| 'top-end'<br>| 'top-start'<br>| 'top'"
},
"default": "'left'"
},
"tooltipTitle": { "type": { "name": "node" } }
},
"name": "SpeedDialAction",
"imports": [
"import SpeedDialAction from '@mui/material/SpeedDialAction';",
"import { SpeedDialAction } from '@mui/material';"
],
"styles": {
"classes": [
"fab",
"fabClosed",
"staticTooltip",
"staticTooltipClosed",
"staticTooltipLabel",
"tooltipPlacementLeft",
"tooltipPlacementRight"
],
"globalClasses": {},
"name": "MuiSpeedDialAction"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSpeedDialAction",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-material/src/SpeedDialAction/SpeedDialAction.js",
"inheritance": { "component": "Tooltip", "pathname": "/material-ui/api/tooltip/" },
"demos": "<ul><li><a href=\"/material-ui/react-speed-dial/\">Speed Dial</a></li></ul>",
"cssComponent": false
}
| 4,773 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/speed-dial-icon.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './speed-dial-icon.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/speed-dial-icon',
false,
/speed-dial-icon.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,774 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/speed-dial-icon.json | {
"props": {
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"icon": { "type": { "name": "node" } },
"openIcon": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "SpeedDialIcon",
"imports": [
"import SpeedDialIcon from '@mui/material/SpeedDialIcon';",
"import { SpeedDialIcon } from '@mui/material';"
],
"styles": {
"classes": ["root", "icon", "iconOpen", "iconWithOpenIconOpen", "openIcon", "openIconOpen"],
"globalClasses": {},
"name": "MuiSpeedDialIcon"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSpeedDialIcon",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/SpeedDialIcon/SpeedDialIcon.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-speed-dial/\">Speed Dial</a></li></ul>",
"cssComponent": false
}
| 4,775 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/speed-dial.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './speed-dial.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/speed-dial', false, /speed-dial.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,776 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/speed-dial.json | {
"props": {
"ariaLabel": { "type": { "name": "string" }, "required": true },
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"direction": {
"type": {
"name": "enum",
"description": "'down'<br>| 'left'<br>| 'right'<br>| 'up'"
},
"default": "'up'"
},
"FabProps": { "type": { "name": "object" }, "default": "{}" },
"hidden": { "type": { "name": "bool" }, "default": "false" },
"icon": { "type": { "name": "node" } },
"onClose": {
"type": { "name": "func" },
"signature": {
"type": "function(event: object, reason: string) => void",
"describedArgs": ["event", "reason"]
}
},
"onOpen": {
"type": { "name": "func" },
"signature": {
"type": "function(event: object, reason: string) => void",
"describedArgs": ["event", "reason"]
}
},
"open": { "type": { "name": "bool" } },
"openIcon": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"TransitionComponent": { "type": { "name": "elementType" }, "default": "Zoom" },
"transitionDuration": {
"type": {
"name": "union",
"description": "number<br>| { appear?: number, enter?: number, exit?: number }"
},
"default": "{\n enter: theme.transitions.duration.enteringScreen,\n exit: theme.transitions.duration.leavingScreen,\n}"
},
"TransitionProps": { "type": { "name": "object" } }
},
"name": "SpeedDial",
"imports": [
"import SpeedDial from '@mui/material/SpeedDial';",
"import { SpeedDial } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"fab",
"directionUp",
"directionDown",
"directionLeft",
"directionRight",
"actions",
"actionsClosed"
],
"globalClasses": {},
"name": "MuiSpeedDial"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSpeedDial",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/SpeedDial/SpeedDial.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-speed-dial/\">Speed Dial</a></li></ul>",
"cssComponent": false
}
| 4,777 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/stack.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './stack.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/stack', false, /stack.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,778 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/stack.json | {
"props": {
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"direction": {
"type": {
"name": "union",
"description": "'column-reverse'<br>| 'column'<br>| 'row-reverse'<br>| 'row'<br>| Array<'column-reverse'<br>| 'column'<br>| 'row-reverse'<br>| 'row'><br>| object"
}
},
"divider": { "type": { "name": "node" } },
"spacing": {
"type": {
"name": "union",
"description": "Array<number<br>| string><br>| number<br>| object<br>| string"
}
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"useFlexGap": { "type": { "name": "bool" } }
},
"name": "Stack",
"imports": ["import Stack from '@mui/material/Stack';", "import { Stack } from '@mui/material';"],
"styles": { "classes": [], "globalClasses": {}, "name": null },
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStack",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Stack/Stack.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-stack/\">Stack</a></li></ul>",
"cssComponent": true
}
| 4,779 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-button.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './step-button.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/step-button',
false,
/step-button.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,780 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-button.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"icon": { "type": { "name": "node" } },
"optional": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "StepButton",
"imports": [
"import StepButton from '@mui/material/StepButton';",
"import { StepButton } from '@mui/material';"
],
"styles": {
"classes": ["root", "horizontal", "vertical", "touchRipple"],
"globalClasses": {},
"name": "MuiStepButton"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStepButton",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-material/src/StepButton/StepButton.js",
"inheritance": { "component": "ButtonBase", "pathname": "/material-ui/api/button-base/" },
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,781 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-connector.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './step-connector.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/step-connector',
false,
/step-connector.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,782 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-connector.json | {
"props": {
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "StepConnector",
"imports": [
"import StepConnector from '@mui/material/StepConnector';",
"import { StepConnector } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"horizontal",
"vertical",
"alternativeLabel",
"active",
"completed",
"disabled",
"line",
"lineHorizontal",
"lineVertical"
],
"globalClasses": {
"active": "Mui-active",
"completed": "Mui-completed",
"disabled": "Mui-disabled"
},
"name": "MuiStepConnector"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStepConnector",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/StepConnector/StepConnector.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,783 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-content.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './step-content.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/step-content',
false,
/step-content.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,784 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-content.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"TransitionComponent": { "type": { "name": "elementType" }, "default": "Collapse" },
"transitionDuration": {
"type": {
"name": "union",
"description": "'auto'<br>| number<br>| { appear?: number, enter?: number, exit?: number }"
},
"default": "'auto'"
},
"TransitionProps": { "type": { "name": "object" } }
},
"name": "StepContent",
"imports": [
"import StepContent from '@mui/material/StepContent';",
"import { StepContent } from '@mui/material';"
],
"styles": {
"classes": ["root", "last", "transition"],
"globalClasses": {},
"name": "MuiStepContent"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStepContent",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/StepContent/StepContent.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,785 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-icon.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './step-icon.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/step-icon', false, /step-icon.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,786 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-icon.json | {
"props": {
"active": { "type": { "name": "bool" }, "default": "false" },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"completed": { "type": { "name": "bool" }, "default": "false" },
"error": { "type": { "name": "bool" }, "default": "false" },
"icon": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "StepIcon",
"imports": [
"import StepIcon from '@mui/material/StepIcon';",
"import { StepIcon } from '@mui/material';"
],
"styles": {
"classes": ["root", "text", "active", "completed", "error"],
"globalClasses": { "active": "Mui-active", "completed": "Mui-completed", "error": "Mui-error" },
"name": "MuiStepIcon"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStepIcon",
"forwardsRefTo": "SVGSVGElement",
"filename": "/packages/mui-material/src/StepIcon/StepIcon.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,787 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-label.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './step-label.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/step-label', false, /step-label.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,788 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step-label.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"componentsProps": {
"type": { "name": "shape", "description": "{ label?: object }" },
"default": "{}"
},
"error": { "type": { "name": "bool" }, "default": "false" },
"icon": { "type": { "name": "node" } },
"optional": { "type": { "name": "node" } },
"slotProps": {
"type": { "name": "shape", "description": "{ label?: object }" },
"default": "{}"
},
"StepIconComponent": { "type": { "name": "elementType" } },
"StepIconProps": { "type": { "name": "object" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "StepLabel",
"imports": [
"import StepLabel from '@mui/material/StepLabel';",
"import { StepLabel } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"horizontal",
"vertical",
"label",
"active",
"completed",
"error",
"disabled",
"iconContainer",
"alternativeLabel",
"labelContainer"
],
"globalClasses": {
"active": "Mui-active",
"completed": "Mui-completed",
"error": "Mui-error",
"disabled": "Mui-disabled"
},
"name": "MuiStepLabel"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStepLabel",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/StepLabel/StepLabel.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,789 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './step.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/step', false, /step.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,790 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/step.json | {
"props": {
"active": { "type": { "name": "bool" } },
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"completed": { "type": { "name": "bool" } },
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" } },
"expanded": { "type": { "name": "bool" }, "default": "false" },
"index": { "type": { "name": "custom", "description": "integer" } },
"last": { "type": { "name": "bool" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "Step",
"imports": ["import Step from '@mui/material/Step';", "import { Step } from '@mui/material';"],
"styles": {
"classes": ["root", "horizontal", "vertical", "alternativeLabel", "completed"],
"globalClasses": { "completed": "Mui-completed" },
"name": "MuiStep"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStep",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Step/Step.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,791 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/stepper.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './stepper.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/stepper', false, /stepper.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,792 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/stepper.json | {
"props": {
"activeStep": { "type": { "name": "custom", "description": "integer" }, "default": "0" },
"alternativeLabel": { "type": { "name": "bool" }, "default": "false" },
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"component": { "type": { "name": "elementType" } },
"connector": { "type": { "name": "element" }, "default": "<StepConnector />" },
"nonLinear": { "type": { "name": "bool" }, "default": "false" },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "Stepper",
"imports": [
"import Stepper from '@mui/material/Stepper';",
"import { Stepper } from '@mui/material';"
],
"styles": {
"classes": ["root", "horizontal", "vertical", "alternativeLabel"],
"globalClasses": {},
"name": "MuiStepper"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiStepper",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/Stepper/Stepper.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,793 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/svg-icon.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './svg-icon.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/svg-icon', false, /svg-icon.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,794 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/svg-icon.json | {
"props": {
"children": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'inherit'<br>| 'action'<br>| 'disabled'<br>| 'primary'<br>| 'secondary'<br>| 'error'<br>| 'info'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'inherit'"
},
"component": { "type": { "name": "elementType" } },
"fontSize": {
"type": {
"name": "union",
"description": "'inherit'<br>| 'large'<br>| 'medium'<br>| 'small'<br>| string"
},
"default": "'medium'"
},
"htmlColor": { "type": { "name": "string" } },
"inheritViewBox": { "type": { "name": "bool" }, "default": "false" },
"shapeRendering": { "type": { "name": "string" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"titleAccess": { "type": { "name": "string" } },
"viewBox": { "type": { "name": "string" }, "default": "'0 0 24 24'" }
},
"name": "SvgIcon",
"imports": [
"import SvgIcon from '@mui/material/SvgIcon';",
"import { SvgIcon } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"colorPrimary",
"colorSecondary",
"colorAction",
"colorError",
"colorDisabled",
"fontSizeInherit",
"fontSizeSmall",
"fontSizeMedium",
"fontSizeLarge"
],
"globalClasses": {},
"name": "MuiSvgIcon"
},
"spread": true,
"themeDefaultProps": true,
"muiName": "MuiSvgIcon",
"forwardsRefTo": "SVGSVGElement",
"filename": "/packages/mui-material/src/SvgIcon/SvgIcon.js",
"inheritance": null,
"demos": "<ul><li><a href=\"/material-ui/icons/\">Icons</a></li>\n<li><a href=\"/material-ui/material-icons/\">Material Icons</a></li></ul>",
"cssComponent": false
}
| 4,795 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/swipeable-drawer.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './swipeable-drawer.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context(
'docs/translations/api-docs/swipeable-drawer',
false,
/swipeable-drawer.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,796 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/swipeable-drawer.json | {
"props": {
"onClose": {
"type": { "name": "func" },
"required": true,
"signature": {
"type": "function(event: React.SyntheticEvent<{}>) => void",
"describedArgs": ["event"]
}
},
"onOpen": {
"type": { "name": "func" },
"required": true,
"signature": {
"type": "function(event: React.SyntheticEvent<{}>) => void",
"describedArgs": ["event"]
}
},
"allowSwipeInChildren": {
"type": { "name": "union", "description": "func<br>| bool" },
"default": "false"
},
"children": { "type": { "name": "node" } },
"disableBackdropTransition": { "type": { "name": "bool" }, "default": "false" },
"disableDiscovery": { "type": { "name": "bool" }, "default": "false" },
"disableSwipeToOpen": {
"type": { "name": "bool" },
"default": "typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent)"
},
"hysteresis": { "type": { "name": "number" }, "default": "0.52" },
"minFlingVelocity": { "type": { "name": "number" }, "default": "450" },
"open": { "type": { "name": "bool" }, "default": "false" },
"SwipeAreaProps": { "type": { "name": "object" } },
"swipeAreaWidth": { "type": { "name": "number" }, "default": "20" },
"transitionDuration": {
"type": {
"name": "union",
"description": "number<br>| { appear?: number, enter?: number, exit?: number }"
},
"default": "{\n enter: theme.transitions.duration.enteringScreen,\n exit: theme.transitions.duration.leavingScreen,\n}"
}
},
"name": "SwipeableDrawer",
"imports": [
"import SwipeableDrawer from '@mui/material/SwipeableDrawer';",
"import { SwipeableDrawer } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"docked",
"paper",
"paperAnchorLeft",
"paperAnchorRight",
"paperAnchorTop",
"paperAnchorBottom",
"paperAnchorDockedLeft",
"paperAnchorDockedTop",
"paperAnchorDockedRight",
"paperAnchorDockedBottom",
"modal"
],
"globalClasses": {},
"name": "MuiSwipeableDrawer"
},
"spread": true,
"themeDefaultProps": false,
"muiName": "MuiSwipeableDrawer",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-material/src/SwipeableDrawer/SwipeableDrawer.js",
"inheritance": { "component": "Drawer", "pathname": "/material-ui/api/drawer/" },
"demos": "<ul><li><a href=\"/material-ui/react-drawer/\">Drawer</a></li></ul>",
"cssComponent": false
}
| 4,797 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/switch.js | import * as React from 'react';
import ApiPage from 'docs/src/modules/components/ApiPage';
import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
import jsonPageContent from './switch.json';
export default function Page(props) {
const { descriptions, pageContent } = props;
return <ApiPage descriptions={descriptions} pageContent={pageContent} />;
}
Page.getInitialProps = () => {
const req = require.context('docs/translations/api-docs/switch', false, /switch.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,798 |
0 | petrpan-code/mui/material-ui/docs/pages/material-ui | petrpan-code/mui/material-ui/docs/pages/material-ui/api/switch.json | {
"props": {
"checked": { "type": { "name": "bool" } },
"checkedIcon": { "type": { "name": "node" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'default'<br>| 'primary'<br>| 'secondary'<br>| 'error'<br>| 'info'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'primary'"
},
"defaultChecked": { "type": { "name": "bool" } },
"disabled": { "type": { "name": "bool" } },
"disableRipple": { "type": { "name": "bool" }, "default": "false" },
"edge": {
"type": {
"name": "enum",
"description": "'end'<br>| 'start'<br>| false"
},
"default": "false"
},
"icon": { "type": { "name": "node" } },
"id": { "type": { "name": "string" } },
"inputProps": { "type": { "name": "object" } },
"inputRef": { "type": { "name": "custom", "description": "ref" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLInputElement>) => void",
"describedArgs": ["event"]
}
},
"required": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'medium'<br>| 'small'<br>| string"
},
"default": "'medium'"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "any" } }
},
"name": "Switch",
"imports": [
"import Switch from '@mui/material/Switch';",
"import { Switch } from '@mui/material';"
],
"styles": {
"classes": [
"root",
"edgeStart",
"edgeEnd",
"switchBase",
"colorPrimary",
"colorSecondary",
"sizeSmall",
"sizeMedium",
"checked",
"disabled",
"input",
"thumb",
"track"
],
"globalClasses": { "checked": "Mui-checked", "disabled": "Mui-disabled" },
"name": "MuiSwitch"
},
"spread": false,
"themeDefaultProps": false,
"muiName": "MuiSwitch",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-material/src/Switch/Switch.js",
"inheritance": { "component": "IconButton", "pathname": "/material-ui/api/icon-button/" },
"demos": "<ul><li><a href=\"/material-ui/react-switch/\">Switch</a></li>\n<li><a href=\"/material-ui/react-transfer-list/\">Transfer List</a></li></ul>",
"cssComponent": false
}
| 4,799 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.