Alex Rickabaugh
60727c4d2b
revert(format): Revert "chore(format): update to latest formatter"
...
This reverts commit 03627aa84d
.
2016-04-12 09:41:01 -07:00
Alex Eagle
03627aa84d
chore(format): update to latest formatter
...
Closes #7958
2016-04-11 22:15:23 +00:00
Jason Kurian
440aca86a3
chore(examples): fix implied imports in examples for testing built typings
2016-03-24 19:25:07 +00:00
Tim Blasi
b6507e37ef
feat(dart/transform): Use angular2/platform/browser as bootstrap lib
...
Update the Angular 2 transformer to recognize
`package:angular2/platform/browser.dart` as the library which exports
the `bootstrap` function.
Update playground, examples, benchmarks, & tests to import bootstrap from
platform/browser.
Closes #7647
2016-03-21 00:58:17 +00:00
Misko Hevery
8bb66a5eb3
chore: noImplicitAny fixes
2016-02-24 15:29:00 -08:00
Igor Minar
5b63b6764f
fix(docs,benchmarks): remove invalid </input> closing tags
...
Closing #5752
2015-12-15 00:45:31 -08:00
vsavkin
43f42d9c6e
feat(facade): do not reexport Observable from angular2/core
...
BREAKING CHANGE
Before import {Observable} from 'angular2/core'
After import {Observable} from 'rxjs/Observable';
2015-12-12 19:28:13 +00:00
Pawel Kozlowski
df6d2d1e23
refactor(examples): remove imports from 'angular2/angular2'
...
Closes #5803
2015-12-10 21:45:58 +00:00
Victor Berchet
da9b46a071
feat: camelCase Angular (kebab-case removal)
...
BREAKING CHANGE:
Angular is now fully camel case.
Before:
<p *ng-if="cond">
<my-cmp [my-prop]="exp">
<my-cmp (my-event)="action()">
<my-cmp [(my-prop)]="prop">
<input #my-input>
<template ng-for #my-item [ng-for-of]=items #my-index="index">
After
<p *ngIf="cond">
<my-cmp [myProp]="exp">
<my-cmp (myEvent)="action()">
<my-cmp [(myProp)]="prop">
<input #myInput>`,
<template ngFor="#my-item" [ngForOf]=items #myIndex="index">
The full details are found in [angular2/docs/migration/kebab-case.md](https://github.com/angular/angular/blob/master/modules/angular2/docs/migration/kebab-case.md )
2015-12-09 19:59:40 -08:00
Tim Ruffles
bdfed9d850
docs(core): make naming concrete
...
I think people new to promises, angular etc will find this example easier to understand with concrete identifiers from a simple use-case. The existing naming could be confused with promise/angular functionality (`promise` in the template, `resolved` etc).
Also I made `resolve` private, as then it's clear what we're exposing for the template.
2015-12-02 11:41:52 -08:00
Alex Rickabaugh
94cf671c15
docs(pipes): Add examples for all Angular pipes.
...
Closes #5103
2015-11-17 00:15:17 +00:00