Skip to content

Commit

Permalink
Merge branch 'develop' into feat/CXSPA-9288
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhw0630 authored Jan 30, 2025
2 parents 20788cd + 53ca163 commit f0d2676
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ <h2 class="cx-checkout-title d-none d-lg-block d-xl-block">
[fitToContainer]="true"
[content]="card.card"
(sendCard)="selectAddress(card.address)"
[role]="'group'"
></cx-card>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ <h2 class="cx-checkout-title d-none d-lg-block d-xl-block">
[fitToContainer]="true"
[content]="card.card"
(sendCard)="selectAddress(card.address)"
[role]="'group'"
></cx-card>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*ngIf="content"
class="cx-card"
[tabindex]="border ? 0 : -1"
[attr.role]="role"
[attr.aria-labelledby]="getLabel('content-header')"
[attr.aria-describedby]="ariaDescribedBy"
[class.cx-card-border]="border"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ export class CardComponent implements OnInit {
@Input()
index: number;

@Input()
role?: string;

// ACTIONS

setEditMode(): void {
Expand Down

0 comments on commit f0d2676

Please sign in to comment.