@angular/core 7.2.10 → 7.2.14
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 +4 -3
- 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/di/injector_compatibility.js +1 -1
- package/esm2015/src/render3/interfaces/renderer.js +2 -2
- package/esm2015/src/sanitization/url_sanitizer.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/esm5/src/change_detection/constants.js +2 -1
- package/esm5/src/di/injector_compatibility.js +1 -1
- package/esm5/src/render3/interfaces/renderer.js +1 -1
- package/esm5/src/sanitization/url_sanitizer.js +2 -2
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +5 -4
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/core.js +4 -3
- 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/src/di/injector_compatibility.d.ts +13 -7
- package/src/render3/interfaces/renderer.d.ts +1 -1
- package/testing.d.ts +1 -1
package/fesm2015/testing.js
CHANGED
package/fesm5/core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v7.2.
|
|
2
|
+
* @license Angular v7.2.14
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -455,6 +455,7 @@ var ChangeDetectionStrategy;
|
|
|
455
455
|
* Use the `CheckOnce` strategy, meaning that automatic change detection is deactivated
|
|
456
456
|
* until reactivated by setting the strategy to `Default` (`CheckAlways`).
|
|
457
457
|
* Change detection can still be explicitly invoked.
|
|
458
|
+
* This strategy applies to all child directives and cannot be overridden.
|
|
458
459
|
*/
|
|
459
460
|
ChangeDetectionStrategy[ChangeDetectionStrategy["OnPush"] = 0] = "OnPush";
|
|
460
461
|
/**
|
|
@@ -10743,7 +10744,7 @@ var Version = /** @class */ (function () {
|
|
|
10743
10744
|
/**
|
|
10744
10745
|
* @publicApi
|
|
10745
10746
|
*/
|
|
10746
|
-
var VERSION = new Version('7.2.
|
|
10747
|
+
var VERSION = new Version('7.2.14');
|
|
10747
10748
|
|
|
10748
10749
|
/**
|
|
10749
10750
|
* @license
|
|
@@ -11179,7 +11180,7 @@ function isDOMParserAvailable() {
|
|
|
11179
11180
|
* execution if used in URL context within a HTML document. Specifically, this
|
|
11180
11181
|
* regular expression matches if (comment from here on and regex copied from
|
|
11181
11182
|
* Soy's EscapingConventions):
|
|
11182
|
-
* (1) Either
|
|
11183
|
+
* (1) Either an allowed protocol (http, https, mailto or ftp).
|
|
11183
11184
|
* (2) or no protocol. A protocol must be followed by a colon. The below
|
|
11184
11185
|
* allows that by allowing colons only after one of the characters [/?#].
|
|
11185
11186
|
* A colon after a hash (#) must be in the fragment.
|