@angular/platform-browser 15.1.0-next.3 → 15.1.0-rc.0
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/index.d.ts +1 -1
- package/esm2020/animations/src/animation_builder.mjs +3 -3
- package/esm2020/animations/src/animation_renderer.mjs +3 -3
- package/esm2020/animations/src/module.mjs +8 -8
- package/esm2020/animations/src/providers.mjs +3 -3
- package/esm2020/src/browser/meta.mjs +3 -3
- package/esm2020/src/browser/title.mjs +3 -3
- package/esm2020/src/browser/transfer_state.mjs +7 -7
- package/esm2020/src/browser/xhr.mjs +3 -3
- package/esm2020/src/browser.mjs +4 -4
- package/esm2020/src/dom/dom_renderer.mjs +3 -3
- package/esm2020/src/dom/events/dom_events.mjs +3 -3
- package/esm2020/src/dom/events/event_manager.mjs +3 -3
- package/esm2020/src/dom/events/hammer_gestures.mjs +10 -10
- package/esm2020/src/dom/events/key_events.mjs +3 -3
- package/esm2020/src/dom/shared_styles_host.mjs +6 -6
- package/esm2020/src/security/dom_sanitization_service.mjs +6 -6
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/browser.mjs +4 -4
- package/fesm2015/animations.mjs +25 -64
- package/fesm2015/animations.mjs.map +1 -1
- package/fesm2015/platform-browser.mjs +63 -229
- package/fesm2015/platform-browser.mjs.map +1 -1
- package/fesm2015/testing.mjs +10 -38
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/animations.mjs +25 -64
- package/fesm2020/animations.mjs.map +1 -1
- package/fesm2020/platform-browser.mjs +63 -229
- package/fesm2020/platform-browser.mjs.map +1 -1
- package/fesm2020/testing.mjs +10 -38
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +4 -4
- package/testing/index.d.ts +1 -1
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v15.1.0-
|
2
|
+
* @license Angular v15.1.0-rc.0
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -9,13 +9,6 @@ export { ɵgetDOM } from '@angular/common';
|
|
9
9
|
import * as i0 from '@angular/core';
|
10
10
|
import { InjectionToken, ApplicationInitStatus, APP_INITIALIZER, Injector, ɵglobal, Injectable, Inject, ViewEncapsulation, APP_ID, RendererStyleFlags2, ɵinternalCreateApplication, ErrorHandler, ɵsetDocument, PLATFORM_ID, PLATFORM_INITIALIZER, createPlatformFactory, platformCore, ɵTESTABILITY_GETTER, ɵTESTABILITY, Testability, NgZone, TestabilityRegistry, ɵINJECTOR_SCOPE, RendererFactory2, ApplicationModule, NgModule, Optional, SkipSelf, ɵɵinject, ApplicationRef, inject, ɵConsole, forwardRef, ɵXSS_SECURITY_URL, SecurityContext, ɵallowSanitizationBypassAndThrow, ɵunwrapSafeValue, ɵ_sanitizeUrl, ɵ_sanitizeHtml, ɵbypassSanitizationTrustHtml, ɵbypassSanitizationTrustStyle, ɵbypassSanitizationTrustScript, ɵbypassSanitizationTrustUrl, ɵbypassSanitizationTrustResourceUrl, Version } from '@angular/core';
|
11
11
|
|
12
|
-
/**
|
13
|
-
* @license
|
14
|
-
* Copyright Google LLC All Rights Reserved.
|
15
|
-
*
|
16
|
-
* Use of this source code is governed by an MIT-style license that can be
|
17
|
-
* found in the LICENSE file at https://angular.io/license
|
18
|
-
*/
|
19
12
|
/**
|
20
13
|
* Provides DOM operations in any browser environment.
|
21
14
|
*
|
@@ -29,13 +22,6 @@ class GenericBrowserDomAdapter extends ɵDomAdapter {
|
|
29
22
|
}
|
30
23
|
}
|
31
24
|
|
32
|
-
/**
|
33
|
-
* @license
|
34
|
-
* Copyright Google LLC All Rights Reserved.
|
35
|
-
*
|
36
|
-
* Use of this source code is governed by an MIT-style license that can be
|
37
|
-
* found in the LICENSE file at https://angular.io/license
|
38
|
-
*/
|
39
25
|
/**
|
40
26
|
* A `DomAdapter` powered by full browser DOM APIs.
|
41
27
|
*
|
@@ -120,13 +106,6 @@ function relativePath(url) {
|
|
120
106
|
return pathName.charAt(0) === '/' ? pathName : `/${pathName}`;
|
121
107
|
}
|
122
108
|
|
123
|
-
/**
|
124
|
-
* @license
|
125
|
-
* Copyright Google LLC All Rights Reserved.
|
126
|
-
*
|
127
|
-
* Use of this source code is governed by an MIT-style license that can be
|
128
|
-
* found in the LICENSE file at https://angular.io/license
|
129
|
-
*/
|
130
109
|
/**
|
131
110
|
* An id that identifies a particular application being bootstrapped, that should
|
132
111
|
* match across the client/server boundary.
|
@@ -154,13 +133,6 @@ const SERVER_TRANSITION_PROVIDERS = [
|
|
154
133
|
},
|
155
134
|
];
|
156
135
|
|
157
|
-
/**
|
158
|
-
* @license
|
159
|
-
* Copyright Google LLC All Rights Reserved.
|
160
|
-
*
|
161
|
-
* Use of this source code is governed by an MIT-style license that can be
|
162
|
-
* found in the LICENSE file at https://angular.io/license
|
163
|
-
*/
|
164
136
|
class BrowserGetTestability {
|
165
137
|
addToWindow(registry) {
|
166
138
|
ɵglobal['getAngularTestability'] = (elem, findInAncestors = true) => {
|
@@ -218,19 +190,12 @@ class BrowserXhr {
|
|
218
190
|
return new XMLHttpRequest();
|
219
191
|
}
|
220
192
|
}
|
221
|
-
BrowserXhr.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
222
|
-
BrowserXhr.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
223
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
193
|
+
BrowserXhr.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserXhr, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
194
|
+
BrowserXhr.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserXhr });
|
195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserXhr, decorators: [{
|
224
196
|
type: Injectable
|
225
197
|
}] });
|
226
198
|
|
227
|
-
/**
|
228
|
-
* @license
|
229
|
-
* Copyright Google LLC All Rights Reserved.
|
230
|
-
*
|
231
|
-
* Use of this source code is governed by an MIT-style license that can be
|
232
|
-
* found in the LICENSE file at https://angular.io/license
|
233
|
-
*/
|
234
199
|
/**
|
235
200
|
* The injection token for the event-manager plug-in service.
|
236
201
|
*
|
@@ -303,9 +268,9 @@ class EventManager {
|
|
303
268
|
throw new Error(`No event manager plugin found for event ${eventName}`);
|
304
269
|
}
|
305
270
|
}
|
306
|
-
EventManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
307
|
-
EventManager.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
271
|
+
EventManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: EventManager, deps: [{ token: EVENT_MANAGER_PLUGINS }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
272
|
+
EventManager.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: EventManager });
|
273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: EventManager, decorators: [{
|
309
274
|
type: Injectable
|
310
275
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
311
276
|
type: Inject,
|
@@ -324,13 +289,6 @@ class EventManagerPlugin {
|
|
324
289
|
}
|
325
290
|
}
|
326
291
|
|
327
|
-
/**
|
328
|
-
* @license
|
329
|
-
* Copyright Google LLC All Rights Reserved.
|
330
|
-
*
|
331
|
-
* Use of this source code is governed by an MIT-style license that can be
|
332
|
-
* found in the LICENSE file at https://angular.io/license
|
333
|
-
*/
|
334
292
|
class SharedStylesHost {
|
335
293
|
constructor() {
|
336
294
|
/** @internal */
|
@@ -351,9 +309,9 @@ class SharedStylesHost {
|
|
351
309
|
return Array.from(this._stylesSet);
|
352
310
|
}
|
353
311
|
}
|
354
|
-
SharedStylesHost.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
355
|
-
SharedStylesHost.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
312
|
+
SharedStylesHost.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: SharedStylesHost, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
313
|
+
SharedStylesHost.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: SharedStylesHost });
|
314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: SharedStylesHost, decorators: [{
|
357
315
|
type: Injectable
|
358
316
|
}] });
|
359
317
|
class DomSharedStylesHost extends SharedStylesHost {
|
@@ -392,9 +350,9 @@ class DomSharedStylesHost extends SharedStylesHost {
|
|
392
350
|
this._hostNodes.forEach(styleNodes => styleNodes.forEach(removeStyle));
|
393
351
|
}
|
394
352
|
}
|
395
|
-
DomSharedStylesHost.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
396
|
-
DomSharedStylesHost.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
353
|
+
DomSharedStylesHost.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSharedStylesHost, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
354
|
+
DomSharedStylesHost.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSharedStylesHost });
|
355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSharedStylesHost, decorators: [{
|
398
356
|
type: Injectable
|
399
357
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
400
358
|
type: Inject,
|
@@ -404,13 +362,6 @@ function removeStyle(styleNode) {
|
|
404
362
|
ɵgetDOM().remove(styleNode);
|
405
363
|
}
|
406
364
|
|
407
|
-
/**
|
408
|
-
* @license
|
409
|
-
* Copyright Google LLC All Rights Reserved.
|
410
|
-
*
|
411
|
-
* Use of this source code is governed by an MIT-style license that can be
|
412
|
-
* found in the LICENSE file at https://angular.io/license
|
413
|
-
*/
|
414
365
|
const NAMESPACE_URIS = {
|
415
366
|
'svg': 'http://www.w3.org/2000/svg',
|
416
367
|
'xhtml': 'http://www.w3.org/1999/xhtml',
|
@@ -494,9 +445,9 @@ class DomRendererFactory2 {
|
|
494
445
|
begin() { }
|
495
446
|
end() { }
|
496
447
|
}
|
497
|
-
DomRendererFactory2.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
498
|
-
DomRendererFactory2.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
448
|
+
DomRendererFactory2.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomRendererFactory2, deps: [{ token: EventManager }, { token: DomSharedStylesHost }, { token: APP_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
449
|
+
DomRendererFactory2.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomRendererFactory2 });
|
450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomRendererFactory2, decorators: [{
|
500
451
|
type: Injectable
|
501
452
|
}], ctorParameters: function () { return [{ type: EventManager }, { type: DomSharedStylesHost }, { type: undefined, decorators: [{
|
502
453
|
type: Inject,
|
@@ -693,13 +644,6 @@ class ShadowDomRenderer extends DefaultDomRenderer2 {
|
|
693
644
|
}
|
694
645
|
}
|
695
646
|
|
696
|
-
/**
|
697
|
-
* @license
|
698
|
-
* Copyright Google LLC All Rights Reserved.
|
699
|
-
*
|
700
|
-
* Use of this source code is governed by an MIT-style license that can be
|
701
|
-
* found in the LICENSE file at https://angular.io/license
|
702
|
-
*/
|
703
647
|
class DomEventsPlugin extends EventManagerPlugin {
|
704
648
|
constructor(doc) {
|
705
649
|
super(doc);
|
@@ -717,22 +661,15 @@ class DomEventsPlugin extends EventManagerPlugin {
|
|
717
661
|
return target.removeEventListener(eventName, callback);
|
718
662
|
}
|
719
663
|
}
|
720
|
-
DomEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
721
|
-
DomEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
722
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
664
|
+
DomEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomEventsPlugin, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
665
|
+
DomEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomEventsPlugin });
|
666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomEventsPlugin, decorators: [{
|
723
667
|
type: Injectable
|
724
668
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
725
669
|
type: Inject,
|
726
670
|
args: [DOCUMENT]
|
727
671
|
}] }]; } });
|
728
672
|
|
729
|
-
/**
|
730
|
-
* @license
|
731
|
-
* Copyright Google LLC All Rights Reserved.
|
732
|
-
*
|
733
|
-
* Use of this source code is governed by an MIT-style license that can be
|
734
|
-
* found in the LICENSE file at https://angular.io/license
|
735
|
-
*/
|
736
673
|
/**
|
737
674
|
* Defines supported modifiers for key events.
|
738
675
|
*/
|
@@ -903,22 +840,15 @@ class KeyEventsPlugin extends EventManagerPlugin {
|
|
903
840
|
}
|
904
841
|
}
|
905
842
|
}
|
906
|
-
KeyEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
907
|
-
KeyEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
908
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
843
|
+
KeyEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: KeyEventsPlugin, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
844
|
+
KeyEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: KeyEventsPlugin });
|
845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: KeyEventsPlugin, decorators: [{
|
909
846
|
type: Injectable
|
910
847
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
911
848
|
type: Inject,
|
912
849
|
args: [DOCUMENT]
|
913
850
|
}] }]; } });
|
914
851
|
|
915
|
-
/**
|
916
|
-
* @license
|
917
|
-
* Copyright Google LLC All Rights Reserved.
|
918
|
-
*
|
919
|
-
* Use of this source code is governed by an MIT-style license that can be
|
920
|
-
* found in the LICENSE file at https://angular.io/license
|
921
|
-
*/
|
922
852
|
const NG_DEV_MODE = typeof ngDevMode === 'undefined' || !!ngDevMode;
|
923
853
|
/**
|
924
854
|
* Bootstraps an instance of an Angular application and renders a standalone component as the
|
@@ -1124,13 +1054,13 @@ class BrowserModule {
|
|
1124
1054
|
};
|
1125
1055
|
}
|
1126
1056
|
}
|
1127
|
-
BrowserModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1128
|
-
BrowserModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0-
|
1129
|
-
BrowserModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0-
|
1057
|
+
BrowserModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserModule, deps: [{ token: BROWSER_MODULE_PROVIDERS_MARKER, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
1058
|
+
BrowserModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserModule, exports: [CommonModule, ApplicationModule] });
|
1059
|
+
BrowserModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserModule, providers: [
|
1130
1060
|
...BROWSER_MODULE_PROVIDERS,
|
1131
1061
|
...TESTABILITY_PROVIDERS
|
1132
1062
|
], imports: [CommonModule, ApplicationModule] });
|
1133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1063
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserModule, decorators: [{
|
1134
1064
|
type: NgModule,
|
1135
1065
|
args: [{
|
1136
1066
|
providers: [
|
@@ -1148,13 +1078,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.3",
|
|
1148
1078
|
args: [BROWSER_MODULE_PROVIDERS_MARKER]
|
1149
1079
|
}] }]; } });
|
1150
1080
|
|
1151
|
-
/**
|
1152
|
-
* @license
|
1153
|
-
* Copyright Google LLC All Rights Reserved.
|
1154
|
-
*
|
1155
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1156
|
-
* found in the LICENSE file at https://angular.io/license
|
1157
|
-
*/
|
1158
1081
|
/**
|
1159
1082
|
* Factory to create a `Meta` service instance for the current DOM document.
|
1160
1083
|
*/
|
@@ -1311,9 +1234,9 @@ class Meta {
|
|
1311
1234
|
return META_KEYS_MAP[prop] || prop;
|
1312
1235
|
}
|
1313
1236
|
}
|
1314
|
-
Meta.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1315
|
-
Meta.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
1316
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1237
|
+
Meta.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: Meta, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
1238
|
+
Meta.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: Meta, providedIn: 'root', useFactory: createMeta, deps: [] });
|
1239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: Meta, decorators: [{
|
1317
1240
|
type: Injectable,
|
1318
1241
|
args: [{ providedIn: 'root', useFactory: createMeta, deps: [] }]
|
1319
1242
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -1327,13 +1250,6 @@ const META_KEYS_MAP = {
|
|
1327
1250
|
httpEquiv: 'http-equiv'
|
1328
1251
|
};
|
1329
1252
|
|
1330
|
-
/**
|
1331
|
-
* @license
|
1332
|
-
* Copyright Google LLC All Rights Reserved.
|
1333
|
-
*
|
1334
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1335
|
-
* found in the LICENSE file at https://angular.io/license
|
1336
|
-
*/
|
1337
1253
|
/**
|
1338
1254
|
* Factory to create Title service.
|
1339
1255
|
*/
|
@@ -1368,9 +1284,9 @@ class Title {
|
|
1368
1284
|
this._doc.title = newTitle || '';
|
1369
1285
|
}
|
1370
1286
|
}
|
1371
|
-
Title.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1372
|
-
Title.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
1373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1287
|
+
Title.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: Title, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
1288
|
+
Title.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: Title, providedIn: 'root', useFactory: createTitle, deps: [] });
|
1289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: Title, decorators: [{
|
1374
1290
|
type: Injectable,
|
1375
1291
|
args: [{ providedIn: 'root', useFactory: createTitle, deps: [] }]
|
1376
1292
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -1378,13 +1294,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.3",
|
|
1378
1294
|
args: [DOCUMENT]
|
1379
1295
|
}] }]; } });
|
1380
1296
|
|
1381
|
-
/**
|
1382
|
-
* @license
|
1383
|
-
* Copyright Google LLC All Rights Reserved.
|
1384
|
-
*
|
1385
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1386
|
-
* found in the LICENSE file at https://angular.io/license
|
1387
|
-
*/
|
1388
1297
|
const CAMEL_CASE_REGEXP = /([A-Z])/g;
|
1389
1298
|
const DASH_CASE_REGEXP = /-([a-z])/g;
|
1390
1299
|
function camelCaseToDashCase(input) {
|
@@ -1411,22 +1320,8 @@ function exportNgVar(name, value) {
|
|
1411
1320
|
}
|
1412
1321
|
}
|
1413
1322
|
|
1414
|
-
/**
|
1415
|
-
* @license
|
1416
|
-
* Copyright Google LLC All Rights Reserved.
|
1417
|
-
*
|
1418
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1419
|
-
* found in the LICENSE file at https://angular.io/license
|
1420
|
-
*/
|
1421
1323
|
const win = typeof window !== 'undefined' && window || {};
|
1422
1324
|
|
1423
|
-
/**
|
1424
|
-
* @license
|
1425
|
-
* Copyright Google LLC All Rights Reserved.
|
1426
|
-
*
|
1427
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1428
|
-
* found in the LICENSE file at https://angular.io/license
|
1429
|
-
*/
|
1430
1325
|
class ChangeDetectionPerfRecord {
|
1431
1326
|
constructor(msPerTick, numTicks) {
|
1432
1327
|
this.msPerTick = msPerTick;
|
@@ -1487,13 +1382,6 @@ function performanceNow() {
|
|
1487
1382
|
new Date().getTime();
|
1488
1383
|
}
|
1489
1384
|
|
1490
|
-
/**
|
1491
|
-
* @license
|
1492
|
-
* Copyright Google LLC All Rights Reserved.
|
1493
|
-
*
|
1494
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1495
|
-
* found in the LICENSE file at https://angular.io/license
|
1496
|
-
*/
|
1497
1385
|
const PROFILER_GLOBAL_NAME = 'profiler';
|
1498
1386
|
/**
|
1499
1387
|
* Enabled Angular debug tools that are accessible via your browser's
|
@@ -1521,13 +1409,6 @@ function disableDebugTools() {
|
|
1521
1409
|
exportNgVar(PROFILER_GLOBAL_NAME, null);
|
1522
1410
|
}
|
1523
1411
|
|
1524
|
-
/**
|
1525
|
-
* @license
|
1526
|
-
* Copyright Google LLC All Rights Reserved.
|
1527
|
-
*
|
1528
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1529
|
-
* found in the LICENSE file at https://angular.io/license
|
1530
|
-
*/
|
1531
1412
|
function escapeHtml(text) {
|
1532
1413
|
const escapedText = {
|
1533
1414
|
'&': '&a;',
|
@@ -1639,15 +1520,15 @@ class TransferState {
|
|
1639
1520
|
return JSON.stringify(this.store);
|
1640
1521
|
}
|
1641
1522
|
}
|
1642
|
-
TransferState.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1643
|
-
TransferState.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
1523
|
+
TransferState.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: TransferState, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1524
|
+
TransferState.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: TransferState, providedIn: 'root', useFactory: () => {
|
1644
1525
|
const doc = inject(DOCUMENT);
|
1645
1526
|
const appId = inject(APP_ID);
|
1646
1527
|
const state = new TransferState();
|
1647
1528
|
state.store = retrieveTransferredState(doc, appId);
|
1648
1529
|
return state;
|
1649
1530
|
} });
|
1650
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: TransferState, decorators: [{
|
1651
1532
|
type: Injectable,
|
1652
1533
|
args: [{
|
1653
1534
|
providedIn: 'root',
|
@@ -1686,21 +1567,14 @@ function retrieveTransferredState(doc, appId) {
|
|
1686
1567
|
*/
|
1687
1568
|
class BrowserTransferStateModule {
|
1688
1569
|
}
|
1689
|
-
BrowserTransferStateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1690
|
-
BrowserTransferStateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0-
|
1691
|
-
BrowserTransferStateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0-
|
1692
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1570
|
+
BrowserTransferStateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserTransferStateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1571
|
+
BrowserTransferStateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserTransferStateModule });
|
1572
|
+
BrowserTransferStateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserTransferStateModule });
|
1573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: BrowserTransferStateModule, decorators: [{
|
1693
1574
|
type: NgModule,
|
1694
1575
|
args: [{}]
|
1695
1576
|
}] });
|
1696
1577
|
|
1697
|
-
/**
|
1698
|
-
* @license
|
1699
|
-
* Copyright Google LLC All Rights Reserved.
|
1700
|
-
*
|
1701
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1702
|
-
* found in the LICENSE file at https://angular.io/license
|
1703
|
-
*/
|
1704
1578
|
/**
|
1705
1579
|
* Predicates for use with {@link DebugElement}'s query functions.
|
1706
1580
|
*
|
@@ -1754,13 +1628,6 @@ function elementMatches(n, selector) {
|
|
1754
1628
|
return false;
|
1755
1629
|
}
|
1756
1630
|
|
1757
|
-
/**
|
1758
|
-
* @license
|
1759
|
-
* Copyright Google LLC All Rights Reserved.
|
1760
|
-
*
|
1761
|
-
* Use of this source code is governed by an MIT-style license that can be
|
1762
|
-
* found in the LICENSE file at https://angular.io/license
|
1763
|
-
*/
|
1764
1631
|
/**
|
1765
1632
|
* Supported HammerJS recognizer event names.
|
1766
1633
|
*/
|
@@ -1863,9 +1730,9 @@ class HammerGestureConfig {
|
|
1863
1730
|
return mc;
|
1864
1731
|
}
|
1865
1732
|
}
|
1866
|
-
HammerGestureConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1867
|
-
HammerGestureConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
1868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1733
|
+
HammerGestureConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerGestureConfig, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1734
|
+
HammerGestureConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerGestureConfig });
|
1735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerGestureConfig, decorators: [{
|
1869
1736
|
type: Injectable
|
1870
1737
|
}] });
|
1871
1738
|
/**
|
@@ -1961,9 +1828,9 @@ class HammerGesturesPlugin extends EventManagerPlugin {
|
|
1961
1828
|
return this._config.events.indexOf(eventName) > -1;
|
1962
1829
|
}
|
1963
1830
|
}
|
1964
|
-
HammerGesturesPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1965
|
-
HammerGesturesPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
1966
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1831
|
+
HammerGesturesPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerGesturesPlugin, deps: [{ token: DOCUMENT }, { token: HAMMER_GESTURE_CONFIG }, { token: i0.ɵConsole }, { token: HAMMER_LOADER, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
1832
|
+
HammerGesturesPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerGesturesPlugin });
|
1833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerGesturesPlugin, decorators: [{
|
1967
1834
|
type: Injectable
|
1968
1835
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
1969
1836
|
type: Inject,
|
@@ -1990,9 +1857,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.3",
|
|
1990
1857
|
*/
|
1991
1858
|
class HammerModule {
|
1992
1859
|
}
|
1993
|
-
HammerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
1994
|
-
HammerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0-
|
1995
|
-
HammerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0-
|
1860
|
+
HammerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1861
|
+
HammerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerModule });
|
1862
|
+
HammerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerModule, providers: [
|
1996
1863
|
{
|
1997
1864
|
provide: EVENT_MANAGER_PLUGINS,
|
1998
1865
|
useClass: HammerGesturesPlugin,
|
@@ -2001,7 +1868,7 @@ HammerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2001
1868
|
},
|
2002
1869
|
{ provide: HAMMER_GESTURE_CONFIG, useClass: HammerGestureConfig, deps: [] },
|
2003
1870
|
] });
|
2004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: HammerModule, decorators: [{
|
2005
1872
|
type: NgModule,
|
2006
1873
|
args: [{
|
2007
1874
|
providers: [
|
@@ -2016,13 +1883,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.3",
|
|
2016
1883
|
}]
|
2017
1884
|
}] });
|
2018
1885
|
|
2019
|
-
/**
|
2020
|
-
* @license
|
2021
|
-
* Copyright Google LLC All Rights Reserved.
|
2022
|
-
*
|
2023
|
-
* Use of this source code is governed by an MIT-style license that can be
|
2024
|
-
* found in the LICENSE file at https://angular.io/license
|
2025
|
-
*/
|
2026
1886
|
/**
|
2027
1887
|
* DomSanitizer helps preventing Cross Site Scripting Security bugs (XSS) by sanitizing
|
2028
1888
|
* values to be safe to use in the different DOM contexts.
|
@@ -2056,9 +1916,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.3",
|
|
2056
1916
|
*/
|
2057
1917
|
class DomSanitizer {
|
2058
1918
|
}
|
2059
|
-
DomSanitizer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
2060
|
-
DomSanitizer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
2061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1919
|
+
DomSanitizer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSanitizer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1920
|
+
DomSanitizer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSanitizer, providedIn: 'root', useExisting: i0.forwardRef(function () { return DomSanitizerImpl; }) });
|
1921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSanitizer, decorators: [{
|
2062
1922
|
type: Injectable,
|
2063
1923
|
args: [{ providedIn: 'root', useExisting: forwardRef(() => DomSanitizerImpl) }]
|
2064
1924
|
}] });
|
@@ -2121,9 +1981,9 @@ class DomSanitizerImpl extends DomSanitizer {
|
|
2121
1981
|
return ɵbypassSanitizationTrustResourceUrl(value);
|
2122
1982
|
}
|
2123
1983
|
}
|
2124
|
-
DomSanitizerImpl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-
|
2125
|
-
DomSanitizerImpl.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-
|
2126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-
|
1984
|
+
DomSanitizerImpl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSanitizerImpl, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
1985
|
+
DomSanitizerImpl.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSanitizerImpl, providedIn: 'root', useFactory: domSanitizerImplFactory, deps: [{ token: Injector }] });
|
1986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-rc.0", ngImport: i0, type: DomSanitizerImpl, decorators: [{
|
2127
1987
|
type: Injectable,
|
2128
1988
|
args: [{ providedIn: 'root', useFactory: domSanitizerImplFactory, deps: [Injector] }]
|
2129
1989
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -2132,49 +1992,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0-next.3",
|
|
2132
1992
|
}] }]; } });
|
2133
1993
|
|
2134
1994
|
/**
|
2135
|
-
* @
|
2136
|
-
*
|
2137
|
-
*
|
2138
|
-
* Use of this source code is governed by an MIT-style license that can be
|
2139
|
-
* found in the LICENSE file at https://angular.io/license
|
2140
|
-
*/
|
2141
|
-
|
2142
|
-
/**
|
2143
|
-
* @license
|
2144
|
-
* Copyright Google LLC All Rights Reserved.
|
2145
|
-
*
|
2146
|
-
* Use of this source code is governed by an MIT-style license that can be
|
2147
|
-
* found in the LICENSE file at https://angular.io/license
|
1995
|
+
* @module
|
1996
|
+
* @description
|
1997
|
+
* Entry point for all public APIs of the platform-browser package.
|
2148
1998
|
*/
|
2149
1999
|
/**
|
2150
2000
|
* @publicApi
|
2151
2001
|
*/
|
2152
|
-
const VERSION = new Version('15.1.0-
|
2002
|
+
const VERSION = new Version('15.1.0-rc.0');
|
2153
2003
|
|
2154
2004
|
/**
|
2155
|
-
* @
|
2156
|
-
*
|
2157
|
-
*
|
2158
|
-
* Use of this source code is governed by an MIT-style license that can be
|
2159
|
-
* found in the LICENSE file at https://angular.io/license
|
2160
|
-
*/
|
2161
|
-
|
2162
|
-
/**
|
2163
|
-
* @license
|
2164
|
-
* Copyright Google LLC All Rights Reserved.
|
2165
|
-
*
|
2166
|
-
* Use of this source code is governed by an MIT-style license that can be
|
2167
|
-
* found in the LICENSE file at https://angular.io/license
|
2005
|
+
* @module
|
2006
|
+
* @description
|
2007
|
+
* Entry point for all public APIs of this package.
|
2168
2008
|
*/
|
2169
2009
|
// This file only reexports content of the `src` folder. Keep it that way.
|
2170
2010
|
|
2171
|
-
|
2172
|
-
* @license
|
2173
|
-
* Copyright Google LLC All Rights Reserved.
|
2174
|
-
*
|
2175
|
-
* Use of this source code is governed by an MIT-style license that can be
|
2176
|
-
* found in the LICENSE file at https://angular.io/license
|
2177
|
-
*/
|
2011
|
+
// This file is not used to build this module. It is only used during editing
|
2178
2012
|
|
2179
2013
|
/**
|
2180
2014
|
* Generated bundle index. Do not edit.
|