Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/translations/api-docs-base/select/select.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"componentDescription": "The foundation for building custom-styled select components.",
"propDescriptions": {
"areOptionsEqual": {
"description": "A function used to determine if two options&#39; values are equal. By default, reference equality is used.<br>There is a performance impact when using the <code>areOptionsEqual</code> prop (proportional to the number of options). Therefore, it&#39;s recommented to use the default reference equality comparison whenever possible."
"description": "A function used to determine if two options&#39; values are equal. By default, reference equality is used.<br>There is a performance impact when using the <code>areOptionsEqual</code> prop (proportional to the number of options). Therefore, it&#39;s recommended to use the default reference equality comparison whenever possible."
},
"autoComplete": {
"description": "This prop helps users to fill forms faster, especially on mobile devices. The name can be confusing, as it&#39;s more like an autofill. You can learn more about it <a href=\"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill\">following the specification</a>."
Expand Down
2 changes: 1 addition & 1 deletion docs/translations/api-docs-base/use-menu/use-menu.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"hookDescription": "",
"parametersDescriptions": {
"autoFocus": {
"description": "If <code>true</code> (Default) will focus the highligted item. If you set this prop to <code>false</code> the focus will not be moved inside the Menu component. This has severe accessibility implications and should only be considered if you manage focus otherwise."
"description": "If <code>true</code> (Default) will focus the highlighted item. If you set this prop to <code>false</code> the focus will not be moved inside the Menu component. This has severe accessibility implications and should only be considered if you manage focus otherwise."
},
"componentName": {
"description": "The name of the component using useMenu. For debugging purposes."
Expand Down
2 changes: 1 addition & 1 deletion docs/translations/api-docs-base/use-select/use-select.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"hookDescription": "",
"parametersDescriptions": {
"areOptionsEqual": {
"description": "A function used to determine if two options&#39; values are equal. By default, reference equality is used.<br>There is a performance impact when using the <code>areOptionsEqual</code> prop (proportional to the number of options). Therefore, it&#39;s recommented to use the default reference equality comparison whenever possible."
"description": "A function used to determine if two options&#39; values are equal. By default, reference equality is used.<br>There is a performance impact when using the <code>areOptionsEqual</code> prop (proportional to the number of options). Therefore, it&#39;s recommended to use the default reference equality comparison whenever possible."
},
"buttonRef": { "description": "The ref of the trigger button element." },
"componentName": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"hookDescription": "Allows an element to be transitioned in and out.\nThe transition is triggerred by a `TransitionContext` placed above in the component tree.",
"hookDescription": "Allows an element to be transitioned in and out.\nThe transition is triggered by a `TransitionContext` placed above in the component tree.",
"parametersDescriptions": {},
"returnValueDescriptions": {}
}
2 changes: 1 addition & 1 deletion docs/translations/api-docs/popover/popover.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"open": { "description": "If <code>true</code>, the component is shown." },
"PaperProps": {
"description": "Props applied to the <a href=\"https://mui.com/material-ui/api/paper/\"><code>Paper</code></a> element.<br>This prop is an alias for <code>slotProps.paper</code> and will be overriden by it if both are used."
"description": "Props applied to the <a href=\"https://mui.com/material-ui/api/paper/\"><code>Paper</code></a> element.<br>This prop is an alias for <code>slotProps.paper</code> and will be overridden by it if both are used."
},
"slotProps": { "description": "The props used for each slot inside." },
"slots": { "description": "The components used for each slot inside." },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"componentDescription": "",
"propDescriptions": {
"backIconButtonProps": {
"description": "This prop is an alias for <code>slotProps.previousButton</code> and will be overriden by it if both are used."
"description": "This prop is an alias for <code>slotProps.previousButton</code> and will be overridden by it if both are used."
},
"classes": { "description": "Override or extend the styles applied to the component." },
"disabled": { "description": "If <code>true</code>, the component is disabled." },
Expand All @@ -16,7 +16,7 @@
}
},
"nextIconButtonProps": {
"description": "This prop is an alias for <code>slotProps.nextButton</code> and will be overriden by it if both are used."
"description": "This prop is an alias for <code>slotProps.nextButton</code> and will be overridden by it if both are used."
}
},
"classDescriptions": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "The component used for displaying the actions. Either a string to use a HTML element or a component."
},
"backIconButtonProps": {
"description": "Props applied to the back arrow <a href=\"https://mui.com/material-ui/api/icon-button/\"><code>IconButton</code></a> component.<br>This prop is an alias for <code>slotProps.actions.previousButton</code> and will be overriden by it if both are used."
"description": "Props applied to the back arrow <a href=\"https://mui.com/material-ui/api/icon-button/\"><code>IconButton</code></a> component.<br>This prop is an alias for <code>slotProps.actions.previousButton</code> and will be overridden by it if both are used."
},
"classes": { "description": "Override or extend the styles applied to the component." },
"component": {
Expand All @@ -31,7 +31,7 @@
"description": "Customize the rows per page label.<br>For localization purposes, you can use the provided <a href=\"https://mui.com/material-ui/guides/localization/\">translations</a>."
},
"nextIconButtonProps": {
"description": "Props applied to the next arrow <a href=\"https://mui.com/material-ui/api/icon-button/\"><code>IconButton</code></a> element.<br>This prop is an alias for <code>slotProps.actions.nextButton</code> and will be overriden by it if both are used."
"description": "Props applied to the next arrow <a href=\"https://mui.com/material-ui/api/icon-button/\"><code>IconButton</code></a> element.<br>This prop is an alias for <code>slotProps.actions.nextButton</code> and will be overridden by it if both are used."
},
"onPageChange": {
"description": "Callback fired when the page is changed.",
Expand All @@ -54,7 +54,7 @@
"description": "Customizes the options of the rows per page select field. If less than two options are available, no select field will be displayed. Use -1 for the value with a custom label to show all the rows."
},
"SelectProps": {
"description": "Props applied to the rows per page <a href=\"https://mui.com/material-ui/api/select/\"><code>Select</code></a> element.<br>This prop is an alias for <code>slotProps.select</code> and will be overriden by it if both are used."
"description": "Props applied to the rows per page <a href=\"https://mui.com/material-ui/api/select/\"><code>Select</code></a> element.<br>This prop is an alias for <code>slotProps.select</code> and will be overridden by it if both are used."
},
"showFirstButton": { "description": "If <code>true</code>, show the first-page button." },
"showLastButton": { "description": "If <code>true</code>, show the last-page button." },
Expand Down
Loading