diff --git a/components/lib/autocomplete/AutoComplete.vue b/components/lib/autocomplete/AutoComplete.vue
index 8a7a5b3a7..680b4ad19 100755
--- a/components/lib/autocomplete/AutoComplete.vue
+++ b/components/lib/autocomplete/AutoComplete.vue
@@ -117,7 +117,7 @@
-
+
-
{{ getOptionGroupLabel(option.optionGroup) }}
@@ -924,6 +924,9 @@ export default {
selectedMessageText() {
return this.hasSelectedOption ? this.selectionMessageText.replaceAll('{0}', this.multiple ? this.modelValue.length : '1') : this.emptySelectionMessageText;
},
+ listAriaLabel() {
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.listLabel : undefined;
+ },
focusedOptionId() {
return this.focusedOptionIndex !== -1 ? `${this.id}_${this.focusedOptionIndex}` : null;
},
diff --git a/components/lib/cascadeselect/CascadeSelectSub.vue b/components/lib/cascadeselect/CascadeSelectSub.vue
index 917abb5a1..8e7ced319 100644
--- a/components/lib/cascadeselect/CascadeSelectSub.vue
+++ b/components/lib/cascadeselect/CascadeSelectSub.vue
@@ -1,5 +1,5 @@
-
+
-
-
+
-
@@ -964,6 +964,9 @@ export default {
selectedMessageText() {
return this.hasSelectedOption ? this.selectionMessageText.replaceAll('{0}', '1') : this.emptySelectionMessageText;
},
+ listAriaLabel() {
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.listLabel : undefined;
+ },
focusedOptionId() {
return this.focusedOptionIndex !== -1 ? `${this.id}_${this.focusedOptionIndex}` : null;
},
diff --git a/components/lib/multiselect/MultiSelect.vue b/components/lib/multiselect/MultiSelect.vue
index 5175103c5..444ee0be4 100755
--- a/components/lib/multiselect/MultiSelect.vue
+++ b/components/lib/multiselect/MultiSelect.vue
@@ -119,7 +119,7 @@
-
+
-
{{ getOptionGroupLabel(option.optionGroup) }}
@@ -1088,6 +1088,9 @@ export default {
closeAriaLabel() {
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.close : undefined;
},
+ listAriaLabel() {
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.listLabel : undefined;
+ },
virtualScrollerDisabled() {
return !this.virtualScrollerOptions;
}