Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 316dd78

Browse files
crisbetojelbourn
authored andcommitted
fix: missing import for a11y module (#571)
There are some examples that depend on the `A11yModule` and they break if they're forked into a Stackblitz, because we don't import the `A11yModule` directly anywhere. Fixes angular/components#14761
1 parent 4bb7294 commit 316dd78

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/assets/stackblitz/material-module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {DragDropModule} from '@angular/cdk/drag-drop';
22
import {ScrollingModule} from '@angular/cdk/scrolling';
33
import {CdkTableModule} from '@angular/cdk/table';
44
import {CdkTreeModule} from '@angular/cdk/tree';
5+
import {A11yModule} from '@angular/cdk/a11y';
56
import {NgModule} from '@angular/core';
67
import {
78
MatAutocompleteModule,
@@ -43,6 +44,7 @@ import {
4344

4445
@NgModule({
4546
exports: [
47+
A11yModule,
4648
CdkTableModule,
4749
CdkTreeModule,
4850
DragDropModule,

0 commit comments

Comments
 (0)