Andrew Scott
Andrew Scott
By updating the "arbitrary-component" to `OnPush`, the following test fails: `MatSnackBar should set the old snack bar animation state to complete and the new snack bar animation`. The assertion that...
draft - Probably a breaking change and definitely not a good idea until `afterNextRender` runs only after `ApplicationRef.tick`. At the moment, this passes tests only because they're using fixtures and...
The current implementation of the dialog's `finishDialogOpen`, which includes autofocus, only waits for a microtask before executing. This only works in the tests because of the synchronous call to `detectChanges`...
This commit updates the router integration tests to cover both the classic History and the new Navigation API. There is more work to be done here, but this commit works...
The source mappings and types for various pieces of the control flow were not quite right and prevented the language service from providing accurate information. fixes https://github.com/angular/vscode-ng-language-service/issues/1988
Since https://github.com/angular/angular/commit/12181b99148e9c4034b16b8ae1253c4826428cd6, zone stability contributes to the PendingTasks. There is now a single source of truth for application stability tracked in PendingTasks. This change makes protractor's whenStable compatible with zoneless....
This commit adds a feature that might be useful for determining if an application is zoneless-ready. The way this works is generally only useful right now when zoneless is enabled....
Syntax highlighting in the editor could/should be improved for Angular templates Places where highlighting could be applied better: - [ ] interpolations / expressions - [ ] attribute and event...
### Which @angular/* package(s) are relevant/releated to the feature request? router ### Description The Angular router's current architecture is problematic for a couple big reasons: * It is not extensible....
This feature adds a property to the `NavigationBehaviorOptions` that allows developers to define a different path for the browser's address bar than the one used to match routes. This is...