Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 70b9817

Browse files
Foxandxssnaomiblack
authored andcommitted
latest touches
1 parent 5b4da0c commit 70b9817

16 files changed

+44
-46
lines changed

public/docs/_examples/animations/ts/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/docs/_examples/animations/ts/app/hero-list-auto.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import {
77
animate,
88
transition
99
} from '@angular/core';
10-
import { Heroes } from './hero.service';
10+
11+
import { Heroes } from './hero.service';
1112

1213
@Component({
1314
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-basic.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import {
1111
animate
1212
} from '@angular/core';
1313
// #enddocregion imports
14-
import { Heroes } from './hero.service';
14+
15+
import { Heroes } from './hero.service';
1516

1617
@Component({
1718
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-combined-transitions.component.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
// #docregion
22
// #docregion imports
33
import {
4-
Component,
5-
Input,
6-
trigger,
7-
state,
8-
style,
9-
transition,
10-
animate
4+
Component,
5+
Input,
6+
trigger,
7+
state,
8+
style,
9+
transition,
10+
animate
1111
} from '@angular/core';
1212
// #enddocregion imports
13-
import { Heroes } from './hero.service';
13+
14+
import { Heroes } from './hero.service';
1415

1516
@Component({
1617
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-enter-leave-states.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import {
77
animate,
88
transition
99
} from '@angular/core';
10-
import { Heroes } from './hero.service';
10+
11+
import { Heroes } from './hero.service';
1112

1213
@Component({
1314
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-enter-leave.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import {
77
animate,
88
transition
99
} from '@angular/core';
10-
import { Heroes } from './hero.service';
10+
11+
import { Heroes } from './hero.service';
1112

1213
@Component({
1314
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-groups.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import {
88
transition,
99
group
1010
} from '@angular/core';
11-
import { Heroes } from './hero.service';
11+
12+
import { Heroes } from './hero.service';
1213

1314
@Component({
1415
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-inline-styles.component.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
// #docregion
22
// #docregion imports
33
import {
4-
Component,
5-
Input,
6-
trigger,
7-
style,
8-
transition,
9-
animate
4+
Component,
5+
Input,
6+
trigger,
7+
style,
8+
transition,
9+
animate
1010
} from '@angular/core';
1111
// #enddocregion imports
12-
import { Heroes } from './hero.service';
12+
13+
import { Heroes } from './hero.service';
1314

1415
@Component({
1516
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-multistep.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import {
88
transition,
99
keyframes
1010
} from '@angular/core';
11-
import { Heroes } from './hero.service';
11+
12+
import { Heroes } from './hero.service';
1213

1314
@Component({
1415
moduleId: module.id,

public/docs/_examples/animations/ts/app/hero-list-timings.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import {
77
animate,
88
transition
99
} from '@angular/core';
10-
import { Heroes } from './hero.service';
10+
11+
import { Heroes } from './hero.service';
1112

1213
@Component({
1314
moduleId: module.id,

0 commit comments

Comments
 (0)