@angular/core 8.2.8 → 8.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.
- 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.d.ts +1 -5
- package/core.metadata.json +1 -1
- package/esm2015/core.externs.js +4 -4
- package/esm2015/src/event_emitter.js +2 -2
- package/esm2015/src/sanitization/bypass.js +2 -1
- package/esm2015/src/version.js +1 -1
- package/esm5/src/event_emitter.js +1 -1
- package/esm5/src/sanitization/bypass.js +2 -1
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +4 -3
- 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/r3_symbols.d.ts +1 -1
- package/testing/testing.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 v8.2.
|
|
2
|
+
* @license Angular v8.2.12
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -4173,6 +4173,7 @@ function bypassSanitizationTrustResourceUrl(trustedResourceUrl) {
|
|
|
4173
4173
|
return bypassSanitizationTrustString(trustedResourceUrl, "ResourceUrl" /* ResourceUrl */);
|
|
4174
4174
|
}
|
|
4175
4175
|
function bypassSanitizationTrustString(trustedString, mode) {
|
|
4176
|
+
// tslint:disable-next-line
|
|
4176
4177
|
var trusted = new String(trustedString);
|
|
4177
4178
|
trusted[BRAND] = mode;
|
|
4178
4179
|
return trusted;
|
|
@@ -18419,7 +18420,7 @@ var Version = /** @class */ (function () {
|
|
|
18419
18420
|
/**
|
|
18420
18421
|
* @publicApi
|
|
18421
18422
|
*/
|
|
18422
|
-
var VERSION = new Version('8.2.
|
|
18423
|
+
var VERSION = new Version('8.2.12');
|
|
18423
18424
|
|
|
18424
18425
|
/**
|
|
18425
18426
|
* @license
|