Dylan Hunn
e424e9a4a6
release: cut the v16.1.9 release
16.1.9
2023-08-09 13:50:44 -07:00
Douglas Parker
1997480596
refactor: add dgp1130 to DevTools PullApprove config ( #51301 )
...
DevTools falls under Angular Tooling and I'll probably be reviewing future PRs for the extension.
PR Close #51301
2023-08-09 10:19:26 -07:00
Paweł Rawicki
b7dc169cf4
docs: Instead of CanActivateFn, CanActivateChildFn appears in CanActivateFn docs ( #51283 )
...
A minor error is present within the documentation. Specifically, in the documentation for the CanActivateFn function, a reference is made to the CanActivateChildFn function. However, it appears that the CanActivateChildFn function is not utilized or referenced elsewhere in the documentation of CanActivateFn.
PR Close #51283
2023-08-08 10:40:52 -07:00
Matthieu Riegler
4a8efbe287
refactor(animations): remove unecessary interface ( #50662 )
...
`Animation` is provided by `lib.dom`.
PR Close #50662
2023-08-07 09:26:24 -07:00
Matthieu Riegler
56e136430b
refactor(core): remove unnecessary import for custom expect. ( #51216 )
...
Also adding some missing assertion after `expect()`
PR Close #51216
2023-08-07 09:22:19 -07:00
Pawel Kozlowski
d4ffef215f
refactor(core): introduce LView and LContainer utility functions ( #51191 )
...
This refactoring adds utility functions to add / remove LView from LContainer.
Those utils are preparation for the control flow and defer work.
Existing code was refactored to use the new utility functions and avoid
any code duplication.
PR Close #51191
2023-08-04 16:00:44 -04:00
aanchal
f066fec36a
docs: add title tag to index file ( #51266 )
...
PR Close #51266
2023-08-04 11:29:51 -04:00
Matthieu Riegler
0a180390d0
docs: fix missing space after full stop ( #51252 )
...
Fixes #51250
PR Close #51252
2023-08-04 11:28:34 -04:00
Alex Rickabaugh
938d7a65f6
release: cut the v16.1.8 release
16.1.8
2023-08-02 12:43:38 -07:00
Matthieu Riegler
8ffa85fb5d
docs: fix warning about an unknown decorator ( #51237 )
...
dgeni was complaning about an unknown decorator (`@Input`)
PR Close #51237
2023-08-01 13:00:53 -07:00
aanchal
7d579b9db0
docs: add lang attribute to html files ( #51235 )
...
PR Close #51235
2023-08-01 12:16:44 -07:00
aanchal
a6f3508c24
docs: add the title tag ( #51233 )
...
PR Close #51233
2023-08-01 12:15:12 -07:00
Matthieu Riegler
3342961a38
refactor(core): remove useless hack ( #51224 )
...
This hack is remnant of the Ivy migration.
PR Close #51224
2023-08-01 12:12:52 -07:00
Matthieu Riegler
5a0a5f939b
refactor(core): Remove dead unit test code ( #51223 )
...
This code is duplicated but unused.
PR Close #51223
2023-08-01 12:10:58 -07:00
Matthieu Riegler
d811f10276
refactor(core): createInjector is a private function ( #51221 )
...
`createInjector` is not public.
PR Close #51221
2023-08-01 12:10:21 -07:00
Matthieu Riegler
7c6bc328a2
refactor(core): removing reflect-metadata from symbol tests. ( #51217 )
...
We were not reyling on it anymore.
PR Close #51217
2023-08-01 12:09:26 -07:00
aanchal
4783b74171
docs: updated the doc files ( #51204 )
...
PR Close #51204
2023-08-01 12:07:21 -07:00
aanchal
6892388685
docs: fix typos ( #51201 )
...
PR Close #51201
2023-08-01 12:04:32 -07:00
aanchal
461dacf2eb
docs: add lang attributes to the files ( #51200 )
...
PR Close #51200
2023-08-01 11:58:45 -07:00
aanchal
0ea0705588
docs: add the title tag ( #51199 )
...
PR Close #51199
2023-08-01 11:54:38 -07:00
aanchal
d7e6866d62
docs: update the html tags ( #51198 )
...
PR Close #51198
2023-08-01 11:53:30 -07:00
Aristeidis Bampakos
fe491824c2
docs: fix typos in component overview guide ( #51197 )
...
PR Close #51197
2023-08-01 11:53:01 -07:00
Aristeidis Bampakos
5296841b7b
docs: add new edition of Angular Projects book ( #51184 )
...
PR Close #51184
2023-08-01 11:51:50 -07:00
Angular Robot
87f3d07f1b
build: update io_bazel_rules_sass digest to ded821e ( #51139 )
...
See associated pull request for more information.
PR Close #51139
2023-08-01 11:49:06 -07:00
Joey Perrott
db0f653e1a
ci: remove migrated circleci jobs ( #51194 )
...
Remove test_angular_devtools and test_win jobs which were migrated to GHA
PR Close #51194
2023-07-28 14:43:04 -07:00
Jáchym Bambuch
262f1738e2
docs: Change "ng run build:ssr" to "npm run build:ssr" in universal.md ( #51192 )
...
PR Close #51192
2023-07-28 14:42:31 -07:00
P4
cc722ea1f5
fix(compiler): return full spans for Comment nodes ( #50855 )
...
Change sourceSpan for Comment nodes to cover the whole comment
instead of just the opening token.
The primary motivation for this is the interaction between ESLint and
`@angular-eslint`. ESLint can detect unused `eslint-disable` directives
in comments and automatically remove them when running with `--fix`.
This is based on ranges computed from AST spans, and as a result
does not work inside Angular templates - right now all comments
claim to be 4 characters long so only the opening `<!--` is removed.
PR Close #50855
2023-07-28 14:39:18 -07:00
Kristiyan Kostadinov
21299d95f5
fix(devtools): ensure that inspected component label is always in the viewport ( #50656 )
...
Currently the label showing the component name is always positioned from the bottom/right edge of the element which may be outside of the viewport. These changes add some logic to fall back to a different position so that the label is always visible.
I've also cleaned the `highlighter.ts` file up a bit.
Fixes #48479 .
PR Close #50656
2023-07-26 10:04:28 -07:00
sunilbaba
e891cacf12
docs(docs-infra): Adding required and Transform Args into the usage and documentation of input ( #51173 )
...
I# No commands remaining.
PR Close #51173
2023-07-26 10:03:43 -07:00
Sid
d0f95c1948
docs: improve readability, use future tense to indicate future events ( #49578 )
...
Summary of changes:
* change 'notice that' -> note that
* break large sentence to smaller ones to improve readability
* use future tense & modal verbs to indicate future events
PR Close #49578
2023-07-26 10:03:06 -07:00
abergquist
f7216174b7
docs: fixed grammar error in vulnerability reporting ( #47326 )
...
Split a run-on sentence into 2 sentences and improved link accessibility.
PR Close #47326
2023-07-26 10:01:30 -07:00
Andrew Kushnir
07969d1dc7
release: cut the v16.1.7 release
16.1.7
2023-07-26 09:02:45 -07:00
alkavats1
03f9c9305b
docs: updated the tour of heroes doc file ( #51151 )
...
PR Close #51151
2023-07-25 10:24:55 -07:00
Matthieu Riegler
5043064997
refactor(core): Better use of Object.keys() ( #51153 )
...
Code cleaning arround the `Object.keys()` in the core tests.
PR Close #51153
2023-07-25 09:17:47 -07:00
Matthieu Riegler
de0d3d704c
docs: remove orphan migration docs ( #51147 )
...
These docs are orphoned, no longer referenced anywhere in the docs, we can safery remove them.
PR Close #51147
2023-07-24 08:20:23 -07:00
alkavats1
d0865db749
docs: updated the word in tutorial template ( #51150 )
...
PR Close #51150
2023-07-24 08:18:35 -07:00
Matthieu Riegler
2a471204a8
docs: remove trailing periods after @see ( #51144 )
...
This fixes a rendering issue where the periods would be bellow the text block.
PR Close #51144
2023-07-24 08:14:52 -07:00
Kevin Boss
7cfc36567f
docs: fix typos in first app tutorial ( #51115 )
...
PR Close #51115
2023-07-21 17:31:25 +00:00
Matthieu Riegler
bfc6e482ac
docs: Add links to the injection context guide ( #51129 )
...
PR Close #51129
2023-07-21 16:46:42 +00:00
arturovt
916916d835
fix(http): check whether Zone is defined ( #51119 )
...
Accessing the `Zone` variable without checking if it's defined or not
leads to an error "Zone is not defined" if zone.js is not imported (nooped).
This commit adds an additional check before getting the current zone where
the `doRequest` is being called.
PR Close #51119
2023-07-21 16:45:26 +00:00
alkavats1
c4267decab
docs: updated the benchpress readme doc ( #51110 )
...
PR Close #51110
2023-07-21 16:43:30 +00:00
Joey Perrott
de85276016
build: update cross-repo angular dependencies ( #51133 )
...
See associated pull request for more information.
PR Close #51133
2023-07-21 16:40:25 +00:00
Angular Robot
c7f429841c
build: update io_bazel_rules_sass digest to e2e30df ( #51126 )
...
See associated pull request for more information.
PR Close #51126
2023-07-21 14:11:33 +00:00
Matthieu Riegler
e0946b5189
docs: remove the links to docs.angular.lat ( #51117 )
...
docs.angular.lat hasn't been updated in a while and is stuck at v10. Let's remove it.
Fixes #47644
PR Close #51117
2023-07-20 20:21:29 +00:00
Matthieu Riegler
47e51f61d4
docs(docs-infra): fix rendering of Exported from section on Firefox. ( #51116 )
...
On Firefox when an `a` element contains a `block` element, the `a` element is not aligned with the `li` marker.
Fixes #51112
PR Close #51116
2023-07-20 19:58:12 +00:00
Angular Robot
859fbc4c7f
build: update github/codeql-action action to v2.21.0 ( #51077 )
...
See associated pull request for more information.
PR Close #51077
2023-07-20 19:57:22 +00:00
Angular Robot
528609e34c
build: update dependency @types/convert-source-map to v2 ( #51085 )
...
See associated pull request for more information.
PR Close #51085
2023-07-20 19:56:55 +00:00
Matthieu Riegler
5eec8233b1
build: update firebase-tools to fix transitive dependency on a vulnerable version of vm2 ( #51113 )
...
cf https://github.com/firebase/firebase-tools/releases/tag/v12.4.5
PR Close #51113
2023-07-20 19:56:24 +00:00
Jessica Janiuk
46afa8a91f
release: cut the v16.1.6 release
16.1.6
2023-07-19 12:12:42 -07:00
Jessica Janiuk
8c8e7210f4
Revert "docs: added the alt attribute in the img tag ( #51102 )" ( #51107 )
...
This reverts commit 3b248c59c6 .
PR Close #51107
2023-07-19 18:49:00 +00:00