Alex Eagle
03627aa84d
chore(format): update to latest formatter
...
Closes #7958
2016-04-11 22:15:23 +00:00
Gion Kunz
ccff17599a
feat(ngFor): Support convenience view local in ngFor
...
Closes #8013
2016-04-11 21:27:48 +00:00
vsavkin
3b60503d2b
feat(transformers): changes transformers to collect information about providers and resolve identifiers during linking
2016-04-10 19:36:16 -07:00
Kara Erickson
e1e44a910e
fix(select): set value individually from ngModel
...
Closes #7975
Closes #7978
2016-04-08 21:08:05 +00:00
Vikram Subramanian
a596b887ff
feat(compiler): Add an implementation for XHR that uses a template cache to load template files.
...
Useful for avoiding doing an actual XHR during testing.
Part of the solution for #4051 (Other part is a Karma plugin that will create the template cache).
Closes #7940
2016-04-08 19:05:05 +00:00
Kevin Merckx
247964af62
fix(upgrade): make upgradeAdapter upgrade angular 1 components correctly
...
With this fix, the $onInit function of an upgraded angular 1 component is called and input bindings (<) are created.
Closes #7951
2016-04-07 20:19:46 +00:00
Victor Berchet
5e2bc5c593
fix(RouterLink): ignore optional parameters when checking for active routes
...
fixes #6459
Closes #7834
2016-04-07 19:41:14 +00:00
Kara Erickson
3ca6df87b8
fix(select): update name from ng-value to ngValue
...
Closes #7939
2016-04-06 22:47:21 +00:00
Alexander Bachmann
4902244cce
fix(router): allow forward slashes in query parameters
...
Closes #7824
2016-04-06 22:01:12 +00:00
vsavkin
8db97b0b7a
fix(forms): support both value and ng-value
2016-04-06 14:37:57 -07:00
Andrei Alecu
9be04f8d38
fix(upgrade): leak when angular1 destroys element
...
Fixes #6401
Closes #7935
2016-04-06 19:58:10 +00:00
Kara Erickson
74e2bd7e3e
fix(select): support objects as select values
...
Closes #4843
Closes #7842
2016-04-06 17:05:38 +00:00
vsavkin
52d3980d02
Revert "feat(transformers): changes transformers to collect information about providers and resolve identifiers during linking"
...
This reverts commit 4e9809bcb2
.
2016-04-06 09:26:03 -07:00
vsavkin
4e9809bcb2
feat(transformers): changes transformers to collect information about providers and resolve identifiers during linking
...
Closes #7380
2016-04-04 22:59:43 +00:00
Chuck Jazdzewski
0dbf959548
feat(static-reflector): Added StaticReflector
...
Added a static reflector that uses metadta produced during build
or, additionally, directly from typescript, to produce the metadata
used by Angular code generation compiler.
2016-04-01 14:45:43 -07:00
Victor Berchet
0bcfcde63d
fix(Router): handling of special chars in dynamic segments
...
Closes #7804
2016-03-29 20:24:28 +00:00
Tim Blasi
1c20a62611
feat(dart): Add a dev-mode check for undeclared lifecycle interfaces
...
Add a check in ReflectionCapabilities#interfaces which determines if
the passed-in type implements a Lifecycle Interface but does not declare
that it does so.
See https://goo.gl/b07Kii for details.
Closes #6849
2016-03-29 10:55:06 -07:00
vsavkin
756121acc1
feat(i18n): update I18nHtmlParser to accept parsed messages
2016-03-28 19:54:13 +00:00
vsavkin
d7e1175df0
feat(i18n): implement xmb deserialization
2016-03-28 19:54:12 +00:00
vsavkin
66cd84e0d5
refactor(i18n): rename serialize into serializeXmb
2016-03-28 19:54:12 +00:00
Sammy Jelin
430f367c2f
fix(upgrade): make ngUpgrade work with testability API
...
Closes #7603
2016-03-25 17:27:45 +00:00
vsavkin
d272f96e23
feat(i18n): implement an i18n-aware html parser
...
Closes #7738
2016-03-24 20:36:19 +00:00
vsavkin
73a84a7098
refactor(i18n): remove utility functions into a separate file
2016-03-24 20:36:19 +00:00
vsavkin
17c8ec8a5d
feat(html_parser): change HtmlElementAst to store both the start and the end positions
2016-03-24 20:36:19 +00:00
vsavkin
91999e016e
feat(facade): add RegExpWrapper.replaceAll to replace all matches using the provided function
2016-03-24 20:36:19 +00:00
Victor Berchet
aa966f5de2
feat(Compiler): Allow overriding the projection selector
...
fixes #6303
BREAKING CHANGE:
For static content projection, elements with *-directives are now matched against the element itself vs the template before.
<p *ngIf="condition" foo></p>
Before:
// Use the implicit template for projection
<ng-content select="template"></ng-content>
After:
// Use the actual element for projection
<ng-content select="p[foo]"></ng-content>
Closes #7742
2016-03-24 20:09:34 +00:00
Brian Ford
6de68e2f1f
feat(compiler): assert that Component.style is an array
...
Part of #7481 (effort to improve error messages)
Closes #7559
2016-03-24 15:21:16 +00:00
Brian Ford
49527ab495
fix(ngFor): give more instructive error when binding to non-iterable
...
Before, you'd get an error like:
```
EXCEPTION: Cannot find a differ supporting object ‘[object Object]’ in [users in UsersCmp@2:14]
```
Now, you get:
```
EXCEPTION: Cannot find a differ supporting object ‘[object Object]’ of type 'Object'. Did you mean to bind ngFor to an Array? in [users in UsersCmp@2:14]
```
2016-03-24 15:21:16 +00:00
Misko Hevery
048bd280dd
chore: re-enable all tests (accidental ddescribe checkin)
2016-03-18 19:41:30 +00:00
vsavkin
e1f8e54e34
feat(i18n): implement xmb serializer
2016-03-17 16:45:15 -07:00
vsavkin
2b165944ea
refactor(i18n): move message and id into a separate file
2016-03-17 16:45:15 -07:00
Misko Hevery
310620fd12
chore: upgrade to new Zone.js API v0.6.2
...
BREAKING CHANGE
Removed deprecated API from NgZone
- `NgZone.overrideOnTurnStart`
- `NgZone.overrideOnTurnDone`
- `NgZone.overrideOnEventDone`
- `NgZone.overrideOnErrorHandler`
Rename NgZone API
- `NgZone.onTurnStart` => `NgZone.onUnstable`
- `NgZone.onTurnDone` => `NgZone.onMicrotaskEmpty`
- `NgZone.onEventDone` => `NgZone.onStable`
Closes #7345
2016-03-16 18:05:09 +00:00
Brian Ford
f9fb72fb0e
chore(core): remove @View annotation
...
Closes #7495
2016-03-14 23:26:20 +00:00
vsavkin
095db673c5
feat(i18n): implement a simple version of message extractor
...
Closes #7454
2016-03-14 21:50:00 +00:00
vsavkin
70d18b5b53
feat(compiler): change html parser to preserve comments
2016-03-14 21:50:00 +00:00
Tobias Bosch
cb38d72ff4
feat(shadow_css): support `/deep/` and `>>>`
...
Fixes #7562
Closes #7563
2016-03-11 22:14:26 +00:00
Matias Niemelä
b72bab49aa
feat(core): introduce a CSS lexer/parser
2016-03-11 13:54:01 -08:00
vsavkin
201475e8d8
cleanup(testing): clean up public api spec
...
Change the old public api spec to check only the exported top-level symbols. This will make sure that Dart and JS do not diverge. The new public api spec verifies the TS api.
Closes #7447
2016-03-11 19:24:29 +00:00
Alex Eagle
127fbfd5a6
Revert "feat(core): introduce a CSS lexer/parser"
...
This reverts commit 293fa5505b
.
The rebased commit broke CI: https://travis-ci.org/angular/angular/jobs/115388814
2016-03-11 11:14:58 -08:00
Matias Niemelä
293fa5505b
feat(core): introduce a CSS lexer/parser
2016-03-11 10:42:29 -08:00
Kara Erickson
df1f78e302
feat(i18n): add ngPlural directive
2016-03-10 09:55:21 -08:00
Matias Niemelä
169869a195
test(matchers): add support for toMatchPattern in tests
2016-03-09 21:31:15 -08:00
Matias Niemelä
b691da26af
chore(facade): add enum index lookup support
2016-03-09 21:30:03 -08:00
Peter Bacon Darwin
8e3e45097a
fix(router): handle URL that does not match a route
...
Closes #7349
Closes #7203
2016-03-09 20:48:52 -08:00
Peter Bacon Darwin
0d58b137a7
fix(router/instruction): ensure toLinkUrl includes extra params
...
Closes #7367
2016-03-09 16:21:43 -08:00
Misko Hevery
14f0e9ada8
chore: fix DDC errors / warnings
...
Closes #7195
2016-03-08 22:17:32 +00:00
Vikram Subramanian
b857fd1eeb
Revert "feat(transformers): collect provider information"
...
This reverts commit 81beb1c788
.
Broke Google3.
2016-03-04 13:51:26 -08:00
Brandon Roberts
6dce4f49c2
feat(router): Added method to get current instruction
...
This method delegates to the root router to get the current complete instruction.
2016-03-04 02:10:58 -08:00
vsavkin
81beb1c788
feat(transformers): collect provider information
2016-03-04 01:19:25 -08:00
Misko Hevery
6402d61f69
chore: fix up ngClass for types/export missing public API
...
Closes #7202
2016-03-04 08:03:55 +00:00