@angular/core 11.0.4 → 11.0.8
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/bundles/core-testing.umd.js +1 -1
- package/bundles/core-testing.umd.min.js +1 -1
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +94 -35
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +112 -105
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +4 -4
- package/core.metadata.json +1 -1
- package/esm2015/src/application_ref.js +2 -2
- package/esm2015/src/di/injector_compatibility.js +5 -2
- package/esm2015/src/linker/view_container_ref.js +2 -2
- package/esm2015/src/render3/hooks.js +4 -4
- package/esm2015/src/render3/instructions/listener.js +4 -4
- package/esm2015/src/render3/instructions/shared.js +8 -7
- package/esm2015/src/render3/node_manipulation.js +9 -8
- package/esm2015/src/render3/view_ref.js +23 -12
- package/esm2015/src/sanitization/inert_body.js +12 -2
- package/esm2015/src/util/dom.js +36 -0
- package/esm2015/src/util/global.js +1 -1
- package/esm2015/src/util/is_dev_mode.js +7 -1
- package/esm2015/src/version.js +1 -1
- package/esm2015/src/view/services.js +4 -3
- package/fesm2015/core.js +95 -34
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v11.0.
|
|
2
|
+
* @license Angular v11.0.8
|
|
3
3
|
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1393,7 +1393,7 @@ export declare function createPlatform(injector: Injector): PlatformRef;
|
|
|
1393
1393
|
|
|
1394
1394
|
/**
|
|
1395
1395
|
* Creates a factory for a platform. Can be used to provide or override `Providers` specific to
|
|
1396
|
-
* your
|
|
1396
|
+
* your application's runtime needs, such as `PLATFORM_INITIALIZER` and `PLATFORM_ID`.
|
|
1397
1397
|
* @param parentPlatformFactory Another platform factory to modify. Allows you to compose factories
|
|
1398
1398
|
* to build up configurations that might be required by different libraries or parts of the
|
|
1399
1399
|
* application.
|
|
@@ -8511,7 +8511,7 @@ declare class ViewRef_2<T> implements EmbeddedViewRef<T>, InternalViewRef, viewE
|
|
|
8511
8511
|
*/
|
|
8512
8512
|
private _cdRefInjectingView?;
|
|
8513
8513
|
private _appRef;
|
|
8514
|
-
private
|
|
8514
|
+
private _attachedToViewContainer;
|
|
8515
8515
|
get rootNodes(): any[];
|
|
8516
8516
|
constructor(
|
|
8517
8517
|
/**
|
|
@@ -8712,7 +8712,7 @@ declare class ViewRef_2<T> implements EmbeddedViewRef<T>, InternalViewRef, viewE
|
|
|
8712
8712
|
* introduce other changes.
|
|
8713
8713
|
*/
|
|
8714
8714
|
checkNoChanges(): void;
|
|
8715
|
-
attachToViewContainerRef(
|
|
8715
|
+
attachToViewContainerRef(): void;
|
|
8716
8716
|
detachFromAppRef(): void;
|
|
8717
8717
|
attachToAppRef(appRef: ViewRefTracker): void;
|
|
8718
8718
|
}
|