Pawel Kozlowski
Pawel Kozlowski
@caridy I can't send a proper patch atm (will do later today while back at home) but there is a bug in the [System.import](https://github.com/caridy/es6-micro-loader/blob/f25b6e98a1f8a2dc16f8b31fb72d830c2a747703/client.js#L104-L109) handling of promises for dynamically loaded...
Executing `new Intl.DateTimeFormat('en-US').formatToParts(new Date()));` in a browser that has native `Intl` API implementation (Chrome, FFox, ...) results in: > TypeError: (intermediate value).formatToParts is not a function Would it make sense...
Using the following options code: ``` var formatter = new IntlPolyfill.DateTimeFormat('en-US', { hour12: true, hour: "2-digit" }); ``` produces `11` while both Chrome and FFox with native implementation of the...
In Angular with ViewEngine a destroyed view can't be interacted with (ex. one can't trigger change detection on such views). With ivy it is possible to call methods on a...
There are multiple use-cases where one would like to reason about content provided to a component (check if content was provided at all, count the number of items etc.). To...
### Which @angular/* package(s) are relevant/related to the feature request? _No response_ ### Description There are numerous situations when one needs to read from the DOM after Angular finished rendering...
NgModule should support readonly arrays in `@NgModule.imports` and `@NgModule.exports`. Partly fixes #48089 (#48091 is also needed)
Benchpress benchmarks in the https://github.com/angular/angular/tree/master/modules/benchmarks could use some cleanup as they accumulated a bit of technical debt through incremental changes over time. Cleanups to consider are listed below. ### Remove...
### Which @angular/* package(s) are relevant/related to the feature request? core ### Description Angular dirty-checking mechanism works well for synchronising (propagating) model changes to the DOM. However, there are legitimate...