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/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/grid.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 './grid.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-joy/grid', false, /grid.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,400 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/grid.json | {
"props": { "children": { "type": { "name": "node" } } },
"name": "Grid",
"imports": ["import Grid from '@mui/joy/Grid';", "import { Grid } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": null },
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyGrid",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Grid/Grid.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-grid/\">Grid</a></li></ul>",
"cssComponent": true
}
| 4,401 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/icon-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 './icon-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-joy/icon-button',
false,
/icon-button.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,402 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/icon-button.json | {
"props": {
"action": {
"type": {
"name": "union",
"description": "func<br>| { current?: { focusVisible: func } }"
}
},
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"focusVisibleClassName": { "type": { "name": "string" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "IconButton",
"imports": [
"import IconButton from '@mui/joy/IconButton';",
"import { IconButton } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiIconButton" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'button'",
"class": ".MuiIconButton-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"focusVisible",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": { "focusVisible": "Mui-focusVisible", "disabled": "Mui-disabled" }
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoyIconButton",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-joy/src/IconButton/IconButton.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-button/\">Button</a></li>\n<li><a href=\"/joy-ui/react-button-group/\">Button Group</a></li>\n<li><a href=\"/joy-ui/react-toggle-button-group/\">Toggle Button Group</a></li></ul>",
"cssComponent": false
}
| 4,403 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/input', false, /input.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,404 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/input.json | {
"props": {
"className": { "type": { "name": "string" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"additionalInfo": { "joy-color": true }
},
"endDecorator": { "type": { "name": "node" } },
"error": { "type": { "name": "bool" } },
"fullWidth": { "type": { "name": "bool" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"additionalInfo": { "joy-size": true }
},
"startDecorator": { "type": { "name": "node" } },
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"additionalInfo": { "joy-variant": true }
}
},
"name": "Input",
"imports": ["import Input from '@mui/joy/Input';", "import { Input } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiInput" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiInput-root"
},
{
"name": "input",
"description": "The component that renders the input.",
"default": "'input'",
"class": ".MuiInput-input"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'div'",
"class": ".MuiInput-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'div'",
"class": ".MuiInput-endDecorator"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"error",
"focused",
"formControl",
"fullWidth",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": { "focused": "Mui-focused", "disabled": "Mui-disabled", "error": "Mui-error" }
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoyInput",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Input/Input.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-input/\">Input</a></li></ul>",
"cssComponent": false
}
| 4,405 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/linear-progress',
false,
/linear-progress.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,406 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/linear-progress.json | {
"props": {
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'primary'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"determinate": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"thickness": { "type": { "name": "number" } },
"value": { "type": { "name": "number" }, "default": "determinate ? 0 : 25" },
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'soft'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "LinearProgress",
"imports": [
"import LinearProgress from '@mui/joy/LinearProgress';",
"import { LinearProgress } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiLinearProgress" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiLinearProgress-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"determinate",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyLinearProgress",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/LinearProgress/LinearProgress.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-linear-progress/\">Linear Progress</a></li></ul>",
"cssComponent": false
}
| 4,407 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/link', false, /link.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,408 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/link.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'primary'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"endDecorator": { "type": { "name": "node" } },
"level": {
"type": {
"name": "union",
"description": "'body1'<br>| 'body2'<br>| 'body3'<br>| 'h1'<br>| 'h2'<br>| 'h3'<br>| 'h4'<br>| 'h5'<br>| 'h6'<br>| 'inherit'<br>| string"
},
"default": "'body-md'"
},
"overlay": { "type": { "name": "bool" }, "default": "false" },
"slotProps": {
"type": {
"name": "shape",
"description": "{ endDecorator?: func<br>| object, root?: func<br>| object, startDecorator?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ endDecorator?: elementType, root?: elementType, startDecorator?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"startDecorator": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"textColor": { "type": { "name": "any" } },
"underline": {
"type": {
"name": "enum",
"description": "'always'<br>| 'hover'<br>| 'none'"
},
"default": "'hover'"
},
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Link",
"imports": ["import Link from '@mui/joy/Link';", "import { Link } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiLink" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'a'",
"class": ".MuiLink-root"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'span'",
"class": ".MuiLink-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'span'",
"class": ".MuiLink-endDecorator"
}
],
"classes": {
"classes": [
"body-lg",
"body-md",
"body-sm",
"body-xs",
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"focusVisible",
"h1",
"h2",
"h3",
"h4",
"title-lg",
"title-md",
"title-sm",
"underlineAlways",
"underlineHover",
"underlineNone",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": { "disabled": "Mui-disabled", "focusVisible": "Mui-focusVisible" }
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyLink",
"forwardsRefTo": "HTMLAnchorElement",
"filename": "/packages/mui-joy/src/Link/Link.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-link/\">Link</a></li></ul>",
"cssComponent": false
}
| 4,409 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-divider.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-divider.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-joy/list-divider',
false,
/list-divider.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,410 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-divider.json | {
"props": {
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"inset": {
"type": {
"name": "union",
"description": "'context'<br>| 'gutter'<br>| 'startDecorator'<br>| 'startContent'<br>| string"
},
"default": "'context'"
},
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListDivider",
"imports": [
"import ListDivider from '@mui/joy/ListDivider';",
"import { ListDivider } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiListDivider" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'li'",
"class": ".MuiListDivider-root"
}
],
"classes": {
"classes": [
"horizontal",
"insetGutter",
"insetStartContent",
"insetStartDecorator",
"vertical"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyListDivider",
"forwardsRefTo": "HTMLLIElement",
"filename": "/packages/mui-joy/src/ListDivider/ListDivider.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,411 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/list-item-button',
false,
/list-item-button.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,412 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-item-button.json | {
"props": {
"action": {
"type": {
"name": "union",
"description": "func<br>| { current?: { focusVisible: func } }"
}
},
"autoFocus": { "type": { "name": "bool" }, "default": "false" },
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"focusVisibleClassName": { "type": { "name": "string" } },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"selected": { "type": { "name": "bool" }, "default": "false" },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "ListItemButton",
"imports": [
"import ListItemButton from '@mui/joy/ListItemButton';",
"import { ListItemButton } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiListItemButton" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiListItemButton-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"focusVisible",
"horizontal",
"selected",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {
"focusVisible": "Mui-focusVisible",
"disabled": "Mui-disabled",
"selected": "Mui-selected"
}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyListItemButton",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/ListItemButton/ListItemButton.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,413 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-item-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 './list-item-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-joy/list-item-content',
false,
/list-item-content.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,414 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-item-content.json | {
"props": {
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItemContent",
"imports": [
"import ListItemContent from '@mui/joy/ListItemContent';",
"import { ListItemContent } from '@mui/joy';"
],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiListItemContent" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiListItemContent-root"
}
],
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyListItemContent",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/ListItemContent/ListItemContent.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,415 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-item-decorator.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-decorator.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-joy/list-item-decorator',
false,
/list-item-decorator.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,416 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-item-decorator.json | {
"props": {
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ListItemDecorator",
"imports": [
"import ListItemDecorator from '@mui/joy/ListItemDecorator';",
"import { ListItemDecorator } from '@mui/joy';"
],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiListItemDecorator" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'span'",
"class": ".MuiListItemDecorator-root"
}
],
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyListItemDecorator",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-joy/src/ListItemDecorator/ListItemDecorator.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,417 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/list-item',
false,
/list-item.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,418 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-item.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"endAction": { "type": { "name": "node" } },
"nested": { "type": { "name": "bool" }, "default": "false" },
"slotProps": {
"type": {
"name": "shape",
"description": "{ endAction?: func<br>| object, root?: func<br>| object, startAction?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ endAction?: elementType, root?: elementType, startAction?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"startAction": { "type": { "name": "node" } },
"sticky": { "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": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "ListItem",
"imports": ["import ListItem from '@mui/joy/ListItem';", "import { ListItem } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiListItem" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'li'",
"class": ".MuiListItem-root"
},
{
"name": "startAction",
"description": "The component that renders the start action.",
"default": "'div'",
"class": ".MuiListItem-startAction"
},
{
"name": "endAction",
"description": "The component that renders the end action.",
"default": "'div'",
"class": ".MuiListItem-endAction"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"nested",
"nesting",
"sticky",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyListItem",
"forwardsRefTo": "HTMLLIElement",
"filename": "/packages/mui-joy/src/ListItem/ListItem.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,419 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/list-subheader',
false,
/list-subheader.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,420 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list-subheader.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sticky": { "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": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"additionalInfo": { "joy-variant": true }
}
},
"name": "ListSubheader",
"imports": [
"import ListSubheader from '@mui/joy/ListSubheader';",
"import { ListSubheader } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiListSubheader" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiListSubheader-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"sticky",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyListSubheader",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/ListSubheader/ListSubheader.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,421 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/list', false, /list.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,422 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/list.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"marker": { "type": { "name": "string" } },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'vertical'"
},
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
},
"wrap": { "type": { "name": "bool" }, "default": "false" }
},
"name": "List",
"imports": ["import List from '@mui/joy/List';", "import { List } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiList" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'ul'",
"class": ".MuiList-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"horizontal",
"nesting",
"scoped",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyList",
"forwardsRefTo": "HTMLUListElement",
"filename": "/packages/mui-joy/src/List/List.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-list/\">Lists</a></li></ul>",
"cssComponent": false
}
| 4,423 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/menu-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 './menu-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-joy/menu-button',
false,
/menu-button.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,424 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/menu-button.json | {
"props": {
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'info'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"endDecorator": { "type": { "name": "node" } },
"fullWidth": { "type": { "name": "bool" }, "default": "false" },
"loading": { "type": { "name": "bool" }, "default": "false" },
"loadingIndicator": { "type": { "name": "node" }, "default": "<CircularProgress />" },
"loadingPosition": {
"type": {
"name": "enum",
"description": "'center'<br>| 'end'<br>| 'start'"
},
"default": "'center'"
},
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ endDecorator?: func<br>| object, loadingIndicatorCenter?: func<br>| object, root?: func<br>| object, startDecorator?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ endDecorator?: elementType, loadingIndicatorCenter?: elementType, root?: elementType, startDecorator?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"startDecorator": { "type": { "name": "node" } },
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'outlined'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "MenuButton",
"imports": [
"import MenuButton from '@mui/joy/MenuButton';",
"import { MenuButton } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiMenuButton" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'button'",
"class": ".MuiMenuButton-root"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'span'",
"class": ".MuiMenuButton-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'span'",
"class": ".MuiMenuButton-endDecorator"
},
{
"name": "loadingIndicatorCenter",
"description": "The component that renders the loading indicator center.",
"default": "'span'",
"class": ".MuiMenuButton-loadingIndicatorCenter"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorInfo",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"fullWidth",
"loading",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": { "disabled": "Mui-disabled" }
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyMenuButton",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-joy/src/MenuButton/MenuButton.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
| 4,425 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/menu-item',
false,
/menu-item.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,426 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/menu-item.json | {
"props": { "children": { "type": { "name": "node" } } },
"name": "MenuItem",
"imports": ["import MenuItem from '@mui/joy/MenuItem';", "import { MenuItem } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiMenuItem" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiMenuItem-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"focusVisible",
"selected",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {
"focusVisible": "Mui-focusVisible",
"disabled": "Mui-disabled",
"selected": "Mui-selected"
}
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoyMenuItem",
"forwardsRefTo": "HTMLLIElement",
"filename": "/packages/mui-joy/src/MenuItem/MenuItem.tsx",
"inheritance": { "component": "ListItemButton", "pathname": "/joy-ui/api/list-item-button/" },
"demos": "<ul><li><a href=\"/joy-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
| 4,427 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/menu-list',
false,
/menu-list.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,428 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/menu-list.json | {
"props": {
"actions": { "type": { "name": "custom", "description": "ref" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"onItemsChange": { "type": { "name": "func" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'outlined'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "MenuList",
"imports": ["import MenuList from '@mui/joy/MenuList';", "import { MenuList } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiMenuList" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'ul'",
"class": ".MuiMenuList-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyMenuList",
"forwardsRefTo": "HTMLUListElement",
"filename": "/packages/mui-joy/src/MenuList/MenuList.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
| 4,429 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/menu', false, /menu.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,430 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/menu.json | {
"props": {
"actions": { "type": { "name": "custom", "description": "ref" } },
"color": {
"type": {
"name": "enum",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disablePortal": { "type": { "name": "bool" }, "default": "false" },
"invertedColors": { "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> }>"
}
},
"onClose": { "type": { "name": "func" } },
"onItemsChange": { "type": { "name": "func" } },
"open": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'outlined'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Menu",
"imports": ["import Menu from '@mui/joy/Menu';", "import { Menu } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiMenu" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'ul'",
"class": ".MuiMenu-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"expanded",
"listbox",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": { "expanded": "Mui-expanded" }
},
"spread": true,
"themeDefaultProps": false,
"muiName": "JoyMenu",
"forwardsRefTo": "HTMLUListElement",
"filename": "/packages/mui-joy/src/Menu/Menu.tsx",
"inheritance": { "component": "Popper", "pathname": "/base-ui/api/popper/" },
"demos": "<ul><li><a href=\"/joy-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
| 4,431 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/modal-close.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-close.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-joy/modal-close',
false,
/modal-close.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,432 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/modal-close.json | {
"props": {
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "ModalClose",
"imports": [
"import ModalClose from '@mui/joy/ModalClose';",
"import { ModalClose } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiModalClose" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'button'",
"class": ".MuiModalClose-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyModalClose",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-joy/src/ModalClose/ModalClose.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-drawer/\">Drawer</a></li>\n<li><a href=\"/joy-ui/react-modal/\">Modal</a></li></ul>",
"cssComponent": false
}
| 4,433 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/modal-dialog.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-dialog.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-joy/modal-dialog',
false,
/modal-dialog.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,434 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/modal-dialog.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"invertedColors": { "type": { "name": "bool" }, "default": "false" },
"layout": {
"type": {
"name": "union",
"description": "'center'<br>| 'fullscreen'<br>| string"
},
"default": "'center'"
},
"maxWidth": { "type": { "name": "union", "description": "number<br>| string" } },
"minWidth": { "type": { "name": "union", "description": "number<br>| string" } },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'vertical'"
},
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'outlined'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "ModalDialog",
"imports": [
"import ModalDialog from '@mui/joy/ModalDialog';",
"import { ModalDialog } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiModalDialog" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiModalDialog-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"layoutCenter",
"layoutFullscreen",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyModalDialog",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/ModalDialog/ModalDialog.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-modal/\">Modal</a></li></ul>",
"cssComponent": false
}
| 4,435 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/modal-overflow.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-overflow.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-joy/modal-overflow',
false,
/modal-overflow.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,436 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/modal-overflow.json | {
"props": {
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
}
},
"name": "ModalOverflow",
"imports": [
"import ModalOverflow from '@mui/joy/ModalOverflow';",
"import { ModalOverflow } from '@mui/joy';"
],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiModalOverflow" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiModalOverflow-root"
}
],
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyModalOverflow",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/ModalOverflow/ModalOverflow.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-modal/\">Modal</a></li></ul>",
"cssComponent": false
}
| 4,437 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/modal', false, /modal.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,438 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/modal.json | {
"props": {
"children": { "type": { "name": "custom", "description": "element" }, "required": true },
"open": { "type": { "name": "bool" }, "required": true },
"component": { "type": { "name": "elementType" } },
"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" },
"onClose": {
"type": { "name": "func" },
"signature": {
"type": "function(event: object, reason: string) => void",
"describedArgs": ["event", "reason"]
}
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ backdrop?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ backdrop?: elementType, root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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/joy/Modal';", "import { Modal } from '@mui/joy';"],
"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.",
"default": "'div'",
"class": ".MuiModal-backdrop"
}
],
"classes": { "classes": ["hidden"], "globalClasses": {} },
"spread": true,
"themeDefaultProps": false,
"muiName": "JoyModal",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Modal/Modal.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-modal/\">Modal</a></li></ul>",
"cssComponent": false
}
| 4,439 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/option.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 './option.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-joy/option', false, /option.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,440 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/option.json | {
"props": {
"value": { "type": { "name": "any" }, "required": true },
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"additionalInfo": { "joy-color": true }
},
"disabled": { "type": { "name": "bool" } },
"label": { "type": { "name": "union", "description": "element<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": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"additionalInfo": { "joy-variant": true }
}
},
"name": "Option",
"imports": ["import Option from '@mui/joy/Option';", "import { Option } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiOption" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'li'",
"class": ".MuiOption-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"highlighted",
"selected",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": { "disabled": "Mui-disabled", "selected": "Mui-selected" }
},
"spread": true,
"themeDefaultProps": null,
"muiName": "JoyOption",
"filename": "/packages/mui-joy/src/Option/Option.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-select/\">Select</a></li></ul>",
"cssComponent": false
}
| 4,441 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/radio-group',
false,
/radio-group.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,442 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/radio-group.json | {
"props": {
"className": { "type": { "name": "string" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"defaultValue": { "type": { "name": "any" } },
"disableIcon": { "type": { "name": "bool" }, "default": "false" },
"name": { "type": { "name": "string" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLInputElement>) => void",
"describedArgs": ["event"]
}
},
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'vertical'"
},
"overlay": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "RadioGroup",
"imports": [
"import RadioGroup from '@mui/joy/RadioGroup';",
"import { RadioGroup } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiRadioGroup" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiRadioGroup-root"
}
],
"classes": {
"classes": [
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"horizontal",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {}
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoyRadioGroup",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/RadioGroup/RadioGroup.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-radio-button/\">Radio</a></li></ul>",
"cssComponent": false
}
| 4,443 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/radio', false, /radio.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,444 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/radio.json | {
"props": {
"checked": { "type": { "name": "bool" } },
"checkedIcon": { "type": { "name": "node" } },
"className": { "type": { "name": "string" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"defaultChecked": { "type": { "name": "bool" } },
"disabled": { "type": { "name": "bool" } },
"disableIcon": { "type": { "name": "bool" }, "default": "false" },
"label": { "type": { "name": "node" } },
"name": { "type": { "name": "string" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLInputElement>) => void",
"describedArgs": ["event"]
}
},
"overlay": { "type": { "name": "bool" }, "default": "false" },
"readOnly": { "type": { "name": "bool" } },
"required": { "type": { "name": "bool" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ action?: func<br>| object, icon?: func<br>| object, input?: func<br>| object, label?: func<br>| object, radio?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ action?: elementType, icon?: elementType, input?: elementType, label?: elementType, radio?: elementType, root?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"uncheckedIcon": { "type": { "name": "node" } },
"value": { "type": { "name": "any" } },
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'outlined'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Radio",
"imports": ["import Radio from '@mui/joy/Radio';", "import { Radio } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiRadio" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'span'",
"class": ".MuiRadio-root"
},
{
"name": "radio",
"description": "The component that renders the radio.",
"default": "'span'",
"class": ".MuiRadio-radio"
},
{
"name": "icon",
"description": "The component that renders the icon.",
"default": "'span'",
"class": ".MuiRadio-icon"
},
{
"name": "action",
"description": "The component that renders the action.",
"default": "'span'",
"class": ".MuiRadio-action"
},
{
"name": "input",
"description": "The component that renders the input.",
"default": "'input'",
"class": ".MuiRadio-input"
},
{
"name": "label",
"description": "The component that renders the label.",
"default": "'label'",
"class": ".MuiRadio-label"
}
],
"classes": {
"classes": [
"checked",
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"focusVisible",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantSoft",
"variantSolid"
],
"globalClasses": {
"checked": "Mui-checked",
"disabled": "Mui-disabled",
"focusVisible": "Mui-focusVisible"
}
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoyRadio",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-joy/src/Radio/Radio.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-radio-button/\">Radio</a></li></ul>",
"cssComponent": false
}
| 4,445 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/scoped-css-baseline',
false,
/scoped-css-baseline.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,446 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/scoped-css-baseline.json | {
"props": {
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"disableColorScheme": { "type": { "name": "bool" }, "default": "false" },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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/joy/ScopedCssBaseline';",
"import { ScopedCssBaseline } from '@mui/joy';"
],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiScopedCssBaseline" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiScopedCssBaseline-root"
}
],
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyScopedCssBaseline",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/ScopedCssBaseline/ScopedCssBaseline.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-css-baseline/\">CSS Baseline</a></li></ul>",
"cssComponent": false
}
| 4,447 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/select', false, /select.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,448 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/select.json | {
"props": {
"action": {
"type": {
"name": "union",
"description": "func<br>| { current?: { focusVisible: func } }"
}
},
"autoFocus": { "type": { "name": "bool" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"defaultListboxOpen": { "type": { "name": "bool" } },
"defaultValue": { "type": { "name": "any" } },
"disabled": { "type": { "name": "bool" } },
"endDecorator": { "type": { "name": "node" } },
"getSerializedValue": { "type": { "name": "func" } },
"indicator": { "type": { "name": "node" } },
"listboxId": { "type": { "name": "string" } },
"listboxOpen": { "type": { "name": "bool" } },
"multiple": { "type": { "name": "bool" } },
"name": { "type": { "name": "string" } },
"onChange": { "type": { "name": "func" } },
"onClose": { "type": { "name": "func" } },
"onListboxOpenChange": { "type": { "name": "func" } },
"placeholder": { "type": { "name": "node" } },
"renderValue": { "type": { "name": "func" } },
"required": { "type": { "name": "bool" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"additionalInfo": { "joy-size": true }
},
"slots": {
"type": {
"name": "shape",
"description": "{ button?: elementType, endDecorator?: elementType, indicator?: elementType, listbox?: elementType, root?: elementType, startDecorator?: elementType }"
},
"additionalInfo": { "slotsApi": true }
},
"startDecorator": { "type": { "name": "node" } },
"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": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"additionalInfo": { "joy-variant": true }
}
},
"name": "Select",
"imports": ["import Select from '@mui/joy/Select';", "import { Select } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiSelect" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiSelect-root"
},
{
"name": "button",
"description": "The component that renders the button.",
"default": "'button'",
"class": ".MuiSelect-button"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'span'",
"class": ".MuiSelect-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'span'",
"class": ".MuiSelect-endDecorator"
},
{
"name": "indicator",
"description": "The component that renders the indicator.",
"default": "'span'",
"class": ".MuiSelect-indicator"
},
{
"name": "listbox",
"description": "The component that renders the listbox.",
"default": "'ul'",
"class": ".MuiSelect-listbox"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"expanded",
"focusVisible",
"multiple",
"popper",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {
"focusVisible": "Mui-focusVisible",
"disabled": "Mui-disabled",
"expanded": "Mui-expanded"
}
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoySelect",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Select/Select.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-select/\">Select</a></li></ul>",
"cssComponent": false
}
| 4,449 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/sheet.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 './sheet.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-joy/sheet', false, /sheet.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,450 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/sheet.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"invertedColors": { "type": { "name": "bool" }, "default": "false" },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Sheet",
"imports": ["import Sheet from '@mui/joy/Sheet';", "import { Sheet } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiSheet" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiSheet-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoySheet",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Sheet/Sheet.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-sheet/\">Sheet</a></li></ul>",
"cssComponent": false
}
| 4,451 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/skeleton', false, /skeleton.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,452 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/skeleton.json | {
"props": {
"animation": {
"type": {
"name": "enum",
"description": "'pulse'<br>| 'wave'<br>| false"
},
"default": "'pulse'"
},
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"height": {
"type": {
"name": "union",
"description": "Array<number<br>| string><br>| number<br>| { lg?: number<br>| string, md?: number<br>| string, sm?: number<br>| string, xl?: number<br>| string, xs?: number<br>| string }<br>| string"
}
},
"level": {
"type": {
"name": "union",
"description": "'h1'<br>| 'h2'<br>| 'h3'<br>| 'h4'<br>| 'title-lg'<br>| 'title-md'<br>| 'title-sm'<br>| 'body-lg'<br>| 'body-md'<br>| 'body-sm'<br>| 'body-xs'<br>| 'inherit'<br>| string"
},
"default": "variant === 'text' ? 'body-md' : 'inherit'"
},
"loading": { "type": { "name": "bool" }, "default": "true" },
"overlay": { "type": { "name": "bool" }, "default": "false" },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'inline'<br>| 'overlay'<br>| 'rectangular'<br>| 'text'<br>| string"
},
"default": "'overlay'",
"additionalInfo": { "joy-variant": true }
},
"width": {
"type": {
"name": "union",
"description": "Array<number<br>| string><br>| number<br>| { lg?: number<br>| string, md?: number<br>| string, sm?: number<br>| string, xl?: number<br>| string, xs?: number<br>| string }<br>| string"
}
}
},
"name": "Skeleton",
"imports": ["import Skeleton from '@mui/joy/Skeleton';", "import { Skeleton } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiSkeleton" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'span'",
"class": ".MuiSkeleton-root"
}
],
"classes": {
"classes": [
"body-lg",
"body-md",
"body-sm",
"body-xs",
"h1",
"h2",
"h3",
"h4",
"title-lg",
"title-md",
"title-sm",
"variantCircular",
"variantInline",
"variantOverlay",
"variantRectangular",
"variantText"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoySkeleton",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-joy/src/Skeleton/Skeleton.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-skeleton/\">Skeleton</a></li></ul>",
"cssComponent": false
}
| 4,453 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/slider', false, /slider.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,454 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/slider.json | {
"props": {
"aria-label": { "type": { "name": "string" } },
"aria-valuetext": { "type": { "name": "string" } },
"classes": { "type": { "name": "object" }, "additionalInfo": { "cssApi": true } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'primary'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"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"]
}
},
"isRtl": { "type": { "name": "bool" }, "default": "false" },
"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": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"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>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ input?: elementType, mark?: elementType, markLabel?: elementType, rail?: elementType, root?: elementType, thumb?: elementType, track?: elementType, valueLabel?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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}"
},
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'solid'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Slider",
"imports": ["import Slider from '@mui/joy/Slider';", "import { Slider } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiSlider" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'span'",
"class": ".MuiSlider-root"
},
{
"name": "track",
"description": "The component that renders the track.",
"default": "'span'",
"class": ".MuiSlider-track"
},
{
"name": "rail",
"description": "The component that renders the rail.",
"default": "'span'",
"class": ".MuiSlider-rail"
},
{
"name": "thumb",
"description": "The component that renders the thumb.",
"default": "'span'",
"class": ".MuiSlider-thumb"
},
{
"name": "mark",
"description": "The component that renders the mark.",
"default": "'span'",
"class": ".MuiSlider-mark"
},
{
"name": "markLabel",
"description": "The component that renders the mark label.",
"default": "'span'",
"class": ".MuiSlider-markLabel"
},
{
"name": "valueLabel",
"description": "The component that renders the value label.",
"default": "'span'",
"class": ".MuiSlider-valueLabel"
},
{
"name": "input",
"description": "The component that renders the input.",
"default": "'input'",
"class": ".MuiSlider-input"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"dragging",
"focusVisible",
"markActive",
"marked",
"sizeLg",
"sizeMd",
"sizeSm",
"trackFalse",
"trackInverted",
"valueLabelOpen",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": { "disabled": "Mui-disabled", "focusVisible": "Mui-focusVisible" }
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoySlider",
"forwardsRefTo": "HTMLSpanElement",
"filename": "/packages/mui-joy/src/Slider/Slider.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-slider/\">Slider</a></li></ul>",
"cssComponent": false
}
| 4,455 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/snackbar', false, /snackbar.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,456 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/snackbar.json | {
"props": {
"open": { "type": { "name": "bool" }, "required": true },
"anchorOrigin": {
"type": {
"name": "shape",
"description": "{ horizontal: 'center'<br>| 'left'<br>| 'right', vertical: 'bottom'<br>| 'top' }"
},
"default": "{ vertical: 'bottom', horizontal: 'right' }"
},
"animationDuration": { "type": { "name": "number" }, "default": "300" },
"autoHideDuration": { "type": { "name": "number" }, "default": "null" },
"color": {
"type": {
"name": "enum",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disableWindowBlurListener": { "type": { "name": "bool" }, "default": "false" },
"endDecorator": { "type": { "name": "node" } },
"invertedColors": { "type": { "name": "bool" }, "default": "false" },
"key": { "type": { "name": "custom", "description": "any" } },
"onClose": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.SyntheticEvent<any> | Event, reason: string) => void",
"describedArgs": ["event", "reason"]
}
},
"onUnmount": { "type": { "name": "func" } },
"resumeHideDuration": { "type": { "name": "number" } },
"size": {
"type": { "name": "enum", "description": "'sm'<br>| 'md'<br>| 'lg'" },
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ clickAway?: func<br>| { children: element, disableReactTree?: bool, mouseEvent?: 'onClick'<br>| 'onMouseDown'<br>| 'onMouseUp'<br>| 'onPointerDown'<br>| 'onPointerUp'<br>| false, onClickAway: func, touchEvent?: 'onTouchEnd'<br>| 'onTouchStart'<br>| false }, endDecorator?: func<br>| object, root?: func<br>| object, startDecorator?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ clickAway?: elementType, endDecorator?: elementType, root?: elementType, startDecorator?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"startDecorator": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"variant": {
"type": {
"name": "enum",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'"
},
"default": "'outlined'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Snackbar",
"imports": ["import Snackbar from '@mui/joy/Snackbar';", "import { Snackbar } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiSnackbar" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiSnackbar-root"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'span'",
"class": ".MuiSnackbar-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'span'",
"class": ".MuiSnackbar-endDecorator"
},
{
"name": "clickAway",
"description": "The component that renders the click away.",
"default": "ClickAwayListener",
"class": null
}
],
"classes": {
"classes": [
"anchorOriginBottomCenter",
"anchorOriginBottomLeft",
"anchorOriginBottomRight",
"anchorOriginTopCenter",
"anchorOriginTopLeft",
"anchorOriginTopRight",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoySnackbar",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Snackbar/Snackbar.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-snackbar/\">Snackbar</a></li></ul>",
"cssComponent": false
}
| 4,457 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/stack', false, /stack.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,458 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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/joy/Stack';", "import { Stack } from '@mui/joy';"],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiStack" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiStack-root"
}
],
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyStack",
"forwardsRefTo": "HTMLElement",
"filename": "/packages/mui-joy/src/Stack/Stack.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-stack/\">Stack</a></li></ul>",
"cssComponent": true
}
| 4,459 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/step-button',
false,
/step-button.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,460 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/step-button.json | {
"props": {
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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/joy/StepButton';",
"import { StepButton } from '@mui/joy';"
],
"styles": { "classes": ["root"], "globalClasses": {}, "name": "MuiStepButton" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'button'",
"class": ".MuiStepButton-root"
}
],
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyStepButton",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-joy/src/StepButton/StepButton.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,461 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/step-indicator.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-indicator.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-joy/step-indicator',
false,
/step-indicator.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,462 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/step-indicator.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'soft'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "StepIndicator",
"imports": [
"import StepIndicator from '@mui/joy/StepIndicator';",
"import { StepIndicator } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiStepIndicator" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiStepIndicator-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"horizontal",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyStepIndicator",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/StepIndicator/StepIndicator.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,463 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/step', false, /step.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,464 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/step.json | {
"props": {
"active": { "type": { "name": "bool" }, "default": "false" },
"children": { "type": { "name": "node" } },
"completed": { "type": { "name": "bool" }, "default": "false" },
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"indicator": { "type": { "name": "node" } },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ indicator?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ indicator?: elementType, root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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/joy/Step';", "import { Step } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiStep" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'li'",
"class": ".MuiStep-root"
},
{
"name": "indicator",
"description": "The component that renders the indicator.",
"default": "'div'",
"class": ".MuiStep-indicator"
}
],
"classes": {
"classes": ["active", "completed", "disabled", "horizontal", "vertical"],
"globalClasses": {
"active": "Mui-active",
"completed": "Mui-completed",
"disabled": "Mui-disabled"
}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyStep",
"forwardsRefTo": "HTMLLIElement",
"filename": "/packages/mui-joy/src/Step/Step.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,465 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/stepper', false, /stepper.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,466 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/stepper.json | {
"props": {
"children": { "type": { "name": "node" } },
"component": { "type": { "name": "elementType" } },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"size": {
"type": {
"name": "union",
"description": "'lg'<br>| 'md'<br>| 'sm'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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/joy/Stepper';", "import { Stepper } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiStepper" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'ol'",
"class": ".MuiStepper-root"
}
],
"classes": {
"classes": ["horizontal", "sizeLg", "sizeMd", "sizeSm", "vertical"],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyStepper",
"forwardsRefTo": "HTMLOListElement",
"filename": "/packages/mui-joy/src/Stepper/Stepper.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-stepper/\">Stepper</a></li></ul>",
"cssComponent": false
}
| 4,467 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/svg-icon', false, /svg-icon.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,468 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/svg-icon.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'inherit'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"fontSize": {
"type": {
"name": "union",
"description": "'inherit'<br>| 'lg'<br>| 'md'<br>| 'sm'<br>| 'xl'<br>| 'xl2'<br>| 'xl3'<br>| 'xl4'<br>| 'xs'<br>| string"
}
},
"htmlColor": { "type": { "name": "string" } },
"inheritViewBox": { "type": { "name": "bool" }, "default": "false" },
"shapeRendering": { "type": { "name": "string" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"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/joy/SvgIcon';", "import { SvgIcon } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiSvgIcon" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'svg'",
"class": ".MuiSvgIcon-root"
}
],
"classes": {
"classes": [
"colorDanger",
"colorInherit",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"fontSizeInherit",
"fontSizeLg",
"fontSizeMd",
"fontSizeSm",
"fontSizeXl",
"fontSizeXl2",
"fontSizeXl3",
"fontSizeXl4",
"fontSizeXs",
"sizeLg",
"sizeMd",
"sizeSm"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoySvgIcon",
"forwardsRefTo": "SVGSVGElement",
"filename": "/packages/mui-joy/src/SvgIcon/SvgIcon.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-avatar/\">Avatar</a></li></ul>",
"cssComponent": false
}
| 4,469 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-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-joy/switch', false, /switch.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,470 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/switch.json | {
"props": {
"checked": { "type": { "name": "bool" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"defaultChecked": { "type": { "name": "bool" } },
"disabled": { "type": { "name": "bool" } },
"endDecorator": { "type": { "name": "union", "description": "node<br>| func" } },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.ChangeEvent<HTMLInputElement>) => void",
"describedArgs": ["event"]
}
},
"readOnly": { "type": { "name": "bool" } },
"required": { "type": { "name": "bool" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ action?: func<br>| object, endDecorator?: func<br>| object, input?: func<br>| object, root?: func<br>| object, startDecorator?: func<br>| object, thumb?: func<br>| object, track?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ action?: elementType, endDecorator?: elementType, input?: elementType, root?: elementType, startDecorator?: elementType, thumb?: elementType, track?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"startDecorator": { "type": { "name": "union", "description": "node<br>| func" } },
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'solid'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Switch",
"imports": ["import Switch from '@mui/joy/Switch';", "import { Switch } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiSwitch" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiSwitch-root"
},
{
"name": "thumb",
"description": "The component that renders the thumb.",
"default": "'span'",
"class": ".MuiSwitch-thumb"
},
{
"name": "action",
"description": "The component that renders the action.",
"default": "'div'",
"class": ".MuiSwitch-action"
},
{
"name": "input",
"description": "The component that renders the input.",
"default": "'input'",
"class": ".MuiSwitch-input"
},
{
"name": "track",
"description": "The component that renders the track.",
"default": "'span'",
"class": ".MuiSwitch-track"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'span'",
"class": ".MuiSwitch-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'span'",
"class": ".MuiSwitch-endDecorator"
}
],
"classes": {
"classes": [
"checked",
"colorContext",
"colorDanger",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"focusVisible",
"readOnly",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantSoft",
"variantSolid"
],
"globalClasses": {
"checked": "Mui-checked",
"disabled": "Mui-disabled",
"focusVisible": "Mui-focusVisible",
"readOnly": "Mui-readOnly"
}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoySwitch",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Switch/Switch.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-switch/\">Switch</a></li></ul>",
"cssComponent": false
}
| 4,471 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tab-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 './tab-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-joy/tab-list', false, /tab-list.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,472 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tab-list.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disableUnderline": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sticky": { "type": { "name": "enum", "description": "'bottom'<br>| 'top'" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"tabFlex": { "type": { "name": "union", "description": "number<br>| string" } },
"underlinePlacement": {
"type": {
"name": "enum",
"description": "'bottom'<br>| 'left'<br>| 'right'<br>| 'top'"
},
"default": "orientation === 'horizontal' ? 'bottom' : 'right'"
},
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "TabList",
"imports": ["import TabList from '@mui/joy/TabList';", "import { TabList } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTabList" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiTabList-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyTabList",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/TabList/TabList.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-tabs/\">Tabs</a></li></ul>",
"cssComponent": false
}
| 4,473 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tab-panel.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 './tab-panel.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-joy/tab-panel',
false,
/tab-panel.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,474 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tab-panel.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"keepMounted": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": {
"type": { "name": "union", "description": "number<br>| string" },
"default": "0"
},
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "TabPanel",
"imports": ["import TabPanel from '@mui/joy/TabPanel';", "import { TabPanel } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTabPanel" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiTabPanel-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"hidden",
"horizontal",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyTabPanel",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/TabPanel/TabPanel.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-tabs/\">Tabs</a></li></ul>",
"cssComponent": false
}
| 4,475 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tab.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 './tab.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-joy/tab', false, /tab.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,476 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tab.json | {
"props": {
"action": {
"type": {
"name": "union",
"description": "func<br>| { current?: { focusVisible: func } }"
}
},
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"disableIndicator": { "type": { "name": "bool" }, "default": "false" },
"indicatorInset": { "type": { "name": "bool" }, "default": "false" },
"indicatorPlacement": {
"type": {
"name": "enum",
"description": "'bottom'<br>| 'left'<br>| 'right'<br>| 'top'"
},
"default": "row ? 'bottom' : 'right'"
},
"onChange": { "type": { "name": "func" } },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "union", "description": "number<br>| string" } },
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Tab",
"imports": ["import Tab from '@mui/joy/Tab';", "import { Tab } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTab" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'button'",
"class": ".MuiTab-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"focusVisible",
"horizontal",
"selected",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {
"disabled": "Mui-disabled",
"focusVisible": "Mui-focusVisible",
"selected": "Mui-selected"
}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyTab",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-joy/src/Tab/Tab.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-tabs/\">Tabs</a></li></ul>",
"cssComponent": false
}
| 4,477 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/table.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 './table.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-joy/table', false, /table.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,478 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/table.json | {
"props": {
"borderAxis": {
"type": {
"name": "union",
"description": "'both'<br>| 'bothBetween'<br>| 'none'<br>| 'x'<br>| 'xBetween'<br>| 'y'<br>| 'yBetween'<br>| string"
},
"default": "'xBetween'"
},
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"hoverRow": { "type": { "name": "bool" }, "default": "false" },
"noWrap": { "type": { "name": "bool" }, "default": "false" },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"stickyFooter": { "type": { "name": "bool" }, "default": "false" },
"stickyHeader": { "type": { "name": "bool" }, "default": "false" },
"stripe": {
"type": {
"name": "union",
"description": "'odd'<br>| 'even'<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": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Table",
"imports": ["import Table from '@mui/joy/Table';", "import { Table } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTable" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'table'",
"class": ".MuiTable-root"
}
],
"classes": {
"classes": [
"borderAxisBoth",
"borderAxisBothBetween",
"borderAxisNone",
"borderAxisX",
"borderAxisXBetween",
"borderAxisY",
"borderAxisYBetween",
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"hoverRow",
"noWrap",
"sizeLg",
"sizeMd",
"sizeSm",
"stickyFooter",
"stickyHeader",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoyTable",
"forwardsRefTo": "HTMLTableElement",
"filename": "/packages/mui-joy/src/Table/Table.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-table/\">Table</a></li></ul>",
"cssComponent": false
}
| 4,479 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tabs.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 './tabs.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-joy/tabs', false, /tabs.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,480 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tabs.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"defaultValue": { "type": { "name": "union", "description": "number<br>| string" } },
"direction": {
"type": { "name": "enum", "description": "'ltr'<br>| 'rtl'" },
"default": "'ltr'"
},
"onChange": { "type": { "name": "func" } },
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"selectionFollowsFocus": { "type": { "name": "bool" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": { "type": { "name": "union", "description": "number<br>| string" } },
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'plain'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Tabs",
"imports": ["import Tabs from '@mui/joy/Tabs';", "import { Tabs } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTabs" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiTabs-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"horizontal",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyTabs",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Tabs/Tabs.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-tabs/\">Tabs</a></li></ul>",
"cssComponent": false
}
| 4,481 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/textarea.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 './textarea.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-joy/textarea', false, /textarea.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,482 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/textarea.json | {
"props": {
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"additionalInfo": { "joy-color": true }
},
"endDecorator": { "type": { "name": "node" } },
"error": { "type": { "name": "bool" } },
"maxRows": { "type": { "name": "union", "description": "number<br>| string" } },
"minRows": { "type": { "name": "union", "description": "number<br>| string" } },
"size": {
"type": {
"name": "union",
"description": "'sm'<br>| 'md'<br>| 'lg'<br>| string"
},
"additionalInfo": { "joy-size": true }
},
"startDecorator": { "type": { "name": "node" } },
"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>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"additionalInfo": { "joy-variant": true }
}
},
"name": "Textarea",
"imports": ["import Textarea from '@mui/joy/Textarea';", "import { Textarea } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTextarea" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiTextarea-root"
},
{
"name": "textarea",
"description": "The component that renders the textarea.",
"default": "'textarea'",
"class": ".MuiTextarea-textarea"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'div'",
"class": ".MuiTextarea-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'div'",
"class": ".MuiTextarea-endDecorator"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"disabled",
"error",
"focused",
"formControl",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft"
],
"globalClasses": { "disabled": "Mui-disabled", "error": "Mui-error", "focused": "Mui-focused" }
},
"spread": false,
"themeDefaultProps": true,
"muiName": "JoyTextarea",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/Textarea/Textarea.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-textarea/\">Textarea</a></li></ul>",
"cssComponent": false
}
| 4,483 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/toggle-button-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 './toggle-button-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-joy/toggle-button-group',
false,
/toggle-button-group.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,484 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/toggle-button-group.json | {
"props": {
"buttonFlex": { "type": { "name": "union", "description": "number<br>| string" } },
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'info'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"disabled": { "type": { "name": "bool" }, "default": "false" },
"onChange": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.MouseEvent<HTMLElement>, value: any) => void",
"describedArgs": ["event", "value"]
}
},
"orientation": {
"type": { "name": "enum", "description": "'horizontal'<br>| 'vertical'" },
"default": "'horizontal'"
},
"size": {
"type": { "name": "enum", "description": "'sm'<br>| 'md'<br>| 'lg'" },
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": { "name": "shape", "description": "{ root?: func<br>| object }" },
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"spacing": {
"type": {
"name": "union",
"description": "Array<number<br>| string><br>| number<br>| { lg?: number<br>| string, md?: number<br>| string, sm?: number<br>| string, xl?: number<br>| string, xs?: number<br>| string }<br>| string"
},
"default": "0"
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"value": {
"type": { "name": "union", "description": "Array<string><br>| string" }
},
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"default": "'outlined'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "ToggleButtonGroup",
"imports": [
"import ToggleButtonGroup from '@mui/joy/ToggleButtonGroup';",
"import { ToggleButtonGroup } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiToggleButtonGroup" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiToggleButtonGroup-root"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"horizontal",
"sizeLg",
"sizeMd",
"sizeSm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid",
"vertical"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyToggleButtonGroup",
"forwardsRefTo": "HTMLDivElement",
"filename": "/packages/mui-joy/src/ToggleButtonGroup/ToggleButtonGroup.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-toggle-button-group/\">Toggle Button Group</a></li></ul>",
"cssComponent": false
}
| 4,485 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tooltip.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 './tooltip.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-joy/tooltip', false, /tooltip.*.json$/);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,486 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/tooltip.json | {
"props": {
"children": { "type": { "name": "element" }, "required": true },
"arrow": { "type": { "name": "bool" }, "default": "false" },
"color": {
"type": {
"name": "enum",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'"
},
"default": "'neutral'",
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"describeChild": { "type": { "name": "bool" }, "default": "false" },
"direction": {
"type": { "name": "enum", "description": "'ltr'<br>| 'rtl'" },
"default": "'ltr'"
},
"disableFocusListener": { "type": { "name": "bool" }, "default": "false" },
"disableHoverListener": { "type": { "name": "bool" }, "default": "false" },
"disableInteractive": { "type": { "name": "bool" }, "default": "false" },
"disablePortal": { "type": { "name": "bool" }, "default": "false" },
"disableTouchListener": { "type": { "name": "bool" }, "default": "false" },
"enterDelay": { "type": { "name": "number" }, "default": "100" },
"enterNextDelay": { "type": { "name": "number" }, "default": "0" },
"enterTouchDelay": { "type": { "name": "number" }, "default": "700" },
"followCursor": { "type": { "name": "bool" }, "default": "false" },
"id": { "type": { "name": "string" } },
"keepMounted": { "type": { "name": "bool" }, "default": "false" },
"leaveDelay": { "type": { "name": "number" }, "default": "0" },
"leaveTouchDelay": { "type": { "name": "number" }, "default": "1500" },
"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> }>"
}
},
"onClose": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.SyntheticEvent) => void",
"describedArgs": ["event"]
}
},
"onOpen": {
"type": { "name": "func" },
"signature": {
"type": "function(event: React.SyntheticEvent) => void",
"describedArgs": ["event"]
}
},
"open": { "type": { "name": "bool" } },
"placement": {
"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": "'bottom'"
},
"size": {
"type": { "name": "enum", "description": "'sm'<br>| 'md'<br>| 'lg'" },
"default": "'md'",
"additionalInfo": { "joy-size": true }
},
"slotProps": {
"type": {
"name": "shape",
"description": "{ arrow?: func<br>| object, root?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": { "name": "shape", "description": "{ arrow?: elementType, root?: elementType }" },
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"title": { "type": { "name": "node" } },
"variant": {
"type": {
"name": "enum",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'"
},
"default": "'solid'",
"additionalInfo": { "joy-variant": true }
}
},
"name": "Tooltip",
"imports": ["import Tooltip from '@mui/joy/Tooltip';", "import { Tooltip } from '@mui/joy';"],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTooltip" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'div'",
"class": ".MuiTooltip-root"
},
{
"name": "arrow",
"description": "The component that renders the arrow.",
"default": "'span'",
"class": ".MuiTooltip-arrow"
}
],
"classes": {
"classes": [
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"placementBottom",
"placementLeft",
"placementRight",
"placementTop",
"sizeLg",
"sizeMd",
"sizeSm",
"tooltipArrow",
"touch",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyTooltip",
"forwardsRefTo": "HTMLButtonElement",
"filename": "/packages/mui-joy/src/Tooltip/Tooltip.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-tooltip/\">Tooltip</a></li></ul>",
"cssComponent": false
}
| 4,487 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/typography.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 './typography.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-joy/typography',
false,
/typography.*.json$/,
);
const descriptions = mapApiPageTranslations(req);
return {
descriptions,
pageContent: jsonPageContent,
};
};
| 4,488 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/api/typography.json | {
"props": {
"children": { "type": { "name": "node" } },
"color": {
"type": {
"name": "union",
"description": "'danger'<br>| 'neutral'<br>| 'primary'<br>| 'success'<br>| 'warning'<br>| string"
},
"additionalInfo": { "joy-color": true }
},
"component": { "type": { "name": "elementType" } },
"endDecorator": { "type": { "name": "node" } },
"gutterBottom": { "type": { "name": "bool" }, "default": "false" },
"level": {
"type": {
"name": "union",
"description": "'h1'<br>| 'h2'<br>| 'h3'<br>| 'h4'<br>| 'title-lg'<br>| 'title-md'<br>| 'title-sm'<br>| 'body-lg'<br>| 'body-md'<br>| 'body-sm'<br>| 'body-xs'<br>| 'inherit'<br>| string"
},
"default": "'body-md'"
},
"levelMapping": {
"type": { "name": "object" },
"default": "{\n h1: 'h1',\n h2: 'h2',\n h3: 'h3',\n h4: 'h4',\n 'title-lg': 'p',\n 'title-md': 'p',\n 'title-sm': 'p',\n 'body-lg': 'p',\n 'body-md': 'p',\n 'body-sm': 'p',\n 'body-xs': 'span',\n inherit: 'p',\n}"
},
"noWrap": { "type": { "name": "bool" }, "default": "false" },
"slotProps": {
"type": {
"name": "shape",
"description": "{ endDecorator?: func<br>| object, root?: func<br>| object, startDecorator?: func<br>| object }"
},
"default": "{}"
},
"slots": {
"type": {
"name": "shape",
"description": "{ endDecorator?: elementType, root?: elementType, startDecorator?: elementType }"
},
"default": "{}",
"additionalInfo": { "slotsApi": true }
},
"startDecorator": { "type": { "name": "node" } },
"sx": {
"type": {
"name": "union",
"description": "Array<func<br>| object<br>| bool><br>| func<br>| object"
},
"additionalInfo": { "sx": true }
},
"textColor": { "type": { "name": "any" } },
"variant": {
"type": {
"name": "union",
"description": "'outlined'<br>| 'plain'<br>| 'soft'<br>| 'solid'<br>| string"
},
"additionalInfo": { "joy-variant": true }
}
},
"name": "Typography",
"imports": [
"import Typography from '@mui/joy/Typography';",
"import { Typography } from '@mui/joy';"
],
"styles": { "classes": [], "globalClasses": {}, "name": "MuiTypography" },
"slots": [
{
"name": "root",
"description": "The component that renders the root.",
"default": "'a'",
"class": ".MuiTypography-root"
},
{
"name": "startDecorator",
"description": "The component that renders the start decorator.",
"default": "'span'",
"class": ".MuiTypography-startDecorator"
},
{
"name": "endDecorator",
"description": "The component that renders the end decorator.",
"default": "'span'",
"class": ".MuiTypography-endDecorator"
}
],
"classes": {
"classes": [
"body-lg",
"body-md",
"body-sm",
"body-xs",
"colorContext",
"colorDanger",
"colorNeutral",
"colorPrimary",
"colorSuccess",
"colorWarning",
"gutterBottom",
"h1",
"h2",
"h3",
"h4",
"noWrap",
"title-lg",
"title-md",
"title-sm",
"variantOutlined",
"variantPlain",
"variantSoft",
"variantSolid"
],
"globalClasses": {}
},
"spread": true,
"themeDefaultProps": true,
"muiName": "JoyTypography",
"forwardsRefTo": "HTMLParagraphElement",
"filename": "/packages/mui-joy/src/Typography/Typography.tsx",
"inheritance": null,
"demos": "<ul><li><a href=\"/joy-ui/react-skeleton/\">Skeleton</a></li>\n<li><a href=\"/joy-ui/react-typography/\">Typography</a></li></ul>",
"cssComponent": true
}
| 4,489 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/approaches.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/approaches/approaches.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,490 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/creating-themed-components.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/creating-themed-components/creating-themed-components.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,491 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/dark-mode.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/dark-mode/dark-mode.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,492 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/default-theme-viewer.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/default-theme-viewer/default-theme-viewer.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} disableToc />;
}
| 4,493 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/overriding-component-structure.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/overriding-component-structure/overriding-component-structure.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,494 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/theme-builder.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/theme-builder/theme-builder.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} disableCssVarsProvider disableToc />;
}
| 4,495 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/theme-colors.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/theme-colors/theme-colors.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,496 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/theme-shadow.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/theme-shadow/theme-shadow.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,497 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/theme-typography.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/theme-typography/theme-typography.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,498 |
0 | petrpan-code/mui/material-ui/docs/pages/joy-ui | petrpan-code/mui/material-ui/docs/pages/joy-ui/customization/themed-components.js | import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docs/data/joy/customization/themed-components/themed-components.md?@mui/markdown';
export default function Page() {
return <MarkdownDocs {...pageProps} />;
}
| 4,499 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.