+11
-11
lines changedFilter options
+11
-11
lines changed Original file line number Diff line number Diff line change
@@ -162,7 +162,7 @@ To use an interactive element together with a Checkbox, you can wrap it with a F
162
162
163
163
:::info
164
164
It is recommended that the interactive elements such as link should be placed outside of the checkbox's label.
165
-
To learn more, [visit HTML label](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label#accessibility_concerns) from Mozilla.
165
+
To learn more, [visit HTML label](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/label#accessibility) from Mozilla.
166
166
:::
167
167
168
168
### Filtering status
Original file line number Diff line number Diff line change
@@ -103,7 +103,7 @@ Use the `marker` prop with any valid [list-style-type](https://developer.mozilla
103
103
{{"demo": "MarkerList.js"}}
104
104
105
105
:::success
106
-
For [numbered lists](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol), change the List component to `component="ol"`.
106
+
For [numbered lists](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/ol), change the List component to `component="ol"`.
107
107
108
108
```js
109
109
<List component="ol" marker="decimal">
Original file line number Diff line number Diff line change
@@ -192,7 +192,7 @@ To display a caption at the bottom of the Table, set the [caption side](https://
192
192
193
193
### Footer
194
194
195
-
Use [`<tfoot>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot) to add a footer to the Table.
195
+
Use [`<tfoot>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/tfoot) to add a footer to the Table.
196
196
197
197
{{"demo": "TableFooter.js"}}
198
198
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ It's usually more common to see textarea components using decorators at the top
116
116
117
117
### HTML textarea ref
118
118
119
-
Use the `slotProps.textarea` attribute to pass props to the `ref` and other [supported HTML attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea#attributes) to the textarea element.
119
+
Use the `slotProps.textarea` attribute to pass props to the `ref` and other [supported HTML attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/textarea#attributes) to the textarea element.
120
120
121
121
{{"demo": "TextareaRef.js"}}
122
122
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
12
12
"description": "The component used for the root node. Either a string to use a HTML element or a component."
13
13
},
14
14
"imgProps": {
15
-
"description": "<a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attributes\">Attributes</a> applied to the <code>img</code> element if the component is used to display an image. It can be used to listen for the loading error event."
15
+
"description": "<a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/img#attributes\">Attributes</a> applied to the <code>img</code> element if the component is used to display an image. It can be used to listen for the loading error event."
16
16
},
17
17
"sizes": {
18
18
"description": "The <code>sizes</code> attribute for the <code>img</code> element."
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
10
10
"description": "An <code>Input</code> element; does not have to be a material-ui specific <code>Input</code>."
11
11
},
12
12
"inputProps": {
13
-
"description": "<a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select#attributes\">Attributes</a> applied to the <code>select</code> element."
13
+
"description": "<a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/select#attributes\">Attributes</a> applied to the <code>select</code> element."
14
14
},
15
15
"onChange": {
16
16
"description": "Callback fired when a menu item is selected.",
Original file line number Diff line number Diff line change
@@ -151,7 +151,7 @@ const RadioGroup = React.forwardRef(function RadioGroup(inProps, ref) {
151
151
role,
152
152
// The `id` is just for the completeness, it does not have any effect because RadioGroup (div) is non-labelable element
153
153
// MDN: "If it is not a labelable element, then the for attribute has no effect"
154
-
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label#attr-for
154
+
// https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/label#attributes
155
155
id: formControl?.htmlFor,
156
156
'aria-labelledby': formControl?.labelId,
157
157
'aria-describedby': formControl?.['aria-describedby'],
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ export interface AvatarOwnProps {
72
72
*/
73
73
classes?: Partial<AvatarClasses>;
74
74
/**
75
-
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attributes) applied to the `img` element if the component is used to display an image.
75
+
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/img#attributes) applied to the `img` element if the component is used to display an image.
76
76
* It can be used to listen for the loading error event.
77
77
* @deprecated Use `slotProps.img` instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
78
78
*/
Original file line number Diff line number Diff line change
@@ -264,7 +264,7 @@ Avatar.propTypes /* remove-proptypes */ = {
264
264
*/
265
265
component: PropTypes.elementType,
266
266
/**
267
-
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attributes) applied to the `img` element if the component is used to display an image.
267
+
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/img#attributes) applied to the `img` element if the component is used to display an image.
268
268
* It can be used to listen for the loading error event.
269
269
* @deprecated Use `slotProps.img` instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
270
270
*/
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ export interface NativeSelectProps
28
28
*/
29
29
input?: React.ReactElement<unknown, any>;
30
30
/**
31
-
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select#attributes) applied to the `select` element.
31
+
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/select#attributes) applied to the `select` element.
32
32
*/
33
33
inputProps?: Partial<NativeSelectInputProps>;
34
34
/**
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4