Skip to content

Commit 06798e2

Browse files
crisbetojelbourn
authored andcommittedJan 9, 2019
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 #14761
1 parent 516af4c commit 06798e2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎material.angular.io/src/assets/stackblitz/material-module.ts

+2
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)
Please sign in to comment.