@angular/core 7.2.9 → 7.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.
Files changed (35) hide show
  1. package/bundles/core-testing.umd.js +1 -1
  2. package/bundles/core-testing.umd.min.js +1 -1
  3. package/bundles/core-testing.umd.min.js.map +1 -1
  4. package/bundles/core.umd.js +4 -3
  5. package/bundles/core.umd.js.map +1 -1
  6. package/bundles/core.umd.min.js +2 -2
  7. package/bundles/core.umd.min.js.map +1 -1
  8. package/core.metadata.json +1 -1
  9. package/esm2015/src/change_detection/constants.js +2 -1
  10. package/esm2015/src/di/injector_compatibility.js +1 -1
  11. package/esm2015/src/metadata/directives.js +1 -1
  12. package/esm2015/src/metadata/ng_module.js +1 -1
  13. package/esm2015/src/render3/interfaces/renderer.js +2 -2
  14. package/esm2015/src/sanitization/url_sanitizer.js +2 -2
  15. package/esm2015/src/version.js +1 -1
  16. package/esm5/src/change_detection/constants.js +2 -1
  17. package/esm5/src/di/injector_compatibility.js +1 -1
  18. package/esm5/src/metadata/directives.js +1 -1
  19. package/esm5/src/metadata/ng_module.js +1 -1
  20. package/esm5/src/render3/interfaces/renderer.js +1 -1
  21. package/esm5/src/sanitization/url_sanitizer.js +2 -2
  22. package/esm5/src/version.js +1 -1
  23. package/fesm2015/core.js +5 -4
  24. package/fesm2015/core.js.map +1 -1
  25. package/fesm2015/testing.js +1 -1
  26. package/fesm5/core.js +4 -3
  27. package/fesm5/core.js.map +1 -1
  28. package/fesm5/testing.js +1 -1
  29. package/package.json +1 -1
  30. package/src/change_detection/constants.d.ts +1 -0
  31. package/src/di/injector_compatibility.d.ts +13 -7
  32. package/src/metadata/directives.d.ts +2 -2
  33. package/src/metadata/ng_module.d.ts +1 -1
  34. package/src/render3/interfaces/renderer.d.ts +1 -1
  35. package/testing.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.9
2
+ * @license Angular v7.2.13
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -539,6 +539,7 @@
539
539
  * Use the `CheckOnce` strategy, meaning that automatic change detection is deactivated
540
540
  * until reactivated by setting the strategy to `Default` (`CheckAlways`).
541
541
  * Change detection can still be explicitly invoked.
542
+ * This strategy applies to all child directives and cannot be overridden.
542
543
  */
543
544
  ChangeDetectionStrategy[ChangeDetectionStrategy["OnPush"] = 0] = "OnPush";
544
545
  /**
@@ -10788,7 +10789,7 @@
10788
10789
  /**
10789
10790
  * @publicApi
10790
10791
  */
10791
- var VERSION = new Version('7.2.9');
10792
+ var VERSION = new Version('7.2.13');
10792
10793
 
10793
10794
  /**
10794
10795
  * @license
@@ -11224,7 +11225,7 @@
11224
11225
  * execution if used in URL context within a HTML document. Specifically, this
11225
11226
  * regular expression matches if (comment from here on and regex copied from
11226
11227
  * Soy's EscapingConventions):
11227
- * (1) Either a protocol in a whitelist (http, https, mailto or ftp).
11228
+ * (1) Either an allowed protocol (http, https, mailto or ftp).
11228
11229
  * (2) or no protocol. A protocol must be followed by a colon. The below
11229
11230
  * allows that by allowing colons only after one of the characters [/?#].
11230
11231
  * A colon after a hash (#) must be in the fragment.