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

Commit 0c96271

Browse files
filipesilvawardbell
authored andcommitted
chore: update to rc6 (#2177)
1 parent b2781d9 commit 0c96271

File tree

57 files changed

+194
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+194
-219
lines changed

gulpfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,7 @@ gulp.task('build-dart-api-docs', ['_shred-api-examples', 'dartdoc'], function()
633633
return buildApiDocsForDart();
634634
});
635635

636+
// Using the --build flag will use systemjs.config.plunker.build.js (for preview builds)
636637
gulp.task('build-plunkers', ['_copy-example-boilerplate'], function() {
637638
regularPlunker.buildPlunkers(EXAMPLES_PATH, LIVE_EXAMPLES_PATH, { errFn: gutil.log, build: argv.build });
638639
return embeddedPlunker.buildPlunkers(EXAMPLES_PATH, LIVE_EXAMPLES_PATH, { errFn: gutil.log, build: argv.build });

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Heroes } from './hero.service';
1717
template: `
1818
<ul>
1919
<li *ngFor="let hero of heroes"
20-
@shrinkOut="'in'">
20+
[@shrinkOut]="'in'">
2121
{{hero.name}}
2222
</li>
2323
</ul>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Heroes } from './hero.service';
2727
template: `
2828
<ul>
2929
<li *ngFor="let hero of heroes"
30-
@heroState="hero.state"
30+
[@heroState]="hero.state"
3131
(click)="hero.toggleState()">
3232
{{hero.name}}
3333
</li>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { Heroes } from './hero.service';
2020
template: `
2121
<ul>
2222
<li *ngFor="let hero of heroes"
23-
@heroState="hero.state"
23+
[@heroState]="hero.state"
2424
(click)="hero.toggleState()">
2525
{{hero.name}}
2626
</li>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Heroes } from './hero.service';
1818
<ul>
1919
<li *ngFor="let hero of heroes"
2020
(click)="hero.toggleState()"
21-
@heroState="hero.state">
21+
[@heroState]="hero.state">
2222
{{hero.name}}
2323
</li>
2424
</ul>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Heroes } from './hero.service';
1717
template: `
1818
<ul>
1919
<li *ngFor="let hero of heroes"
20-
@flyInOut="'in'">
20+
[@flyInOut]="'in'">
2121
{{hero.name}}
2222
</li>
2323
</ul>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Heroes } from './hero.service';
1717
template: `
1818
<ul>
1919
<li *ngFor="let hero of heroes"
20-
@flyInOut="'in'">
20+
[@flyInOut]="'in'">
2121
{{hero.name}}
2222
</li>
2323
</ul>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { Heroes } from './hero.service';
1919
template: `
2020
<ul>
2121
<li *ngFor="let hero of heroes"
22-
@heroState="hero.state"
22+
[@heroState]="hero.state"
2323
(click)="hero.toggleState()">
2424
{{hero.name}}
2525
</li>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Heroes } from './hero.service';
1717
template: `
1818
<ul>
1919
<li *ngFor="let hero of heroes"
20-
@flyInOut="'in'">
20+
[@flyInOut]="'in'">
2121
{{hero.name}}
2222
</li>
2323
</ul>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { Heroes } from './hero.service';
1616
template: `
1717
<ul>
1818
<li *ngFor="let hero of heroes"
19-
@flyInOut="'in'"
19+
[@flyInOut]="'in'"
2020
(click)="hero.toggleState()">
2121
{{hero.name}}
2222
</li>

0 commit comments

Comments
 (0)