mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This adds the feature for `@ViewChild`/`@ViewChildren`/`@ContentChild`/`@ContentChildren` to define what to read from the queried element. E.g. `@ViewChild(`someVar`, read: ViewContainerRef)` will locate the element with a variable `someVar` on it and return a `ViewContainerRef` for it. Background: With this change, Angular knows exactly at which elements there will be `ViewConainerRef`s as the user has to ask explicitly of them. This simplifies codegen and will make converting Angular templates into server side templates simpler as well. BREAKING CHANGE: - `DynamicComponentLoader.loadIntoLocation` has been removed. Use `@ViewChild(‘myVar’, read: ViewContainerRef)` to get hold of a `ViewContainerRef` at an element with variable `myVar`. - `DynamicComponentLoader.loadNextToLocation` now takes a `ViewContainerRef` instead of an `ElementRef`. - `AppViewManager` is renamed into `ViewUtils` and is a mere private utility service. |
||
|---|---|---|
| .. | ||
| css | ||
| expression_parser | ||
| output | ||
| schema | ||
| compile_metadata_spec.ts | ||
| directive_lifecycle_spec.dart | ||
| directive_lifecycle_spec.ts | ||
| directive_normalizer_spec.ts | ||
| directive_resolver_spec.ts | ||
| html_ast_spec_utils.ts | ||
| html_lexer_spec.ts | ||
| html_parser_spec.ts | ||
| legacy_template_spec.ts | ||
| offline_compiler_codegen_typed.ts | ||
| offline_compiler_codegen_untyped.ts | ||
| offline_compiler_compa.css.shim.ts | ||
| offline_compiler_spec.ts | ||
| offline_compiler_util.ts | ||
| runtime_metadata_fixture.dart | ||
| runtime_metadata_fixture.ts | ||
| runtime_metadata_spec.ts | ||
| schema_registry_mock.ts | ||
| selector_spec.ts | ||
| shadow_css_spec.ts | ||
| spies.dart | ||
| spies.ts | ||
| static_reflector_spec.ts | ||
| style_url_resolver_spec.ts | ||
| template_parser_spec.ts | ||
| template_preparser_spec.ts | ||
| test_bindings.ts | ||
| url_resolver_spec.ts | ||
| view_resolver_spec.ts | ||
| xhr_mock_spec.ts | ||