@angular/core 7.2.10 → 7.2.11
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 +3 -2
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +2 -2
- package/bundles/core.umd.min.js.map +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/change_detection/constants.js +2 -1
- package/esm2015/src/version.js +1 -1
- package/esm5/src/change_detection/constants.js +2 -1
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +3 -2
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/core.js +3 -2
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/package.json +1 -1
- package/src/change_detection/constants.d.ts +1 -0
- package/testing.d.ts +1 -1
package/fesm5/testing.js
CHANGED
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ export declare enum ChangeDetectionStrategy {
|
|
|
16
16
|
* Use the `CheckOnce` strategy, meaning that automatic change detection is deactivated
|
|
17
17
|
* until reactivated by setting the strategy to `Default` (`CheckAlways`).
|
|
18
18
|
* Change detection can still be explicitly invoked.
|
|
19
|
+
* This strategy applies to all child directives and cannot be overridden.
|
|
19
20
|
*/
|
|
20
21
|
OnPush = 0,
|
|
21
22
|
/**
|
package/testing.d.ts
CHANGED