Skip to content

Commit

Permalink
revert accidental change
Browse files Browse the repository at this point in the history
  • Loading branch information
Gr3q committed Sep 17, 2024
1 parent 9896b9f commit 1dc6c72
Showing 1 changed file with 4 additions and 27 deletions.
31 changes: 4 additions & 27 deletions docs/translations/api-docs/dialog/dialog.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,10 @@
{
"componentDescription": "Dialogs are overlaid modal paper based components with a backdrop.",
"propDescriptions": {
"aria-describedby": "The id(s) of the element(s) that describe the dialog.",
"aria-labelledby": "The id(s) of the element(s) that label the dialog.",
"BackdropComponent": "A backdrop component. This prop enables custom backdrop rendering.",
"children": "Dialog children, usually the included sub-components.",
"classes": "Override or extend the styles applied to the component. See <a href=\"#css\">CSS API</a> below for more details.",
"disableEscapeKeyDown": "If <code>true</code>, hitting escape will not fire the <code>onClose</code> callback.",
"disableInitialContentFocus": "By default the dialog content element is focused when opened.<br>Set the property to <code>true</code> to disable this behavior and focus will be placed on the first focusable element respecting <code>tabIndex</code> order, including elements explicitly marked with <code>tabIndex={-1}</code>.",
"fullScreen": "If <code>true</code>, the dialog is full-screen.",
"fullWidth": "If <code>true</code>, the dialog stretches to <code>maxWidth</code>.<br>Notice that the dialog width grow is limited by the default margin.",
"maxWidth": "Determine the max-width of the dialog. The dialog width grows with the size of the screen. Set to <code>false</code> to disable <code>maxWidth</code>.",
"onBackdropClick": "Callback fired when the backdrop is clicked.",
"onClose": "Callback fired when the component requests to be closed.<br><br><strong>Signature:</strong><br><code>function(event: object, reason: string) =&gt; void</code><br><em>event:</em> The event source of the callback.<br><em>reason:</em> Can be: <code>&quot;escapeKeyDown&quot;</code>, <code>&quot;backdropClick&quot;</code>.",
"open": "If <code>true</code>, the component is shown.",
"PaperComponent": "The component used to render the body of the dialog.",
"PaperProps": "Props applied to the <a href=\"/material-ui/api/paper/\"><code>Paper</code></a> element.",
"scroll": "Determine the container for scrolling the dialog.",
"sx": "The system prop that allows defining system overrides as well as additional CSS styles. See the <a href=\"/system/getting-started/the-sx-prop/\">`sx` page</a> for more details.",
"TransitionComponent": "The component used for the transition. <a href=\"/material-ui/transitions/#transitioncomponent-prop\">Follow this guide</a> to learn more about the requirements for this component.",
"transitionDuration": "The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object.",
"TransitionProps": "Props applied to the transition element. By default, the element is based on this <a href=\"http://reactcommunity.org/react-transition-group/transition/\"><code>Transition</code></a> component."
},
"classDescriptions": {
"root": { "description": "Styles applied to the root element." },
"scrollPaper": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the container element",
"conditions": "<code>scroll=\"paper\"</code>"
"aria-describedby": { "description": "The id(s) of the element(s) that describe the dialog." },
"aria-labelledby": { "description": "The id(s) of the element(s) that label the dialog." },
"BackdropComponent": {
"description": "A backdrop component. This prop enables custom backdrop rendering."
},
"children": { "description": "Dialog children, usually the included sub-components." },
"classes": { "description": "Override or extend the styles applied to the component." },
Expand Down

0 comments on commit 1dc6c72

Please sign in to comment.