@@ -6,7 +6,10 @@ import {
6
6
} from '@angular/core' ;
7
7
8
8
import { LeftSlicePipe , RightSlicePipe } from './slice.pipes' ;
9
- import { UiRoadmapNodeComponent } from './ui-roadmap-node.component' ;
9
+ import { UiRoadmapAngularLoveNodeComponent } from './ui/ui-roadmap-angular-love-node.component' ;
10
+ import { UiRoadmapClusterComponent } from './ui/ui-roadmap-cluster.component' ;
11
+ import { UiRoadmapPrimaryNodeComponent } from './ui/ui-roadmap-primary-node.component' ;
12
+ import { UiRoadmapSecondaryNodeComponent } from './ui/ui-roadmap-secondary-node.component' ;
10
13
11
14
export type NodeType = 'primary' | 'secondary' | 'cluster' | 'angular-love' ;
12
15
@@ -35,7 +38,14 @@ export interface RoadmapLayer {
35
38
36
39
@Component ( {
37
40
selector : 'al-feature-roadmap' ,
38
- imports : [ UiRoadmapNodeComponent , LeftSlicePipe , RightSlicePipe ] ,
41
+ imports : [
42
+ LeftSlicePipe ,
43
+ RightSlicePipe ,
44
+ UiRoadmapClusterComponent ,
45
+ UiRoadmapPrimaryNodeComponent ,
46
+ UiRoadmapAngularLoveNodeComponent ,
47
+ UiRoadmapSecondaryNodeComponent ,
48
+ ] ,
39
49
templateUrl : './feature-roadmap.component.html' ,
40
50
styleUrl : './feature-roadmap.component.scss' ,
41
51
changeDetection : ChangeDetectionStrategy . OnPush ,
@@ -73,6 +83,11 @@ export class FeatureRoadmapComponent {
73
83
parentNodeId : '4' ,
74
84
title : 'Sass' ,
75
85
} ,
86
+ {
87
+ id : '8' ,
88
+ previousNodeId : '2' ,
89
+ title : 'Modules' ,
90
+ } ,
76
91
] ) ;
77
92
78
93
protected readonly roadmapLayers = computed < RoadmapLayer [ ] > ( ( ) => {
0 commit comments