Skip to content

Commit

Permalink
Deprecate AccordionSummary's contentGutters class
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoAndai committed Jan 5, 2024
1 parent b9dda34 commit a520781
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/pages/material-ui/api/accordion-summary.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
"key": "contentGutters",
"className": "MuiAccordionSummary-contentGutters",
"description": "Styles applied to the children wrapper element unless `disableGutters={true}`.",
"isGlobal": false
"isGlobal": false,
"isDeprecated": true,
"deprecationInfo": "Combine the <a href=\"/material-ui/api/accordion-summary/#AccordionSummary-classes-gutters\">.MuiAccordionSummary-gutters</a> and <a href=\"/material-ui/api/accordion-summary/#AccordionSummary-classes-content\">.MuiAccordionSummary-content</a> classes instead."
},
{
"key": "disabled",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ export interface AccordionSummaryClasses {
disabled: string;
/** Styles applied to the root element unless `disableGutters={true}`. */
gutters: string;
/** Styles applied to the children wrapper element unless `disableGutters={true}`. */
/**
* Styles applied to the children wrapper element unless `disableGutters={true}`.
* @deprecated Combine the [.MuiAccordionSummary-gutters](/material-ui/api/accordion-summary/#AccordionSummary-classes-gutters) and [.MuiAccordionSummary-content](/material-ui/api/accordion-summary/#AccordionSummary-classes-content) classes instead.
*/
contentGutters: string;
/** Styles applied to the children wrapper element. */
content: string;
Expand Down

0 comments on commit a520781

Please sign in to comment.