@@ -15356,6 +15356,28 @@ use the \`id\` attribute, consider setting it on a parent element instead.",
1535615356 "optional": true,
1535715357 "type": "string",
1535815358 },
15359+ {
15360+ "description": "Attributes to add to the native element.
15361+ Some attributes will be automatically combined with internal attribute values:
15362+ - \`className\` will be appended.
15363+ - Event handlers will be chained, unless the default is prevented.
15364+
15365+ We do not support using this attribute to apply custom styling.",
15366+ "inlineType": {
15367+ "name": "Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "children"> & Record<\`data-\${string}\`, string>",
15368+ "type": "union",
15369+ "values": [
15370+ "Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "children">",
15371+ "Record<\`data-\${string}\`, string>",
15372+ ],
15373+ },
15374+ "name": "nativeAttributes",
15375+ "optional": true,
15376+ "systemTags": [
15377+ "core",
15378+ ],
15379+ "type": "Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "children"> & Record<\`data-\${string}\`, string>",
15380+ },
1535915381 {
1536015382 "description": "Adds a \`rel\` attribute to the link. If the \`rel\` property is provided, it overrides the default behaviour.
1536115383By default, the component sets the \`rel\` attribute to "noopener noreferrer" when \`external\` is \`true\` or \`target\` is \`"_blank"\`.",
@@ -25424,6 +25446,28 @@ use the \`id\` attribute, consider setting it on a parent element instead.",
2542425446 "optional": true,
2542525447 "type": "string",
2542625448 },
25449+ {
25450+ "description": "Attributes to add to the native \`input\` element.
25451+ Some attributes will be automatically combined with internal attribute values:
25452+ - \`className\` will be appended.
25453+ - Event handlers will be chained, unless the default is prevented.
25454+
25455+ We do not support using this attribute to apply custom styling.",
25456+ "inlineType": {
25457+ "name": "Omit<React.InputHTMLAttributes<HTMLInputElement>, "children"> & Record<\`data-\${string}\`, string>",
25458+ "type": "union",
25459+ "values": [
25460+ "Omit<React.InputHTMLAttributes<HTMLInputElement>, "children">",
25461+ "Record<\`data-\${string}\`, string>",
25462+ ],
25463+ },
25464+ "name": "nativeInputAttributes",
25465+ "optional": true,
25466+ "systemTags": [
25467+ "core",
25468+ ],
25469+ "type": "Omit<React.InputHTMLAttributes<HTMLInputElement>, "children"> & Record<\`data-\${string}\`, string>",
25470+ },
2542725471 {
2542825472 "description": "Specifies if the control is read-only, which prevents the
2542925473user from modifying the value. Should be used only inside forms.
@@ -25894,28 +25938,6 @@ It prevents users from clicking the button, but it can still be focused.",
2589425938 "optional": true,
2589525939 "type": "string",
2589625940 },
25897- {
25898- "description": "Attributes to add to the native \`a\` element (when \`href\` is provided).
25899- Some attributes will be automatically combined with internal attribute values:
25900- - \`className\` will be appended.
25901- - Event handlers will be chained, unless the default is prevented.
25902-
25903- We do not support using this attribute to apply custom styling.",
25904- "inlineType": {
25905- "name": "Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "children"> & Record<\`data-\${string}\`, string>",
25906- "type": "union",
25907- "values": [
25908- "Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "children">",
25909- "Record<\`data-\${string}\`, string>",
25910- ],
25911- },
25912- "name": "nativeAnchorAttributes",
25913- "optional": true,
25914- "systemTags": [
25915- "core",
25916- ],
25917- "type": "Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "children"> & Record<\`data-\${string}\`, string>",
25918- },
2591925941 {
2592025942 "description": "Attributes to add to the native \`button\` element.
2592125943Some attributes will be automatically combined with internal attribute values:
0 commit comments