From 337977444ad019a29f2b6f1e46a5583ccfdc20ed Mon Sep 17 00:00:00 2001 From: William Martin Date: Tue, 20 May 2025 14:58:34 -0400 Subject: [PATCH] fix selectors --- libs/components/src/a11y/a11y-cell.directive.ts | 2 +- libs/components/src/a11y/a11y-grid.directive.ts | 2 +- libs/components/src/a11y/a11y-row.directive.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/components/src/a11y/a11y-cell.directive.ts b/libs/components/src/a11y/a11y-cell.directive.ts index 0ca82b15fc2..46a3b239ab7 100644 --- a/libs/components/src/a11y/a11y-cell.directive.ts +++ b/libs/components/src/a11y/a11y-cell.directive.ts @@ -3,7 +3,7 @@ import { Directive, ElementRef, HostBinding, contentChild } from "@angular/core" import { FocusableElement } from "../shared/focusable-element"; @Directive({ - selector: "bitA11yCell", + selector: "[bitA11yCell]", standalone: true, providers: [{ provide: FocusableElement, useExisting: A11yCellDirective }], }) diff --git a/libs/components/src/a11y/a11y-grid.directive.ts b/libs/components/src/a11y/a11y-grid.directive.ts index 335fc029a62..5b50335d46e 100644 --- a/libs/components/src/a11y/a11y-grid.directive.ts +++ b/libs/components/src/a11y/a11y-grid.directive.ts @@ -23,7 +23,7 @@ import { A11yRowDirective } from "./a11y-row.directive"; * @see https://www.w3.org/WAI/ARIA/apg/patterns/grid/examples/data-grids/ */ @Directive({ - selector: "bitA11yGrid", + selector: "[bitA11yGrid]", standalone: true, }) export class A11yGridDirective { diff --git a/libs/components/src/a11y/a11y-row.directive.ts b/libs/components/src/a11y/a11y-row.directive.ts index 0d2babee735..178ddea71ea 100644 --- a/libs/components/src/a11y/a11y-row.directive.ts +++ b/libs/components/src/a11y/a11y-row.directive.ts @@ -10,7 +10,7 @@ import { import { A11yCellDirective } from "./a11y-cell.directive"; @Directive({ - selector: "bitA11yRow", + selector: "[bitA11yRow]", standalone: true, }) export class A11yRowDirective {