Skip to content

Commit e4f68e0

Browse files
committed
chore: npm bump
1 parent ab82ebe commit e4f68e0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ngrev",
33
"productName": "ngrev",
44
"description": "Reverse Engineering for Angular",
5-
"version": "0.0.24",
5+
"version": "0.0.25",
66
"author": "Minko Gechev <[email protected]>",
77
"homepage": "http://example.com",
88
"license": "MIT",

src/background/states/app.state.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { State } from './state';
2-
import { Metadata, VisualizationConfig, Graph } from '../../shared/data-format';
2+
import { Metadata, VisualizationConfig, Graph, Layout } from '../../shared/data-format';
33
import { ProjectSymbols } from 'ngast';
44
import { ModuleTreeState } from './module-tree.state';
55
import { AppModuleState } from './app-module.state';
@@ -8,7 +8,7 @@ import { ProviderState } from './provider.state';
88
import { PipeState } from './pipe.state';
99

1010
const CompositeStateID = '$$$composite-state$$$';
11-
export const Title = 'Application view';
11+
const Title = 'Application View';
1212

1313
export class AppState extends State {
1414
private states: State[] = [];
@@ -35,6 +35,7 @@ export class AppState extends State {
3535

3636
getData(): VisualizationConfig<any> {
3737
const data: VisualizationConfig<any> = {
38+
layout: Layout.Regular,
3839
title: Title,
3940
graph: {
4041
nodes: [],

0 commit comments

Comments
 (0)