@angular/core 17.1.1 → 17.2.0-next.0
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/authoring/queries.mjs +113 -0
- package/esm2022/src/compiler/compiler_facade_interface.mjs +1 -1
- package/esm2022/src/core_render3_private_export.mjs +2 -2
- package/esm2022/src/metadata/di.mjs +7 -7
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/index.mjs +2 -2
- package/esm2022/src/render3/instructions/queries.mjs +16 -1
- package/esm2022/src/render3/jit/directive.mjs +2 -1
- package/esm2022/src/render3/jit/environment.mjs +4 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +29 -10
- 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 +10 -3
- 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 +602 -542
- package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
- package/schematics/ng-generate/control-flow-migration/bundle.js +602 -542
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
- package/schematics/ng-generate/standalone-migration/bundle.js +1419 -1170
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- 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
|
+
* @license Angular v17.2.0-next.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -7926,6 +7926,7 @@ declare interface R3DeclareQueryMetadataFacade {
|
|
|
7926
7926
|
read?: OpaqueValue;
|
|
7927
7927
|
static?: boolean;
|
|
7928
7928
|
emitDistinctChangesOnly?: boolean;
|
|
7929
|
+
isSignal?: boolean;
|
|
7929
7930
|
}
|
|
7930
7931
|
|
|
7931
7932
|
declare type R3DeclareTemplateDependencyFacade = {
|
|
@@ -13965,7 +13966,9 @@ export declare function ɵɵconditional<T>(containerIndex: number, matchingTempl
|
|
|
13965
13966
|
*
|
|
13966
13967
|
* @codeGenApi
|
|
13967
13968
|
*/
|
|
13968
|
-
export declare function ɵɵcontentQuery<T>(directiveIndex: number, predicate: ProviderToken<unknown> | string[], flags: QueryFlags, read?: any): void;
|
|
13969
|
+
export declare function ɵɵcontentQuery<T>(directiveIndex: number, predicate: ProviderToken<unknown> | string | string[], flags: QueryFlags, read?: any): void;
|
|
13970
|
+
|
|
13971
|
+
export declare function ɵɵcontentQuerySignal(): void;
|
|
13969
13972
|
|
|
13970
13973
|
/**
|
|
13971
13974
|
* Copies the fields not handled by the `ɵɵInheritDefinitionFeature` from the supertype of a
|
|
@@ -15617,6 +15620,8 @@ export declare function ɵɵpureFunction8(slotOffset: number, pureFn: (v1: any,
|
|
|
15617
15620
|
*/
|
|
15618
15621
|
export declare function ɵɵpureFunctionV(slotOffset: number, pureFn: (...v: any[]) => any, exps: any[], thisArg?: any): any;
|
|
15619
15622
|
|
|
15623
|
+
export declare function ɵɵqueryAdvance(_count?: number): void;
|
|
15624
|
+
|
|
15620
15625
|
/**
|
|
15621
15626
|
* Refreshes a query by combining matches from all active views and removing matches from deleted
|
|
15622
15627
|
* views.
|
|
@@ -16879,6 +16884,8 @@ export declare function ɵɵvalidateIframeAttribute(attrValue: any, tagName: str
|
|
|
16879
16884
|
*
|
|
16880
16885
|
* @codeGenApi
|
|
16881
16886
|
*/
|
|
16882
|
-
export declare function ɵɵviewQuery<T>(predicate: ProviderToken<unknown> | string[], flags: QueryFlags, read?: any): void;
|
|
16887
|
+
export declare function ɵɵviewQuery<T>(predicate: ProviderToken<unknown> | string | string[], flags: QueryFlags, read?: any): void;
|
|
16888
|
+
|
|
16889
|
+
export declare function ɵɵviewQuerySignal(): void;
|
|
16883
16890
|
|
|
16884
16891
|
export { }
|
package/package.json
CHANGED
package/rxjs-interop/index.d.ts
CHANGED