@angular/core 12.1.0 → 12.1.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/bundles/core-testing.umd.js +1 -1
- package/bundles/core.umd.js +2 -2
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +3 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/linker/view_container_ref.js +1 -1
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +2 -2
- 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 v12.1.
|
|
2
|
+
* @license Angular v12.1.1
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -8875,6 +8875,8 @@ export declare abstract class ViewContainerRef {
|
|
|
8875
8875
|
* Instantiates an embedded view and inserts it
|
|
8876
8876
|
* into this container.
|
|
8877
8877
|
* @param templateRef The HTML template that defines the view.
|
|
8878
|
+
* @param context The data-binding context of the embedded view, as declared
|
|
8879
|
+
* in the `<ng-template>` usage.
|
|
8878
8880
|
* @param index The 0-based index at which to insert the new view into this container.
|
|
8879
8881
|
* If not specified, appends the new view as the last entry.
|
|
8880
8882
|
*
|