@angular/core 17.2.1 → 17.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/src/metadata/di.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +3 -3
- package/esm2022/src/render3/instructions/shared.mjs +6 -3
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +8 -5
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +6 -8
- package/package.json +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/block-template-entities/bundle.js +184 -175
- package/schematics/migrations/block-template-entities/bundle.js.map +2 -2
- package/schematics/migrations/compiler-options/bundle.js +13 -13
- package/schematics/migrations/transfer-state/bundle.js +13 -13
- package/schematics/ng-generate/control-flow-migration/bundle.js +197 -188
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
- package/schematics/ng-generate/standalone-migration/bundle.js +1070 -1023
- package/schematics/ng-generate/standalone-migration/bundle.js.map +3 -3
- package/testing/index.d.ts +1 -1
package/fesm2022/testing.mjs
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v17.2.
|
|
2
|
+
* @license Angular v17.2.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -10906,16 +10906,14 @@ export declare interface ViewChildDecorator {
|
|
|
10906
10906
|
* * Any provider defined through a string token (e.g. `{provide: 'token', useValue: 'val'}`)
|
|
10907
10907
|
* * `TemplateRef`, `ElementRef`, and `ViewContainerRef`
|
|
10908
10908
|
*
|
|
10909
|
-
* Difference between dynamic and static queries
|
|
10910
|
-
*
|
|
10911
|
-
* | Queries | Details |
|
|
10912
|
-
* |:--- |:--- |
|
|
10913
|
-
* | Dynamic queries \(`static: false`\) | The query resolves before the `ngAfterViewInit()`
|
|
10909
|
+
* Difference between dynamic and static queries:
|
|
10910
|
+
* * Dynamic queries \(`static: false`\) - The query resolves before the `ngAfterViewInit()`
|
|
10914
10911
|
* callback is called. The result will be updated for changes to your view, such as changes to
|
|
10915
|
-
* `ngIf` and `ngFor` blocks.
|
|
10912
|
+
* `ngIf` and `ngFor` blocks.
|
|
10913
|
+
* * Static queries \(`static: true`\) - The query resolves once
|
|
10916
10914
|
* the view has been created, but before change detection runs (before the `ngOnInit()` callback
|
|
10917
10915
|
* is called). The result, though, will never be updated to reflect changes to your view, such as
|
|
10918
|
-
* changes to `ngIf` and `ngFor` blocks.
|
|
10916
|
+
* changes to `ngIf` and `ngFor` blocks.
|
|
10919
10917
|
*
|
|
10920
10918
|
* @usageNotes
|
|
10921
10919
|
*
|
package/package.json
CHANGED
package/rxjs-interop/index.d.ts
CHANGED