@angular/core 17.0.0 → 17.0.1
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/application_ref.mjs +1 -1
- package/esm2022/src/linker/view_ref.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +3 -3
- package/esm2022/src/render3/instructions/change_detection.mjs +22 -19
- package/esm2022/src/render3/view_ref.mjs +5 -28
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +28 -48
- 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 +4 -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 +160 -160
- package/schematics/migrations/block-template-entities/bundle.js.map +1 -1
- 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 +494 -370
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
- package/schematics/ng-generate/standalone-migration/bundle.js +429 -423
- 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.0.
|
|
2
|
+
* @license Angular v17.0.1
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -5168,11 +5168,6 @@ declare interface InternalNgModuleRef<T> extends NgModuleRef<T> {
|
|
|
5168
5168
|
_bootstrapComponents: Type<any>[];
|
|
5169
5169
|
}
|
|
5170
5170
|
|
|
5171
|
-
declare interface InternalViewRef extends ViewRef {
|
|
5172
|
-
detachFromAppRef(): void;
|
|
5173
|
-
attachToAppRef(appRef: ViewRefTracker): void;
|
|
5174
|
-
}
|
|
5175
|
-
|
|
5176
5171
|
|
|
5177
5172
|
/**
|
|
5178
5173
|
* Returns whether Angular is in development mode.
|
|
@@ -12466,7 +12461,7 @@ export declare function ɵunwrapSafeValue<T>(value: T): T;
|
|
|
12466
12461
|
*/
|
|
12467
12462
|
export declare const ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT = true;
|
|
12468
12463
|
|
|
12469
|
-
export declare class ɵViewRef<T> implements EmbeddedViewRef<T>,
|
|
12464
|
+
export declare class ɵViewRef<T> implements EmbeddedViewRef<T>, ChangeDetectorRefInterface {
|
|
12470
12465
|
/**
|
|
12471
12466
|
* This represents the `LView` associated with the point where `ChangeDetectorRef` was
|
|
12472
12467
|
* requested.
|
|
@@ -12474,6 +12469,7 @@ export declare class ɵViewRef<T> implements EmbeddedViewRef<T>, InternalViewRef
|
|
|
12474
12469
|
* This may be different from `_lView` if the `_cdRefInjectingView` is an embedded view.
|
|
12475
12470
|
*/
|
|
12476
12471
|
private _cdRefInjectingView?;
|
|
12472
|
+
private readonly notifyErrorHandler;
|
|
12477
12473
|
private _appRef;
|
|
12478
12474
|
private _attachedToViewContainer;
|
|
12479
12475
|
get rootNodes(): any[];
|
|
@@ -12496,7 +12492,7 @@ export declare class ɵViewRef<T> implements EmbeddedViewRef<T>, InternalViewRef
|
|
|
12496
12492
|
*
|
|
12497
12493
|
* This may be different from `_lView` if the `_cdRefInjectingView` is an embedded view.
|
|
12498
12494
|
*/
|
|
12499
|
-
_cdRefInjectingView?: LView<unknown> | undefined);
|
|
12495
|
+
_cdRefInjectingView?: LView<unknown> | undefined, notifyErrorHandler?: boolean);
|
|
12500
12496
|
get context(): T;
|
|
12501
12497
|
/**
|
|
12502
12498
|
* @deprecated Replacing the full context object is not supported. Modify the context
|
package/package.json
CHANGED
package/rxjs-interop/index.d.ts
CHANGED