@angular/core 12.2.0-rc.0 → 12.2.3
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.umd.js +7 -6
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +7 -4
- package/core.metadata.json +1 -1
- package/esm2015/src/application_module.js +5 -5
- package/esm2015/src/di/injector.js +1 -1
- package/esm2015/src/di/reflective_injector.js +1 -1
- package/esm2015/src/linker/component_factory_resolver.js +1 -1
- package/esm2015/src/metadata/di.js +1 -1
- package/esm2015/src/render3/instructions/shared.js +2 -1
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +7 -6
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +2 -2
- 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 v12.2.
|
|
2
|
+
* @license Angular v12.2.3
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1324,7 +1324,8 @@ export declare const ContentChild: ContentChildDecorator;
|
|
|
1324
1324
|
*/
|
|
1325
1325
|
export declare interface ContentChildDecorator {
|
|
1326
1326
|
/**
|
|
1327
|
-
*
|
|
1327
|
+
* @description
|
|
1328
|
+
* Property decorator that configures a content query.
|
|
1328
1329
|
*
|
|
1329
1330
|
* Use to get the first element or the directive matching the selector from the content DOM.
|
|
1330
1331
|
* If the content DOM changes, and a new child matches the selector,
|
|
@@ -1406,7 +1407,8 @@ export declare const ContentChildren: ContentChildrenDecorator;
|
|
|
1406
1407
|
*/
|
|
1407
1408
|
export declare interface ContentChildrenDecorator {
|
|
1408
1409
|
/**
|
|
1409
|
-
*
|
|
1410
|
+
* @description
|
|
1411
|
+
* Property decorator that configures a content query.
|
|
1410
1412
|
*
|
|
1411
1413
|
* Use to get the `QueryList` of elements or directives from the content DOM.
|
|
1412
1414
|
* Any time a child element is added, removed, or moved, the query list will be
|
|
@@ -8761,7 +8763,8 @@ export declare const ViewChildren: ViewChildrenDecorator;
|
|
|
8761
8763
|
*/
|
|
8762
8764
|
export declare interface ViewChildrenDecorator {
|
|
8763
8765
|
/**
|
|
8764
|
-
*
|
|
8766
|
+
* @description
|
|
8767
|
+
* Property decorator that configures a view query.
|
|
8765
8768
|
*
|
|
8766
8769
|
* Use to get the `QueryList` of elements or directives from the view DOM.
|
|
8767
8770
|
* Any time a child element is added, removed, or moved, the query list will be updated,
|