@angular/core 11.2.12 → 11.2.13
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 +37 -14
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +44 -44
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +1 -4
- package/core.metadata.json +1 -1
- package/esm2015/src/render3/i18n/i18n_parse.js +36 -9
- package/esm2015/src/render3/view_ref.js +1 -4
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +37 -13
- 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.2.
|
|
2
|
+
* @license Angular v11.2.13
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -8717,9 +8717,6 @@ declare class ViewRef_2<T> implements EmbeddedViewRef<T>, InternalViewRef, viewE
|
|
|
8717
8717
|
/**
|
|
8718
8718
|
* Marks a view and all of its ancestors dirty.
|
|
8719
8719
|
*
|
|
8720
|
-
* It also triggers change detection by calling `scheduleTick` internally, which coalesces
|
|
8721
|
-
* multiple `markForCheck` calls to into one change detection run.
|
|
8722
|
-
*
|
|
8723
8720
|
* This can be used to ensure an {@link ChangeDetectionStrategy#OnPush OnPush} component is
|
|
8724
8721
|
* checked when it needs to be re-rendered but the two normal triggers haven't marked it
|
|
8725
8722
|
* dirty (i.e. inputs haven't changed and events haven't fired in the view).
|