This project is mirrored from https://github.com/angular/angular.git.
Pull mirroring updated .
- Oct 28, 2021
-
-
Jessica Janiuk authored
-
Mladen Jakovljević authored
Fix incorrect escape of special characters when rendering member heritage docs. Example: DefaultIterableDiffer docs incorrectly renders what this class implements - it does not fully display generic types of implemented interfaces. PR Close #43956
-
Virginia Dooley authored
PR Close #43465
-
- Oct 27, 2021
-
-
Virginia Dooley authored
PR Close #43487
-
Jessica Janiuk authored
Revert "fix(compiler-cli): avoid broken references in .d.ts files due to @internal markers" (#43961) This reverts commit 69821fcef67f76cbfd9c3aa6db344c7f292c7d06. PR Close #43961
-
Jessica Janiuk authored
This reverts commit bd5acf60f29cdeb67a95421d9d622dc524b81fc7. PR Close #43961
-
Jessica Janiuk authored
Revert "fixup! refactor(compiler-cli): extract error documentation base url into separate file" (#43961) This reverts commit 3d82d566d205b3d599d774119ff95afc3cbdba1e. PR Close #43961
-
Virginia Dooley authored
PR Close #43488
-
Joey Perrott authored
Using the job name labels results in a more readable and better looking Github status. PR Close #43944
-
Joey Perrott authored
Create a configuration file to set up the new issue selector page. PR Close #43923
-
JoostK authored
Prior refactorings caused unexpected g3 sync issues due to a patch that changes the error documentation URL. This commit moves the base url into a separate file to make this more apparent. PR Close #43527
-
JoostK authored
The `ErrorCode` enum in the `error_code.ts` file is governed by public api guards but the other top-level exports from that file are exempt from public api documentation and are therefore marked as `@internal`. However, TypeScript is configured with the `stripInternal` compiler option such that declarations with `@internal` markers are not emitted into the `.d.ts` files, but this means that the reexports in the barrel file end up referring to missing declarations. The `stripInternal` option is considered internal and its documentation states to use at your own risk (as per https://github.com/microsoft/TypeScript/issues/45307). Having the option enabled is desirable for us as it works well for hiding class fields that are marked `@internal`, which is an effective way to hide members from the .d.ts file. As a workaround for the issue with top-level symbols, the declarations with `@internal` markers are moved to dedicated files for which no public api guard is setup, therefore allowing their `@internal` markers to be dropped. Fixes #43097 PR Close #43527
-
- Oct 26, 2021
-
-
dirk diebel authored
docs(docs-infra): change deprecated keyboardEvent.keyCode example to use keyboardEvent.code (#43934) PR Close #43934
-
amayer42 authored
Fixes the spelling of 'i18n' in a documentation link. PR Close #43941
-
Andrew Kushnir authored
The bootstrap tests that reused the same component (the `HelloRootCmp` one) were randomly failing due to the incomplete cleanup between tests. This commit ensures that the component bootstrap is fully cimpleted and there are no pending async actions before going to the next test. PR Close #43933
-
George Kalpakas authored
In #43879, `UmdReflectionHost` was updated to deal with the new UMD format used by Rollup, where the parenthesis is around the wrapper function and not the wrapper function call. For reference, this caused failures in the `ngcc-validation` repo ([example 1][1], [example 2][2]). This commit updates `UmdRenderingFormatter` to also handle both UMD formats. In order to validate the change, this commit also updates the `UmdRenderingFormatter` tests to run against both UMD formats. [1]: https://circleci.com/gh/angular/ngcc-validation/65916 [2]: https://circleci.com/gh/angular/ngcc-validation/65758 PR Close #43931
-
- Oct 22, 2021
-
-
ericcheng2005 authored
changed second big block of comments to use multi-line comment structure instead of multiple single-line comments PR Close #43684
-
ericcheng2005 authored
PR Close #43684
-
ericcheng2005 authored
PR Close #43684
-
Alan Agius authored
Consume latest version of `angular/dev-infra/github-actions`. PR Close #43904
-
Alan Agius authored
See: https://github.com/angular/dev-infra/pull/269 for more context PR Close #43904
-
- Oct 21, 2021
-
-
George Kalpakas authored
When an app version is detected as broken, the SW calls the `Driver#versionFailed()` method. Previously, this method would in turn call the `Driver#sync()` method, which writes some metadata about the SW's state to the `ngsw:/:db:contol` cache. More specifically, `Driver#sync()` persists info about all known app versions, which one is the latest and also what version each client is assigned to. However, no relevant info is changed inside `Driver#versionFailed()`, so the call to `Driver#sync()` is redundant (since there are no changes that need to be synced with the cache). This is a left-over from before #43518, when `Driver#versionFailed()` used to update version assignments and thus did require synchronization with the cache. This commit removes the redundant `Driver#sync()` call to avoid an unnecessary write to the cache. PR Close #43680
-
Andrew Kushnir authored
-
- Oct 19, 2021
-
-
Andrew Kushnir authored
This commit updates the payload size limit for one of the test apps. PR Close #43885
-
Pete Bacon Darwin authored
Recently rollup, used by ng-packagr, changed the position of parentheses around its generated UMD wrapper functions. This commit ensures that ngcc can handle both. Fixes #43870 PR Close #43879
-
Andrew Kushnir authored
This reverts commit bba0a870. The reason for rollback: this change is breaking some targets in Google's codebase when there is no attribute value is displayed (attr.aria-label) when translated. PR Close #43882
-
George Kalpakas authored
PR Close #43878
-
Andrew Scott authored
Experimentation with the Router URL management exposed a situation where the `currentNavigation` was being cleared in the `finalize` after the `currentNavigation` was already set to the next one. This change ensures that the `currentNavigation` is only cleared if the id of the finalized transition matches the one on the `currentNavigation` object. PR Close #43852
-
David Shevitz authored
PR Close #43872
-
Pete Bacon Darwin authored
While fully dynamic bound properties (and attributes) cannot be marked for localization, properties that only contain interpolation can. This commit ensure that attribute bindings that only contain interpolation can also be marked for localization. Closes #43260 PR Close #43815
-
dario-piotrowicz authored
improve the aio docs-card title by adding some padding so that it doesn't get too close to the card's edges PR Close #43859
-
dario-piotrowicz authored
two callout elements in the security guide have anchors as their first child element instead of the callout's header causing ugly/unwanted spacing, move the anchors above the callout elements to fix such issue PR Close #43865
-
- Oct 16, 2021
-
-
Pete Bacon Darwin authored
This commit helps to make the section that describes an overview of the syntax of a CLI command stand out from the surrounding text. Closes #26574 PR Close #43850
-
Younes Jaaidi authored
PR Close #43721
-
dario-piotrowicz authored
improve the aio contributors card by aligning centrally the contributor's name and adding some padding so that it doesn't get too close to the card's edges Note: the name's aligning was already present by wrongly removed in PR #43355 PR Close #43844
-
- Oct 15, 2021
-
-
Joe Martin (Crowdstaffing) authored
Update links and code-examples. Remove redundant comments. PR Close #43819
-
Alan Agius authored
It appears that when the tables were changed from HTML to markdown some value types were lost. With this change we add the missing types and remove the commented out HTML content. PR Close #43839
-
Natalia Venditto authored
PR Close #43825
-
- Oct 14, 2021
-
-
Andrew Scott authored
-
dario-piotrowicz authored
the tsconfig.json file in aio/content/examples does not seem necessary anymore as it was only used for tslinting and tslint has been removed from the examples in PR #43592 and PR #43746 PR Close #43818
-