-
Notifications
You must be signed in to change notification settings - Fork 6.8k
/
Copy pathtree-demo.html
62 lines (62 loc) · 3.09 KB
/
tree-demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<mat-accordion class="demo-tree-container">
<mat-expansion-panel>
<mat-expansion-panel-header>Flat tree</mat-expansion-panel-header>
<tree-flat-overview-example></tree-flat-overview-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Flat tree (childrenAccessor)</mat-expansion-panel-header>
<tree-flat-child-accessor-overview-example></tree-flat-child-accessor-overview-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>CDK Flat tree</mat-expansion-panel-header>
<cdk-tree-flat-example></cdk-tree-flat-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>CDK Flat tree (levelAccessor)</mat-expansion-panel-header>
<cdk-tree-flat-level-accessor-example></cdk-tree-flat-level-accessor-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>CDK Flat tree (childrenAccessor)</mat-expansion-panel-header>
<cdk-tree-flat-children-accessor-example></cdk-tree-flat-children-accessor-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Nested tree</mat-expansion-panel-header>
<tree-nested-overview-example></tree-nested-overview-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Nested tree (childrenAccessor)</mat-expansion-panel-header>
<tree-nested-child-accessor-overview-example></tree-nested-child-accessor-overview-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>CDK Nested tree</mat-expansion-panel-header>
<cdk-tree-nested-example></cdk-tree-nested-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>CDK Nested tree (levelAccessor)</mat-expansion-panel-header>
<cdk-tree-nested-level-accessor-example></cdk-tree-nested-level-accessor-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>CDK Nested tree (childrenAccessor)</mat-expansion-panel-header>
<cdk-tree-nested-children-accessor-example></cdk-tree-nested-children-accessor-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Dynamic flat tree</mat-expansion-panel-header>
<tree-dynamic-example></tree-dynamic-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Load more flat tree</mat-expansion-panel-header>
<tree-loadmore-example></tree-loadmore-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Complex tree (Redux pattern)</mat-expansion-panel-header>
<cdk-tree-complex-example></cdk-tree-complex-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Custom Key Manager</mat-expansion-panel-header>
<cdk-tree-custom-key-manager-example></cdk-tree-custom-key-manager-example>
</mat-expansion-panel>
<mat-expansion-panel>
<mat-expansion-panel-header>Legacy Keyboard Interface</mat-expansion-panel-header>
<tree-legacy-keyboard-interface-example></tree-legacy-keyboard-interface-example>
</mat-expansion-panel>
</mat-accordion>