From ec521dde89e7fec453f733d75cb95352418f280b Mon Sep 17 00:00:00 2001 From: Filip Siderov Date: Fri, 31 Jul 2020 12:11:47 +0300 Subject: [PATCH 1/2] fix(ui5-tabcontainer): implement acc for overflowed items --- packages/main/src/TabInOverflow.hbs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/main/src/TabInOverflow.hbs b/packages/main/src/TabInOverflow.hbs index 117827993d5c..6f0f3fcf4934 100644 --- a/packages/main/src/TabInOverflow.hbs +++ b/packages/main/src/TabInOverflow.hbs @@ -4,6 +4,9 @@ type="{{this.overflowState}}" ?selected="{{this.effectiveSelected}}" ?disabled="{{this.effectiveDisabled}}" + ?aria-disabled="{{this.effectiveDisabled}}" + aria-selected="{{this.effectiveSelected}}" + aria-labelledby="{{this.ariaLabelledBy}}" >
{{#if this.icon}} From be2ca9043021f78fefd798412d33b5c2ebe65843 Mon Sep 17 00:00:00 2001 From: ilhan Date: Mon, 3 Aug 2020 11:59:42 +0300 Subject: [PATCH 2/2] fix aria-disabled --- packages/main/src/TabInOverflow.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/main/src/TabInOverflow.hbs b/packages/main/src/TabInOverflow.hbs index 6f0f3fcf4934..c7c55dddeb0e 100644 --- a/packages/main/src/TabInOverflow.hbs +++ b/packages/main/src/TabInOverflow.hbs @@ -4,7 +4,7 @@ type="{{this.overflowState}}" ?selected="{{this.effectiveSelected}}" ?disabled="{{this.effectiveDisabled}}" - ?aria-disabled="{{this.effectiveDisabled}}" + aria-disabled="{{this.effectiveDisabled}}" aria-selected="{{this.effectiveSelected}}" aria-labelledby="{{this.ariaLabelledBy}}" >