Rename aria* attributes on Dropdown, Autocomplete, Listbox and MultiSelect
parent
8271114182
commit
923e931bbf
|
@ -216,13 +216,13 @@ const AutoCompleteProps = [
|
|||
description: "Index of the element in tabbing order."
|
||||
},
|
||||
{
|
||||
name: "ariaLabel",
|
||||
name: "aria-label",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Defines a string value that labels an interactive element."
|
||||
},
|
||||
{
|
||||
name: "ariaLabelledby",
|
||||
name: "aria-labelledby",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Identifier of the underlying input element."
|
||||
|
|
|
@ -228,13 +228,13 @@ const DropdownProps = [
|
|||
description: "Index of the element in tabbing order."
|
||||
},
|
||||
{
|
||||
name: "ariaLabel",
|
||||
name: "aria-label",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Defines a string value that labels an interactive element."
|
||||
},
|
||||
{
|
||||
name: "ariaLabelledby",
|
||||
name: "aria-labelledby",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Identifier of the underlying input element."
|
||||
|
|
|
@ -156,13 +156,13 @@ const ListboxProps = [
|
|||
description: "Index of the element in tabbing order."
|
||||
},
|
||||
{
|
||||
name: "ariaLabel",
|
||||
name: "aria-label",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Defines a string value that labels an interactive element."
|
||||
},
|
||||
{
|
||||
name: "ariaLabelledby",
|
||||
name: "aria-labelledby",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Identifier of the underlying input element."
|
||||
|
|
|
@ -246,13 +246,13 @@ const MultiSelectProps = [
|
|||
description: "Index of the element in tabbing order."
|
||||
},
|
||||
{
|
||||
name: "ariaLabel",
|
||||
name: "aria-label",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Defines a string value that labels an interactive element."
|
||||
},
|
||||
{
|
||||
name: "ariaLabelledby",
|
||||
name: "aria-labelledby",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Identifier of the underlying input element."
|
||||
|
|
|
@ -233,11 +233,11 @@ export interface AutoCompleteProps {
|
|||
/**
|
||||
* Defines a string value that labels an interactive element.
|
||||
*/
|
||||
ariaLabel?: string | undefined;
|
||||
"aria-label"?: string | undefined;
|
||||
/**
|
||||
* Identifier of the underlying input element.
|
||||
*/
|
||||
ariaLabelledby?: string | undefined;
|
||||
"aria-labelledby"?: string | undefined;
|
||||
}
|
||||
|
||||
export interface AutoCompleteSlots {
|
||||
|
|
|
@ -178,11 +178,11 @@ export default {
|
|||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
ariaLabel: {
|
||||
"aria-label": {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
ariaLabelledby: {
|
||||
"aria-labelledby": {
|
||||
type: String,
|
||||
default: null
|
||||
}
|
||||
|
|
|
@ -210,11 +210,11 @@ export interface DropdownProps extends HTMLDivElement {
|
|||
/**
|
||||
* Defines a string value that labels an interactive element.
|
||||
*/
|
||||
ariaLabel?: string | undefined;
|
||||
"aria-label"?: string | undefined;
|
||||
/**
|
||||
* Identifier of the underlying input element.
|
||||
*/
|
||||
ariaLabelledby?: string | undefined;
|
||||
"aria-labelledby"?: string | undefined;
|
||||
}
|
||||
|
||||
export interface DropdownSlots {
|
||||
|
|
|
@ -164,11 +164,11 @@ export default {
|
|||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
ariaLabel: {
|
||||
"aria-label": {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
ariaLabelledby: {
|
||||
"aria-labelledby": {
|
||||
type: String,
|
||||
default: null
|
||||
}
|
||||
|
|
|
@ -154,11 +154,11 @@ export interface ListboxProps {
|
|||
/**
|
||||
* Defines a string value that labels an interactive element.
|
||||
*/
|
||||
ariaLabel?: string | undefined;
|
||||
"aria-label"?: string | undefined;
|
||||
/**
|
||||
* Identifier of the underlying input element.
|
||||
*/
|
||||
ariaLabelledby?: string | undefined;
|
||||
"aria-labelledby"?: string | undefined;
|
||||
}
|
||||
|
||||
export interface ListboxSlots {
|
||||
|
|
|
@ -120,11 +120,11 @@ export default {
|
|||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
ariaLabel: {
|
||||
"aria-label": {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
ariaLabelledby: {
|
||||
"aria-labelledby": {
|
||||
type: String,
|
||||
default: null
|
||||
}
|
||||
|
|
|
@ -234,11 +234,11 @@ export interface MultiSelectProps extends HTMLDivElement {
|
|||
/**
|
||||
* Defines a string value that labels an interactive element.
|
||||
*/
|
||||
ariaLabel?: string | undefined;
|
||||
"aria-label"?: string | undefined;
|
||||
/**
|
||||
* Identifier of the underlying input element.
|
||||
*/
|
||||
ariaLabelledby?: string | undefined;
|
||||
"aria-labelledby"?: string | undefined;
|
||||
}
|
||||
|
||||
export interface MultiSelectSlots {
|
||||
|
|
|
@ -221,11 +221,11 @@ export default {
|
|||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
ariaLabel: {
|
||||
"aria-label": {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
ariaLabelledby: {
|
||||
"aria-labelledby": {
|
||||
type: String,
|
||||
default: null
|
||||
}
|
||||
|
|
|
@ -365,13 +365,13 @@ export default {
|
|||
<td>Index of the element in tabbing order.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabel</td>
|
||||
<td>aria-label</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Defines a string value that labels an interactive element.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabelledby</td>
|
||||
<td>aria-labelledby</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Establishes relationships between the component and label(s) where its value should be one or more element IDs.</td>
|
||||
|
|
|
@ -361,13 +361,13 @@ export default {
|
|||
<td>Index of the element in tabbing order.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabel</td>
|
||||
<td>aria-label</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Defines a string value that labels an interactive element.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabelledby</td>
|
||||
<td>aria-labelledby</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Establishes relationships between the component and label(s) where its value should be one or more element IDs.</td>
|
||||
|
|
|
@ -286,13 +286,13 @@ export default {
|
|||
<td>Index of the element in tabbing order.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabel</td>
|
||||
<td>aria-label</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Defines a string value that labels an interactive element.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabelledby</td>
|
||||
<td>aria-labelledby</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Establishes relationships between the component and label(s) where its value should be one or more element IDs.</td>
|
||||
|
|
|
@ -388,13 +388,13 @@ export default {
|
|||
<td>Index of the element in tabbing order.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabel</td>
|
||||
<td>aria-label</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Defines a string value that labels an interactive element.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ariaLabelledby</td>
|
||||
<td>aria-labelledby</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Establishes relationships between the component and label(s) where its value should be one or more element IDs.</td>
|
||||
|
|
Loading…
Reference in New Issue