Skip to content

Commit 4ee0b87

Browse files
crisbetoandrewseguin
authored andcommitted
chore: focus monitor directives example not working (#11660)
Fixes the `focus-monitor-directives` example not working due to the `A11yModule` not being imported in the examples.
1 parent 965cd7a commit 4ee0b87

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/material-examples/material-module.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {NgModule} from '@angular/core';
22

33
import {ScrollDispatchModule} from '@angular/cdk/scrolling';
4+
import {A11yModule} from '@angular/cdk/a11y';
45
import {CdkTableModule} from '@angular/cdk/table';
56
import {CdkTreeModule} from '@angular/cdk/tree';
67
import {
@@ -15,6 +16,7 @@ import {
1516

1617
@NgModule({
1718
imports: [
19+
A11yModule,
1820
CdkTableModule,
1921
CdkTreeModule,
2022
MatAutocompleteModule,
@@ -55,6 +57,7 @@ import {
5557
ScrollDispatchModule,
5658
],
5759
exports: [
60+
A11yModule,
5861
CdkTableModule,
5962
CdkTreeModule,
6063
MatAutocompleteModule,

0 commit comments

Comments
 (0)