File tree 8 files changed +12
-0
lines changed
8 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ ng_module(
12
12
module_name = "@angular/material-examples/cdk/tree" ,
13
13
deps = [
14
14
"//src/cdk/tree" ,
15
+ "//src/material/button" ,
15
16
"//src/material/icon" ,
16
17
],
17
18
)
Original file line number Diff line number Diff line change 1
1
import { CdkTreeModule } from '@angular/cdk/tree' ;
2
2
import { NgModule } from '@angular/core' ;
3
+ import { MatButtonModule } from '@angular/material/button' ;
3
4
import { MatIconModule } from '@angular/material/icon' ;
4
5
import { CdkTreeFlatExample } from './cdk-tree-flat/cdk-tree-flat-example' ;
5
6
import { CdkTreeNestedExample } from './cdk-tree-nested/cdk-tree-nested-example' ;
@@ -17,6 +18,7 @@ const EXAMPLES = [
17
18
@NgModule ( {
18
19
imports : [
19
20
CdkTreeModule ,
21
+ MatButtonModule ,
20
22
MatIconModule ,
21
23
] ,
22
24
declarations : EXAMPLES ,
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ ng_module(
12
12
module_name = "@angular/material-examples/material/badge" ,
13
13
deps = [
14
14
"//src/material/badge" ,
15
+ "//src/material/button" ,
15
16
"//src/material/icon" ,
16
17
],
17
18
)
Original file line number Diff line number Diff line change 1
1
import { NgModule } from '@angular/core' ;
2
2
import { MatBadgeModule } from '@angular/material/badge' ;
3
+ import { MatButtonModule } from '@angular/material/button' ;
3
4
import { MatIconModule } from '@angular/material/icon' ;
4
5
import { BadgeOverviewExample } from './badge-overview/badge-overview-example' ;
5
6
@@ -12,6 +13,7 @@ const EXAMPLES = [
12
13
@NgModule ( {
13
14
imports : [
14
15
MatBadgeModule ,
16
+ MatButtonModule ,
15
17
MatIconModule ,
16
18
] ,
17
19
declarations : EXAMPLES ,
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ ng_module(
12
12
module_name = "@angular/material-examples/material/bottom-sheet" ,
13
13
deps = [
14
14
"//src/material/bottom-sheet" ,
15
+ "//src/material/button" ,
15
16
"//src/material/list" ,
16
17
],
17
18
)
Original file line number Diff line number Diff line change 1
1
import { NgModule } from '@angular/core' ;
2
2
import { MatBottomSheetModule } from '@angular/material/bottom-sheet' ;
3
+ import { MatButtonModule } from '@angular/material/button' ;
3
4
import { MatListModule } from '@angular/material/list' ;
4
5
import {
5
6
BottomSheetOverviewExample ,
@@ -19,6 +20,7 @@ const EXAMPLES = [
19
20
@NgModule ( {
20
21
imports : [
21
22
MatBottomSheetModule ,
23
+ MatButtonModule ,
22
24
MatListModule ,
23
25
] ,
24
26
declarations : EXAMPLES ,
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ ng_module(
11
11
]),
12
12
module_name = "@angular/material-examples/material/expansion" ,
13
13
deps = [
14
+ "//src/material/button" ,
14
15
"//src/material/datepicker" ,
15
16
"//src/material/expansion" ,
16
17
"//src/material/icon" ,
Original file line number Diff line number Diff line change 1
1
import { NgModule } from '@angular/core' ;
2
+ import { MatButtonModule } from '@angular/material/button' ;
2
3
import { MatDatepickerModule } from '@angular/material/datepicker' ;
3
4
import { MatExpansionModule } from '@angular/material/expansion' ;
4
5
import { MatIconModule } from '@angular/material/icon' ;
@@ -23,6 +24,7 @@ const EXAMPLES = [
23
24
24
25
@NgModule ( {
25
26
imports : [
27
+ MatButtonModule ,
26
28
MatDatepickerModule ,
27
29
MatExpansionModule ,
28
30
MatIconModule ,
You can’t perform that action at this time.
0 commit comments