https://github.com/angular/angular

sort by:
Revision Author Date Message Commit Date
6609a94 release: cut the v18.2.0-next.2 release 24 July 2024, 18:34:08 UTC
c2779eb docs: release notes for the v18.1.2 release 24 July 2024, 17:57:01 UTC
a7b973e docs(docs-infra): Use shiki for code highlighting (#57059) PR Close #57059 24 July 2024, 17:24:51 UTC
d5fbe11 docs(docs-infra): disable experimental decorators (#56257) Also enable useDefineForClassFields and disable downlevelIteration PR Close #56257 24 July 2024, 17:18:21 UTC
0e439d7 Revert "fix(router): Scroller should scroll as soon as change detection completes (#55105)" (#57115) This reverts commit 66ffeca2dea1eed5f88a81d8ef167da87796f3f8. It looks like nuxt encountered the same issue with scrolling when waiting for Vue's `nextTick`, which is a microtask. This would have similar timing to ZoneJS's rendering in the microtask queue. This reverts to a `setTimeout` alone, though recreates the problem in #53985. This was also mentioned in one of the comments in the Nuxt issue and the solution would be `rAF`. In order to address #53985, we'd likely want to use the `race(rAF, setTimeout)` that we use in the zoneless and coalescing schedulers. This would have effectively the same timing as the `afterNextRender` implementation here with zoneless, but quite different timing to `afterNextRender` with ZoneJS. fixes #57109 PR Close #57115 24 July 2024, 17:04:38 UTC
83117f1 refactor(core): Switch to using concat rather than spread operator for events. (#57103) Internally, the JSCompiler does not dead code eliminate this code when its using spread. PR Close #57103 23 July 2024, 22:54:23 UTC
43515a3 test(docs-infra): fix test with slight adjustment to error handling (#57104) The test was broken because multiple errors happen and the last error would be the displayed message. However, in this case, those errors happen because the initial one already terminated the container so the follow-up errors are a result of the service being in an unexpected state PR Close #57104 23 July 2024, 22:45:54 UTC
c578239 test(docs-infra): update adev tests to be zoneless (#57100) Updates adev tests to use zoneless and remove fakeAsync/waitForAsync/tick PR Close #57100 23 July 2024, 21:50:32 UTC
d7860a5 build: update all non-major dependencies (#57092) See associated pull request for more information. PR Close #57092 23 July 2024, 19:18:33 UTC
bb977e0 refactor(migrations): use common import manager for schematics (#57096) Updates the schematics to reuse the common `ImportManager`, instead of having to maintain a separate one. PR Close #57096 23 July 2024, 19:17:41 UTC
b464c3d refactor(compiler-cli): import manager not picking up some options (#57096) Fixes that the `ImportManager` wasn't picking up some of its configuration options. PR Close #57096 23 July 2024, 19:17:41 UTC
6cbcef2 refactor(compiler-cli): add alias option to the import manager (#57096) Updates the import manager to allow for a specific alias to be passed in. This is a prerequisite for switching schematics to the new import manager. Note that passing in an alias disables identifier conflict resolution in order to avoid rewriting the alias that was passed in explicitly. For now this is fine since we have a very narrow use case for it, but we may want to revisit it in the future. PR Close #57096 23 July 2024, 19:17:41 UTC
a50a81c build: update github/codeql-action action to v3.25.13 (#57091) See associated pull request for more information. PR Close #57091 23 July 2024, 17:29:16 UTC
ad23063 test(migrations): adds golden tests for the signal input migration (#57082) This commit adds golden tests for the signal input migration, along with a tool to execute and automatically test the migration via the batch mode, treating a single file as compilation unit. PR Close #57082 23 July 2024, 17:28:11 UTC
e0ff4f5 refactor(migrations): add batching helper for signal migration (#57082) This commit adds the batching logic helpers for running the signal migration as a sharded/parallel action in Google3 and potentially externally. The helpers are the main entry points for go/tsunami. PR Close #57082 23 July 2024, 17:28:11 UTC
03b4c3b refactor(migrations): add main entry points for signal migration (#57082) Adds the main entrypoint for the signal migration. These invoke the individual phases and expose helpers. PR Close #57082 23 July 2024, 17:28:11 UTC
f1ad9f9 refactor(migrations): add phase for migrating inputs and references (#57082) Adds the migration phase for migrating inputs and references. Thise phase may execute as the third step when batching. The migration is intentionally split into three phases: 1. Extract and analyze 2. Inheritance merge / merge of metadata 3. Migrate This allows us to batch the migration in Google3, or for large projects, merge metadata, and then batch-execute migration for computation of replacements. This is compatible with Google's LSC tsunami tool. PR Close #57082 23 July 2024, 17:28:11 UTC
4c50811 refactor(migrations): add advisors for problematic patterns (#57082) E.g. detects `spyOn(myComp, 'input')`. This is problematic as `input` no longer provides access to the raw value via property access, but via a getter. The `spyOn` would be effictively a noop, causing tests to fail. We skip such inputs for safety right now. Similarly, we have an advisor for correcting type safety loss with `.componentInstance` in unit tests. This is a common pattern but is typed in Angular core as `any`. This breaks resolution of references and we accidentally miss those. This advisor mitigates that. PR Close #57082 23 July 2024, 17:28:11 UTC
466b647 refactor(migrations): check for incompatible input patterns and inheritance (#57082) Adds logic to the signal input migration for checking incompatible patterns and inheritance. PR Close #57082 23 July 2024, 17:28:11 UTC
ed4f43c refactor(migrations): logic for detecting and capturing references to inputs (#57082) This commit adds the logic for detecting and capturing references to Angular `@Input`s. Those references may be migrated to unwrap signals as part of the migration; or are refactored into temporary variables. This commit detects and captures: - host bindings references - template references - TypeScript references PR Close #57082 23 July 2024, 17:28:11 UTC
95ef7f4 refactor(migrations): add AST traversal for detecting references in templates and host bindings (#57082) This commit adds logic for AST traversing Angular HTML templates and detecting references to Angular `@Input`s that may be migrated. In addition, the expression visitor logic is built in a generic way so that it can also be used for finding references in host binding expressions— where no type check block information is available. PR Close #57082 23 July 2024, 17:28:11 UTC
9bda2c3 refactor(migrations): initial logic for converting `@Input()` to `input` (#57082) This commit includes the initial logic for converting `@Input()` to `input`. The logic is not fully polished in terms of what use-cases and patterns we want to generate, but it's working pretty stable with testing in Angular Material and some g3 targets. We may improve this and e.g. generate the `input()` shorthand in a couple of cases. The commit also includes some related helpers/parts that are needed for the migration phases. Notably the conversion phase is split up into preparation and migration. That is necessary because as part of analysing we already try to prepare to see if it's "possible". This is necessary for the global metadata analysis, so that we can know that certain references are incompatible across compilation units (e.g. when running as a batch). PR Close #57082 23 July 2024, 17:28:11 UTC
b5d6100 refactor(migrations): phase for recognizing inputs in program (#57082) This introduces the phase for recognizing inputs the migration target program, extracting input metadata. PR Close #57082 23 July 2024, 17:28:11 UTC
a196c8d refactor(migrations): add initial helpers and registry for tracking inputs (#57082) This commit adds the initial set of helpers and registries for tracking inputs discovered in the signal input migration. A few short summary notes: - Every input has an unique key. This key is used for global analysis that may be performed when the migration is executed on a per individual unit basis in Google3 via e.g. go/tsunami — The keys allow us to build a combined global metadata for e.g. references or figuring out which inputs are incompatible or not. - A known input may be _any_ input in an compilation unit/ the program. E.g. even inputs from `d.ts`. We keep track of these inputs so that we can later figure out if a reference `ts.Identifier` points to any of those. In addition it allows us to attach incompatibility metadata to those. I.e. incompatible for migration because "something writes to the input". PR Close #57082 23 July 2024, 17:28:11 UTC
521a8d2 refactor(migrations): initial flow analysis logic for input migration (#57082) This commit introduces the initial flow analysis logic for the input migration. The flow analysis will allow us to determine which references inside a flow container participate potentially in narrowing. We can then use this information and the proposed restructred accesses to refactor the accesses to use temporary variables where needed. E.g. ``` if (this.input) { this.input.charAt(0); } ``` ``` const input_1 = this.input(); if (input_1) { input_1.charAt(0); } ``` Notably we could easily, naively figure out similar references in a flow container and always use temporary variables, but this approach allows us to minimally introduce such variables and this commonly leaves code very readable when no narrowing was involved (noticable in g3 tests) E.g. simple cases like: ``` this.input.bla(); this.input.bla(); ``` would otherwise result in refactored expressions, leveraging a temporary variable. PR Close #57082 23 July 2024, 17:28:11 UTC
a22f142 refactor(compiler): support use of poisoned data as private compiler option (#57082) This allows use of poisoned data for migrations. Right now, migrations often enable this flag by creating some deeper structures of the Angular compiler, but with this change it's easier to enable as a private compiler option. This is helpful for migrations, specifically the signal input migration as it allows us to generate as much TCB code as possible, for reference resolution. PR Close #57082 23 July 2024, 17:28:10 UTC
bf853b7 refactor(compiler): expose information about inputs from `inputs` field (#57082) This commit exposes metadata about inputs that are defined inside the `inputs` field of `@Directive` or `@Component` class decorators This is useful and necessary information for migrations, like the signal inputs migration. PR Close #57082 23 July 2024, 17:28:10 UTC
8718abc fix(core): Deprecate ignoreChangesOutsideZone option (#57029) This option was introduced out of caution as a way for developers to opt out of the new behavior in v18 which schedule change detection for the above events when they occur outside the Zone. After monitoring the results post-release, we have determined that this feature is working as desired and do not believe it should ever be disabled by setting this option to `true`. PR Close #57029 23 July 2024, 17:10:48 UTC
d4ff6bc fix(compiler-cli): add warning for unused let declarations (#57033) Adds a new extended diagnostic that will flag `@let` declarations that aren't used within the template. The diagnostic can be turned off through the `extendedDiagnostics` compiler option. PR Close #57033 23 July 2024, 15:27:17 UTC
6c2fbda fix(compiler-cli): extended diagnostic visitor not visiting template attributes (#57033) Fixes that the visitor which is used to implement template diagnostics isn't visiting the template attributes of structural directives. PR Close #57033 23 July 2024, 15:27:17 UTC
4ac39ae Revert "fix(compiler-cli): add warning for unused let declarations (#57033)" (#57088) This reverts commit c76b440ac007128c53699797811bc586220ccbe9. PR Close #57088 22 July 2024, 22:28:03 UTC
fab673a feat(core): add ng generate schematic to convert to inject (#57056) Adds the new `ng generate @angular/core:inject-migration` schematic that will convert existing code from constructor-based injection to injection using the `inject` function. The migration also has a few options that should help reduce compilation errors. This migration is slightly different than our usual ones in that it may have to update entire class or constructor declarations. We don't go through the `ts.factory.update*` APIs for this, because it can cause the entire declaration to be re-formatted. Instead, this migration tries to insert strings in a way that won't affect the user's formatting. PR Close #57056 22 July 2024, 21:39:45 UTC
08c5977 fix(compiler): limit the number of chained instructions (#57069) Some Angular template instructions that follow each other may be chained together in a single expressions statement, containing a deeply nested AST of call expressions. The number of chained instructions wasn't previously limited, so this could result in very deep ASTs that cause stack overflow errors during TypeScript emit. This commit introduces a limit to the number of chained instructions to avoid these problems. Closes #57066 PR Close #57069 22 July 2024, 18:50:12 UTC
13bc8d7 docs: Update packages/router/src/router.ts (#57053) Co-authored-by: Andrew Scott <atscott01@gmail.com> PR Close #57053 22 July 2024, 17:52:36 UTC
4bbdab6 docs: Update packages/router/src/router.ts (#57053) Co-authored-by: Andrew Scott <atscott01@gmail.com> PR Close #57053 22 July 2024, 17:52:36 UTC
65a0a03 docs: adding reference to RouterModule.forroot method in Router service for better understanding for beginner (#57053) PR Close #57053 22 July 2024, 17:52:36 UTC
30aeb81 docs: Adding Router service hierarchical injection level (#57053) PR Close #57053 22 July 2024, 17:52:36 UTC
fe41b11 fix(core): tree shake dev mode error message (#57035) Adds an `ngDevMode` check before a runtime error message. Fixes #57034. PR Close #57035 22 July 2024, 17:49:18 UTC
21f7131 docs: fix push-notifications.md (#57065) Added missing comma at actions notifications example. SyntaxError: Expected ',' or ']' after array element in JSON at position 255 PR Close #57065 22 July 2024, 17:46:56 UTC
aeaf07d docs: fixing dead link (#57077) Fixing guide dead link for issue #57067. PR Close #57077 22 July 2024, 16:58:41 UTC
38e4802 build: update babel dependencies (#57045) See associated pull request for more information. Closes #56996 as a pr takeover PR Close #57045 19 July 2024, 20:46:00 UTC
3664cd6 refactor(core): Allow manual renderer listens to contribute to event delegation as well. (#56799) There are existing usages that inject the renderer to manualy listen (often for event delegation purposes). These should contribute as well. PR Close #56799 19 July 2024, 20:42:26 UTC
4e6a42b docs: update broken link to version updates in versionEvent (#56870) (#56870) PR Close #56870 19 July 2024, 20:41:54 UTC
7d4b2d2 fix(core): `afterNextRender` hooks return that callback value. (#57031) `afterRender` was working fine but `afterNextRender` wasn't PR Close #57031 19 July 2024, 20:40:59 UTC
c76b440 fix(compiler-cli): add warning for unused let declarations (#57033) Adds a new extended diagnostic that will flag `@let` declarations that aren't used within the template. The diagnostic can be turned off through the `extendedDiagnostics` compiler option. PR Close #57033 19 July 2024, 18:50:32 UTC
a18f41c docs: fix filtering on API reference (#57057) With the input binding, the `type` can become `undefined` PR Close #57057 19 July 2024, 18:49:04 UTC
244c50d docs: fix pipes link (#52979) fixes #52968 PR Close #52979 19 July 2024, 01:05:07 UTC
4577787 docs(docs-infra): filter types (#52979) PR Close #52979 19 July 2024, 01:05:07 UTC
f3a88ad docs(docs-infra): update tutorial deps to 18.1 (#57024) lockfile were still loading 18.0 but TS was already at 5.5 which 18.0 doesn't support PR Close #57024 18 July 2024, 22:27:23 UTC
e0f606e refactor(devtools): use signal api in property view (#56995) Refactor the property view components to use signal apis, in future we can make the components onPush and zoneless PR Close #56995 18 July 2024, 22:23:32 UTC
0dfae93 docs: Add `@let` block entry to the API (#57027) PR Close #57027 18 July 2024, 22:22:41 UTC
cef0905 docs: Update service code snippet (#57036) Snippet was missing import for the function and failed when copied to the test project PR Close #57036 18 July 2024, 22:21:32 UTC
425f44c refactor(core): Move logic into early event contract files. (#56994) Also remove some dead a11y code, now that a11y is in `ActionResolver`. PR Close #56994 18 July 2024, 19:05:17 UTC
658c7fe docs: fix changelog entry (#57038) The entry incorrectly included a link. PR Close #57038 18 July 2024, 18:12:29 UTC
c8fa616 docs: fix headings and code font in `@for` docs (#57007) - Fix "Syntax" and "Description" h2 headings - Fix code font in h3 headings PR Close #57007 18 July 2024, 18:07:42 UTC
5e2b29c docs(docs-infra): add open in StackBlitz button to code editor (#57018) PR Close #57018 18 July 2024, 15:41:34 UTC
1dd43eb docs(docs-infra): no prefix for the current major (#56882) To allow navigation back from next.angular.dev, the current major uses no prefix. fixes #56868 PR Close #56882 18 July 2024, 15:40:09 UTC
d97aee6 release: cut the zone.js 0.14.8 release (#57030) PR Close #57030 17 July 2024, 21:03:01 UTC
89550e7 release: cut the v18.2.0-next.1 release 17 July 2024, 20:34:45 UTC
3a41571 docs: release notes for the v18.1.1 release 17 July 2024, 20:11:52 UTC
59fc4de docs: release notes for the v17.3.12 release (#57023) 17 July 2024, 19:28:26 UTC
982f1b1 fix(zone.js): support `Timeout.refresh` in Node.js (#56852) The `Timeout` object in Node.js has a `refresh` method, used to restart `setTimeout`/`setInterval` timers. Before this commit, `Timeout.refresh` was not handled, leading to memory leaks when using `fetch` in Node.js. This issue arose because `undici` (the Node.js fetch implementation) uses a refreshed `setTimeout` for cleanup operations. For reference, see: https://github.com/nodejs/undici/blob/1dff4fd9b1b2cee97c5f8cf44041521a62d3f133/lib/util/timers.js#L45 Fixes: #56586 PR Close #56852 16 July 2024, 19:46:51 UTC
2c4613a fix(common): Don't run preconnect assertion on the server. (#56213) The `window` global is patched by domino on the server but the value of `window.location.href` isn't a valid base. Before this change `getUrl()` would throw when running in devmode on the server. Fixes #56207 PR Close #56213 16 July 2024, 16:53:33 UTC
e5e1f49 docs: Expose `$localize` in the `@angular/localize/init` entry. (#55345) fixes #54388 PR Close #55345 16 July 2024, 15:43:52 UTC
80b5202 docs: update structural-directives.md select to [select] (#56955) this custom directive's selector should be [select] PR Close #56955 16 July 2024, 15:42:59 UTC
e504ad9 fix(core): not all callbacks running when registered at the same time (#56981) Fixes that only the first callback was firing when multiple are registered in the same call to `afterNextRender`, e.g. `afterNextRender({earlyRead: fn, read: fn});` Fixes #56979. PR Close #56981 16 July 2024, 15:42:26 UTC
f8f3baa build: update github/codeql-action action to v3.25.12 (#56997) See associated pull request for more information. PR Close #56997 16 July 2024, 15:41:58 UTC
7663deb perf(language-service): quick exit if no code fixes can exist (#57000) This is a performance optimization that would exit early when code actions are requested, but we know Angular cannot provide fixes based on the error codes. Previously, we would unnecessarily compute and analyze the application for semantic diagnostics. This will be helpful for: https://github.com/angular/vscode-ng-language-service/pull/2050 PR Close #57000 16 July 2024, 15:41:03 UTC
9167fc8 fix(compiler): JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002) Fixes that the runtime implementation of `ɵɵngDeclareDirective` was interpreting the `hostDirectives` mapping incorrectly. Instead of treating the inputs/outputs as `['binding', 'alias']` arrays, it was parsing them as `['binding: alias']`. This was leading to runtime errors if a user is consuming a partially-compiled library in JIT mode. Fixes #54096. PR Close #57002 16 July 2024, 15:37:26 UTC
2a71f05 docs: change code formatting for better readability (#56974) This change improves the consistency and visibility of the documentation by using backticks for code formatting in the instructions. PR Close #56974 15 July 2024, 19:05:43 UTC
ac9d9db build: update dependency inquirer to v10 (#56883) See associated pull request for more information. PR Close #56883 15 July 2024, 18:49:26 UTC
e958fa8 refactor(compiler): include public constructor paramters to class properties. (#56315) Public properties declared in the constructor are part of the public API and we should extract them. Fixes #56310 PR Close #56315 15 July 2024, 18:39:21 UTC
7a5384c docs: add quick installation page (#56816) PR Close #56816 15 July 2024, 18:37:57 UTC
4bb558a feat(language-service): support writing code refactorings (#56895) In addition to quick fixes, this commit adds the ability to write code refactoring actions that can be applied by users. For example, we may implement a migration as a code refactoring action. Notably the quick fix support, existing already, is insufficient as it only allows for edits to be applied based on diagnostics shwon in e.g. VSCode. PR Close #56895 15 July 2024, 18:35:40 UTC
9173e9b build: update actions/upload-artifact action to v4.3.4 (#56905) See associated pull request for more information. PR Close #56905 15 July 2024, 18:34:59 UTC
4448b85 build: update io_bazel_rules_sass digest to 83022b9 (#56954) See associated pull request for more information. PR Close #56954 15 July 2024, 18:34:25 UTC
ea01ce4 build: update material / cdk (#56960) Material 18.1 includes a fix we were waiting for adev. Fixes #56786 PR Close #56960 15 July 2024, 18:23:39 UTC
f0d6d06 fix(compiler-cli): avoid emitting references to typecheck files in TS 5.4 (#56961) In #56358 we removed most of the places that untag the references to typecheck files, because it was causing the compiler to throw error when it produces diagnostics. This appears to have caused a regression in TS 5.4 which now emits the synthetic references. These changes add tagging right before the program emits. Fixes #56945. PR Close #56961 15 July 2024, 18:22:00 UTC
0ea6a4a fix(migrations): fix common module removal (#56968) This fixes the case that common module is removed on a second run of the migration. We were not looking at block parameters for common module usage. PR Close #56968 15 July 2024, 18:17:46 UTC
38b9320 refactor(compiler-cli): Extract call signatures from interfaces. (#56973) This commit adds support for extracting call signals from interfaces. fixes #56969 PR Close #56973 15 July 2024, 18:07:57 UTC
8f08d04 ci: add an entry for aio in the pullapprove config (#56952) This would allow me & ben to review some of the changes on the 17.3 branch, for example the redirections. PR Close #56952 12 July 2024, 00:03:26 UTC
0953d65 docs(docs-infra): focus api search filter on non-touch devices (#56294) PR Close #56294 11 July 2024, 19:05:33 UTC
e5f11dd build: fix rate limits when deploying angular.dev site (#56929) This commit fixes that the angular.dev deployment is subject to GitHub API rate limiting due to lack of an access token. This commit fixes this, similar to how we fixed it in `angular/components`. The token is pure read-only. PR Close #56929 11 July 2024, 15:54:50 UTC
107173c fix(compiler): use strict equality for 'code' comparison (#56944) Replace loose equality (==) with strict equality (===) for the 'code' variable. This change ensures type safety and prevents unintended type coercion. PR Close #56944 11 July 2024, 15:52:58 UTC
be689df build: update deps (#56946) Updating `build-tooling` and `docs`. PR Close #56946 11 July 2024, 15:52:28 UTC
dd6e548 docs: fixing links to guides on the Performance Overview page (#56942) PR Close #56942 11 July 2024, 00:06:07 UTC
d011c9f refactor(core): Refactor `EarlyEventContract` to prepare for using it as a container. (#56900) This is the first step towards combining `EarlyEventContract` and `EventContract`. It contains a few refactors, such as making names more consistent. The goal of this refactor is to remove the `EarlyEventContract` class altogether, as well as `EventContract`. To install the early event contract with the default events in early script tag, users will call: `bootstrapGlobalEarlyEventContract()` And for boostraping: `registerGlobalDispatcher(dispatcher)` PR Close #56900 10 July 2024, 20:53:03 UTC
78c44ec docs: move public folder to workspace configuration section (#56931) move the public folder entry from the application project files section to the workspace configuration files section PR Close #56931 10 July 2024, 20:52:06 UTC
8df13e1 docs: add overview page for performance section (#56828) PR Close #56828 10 July 2024, 16:17:04 UTC
7f550ea refactor(compiler-cli): move JIT transforms into `ngtsc` (#56892) This commit moves the JIT transforms into the ngtsc folder. They existed outside of ngtsc mostly as an historic artifact— and now with compiler relying on them even more deeply, it makes sense to move them into `ngtsc/transform`. PR Close #56892 10 July 2024, 15:29:20 UTC
98ed5b6 feat(compiler-cli): run JIT transform on classes with `jit: true` opt-out (#56892) Currently when compiling code with the Angular compiler, all classes with Angular decorators are compiled with AOT. This includes type checking, scope collection etc. This may not be desirable for all components, e.g. dynamic components, or test components w/ `TestBed.configureTestingModule` (if compiled with ngtsc). Those components can opt out of AOT on a per component-basis via `jit: true`. This is helpful as it allows incremental migrations/refactorings to AOT. Whether we want to keep this capability long-term is something to be discussed separately. For now though, we should fix that components compiled with `jit: true` actually work as expected. Currently this **not the case** as soon as the new initializer APIs are used— as those do no longer declare class metadata with decorators. This commit runs the JIT transform on JIT-opted classes. Related: https://docs.google.com/document/d/1ox4atCJldWWDXlaYgwM-hU8BNsTpKNW7gx8OfZ0HtRY/edit?resourcekey=0-G1haTNYtD-dN0vNRkQ8_OQ&tab=t.0 PR Close #56892 10 July 2024, 15:29:19 UTC
c0ef7de build: update actions/upload-artifact action to v4.3.4 (#56906) See associated pull request for more information. PR Close #56906 10 July 2024, 15:28:33 UTC
4d448ff build: update io_bazel_rules_sass digest to ea6b195 (#56917) See associated pull request for more information. PR Close #56917 10 July 2024, 15:24:58 UTC
6271a16 refactor(core): Remove unused A11Y_CLICK_SUPPORT define. (#56901) This behavior was moved to be configured by a runtime boolean, rather than a define. PR Close #56901 10 July 2024, 13:50:39 UTC
bafafb2 docs(docs-infra): fix z-index issue on mobile (#56874) fixes #56871 PR Close #56874 10 July 2024, 13:48:42 UTC
b6fb5b7 release: cut the v18.2.0-next.0 release 10 July 2024, 13:41:47 UTC
8fc2605 docs: fix testing angular url (#56847) PR Close #56847 10 July 2024, 13:18:12 UTC
85d1d22 docs: release notes for the v18.1.0 release 10 July 2024, 13:05:20 UTC
543f636 docs: release notes for the v18.0.7 release 10 July 2024, 12:54:00 UTC
9d94177 docs: Update components-scenarios.md (#56921) Fix grammatical issues PR Close #56921 10 July 2024, 09:29:17 UTC
back to top