@angular/platform-browser 8.0.0-rc.4 → 8.0.2
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/animations/animations.d.ts +1 -1
- package/animations.d.ts +1 -1
- package/bundles/platform-browser-animations.umd.js +1 -1
- package/bundles/platform-browser-animations.umd.min.js +1 -1
- package/bundles/platform-browser-animations.umd.min.js.map +1 -1
- package/bundles/platform-browser-testing.umd.js +1 -1
- package/bundles/platform-browser-testing.umd.min.js +1 -1
- package/bundles/platform-browser-testing.umd.min.js.map +1 -1
- package/bundles/platform-browser.umd.js +6 -6
- package/bundles/platform-browser.umd.js.map +1 -1
- package/bundles/platform-browser.umd.min.js +3 -3
- package/bundles/platform-browser.umd.min.js.map +1 -1
- package/esm2015/src/browser/meta.js +4 -4
- package/esm2015/src/browser/title.js +4 -4
- package/esm2015/src/version.js +1 -1
- package/esm5/src/browser/meta.js +4 -4
- package/esm5/src/browser/title.js +4 -4
- package/esm5/src/version.js +1 -1
- package/fesm2015/animations.js +1 -1
- package/fesm2015/platform-browser.js +7 -7
- package/fesm2015/platform-browser.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/animations.js +1 -1
- package/fesm5/platform-browser.js +7 -7
- package/fesm5/platform-browser.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/package.json +3 -3
- package/platform-browser.d.ts +1 -1
- package/platform-browser.metadata.json +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/fesm2015/testing.js
CHANGED
package/fesm5/animations.js
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v8.0.
|
2
|
+
* @license Angular v8.0.2
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
6
6
|
|
7
7
|
import { __extends, __spread, __decorate, __param, __metadata, __assign } from 'tslib';
|
8
8
|
import { ɵparseCookieValue, DOCUMENT, PlatformLocation, isPlatformServer, CommonModule, ɵPLATFORM_BROWSER_ID } from '@angular/common';
|
9
|
-
import { ɵglobal, Injectable, Inject, InjectionToken, ApplicationInitStatus, APP_INITIALIZER, Injector, setTestabilityGetter, NgProbeToken, Optional, ApplicationRef, NgZone, getDebugNode, ViewEncapsulation, APP_ID, RendererStyleFlags2, PLATFORM_ID, ɵConsole, SecurityContext, ɵ_sanitizeHtml, ɵ_sanitizeStyle, ɵ_sanitizeUrl, PLATFORM_INITIALIZER, Sanitizer, createPlatformFactory, platformCore, ErrorHandler, ɵAPP_ROOT, RendererFactory2, Testability, NgModule, ApplicationModule, SkipSelf,
|
9
|
+
import { ɵglobal, Injectable, Inject, InjectionToken, ApplicationInitStatus, APP_INITIALIZER, Injector, setTestabilityGetter, NgProbeToken, Optional, ApplicationRef, NgZone, getDebugNode, ViewEncapsulation, APP_ID, RendererStyleFlags2, PLATFORM_ID, ɵConsole, SecurityContext, ɵ_sanitizeHtml, ɵ_sanitizeStyle, ɵ_sanitizeUrl, PLATFORM_INITIALIZER, Sanitizer, createPlatformFactory, platformCore, ErrorHandler, ɵAPP_ROOT, RendererFactory2, Testability, NgModule, ApplicationModule, SkipSelf, ɵɵinject, ɵɵdefineInjectable, Version } from '@angular/core';
|
10
10
|
|
11
11
|
/**
|
12
12
|
* @license
|
@@ -2042,7 +2042,7 @@ var BrowserModule = /** @class */ (function () {
|
|
2042
2042
|
* Factory to create Meta service.
|
2043
2043
|
*/
|
2044
2044
|
function createMeta() {
|
2045
|
-
return new Meta(
|
2045
|
+
return new Meta(ɵɵinject(DOCUMENT));
|
2046
2046
|
}
|
2047
2047
|
/**
|
2048
2048
|
* A service that can be used to get and add meta tags.
|
@@ -2129,7 +2129,7 @@ var Meta = /** @class */ (function () {
|
|
2129
2129
|
var _this = this;
|
2130
2130
|
return Object.keys(tag).every(function (key) { return _this._dom.getAttribute(elem, key) === tag[key]; });
|
2131
2131
|
};
|
2132
|
-
Meta.ngInjectableDef =
|
2132
|
+
Meta.ngInjectableDef = ɵɵdefineInjectable({ factory: createMeta, token: Meta, providedIn: "root" });
|
2133
2133
|
Meta = __decorate([
|
2134
2134
|
Injectable({ providedIn: 'root', useFactory: createMeta, deps: [] }),
|
2135
2135
|
__param(0, Inject(DOCUMENT)),
|
@@ -2142,7 +2142,7 @@ var Meta = /** @class */ (function () {
|
|
2142
2142
|
* Factory to create Title service.
|
2143
2143
|
*/
|
2144
2144
|
function createTitle() {
|
2145
|
-
return new Title(
|
2145
|
+
return new Title(ɵɵinject(DOCUMENT));
|
2146
2146
|
}
|
2147
2147
|
/**
|
2148
2148
|
* A service that can be used to get and set the title of a current HTML document.
|
@@ -2167,7 +2167,7 @@ var Title = /** @class */ (function () {
|
|
2167
2167
|
* @param newTitle
|
2168
2168
|
*/
|
2169
2169
|
Title.prototype.setTitle = function (newTitle) { getDOM().setTitle(this._doc, newTitle); };
|
2170
|
-
Title.ngInjectableDef =
|
2170
|
+
Title.ngInjectableDef = ɵɵdefineInjectable({ factory: createTitle, token: Title, providedIn: "root" });
|
2171
2171
|
Title = __decorate([
|
2172
2172
|
Injectable({ providedIn: 'root', useFactory: createTitle, deps: [] }),
|
2173
2173
|
__param(0, Inject(DOCUMENT)),
|
@@ -2503,7 +2503,7 @@ var By = /** @class */ (function () {
|
|
2503
2503
|
/**
|
2504
2504
|
* @publicApi
|
2505
2505
|
*/
|
2506
|
-
var VERSION = new Version('8.0.
|
2506
|
+
var VERSION = new Version('8.0.2');
|
2507
2507
|
|
2508
2508
|
/**
|
2509
2509
|
* @license
|