diff --git a/api-generator/components/autocomplete.js b/api-generator/components/autocomplete.js index b0bdea271..825e2aa60 100644 --- a/api-generator/components/autocomplete.js +++ b/api-generator/components/autocomplete.js @@ -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." diff --git a/api-generator/components/dropdown.js b/api-generator/components/dropdown.js index 43ca5fbd7..a6f86c0e0 100644 --- a/api-generator/components/dropdown.js +++ b/api-generator/components/dropdown.js @@ -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." diff --git a/api-generator/components/listbox.js b/api-generator/components/listbox.js index 6cfcb858b..dc1f84bce 100644 --- a/api-generator/components/listbox.js +++ b/api-generator/components/listbox.js @@ -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." diff --git a/api-generator/components/multiselect.js b/api-generator/components/multiselect.js index 402b92575..82db603ff 100644 --- a/api-generator/components/multiselect.js +++ b/api-generator/components/multiselect.js @@ -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." diff --git a/src/components/autocomplete/AutoComplete.d.ts b/src/components/autocomplete/AutoComplete.d.ts index c0756d99b..6164f7f63 100755 --- a/src/components/autocomplete/AutoComplete.d.ts +++ b/src/components/autocomplete/AutoComplete.d.ts @@ -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 { diff --git a/src/components/autocomplete/AutoComplete.vue b/src/components/autocomplete/AutoComplete.vue index b3f94e8b8..0de56bc4b 100755 --- a/src/components/autocomplete/AutoComplete.vue +++ b/src/components/autocomplete/AutoComplete.vue @@ -178,11 +178,11 @@ export default { type: Number, default: 0 }, - ariaLabel: { + "aria-label": { type: String, default: null }, - ariaLabelledby: { + "aria-labelledby": { type: String, default: null } diff --git a/src/components/dropdown/Dropdown.d.ts b/src/components/dropdown/Dropdown.d.ts index 026afc2c0..a7c6dee5c 100755 --- a/src/components/dropdown/Dropdown.d.ts +++ b/src/components/dropdown/Dropdown.d.ts @@ -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 { diff --git a/src/components/dropdown/Dropdown.vue b/src/components/dropdown/Dropdown.vue index a7d817373..6d8504bb2 100755 --- a/src/components/dropdown/Dropdown.vue +++ b/src/components/dropdown/Dropdown.vue @@ -164,11 +164,11 @@ export default { type: Number, default: 0 }, - ariaLabel: { + "aria-label": { type: String, default: null }, - ariaLabelledby: { + "aria-labelledby": { type: String, default: null } diff --git a/src/components/listbox/Listbox.d.ts b/src/components/listbox/Listbox.d.ts index 964355804..051356184 100755 --- a/src/components/listbox/Listbox.d.ts +++ b/src/components/listbox/Listbox.d.ts @@ -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 { diff --git a/src/components/listbox/Listbox.vue b/src/components/listbox/Listbox.vue index 186015a39..ba5f48142 100755 --- a/src/components/listbox/Listbox.vue +++ b/src/components/listbox/Listbox.vue @@ -120,11 +120,11 @@ export default { type: Number, default: 0 }, - ariaLabel: { + "aria-label": { type: String, default: null }, - ariaLabelledby: { + "aria-labelledby": { type: String, default: null } diff --git a/src/components/multiselect/MultiSelect.d.ts b/src/components/multiselect/MultiSelect.d.ts index b46ddc1c1..b32d6d497 100755 --- a/src/components/multiselect/MultiSelect.d.ts +++ b/src/components/multiselect/MultiSelect.d.ts @@ -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 { diff --git a/src/components/multiselect/MultiSelect.vue b/src/components/multiselect/MultiSelect.vue index eef3e5b77..b6c146e5a 100755 --- a/src/components/multiselect/MultiSelect.vue +++ b/src/components/multiselect/MultiSelect.vue @@ -221,11 +221,11 @@ export default { type: Number, default: 0 }, - ariaLabel: { + "aria-label": { type: String, default: null }, - ariaLabelledby: { + "aria-labelledby": { type: String, default: null } diff --git a/src/views/autocomplete/AutoCompleteDoc.vue b/src/views/autocomplete/AutoCompleteDoc.vue index 84b61039e..4dd48b746 100755 --- a/src/views/autocomplete/AutoCompleteDoc.vue +++ b/src/views/autocomplete/AutoCompleteDoc.vue @@ -365,13 +365,13 @@ export default { Index of the element in tabbing order. - ariaLabel + aria-label string null Defines a string value that labels an interactive element. - ariaLabelledby + aria-labelledby string null Establishes relationships between the component and label(s) where its value should be one or more element IDs. diff --git a/src/views/dropdown/DropdownDoc.vue b/src/views/dropdown/DropdownDoc.vue index d1b49250f..69060d6b4 100755 --- a/src/views/dropdown/DropdownDoc.vue +++ b/src/views/dropdown/DropdownDoc.vue @@ -361,13 +361,13 @@ export default { Index of the element in tabbing order. - ariaLabel + aria-label string null Defines a string value that labels an interactive element. - ariaLabelledby + aria-labelledby string null Establishes relationships between the component and label(s) where its value should be one or more element IDs. diff --git a/src/views/listbox/ListboxDoc.vue b/src/views/listbox/ListboxDoc.vue index e1ecee0df..6f57beec0 100755 --- a/src/views/listbox/ListboxDoc.vue +++ b/src/views/listbox/ListboxDoc.vue @@ -286,13 +286,13 @@ export default { Index of the element in tabbing order. - ariaLabel + aria-label string null Defines a string value that labels an interactive element. - ariaLabelledby + aria-labelledby string null Establishes relationships between the component and label(s) where its value should be one or more element IDs. diff --git a/src/views/multiselect/MultiSelectDoc.vue b/src/views/multiselect/MultiSelectDoc.vue index fd8e9e06a..bc3bae08f 100755 --- a/src/views/multiselect/MultiSelectDoc.vue +++ b/src/views/multiselect/MultiSelectDoc.vue @@ -388,13 +388,13 @@ export default { Index of the element in tabbing order. - ariaLabel + aria-label string null Defines a string value that labels an interactive element. - ariaLabelledby + aria-labelledby string null Establishes relationships between the component and label(s) where its value should be one or more element IDs.