Victor Berchet
c60ef45bc8
fix(HtmlParser): add missing ;
2016-06-16 10:23:02 -07:00
Igor Minar
2b1ac63e3a
npm: bump the version number in package.json
...
this version string is currently not authoritative source see #9264 and #9233
2016-06-16 09:57:44 -07:00
Olivier Chafik
6686bc62f6
feat(benchpress): add custom user metric to benchpress
...
This is a continuation of #7440 (@jeffbcross).
Closes #9229
2016-06-16 07:30:53 -07:00
Victor Berchet
1eaa193c51
feat(compiler-cli): add a debug
option to control the output
...
fixes #9208
2016-06-15 18:13:57 -07:00
Victor Berchet
b620f4f456
feat(DomElementSchemaRegistry): add support for <ng-content> and <ng-container>
2016-06-15 18:13:57 -07:00
Victor Berchet
e484c62a8d
fix(HtmlParser): do not add required parents to template root elements
...
fixes #5967
2016-06-15 18:13:57 -07:00
Victor Berchet
9ba400d7d5
fix(HtmlParser): consider <ng-container> when adding required parents
2016-06-15 18:13:57 -07:00
Victor Berchet
9cbd8f7afc
test(ng-container): test nesting ng-containers
2016-06-15 18:13:57 -07:00
Kara Erickson
8e6e90e703
fix(forms): ngModel should export as ngModel
2016-06-15 17:46:45 -07:00
Igor Minar
26676c4833
docs(webworker): add/correct experimental markers to web worker apis
2016-06-15 17:12:40 -07:00
Kara Erickson
39e0b4903c
feat(radio): support radio button sharing a control
2016-06-15 15:27:34 -07:00
Jesús Rodríguez
54c577cfe0
chore: update cheatsheet for new provider syntax ( #9227 )
2016-06-15 15:11:39 -07:00
Stephen Fluin
27024915e4
docs: removed iframe from changelog ( #9223 )
2016-06-15 13:17:45 -07:00
Stephen Fluin
80f3e7591e
chore(docs): Update changelog for release ( #9217 )
2016-06-15 12:49:39 -07:00
Igor Minar
933f45ef31
docs(webworkers): add experimental markers for all web worker public apis
2016-06-15 09:38:03 -07:00
Igor Minar
4fc37aeabd
fix(webworkers): rename all web worker apis with "render" to "ui"
...
"render" is gramatically incorrect and confusing to developers who used this api.
Since webworker apis were exposed only in master, renaming these before the rc2 release
is not a breaking change
2016-06-15 09:38:03 -07:00
Kara Erickson
2fd1e88199
fix(forms): suppress forms deprecation warning after first
2016-06-15 08:52:56 -07:00
Misko Hevery
17f317d31e
fix: correct failing to push into builds repo on rerun
2016-06-14 21:28:37 -07:00
Misko Hevery
5941c92a31
fix: make ci fail when compiler integration test fails
2016-06-14 19:40:43 -07:00
Misko Hevery
d44d0852e5
Revert "fix: cleanup public api of platform-server"
...
This reverts commit ac84468f1cea7ec33ecf68c9ddfc3ac29245fb2f.
2016-06-14 19:40:43 -07:00
Misko Hevery
80deac5cde
Revert "chore: Remove unnecessary calls to Parse5DomAdapter"
...
This reverts commit 387a90e5465ceed7b2c634695d17f4f835dd5687.
2016-06-14 19:40:43 -07:00
Victor Berchet
8a54c1a115
refactor(ViewBuilder): cleanup
2016-06-14 19:11:30 -07:00
Victor Berchet
0dbff55bc6
feat(Compiler): add support for <ng-container>
...
`<ng-container>` is a logical container that can be used to group nodes but is not rendered in the DOM tree as a node.
`<ng-container>` is rendered as an HTML comment.
2016-06-14 19:11:30 -07:00
Kara
22916bb5d1
feat(forms): add easy way to switch between forms modules ( #9202 )
2016-06-14 18:23:40 -07:00
Victor Berchet
fe01e2efb7
feat(I18nExtractor): Add file paths to error messages ( #9177 )
...
* feat(I18nExtractor): Add file paths to error messages
relates to #9071
* feat(i18n): allow i18n start comments without meaning
* refactor(i18n): cleanup
* test(HtmlParser): Add depth to expansion forms
2016-06-14 17:50:23 -07:00
Igor Minar
7afee97d1b
fix(platform-server): correctly import private DOMTestComponentRenderer
2016-06-14 17:26:55 -07:00
Igor Minar
6fc267f22c
fix: split dynamic bits in platform-browser into platform-browser-dynamic
...
Previously these symbols were exposed via platform-browser-dynamic, then we merged then into platform-browser
thinking that tools would know how to shake off the compiler and other dynamic bits not used with the offline
compilation flow. This turned out to be wrong as both webpack and rollup don't have good enough tree-shaking
capabilities to do this today. We think that in the future we'll be able to merge these two entry points into
one, but we need to give tooling some time before we can do it. In the meantime the reintroduction of the -dynamic
package point allows us to separate the compiler dependencies from the rest of the framework.
This change undoes the previous breaking change that removed the platform-browser-dynamic package.
2016-06-14 15:31:24 -07:00
Misko Hevery
ac84468f1c
fix: cleanup public api of platform-server
...
BREAKING CHANGE: Parse5Adapter is no longer exported as public API, use serverBootstrap()
Parse5Adapter is an implementation detail not a public API
2016-06-14 13:21:28 -07:00
Misko Hevery
387a90e546
chore: Remove unnecessary calls to Parse5DomAdapter
2016-06-14 13:07:11 -07:00
Misko Hevery
6eeb9495d8
chore: have test.sh take platform argument
2016-06-14 13:07:11 -07:00
Alex Eagle
566b4ef481
ci(snapshots): publish tsc-wrapped snapshots
2016-06-13 18:30:38 -07:00
Kara Erickson
a191e9697c
feat(forms): support setting control name in ngModelOptions
2016-06-13 16:57:10 -07:00
Chuck Jazdzewski
5504ca1e38
feat(compiler): Added support for limited function calls in metadata. ( #9125 )
...
The collector now collects the body of functions that return an
expression as a symbolic 'function'. The static reflector supports
expanding these functions statically to allow provider macros.
Also added support for the array spread operator in both the
collector and the static reflector.
2016-06-13 15:56:51 -07:00
Kara Erickson
5c0cfdee48
fix(forms): separate ngModelGroup from formGroupName
2016-06-13 13:41:39 -07:00
Tobias Bosch
bc888bf3a1
refactor(compiler): Change arguments of CompilerConfig
to named arguments
...
BREAKIKNG CHANGE:
`CompilerConfig` used to take positional arguments and now takes named arguments.
Closes #9172
2016-06-13 13:14:07 -07:00
Tobias Bosch
1745366530
refactor(compiler): make PLATFORM_PIPES
/ PLATFORM_DIRECTIVES
an option on CompilerConfig
...
This aligns the configuration of platform pipes / directives with offline compilation.
BREAKING CHANGE:
- `PLATFORM_PIPES` and `PLATFORM_DIRECTIVES` now are fields on `CompilerConfig`.
Instead of providing a binding to these tokens, provide a binding for `CompilerConfig` instead.
2016-06-13 13:13:45 -07:00
ScottSWu
1fb0db4aeb
chore(docs): Fixed pre-commit command for clang-format
2016-06-13 12:12:44 -07:00
Kara Erickson
61960c51a3
feat(forms): compose validator fns automatically if arrays
2016-06-13 11:41:32 -07:00
ScottSWu
14a3ade662
chore(typescript): Changed double asterisks in #9100 to single asterisks
...
As in #9151 , these comments are being read as JSDoc comments. This commit is smaller and only touches a few files that are causing errors.
2016-06-13 10:53:31 -07:00
Wassim Chegham
de97687422
docs(i18n): fix typo ( #9165 )
2016-06-13 10:00:57 -07:00
Victor Berchet
a0251305ea
doc(CompilerCli): Add a bootstrap example for a compiled application
2016-06-13 08:59:16 -07:00
Kara Erickson
2b8d12ddf0
chore(forms): rename ngControl to formControlName
2016-06-12 13:17:36 -07:00
Victor Berchet
1f6fd3c8fc
refactor: add types ( #9148 )
2016-06-11 21:23:37 -07:00
Matias Niemelä
55860e1621
fix(animations): ensure AUTO styles are cleared at the end of the state-change animation
...
Closes #9014
Closes #9015
2016-06-11 00:08:41 -07:00
Matias Niemelä
4d51158b1a
fix(animations): ensure the web-animations driver converts style props to camel-case
...
The web animations API now requires that all styles are converted to
camel case. Chrome has already made this breaking change and hyphenated
styles are not functional anymore.
Closes #9111
Closes #9112
2016-06-10 22:54:10 -07:00
Kara Erickson
7d9c1e1225
chore(forms): rename ngFormModel to formGroup
2016-06-10 19:10:17 -07:00
Kara Erickson
d53edfec47
chore(forms): rename ngFormControl to formControl
2016-06-10 17:28:19 -07:00
Victor Berchet
a6e5ddc5af
feat(ComponentResolver): Add a SystemJS resolver for compiled apps ( #9145 )
2016-06-10 16:31:34 -07:00
Kara Erickson
b866f32832
chore(forms): rename Control, ControlGroup, and ControlArray classes
2016-06-10 12:00:18 -07:00
Kara Erickson
97833d48c1
chore(templateOutlet): fix linting
2016-06-10 11:32:09 -07:00