mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGE:
- Renderer:
* renderComponent method is removed form `Renderer`, only present on `RootRenderer`
* Renderer.setDebugInfo is removed. Renderer.createElement / createText / createTemplateAnchor
now take the DebugInfo directly.
- Query semantics:
* Queries don't work with dynamically loaded components.
* e.g. for router-outlet: loaded components can't be queries via @ViewQuery,
but router-outlet emits an event `activate` now that emits the activated component
- Exception classes and the context inside changed (renamed fields)
- DebugElement.attributes is an Object and not a Map in JS any more
- ChangeDetectorGenConfig was renamed into CompilerConfig
- AppViewManager.createEmbeddedViewInContainer / AppViewManager.createHostViewInContainer
are removed, use the methods in ViewContainerRef instead
- Change detection order changed:
* 1. dirty check component inputs
* 2. dirty check content children
* 3. update render nodes
Closes #6301
Closes #6567
34 lines
897 B
HTML
34 lines
897 B
HTML
<!doctype html>
|
|
<html>
|
|
<body>
|
|
<ul>
|
|
<li>
|
|
<a href="di/di_benchmark.html">DI benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="compiler/selector_benchmark.html">Selector benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="compiler/compiler_benchmark.html">Compiler benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="element_injector/element_injector_benchmark.html">Element injector benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="tree/tree_benchmark.html">Tree benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="static_tree/tree_benchmark.html">Static tree benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="naive_infinite_scroll/index.html">Naive infinite scroll benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="largetable/largetable_benchmark.html">Largetable benchmark</a>
|
|
</li>
|
|
<li>
|
|
<a href="costs/index.html">Benchmarks measuring costs of things</a>
|
|
</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|