Commit 73086d47 authored by Pradosh Kumar's avatar Pradosh Kumar
Browse files

Issue #SB-30575 fix: Accessibility is not working as expected

No related merge requests found
Showing with 5 additions and 5 deletions
+5 -5
......@@ -62,4 +62,4 @@
"tslint": "~5.11.0",
"typescript": "~3.7.3"
}
}
\ No newline at end of file
}
{
"name": "@project-sunbird/common-consumption-v9",
"version": "4.10.2",
"version": "4.10.3",
"repository": {
"type": "git",
"url": "git+https://github.com/Sunbird-Ed/SunbirdEd-consumption-ngcomponents.git"
......
......@@ -22,7 +22,7 @@
<div class="item" [ngClass]="maxCardCount ? 'show-' + maxCardCount: ''"
*ngFor="let content of contentList | slice:0:(maxCardCount ? maxCardCount : contentList?.length)let i=index">
<sb-library-card [indexToDisplay]="i" [layoutConfig]="layoutConfig" [content]="content" [type]="LibraryCardTypes.DESKTOP_TEXTBOOK"
(click)="onCardClick($event, content)" (keydown.enter)="onEnterKeyPress($event, content)" tabindex="0" [cardImg]="content?.cardImg">
(click)="onCardClick($event, content)" (keydown.enter)="onEnterKeyPress($event, content)" [cardImg]="content?.cardImg">
</sb-library-card>
</div>
</div>
......@@ -32,7 +32,7 @@
(click)="onViewMoreClick($event)" tabindex="0">{{viewMoreButtonText}}</button>
<div class="item" [ngClass]="maxCardCount ? 'show-' + maxCardCount: ''" *ngFor="let content of contentList;let i=index">
<sb-library-card [indexToDisplay]="i" [layoutConfig]="layoutConfig" [content]="content" [type]="LibraryCardTypes.DESKTOP_TEXTBOOK"
[isMenu]="isMenu" (click)="onCardClick($event, content)" (keydown.enter)="onEnterKeyPress($event, content)" tabindex="0" [cardImg]="content?.cardImg" (menuClick)="onCardMenuClick($event)">
[isMenu]="isMenu" (click)="onCardClick($event, content)" (keydown.enter)="onEnterKeyPress($event, content)" [cardImg]="content?.cardImg" (menuClick)="onCardMenuClick($event)">
</sb-library-card>
</div>
</div>
......@@ -41,7 +41,7 @@
<div class="item" [ngClass]="maxCardCount ? 'show-' + maxCardCount: ''"
*ngFor="let content of contentList; let index = index">
<sb-library-card [indexToDisplay]="index" [layoutConfig]="layoutConfig" [content]="content" [type]="LibraryCardTypes.DESKTOP_TEXTBOOK"
(click)="onCardClick($event, content)" tabindex="0" [cardImg]="content?.cardImg" [hover-template]="hoverTemplate">
(click)="onCardClick($event, content)" [cardImg]="content?.cardImg" [hover-template]="hoverTemplate">
<ng-template #hoverTemplate let-hoverData="hoverData">
<sb-card-hover class="card-hover" [hoverData]="hoverData" [content]="content"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment