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,

public/docs/_examples/animations/ts/app/hero-list-twoway.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-team-builder.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { Component } from '@angular/core';
2-
import { Heroes } from './hero.service';
2+
3+
import { Heroes } from './hero.service';
34
import { HeroListBasicComponent } from './hero-list-basic.component';
4-
import { HeroListInlineStylesComponent } from './hero-list-inline-styles.component';
5+
import { HeroListInlineStylesComponent } from './hero-list-inline-styles.component';
56
import { HeroListEnterLeaveComponent } from './hero-list-enter-leave.component';
67
import { HeroListEnterLeaveStatesComponent } from './hero-list-enter-leave-states.component';
78
import { HeroListCombinedTransitionsComponent } from './hero-list-combined-transitions.component';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { bootstrap } from '@angular/platform-browser-dynamic';
2+
23
import { HeroTeamBuilderComponent } from './hero-team-builder.component';
34

45
bootstrap(HeroTeamBuilderComponent);

public/docs/_examples/animations/ts/dist/index.html

Lines changed: 0 additions & 12 deletions
This file was deleted.

public/docs/_examples/animations/ts/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<link rel="stylesheet" href="styles.css">
88

99
<!-- Polyfill for Web Animations -->
10-
<!-- This can be replaced with Angular's own once it ships -->
1110
<script src="https://npmcdn.com/web-animations-js@2.2.1"></script>
1211

1312
<!-- Polyfill(s) for older browsers -->

public/docs/_examples/animations/ts/style.css

Whitespace-only changes.

0 commit comments

Comments
 (0)