Victor Berchet
afa6b9e794
fix(ivy): execute the optional begin and end methods of the rendererFactory ( #25273 )
...
This is required to i.e. flush animations when using a Renderer2.
`rf.begin()` and `rf.end()` around the change detection.
PR Close #25273
2018-08-03 10:17:13 -07:00
Alex Rickabaugh
0822dc70f2
feat(ivy): generate .ngfactory stubs if requested ( #25176 )
...
Existing bootstrap code in the wild depends on the existence of
.ngfactory files, which Ivy does not need. This commit adds the
capability in ngtsc to generate .ngfactory files which bridge
existing bootstrap code with Ivy.
This is an initial step. Remaining work includes complying with
the compiler option to specify a generated file directory, as well
as presumably testing in g3.
PR Close #25176
2018-08-03 09:42:06 -07:00
Victor Berchet
728d98d3a9
fix(ivy): add bound proerties name to template ( #25272 )
...
Before this change bound properties would not be used when matching directives
at runtime.
That is `<ng-template [ngIf]=cond>...</ng-template>` would not trigger the
`ngIf` directive.
PR Close #25272
2018-08-02 22:59:04 -07:00
Victor Berchet
2f4abbf5a1
fix(ivy): fix inline template bindings parsing ( #25272 )
...
PR Close #25272
2018-08-02 22:59:04 -07:00
Victor Berchet
1000fb8406
test(ivy): add tests for attributes and bound attributes to the tpl transform ( #25272 )
...
PR Close #25272
2018-08-02 22:59:04 -07:00
Victor Berchet
b38931b484
fix(ivy): use devModeEqual in no change mode ( #25252 )
...
To avoid the unfamous error `Expression has changed after it was checked.`
PR Close #25252
2018-08-02 22:57:28 -07:00
Kara Erickson
1fb7111da1
fix(ivy): content query results should be available in content hooks ( #25271 )
...
PR Close #25271
2018-08-02 19:32:09 -07:00
Pawel Kozlowski
c2c12e52fe
feat(ivy): support ng-container as a child of an already inserted view ( #25227 )
...
PR Close #25227
2018-08-02 18:50:03 -07:00
Pawel Kozlowski
28c7a4efbc
feat(ivy): add basic support for ng-container ( #25227 )
...
This commit adds basic support for <ng-container> - most of the
functionality should work as long as <ng-container> is a child of
a regular element.
PR Close #25227
2018-08-02 18:50:03 -07:00
Zhicheng Wang
e5b37584be
fix: 文字微调
2018-08-03 09:16:30 +08:00
Igor Minar
4f741e74e1
docs: release notes for the v6.1.1 release
2018-08-02 14:23:36 -07:00
Igor Minar
6bacd32fbd
release: cut the v7.0.0-beta.0 release
2018-08-02 11:42:10 -07:00
Aldo Roman Nureña
183757daa2
fix(core): fix tests for uninitialized @Output error ( #19116 )
...
PR Close #19116
2018-08-02 09:37:21 -07:00
Aldo Roman
adf510f986
fix(core): throw error message when @Output not initialized ( #19116 )
...
Closes #3664
PR Close #19116
2018-08-02 09:37:21 -07:00
Brandon Roberts
74bce18190
Revert "docs: refactor http module import for style guide app.module ( #25001 )" ( #25263 )
...
This reverts commit 88da8f3d52045aa12f6b6a499da070310ae157c6.
PR Close #25263
2018-08-02 09:20:12 -07:00
Alan
3ba5220839
refactor(forms): ngForm
element selector has been deprecated in favor of ng-form
( #23721 )
...
This has been deprecated to keep selector consistent with other core Angular selectors. As element selectors are in kebab-case.
Now deprecated:
```
<ngForm #myForm="ngForm">
```
After:
```
<ng-form #myForm="ngForm">
```
You can also choose to supress this warnings by providing a config for `FormsModule` during import:
```ts
imports: [
FormsModule.withConfig({warnOnDeprecatedNgFormSelector: 'never'});
]
Closes : #23678
PR Close #23721
2018-08-02 08:34:43 -07:00
Drummond Dawson
5982425436
test(common): TokenExtractor should extend HttpXsrfTokenExtractor in xsrf spec ( #24649 )
...
PR Close #24649
2018-08-02 08:34:15 -07:00
Drummond Dawson
140248ade0
test(common): remove unused import in xsrf spec ( #24649 )
...
PR Close #24649
2018-08-02 08:34:14 -07:00
Frederik Schlemmer
e60737f63c
docs(docs-infra): adds note according to Symlink problem ( #24714 )
...
docs: adds note according to Symlink problem
Closes #24709
docs(docs-infra): adds section "Developing on Windows"
Merge remote-tracking branch 'origin/aioREADME' into aioREADME
docs(docs-infra): adds information about admin rights
docs(docs-infra): adds hint
docs(docs-infra): Change to link
PR Close #24714
2018-08-02 08:33:24 -07:00
George Kalpakas
7b89711402
docs(elements): add section about custom element typings in elements
guide ( #25219 )
...
PR Close #25219
2018-08-02 08:32:59 -07:00
George Kalpakas
f1223628a6
docs(elements): add link to full example in elements
guide ( #25219 )
...
PR Close #25219
2018-08-02 08:32:59 -07:00
George Kalpakas
1b4269ad85
docs(elements): remove unnecessary whitespace in elements
guide ( #25219 )
...
PR Close #25219
2018-08-02 08:32:59 -07:00
Pete Bacon Darwin
a224df43af
feat(docs-infra): support sending Google Analytics events ( #25042 )
...
PR Close #25042
2018-08-01 17:04:19 -07:00
Victor Berchet
d46a961509
docs(ivy): API doc tweaks ( #25258 )
...
PR Close #25258
2018-08-01 16:19:54 -07:00
kristinavavrova
20b453008f
docs: update reactiveconf 2018 in events ( #24739 )
...
PR Close #24739
2018-08-01 16:15:18 -07:00
Sámal Rasmussen
06a1974a48
docs: Update the link to the Jasmine docs ( #25175 )
...
Solves #24462 .
Also update the http part of the link to to https.
PR Close #25175
2018-08-01 16:12:43 -07:00
Igor Minar
3d7f555044
ci: update pullapprove groups and add docs ( #25257 )
...
With this update to permissions the docs team can easily identify the technical reviewer for a particular doc, which should streamline the reviews.
I also added Jennifer into all groups that contain docs, so that she can approve changes that contain only editorial changes.
Closes #21692
PR Close #25257
2018-08-01 15:53:41 -07:00
George Kalpakas
06af7943a4
test(upgrade): run tests against AngularJS v1.7.x as well ( #25231 )
...
PR Close #25231
2018-08-01 14:10:21 -07:00
Paul Gschwendtner
fa70a2a650
build(bazel): entry point file couldn't be resolved [ts-api-guardian] ( #25052 )
...
* When using `ts-api-guardian` on Windows, the input file can't be found due to wrong normalized path delimiters.
PR Close #25052
2018-08-01 13:29:27 -07:00
Greg Magolan
bde4402675
build: update hello_world__closure to google-closure-compiler 20180716.0.0 ( #25236 )
...
PR Close #25236
2018-08-01 13:23:35 -07:00
Greg Magolan
7d6b258778
build: revert yarn.lock rxjs version to 6.0.0 ( #25236 )
...
PR Close #25236
2018-08-01 13:23:35 -07:00
Alyssa Nicoll
5342aeaafd
docs(aio): update Kendo UI description in resource.json ( #24845 )
...
PR Close #24845
2018-08-01 10:59:16 -07:00
Stephon Harris
1dd2eaa7d2
docs: fix typos and missing word in tutorial ( #20764 )
...
PR Close #20764
2018-08-01 10:56:31 -07:00
mhartington
af07ffc2ad
docs(core): remove experimental tag ( #24032 )
...
PR Close #24032
2018-08-01 10:56:07 -07:00
mhartington
2b6e1f0f4b
docs(core): remove experimental tag ( #24032 )
...
Remove experimental note on APP_INITIALIZER.
PR Close #24032
2018-08-01 10:56:06 -07:00
Kevin Yang
7a4fb44f8d
docs(aio): add Kevin Yang to GDE resources ( #24791 )
...
Add files via upload
PR Close #24791
2018-08-01 10:55:41 -07:00
Daniel
88da8f3d52
docs: refactor http module import for style guide app.module ( #25001 )
...
PR Close #25001
2018-08-01 10:55:17 -07:00
Martin Probst
01e6dab544
fix(compiler-cli): correct realPath to realpath. ( #25023 )
...
The optional property on `ts.CompilerHost` is called `realpath` (lower
case), not `realPath` (lower camel case).
It is not clear to me what the impact of this is, but the author's
intent was clearly to override `realpath`.
PR Close #25023
2018-08-01 10:54:51 -07:00
Daniel
a9ecf4b929
docs: refactor lazy loading modules example ( #25071 )
...
PR Close #25071
2018-08-01 10:54:00 -07:00
Stephen Fluin
166ddaadca
docs(router): clarify scroll position wording ( #25077 )
...
PR Close #25077
2018-08-01 10:53:35 -07:00
Brandon Roberts
1e5327872d
docs(core): replace ReflectiveInjector example with Static Injector example ( #25162 )
...
PR Close #25162
2018-08-01 10:52:32 -07:00
Brandon Roberts
367841d237
docs: replace ReflectiveInjector samples with Injector samples ( #25162 )
...
PR Close #25162
2018-08-01 10:52:32 -07:00
Pete Bacon Darwin
d5b73832bf
refactor(animations): do not use short parameter names ( #25198 )
...
PR Close #25198
2018-08-01 10:51:58 -07:00
Celilsemi Sam Erkiner
7075c418f9
docs(changelog): remove reverted feature entry ( #25206 )
...
PR Close #25206
2018-08-01 10:51:28 -07:00
Celilsemi Sam Erkiner
466e026f6f
docs(changelog): remove duplicate entries ( #25206 )
...
PR Close #25206
2018-08-01 10:51:28 -07:00
firrae
4976a58780
docs: update to account for CLI changes ( #25223 )
...
This should help clarify the use of providedIn and correct the documentation where it was showing the use of a now depreciated CLI command flag.
I am openly looking for feedback on this change to figure out the best wording.
PR Close #25223
2018-08-01 10:51:05 -07:00
Greg Magolan
bafe1a0d2a
build(bazel): fix typo in protractor test target definition ( #25235 )
...
PR Close #25235
2018-08-01 10:50:43 -07:00
Kara Erickson
c8a4fb1faf
fix(ivy): walk declaration views in listener ( #25228 )
...
PR Close #25228
2018-07-31 16:35:20 -07:00
Ben Lesh
64516da6b0
feat(ivy): support inheriting input/output from bare base class ( #25094 )
...
PR Close #25094
2018-07-31 16:25:11 -07:00
Miško Hevery
6e2a1877ab
refactor(core): remove withBody from public testing API ( #25171 )
...
PR Close #25171
2018-07-31 15:09:32 -07:00