@angular/core 7.2.11 → 7.2.12

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.11
2
+ * @license Angular v7.2.12
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/fesm5/core.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.11
2
+ * @license Angular v7.2.12
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -10744,7 +10744,7 @@ var Version = /** @class */ (function () {
10744
10744
  /**
10745
10745
  * @publicApi
10746
10746
  */
10747
- var VERSION = new Version('7.2.11');
10747
+ var VERSION = new Version('7.2.12');
10748
10748
 
10749
10749
  /**
10750
10750
  * @license
@@ -11180,7 +11180,7 @@ function isDOMParserAvailable() {
11180
11180
  * execution if used in URL context within a HTML document. Specifically, this
11181
11181
  * regular expression matches if (comment from here on and regex copied from
11182
11182
  * Soy's EscapingConventions):
11183
- * (1) Either a protocol in a whitelist (http, https, mailto or ftp).
11183
+ * (1) Either an allowed protocol (http, https, mailto or ftp).
11184
11184
  * (2) or no protocol. A protocol must be followed by a colon. The below
11185
11185
  * allows that by allowing colons only after one of the characters [/?#].
11186
11186
  * A colon after a hash (#) must be in the fragment.