File tree Expand file tree Collapse file tree 6 files changed +18
-18
lines changed Expand file tree Collapse file tree 6 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -5,20 +5,20 @@ import {MatMenuModule} from '@angular/material/menu';
5
5
import { MenuIconsExample } from './menu-icons/menu-icons-example' ;
6
6
import { MenuOverviewExample } from './menu-overview/menu-overview-example' ;
7
7
import { MenuPositionExample } from './menu-position/menu-position-example' ;
8
- import { NestedMenuExample } from './nested- menu/nested- menu-example' ;
8
+ import { MenuNestedExample } from './menu-nested/ menu-nested -example' ;
9
9
10
10
export {
11
11
MenuIconsExample ,
12
12
MenuOverviewExample ,
13
13
MenuPositionExample ,
14
- NestedMenuExample ,
14
+ MenuNestedExample ,
15
15
} ;
16
16
17
17
const EXAMPLES = [
18
- MenuIconsExample ,
19
- MenuOverviewExample ,
20
- MenuPositionExample ,
21
- NestedMenuExample ,
18
+ MenuIconsExample ,
19
+ MenuOverviewExample ,
20
+ MenuPositionExample ,
21
+ MenuNestedExample ,
22
22
] ;
23
23
24
24
@NgModule ( {
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ import { Component } from '@angular/core' ;
2
+
3
+ /**
4
+ * @title Nested menu
5
+ */
6
+ @Component ( {
7
+ selector : 'menu-nested-example' ,
8
+ templateUrl : 'menu-nested-example.html' ,
9
+ styleUrls : [ 'menu-nested-example.css' ] ,
10
+ } )
11
+ export class MenuNestedExample { }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ that should trigger the sub-menu:
93
93
</button >
94
94
```
95
95
96
- <!-- example(nested- menu) -->
96
+ <!-- example(menu-nested ) -->
97
97
98
98
### Lazy rendering
99
99
By default, the menu content will be initialized even when the panel is closed. To defer
You can’t perform that action at this time.
0 commit comments