Skip to content

Commit e46faa3

Browse files
author
mivanov
committed
fix(app): flat app
1 parent 99d148f commit e46faa3

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

change-detection-strategy-onpush/app/app.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {ChangeDetectionStrategy, Component, ElementRef, Injector, ViewChild} from '@angular/core';
2-
import {Lifecycle} from '../../change-detection-strategy-default/common/utils/Lifecycle';
3-
import {TreeNode} from '../../change-detection-strategy-default/common/tree-node.class';
2+
import {Lifecycle} from '../common/utils/Lifecycle';
3+
import {TreeNode} from '../common/tree-node.class';
44

55
@Component({
66
selector: 'app-root',

change-detection-strategy-onpush/app/component/button-click/button-click.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {ChangeDetectionStrategy, Component, Injector, Input} from '@angular/core';
2-
import {Lifecycle} from "../../..//common/utils/Lifecycle";
3-
import {TreeNode} from "../../..//common/tree-node.class";
2+
import {Lifecycle} from "../../../common/utils/Lifecycle";
3+
import {TreeNode} from "../../../common/tree-node.class";
44

55
@Component({
66
selector: 'button-click',

change-detection-strategy-onpush/app/component/input-change/input-change.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {ChangeDetectionStrategy, Component, Injector, Input} from '@angular/core';
2-
import {TreeNode} from '../../..//common/tree-node.class';
2+
import {TreeNode} from '../../../common/tree-node.class';
33

44
@Component({
55
selector: 'input-change',

change-detection-strategy-onpush/app/component/interval/interval.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {interval} from 'rxjs/observable/interval';
33
import {map} from 'rxjs/operators';
44
import {Subscription} from 'rxjs/Subscription';
55
import {Observable} from 'rxjs/Observable';
6-
import {TreeNode} from '../../..//common/tree-node.class';
7-
import {Lifecycle} from '../../..//common/utils/Lifecycle';
6+
import {TreeNode} from '../../../common/tree-node.class';
7+
import {Lifecycle} from '../../../common/utils/Lifecycle';
88

99
@Component({
1010
selector: 'interval',

change-detection-strategy-onpush/app/tree/child/child.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {ChangeDetectionStrategy, Component, Injector, Input} from '@angular/core';
2-
import {Lifecycle} from "../../..//common/utils/Lifecycle";
3-
import {TreeNode} from "../../..//common/tree-node.class";
2+
import {Lifecycle} from "../../../common/utils/Lifecycle";
3+
import {TreeNode} from "../../../common/tree-node.class";
44

55
interface Limit {
66
deep: number;

change-detection-strategy-onpush/app/tree/tree/tree.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {ChangeDetectionStrategy, Component, Injector} from '@angular/core';
2-
import {Lifecycle} from "../../..//common/utils/Lifecycle";
3-
import {TreeNode} from "../../..//common/tree-node.class";
2+
import {Lifecycle} from "../../../common/utils/Lifecycle";
3+
import {TreeNode} from "../../../common/tree-node.class";
44

55
@Lifecycle()
66
@Component({

0 commit comments

Comments
 (0)