@angular/platform-browser 16.0.0-next.2 → 16.0.0-next.4
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_module.mjs +4 -4
- package/esm2020/src/browser/xhr.mjs +3 -3
- package/esm2020/src/browser.mjs +12 -25
- package/esm2020/src/dom/dom_renderer.mjs +20 -10
- 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 +99 -59
- package/esm2020/src/private_export.mjs +2 -3
- package/esm2020/src/security/dom_sanitization_service.mjs +6 -6
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/browser.mjs +8 -8
- package/fesm2015/animations.mjs +18 -18
- package/fesm2015/platform-browser.mjs +168 -154
- package/fesm2015/platform-browser.mjs.map +1 -1
- package/fesm2015/testing.mjs +8 -8
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/animations.mjs +18 -18
- package/fesm2020/platform-browser.mjs +165 -153
- package/fesm2020/platform-browser.mjs.map +1 -1
- package/fesm2020/testing.mjs +8 -8
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +26 -31
- package/package.json +4 -4
- package/testing/index.d.ts +1 -1
- package/esm2020/src/browser/server-transition.mjs +0 -36
@@ -1,13 +1,13 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v16.0.0-next.
|
2
|
+
* @license Angular v16.0.0-next.4
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
6
6
|
|
7
7
|
import * as i0 from '@angular/core';
|
8
|
-
import {
|
8
|
+
import { ɵglobal, Injectable, InjectionToken, Inject, APP_ID, CSP_NONCE, PLATFORM_ID, Optional, ViewEncapsulation, RendererStyleFlags2, ɵinternalCreateApplication, ErrorHandler, ɵsetDocument, PLATFORM_INITIALIZER, createPlatformFactory, platformCore, ɵTESTABILITY_GETTER, ɵTESTABILITY, Testability, NgZone, TestabilityRegistry, ɵINJECTOR_SCOPE, RendererFactory2, ApplicationModule, NgModule, SkipSelf, ɵɵinject, ApplicationRef, ɵConsole, forwardRef, ɵXSS_SECURITY_URL, SecurityContext, ɵallowSanitizationBypassAndThrow, ɵunwrapSafeValue, ɵ_sanitizeUrl, ɵ_sanitizeHtml, ɵbypassSanitizationTrustHtml, ɵbypassSanitizationTrustStyle, ɵbypassSanitizationTrustScript, ɵbypassSanitizationTrustUrl, ɵbypassSanitizationTrustResourceUrl, Injector, Version } from '@angular/core';
|
9
9
|
export { ɵTransferState as TransferState, ɵmakeStateKey as makeStateKey } from '@angular/core';
|
10
|
-
import { ɵDomAdapter, ɵsetRootDomAdapter, ɵparseCookieValue, ɵgetDOM, DOCUMENT, ɵPLATFORM_BROWSER_ID, XhrFactory, CommonModule } from '@angular/common';
|
10
|
+
import { ɵDomAdapter, ɵsetRootDomAdapter, ɵparseCookieValue, ɵgetDOM, isPlatformServer, DOCUMENT, ɵPLATFORM_BROWSER_ID, XhrFactory, CommonModule } from '@angular/common';
|
11
11
|
export { ɵgetDOM } from '@angular/common';
|
12
12
|
|
13
13
|
/**
|
@@ -107,33 +107,6 @@ function relativePath(url) {
|
|
107
107
|
return pathName.charAt(0) === '/' ? pathName : `/${pathName}`;
|
108
108
|
}
|
109
109
|
|
110
|
-
/**
|
111
|
-
* An id that identifies a particular application being bootstrapped, that should
|
112
|
-
* match across the client/server boundary.
|
113
|
-
*/
|
114
|
-
const TRANSITION_ID = new InjectionToken('TRANSITION_ID');
|
115
|
-
function appInitializerFactory(transitionId, document, injector) {
|
116
|
-
return () => {
|
117
|
-
// Wait for all application initializers to be completed before removing the styles set by
|
118
|
-
// the server.
|
119
|
-
injector.get(ApplicationInitStatus).donePromise.then(() => {
|
120
|
-
const dom = ɵgetDOM();
|
121
|
-
const styles = document.querySelectorAll(`style[ng-transition="${transitionId}"]`);
|
122
|
-
for (let i = 0; i < styles.length; i++) {
|
123
|
-
dom.remove(styles[i]);
|
124
|
-
}
|
125
|
-
});
|
126
|
-
};
|
127
|
-
}
|
128
|
-
const SERVER_TRANSITION_PROVIDERS = [
|
129
|
-
{
|
130
|
-
provide: APP_INITIALIZER,
|
131
|
-
useFactory: appInitializerFactory,
|
132
|
-
deps: [TRANSITION_ID, DOCUMENT, Injector],
|
133
|
-
multi: true
|
134
|
-
},
|
135
|
-
];
|
136
|
-
|
137
110
|
class BrowserGetTestability {
|
138
111
|
addToWindow(registry) {
|
139
112
|
ɵglobal['getAngularTestability'] = (elem, findInAncestors = true) => {
|
@@ -191,9 +164,9 @@ class BrowserXhr {
|
|
191
164
|
return new XMLHttpRequest();
|
192
165
|
}
|
193
166
|
}
|
194
|
-
BrowserXhr.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
195
|
-
BrowserXhr.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
167
|
+
BrowserXhr.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserXhr, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
168
|
+
BrowserXhr.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserXhr });
|
169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserXhr, decorators: [{
|
197
170
|
type: Injectable
|
198
171
|
}] });
|
199
172
|
|
@@ -271,9 +244,9 @@ class EventManager {
|
|
271
244
|
throw new Error(`No event manager plugin found for event ${eventName}`);
|
272
245
|
}
|
273
246
|
}
|
274
|
-
EventManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
275
|
-
EventManager.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
276
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
247
|
+
EventManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: EventManager, deps: [{ token: EVENT_MANAGER_PLUGINS }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
248
|
+
EventManager.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: EventManager });
|
249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: EventManager, decorators: [{
|
277
250
|
type: Injectable
|
278
251
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
279
252
|
type: Inject,
|
@@ -292,9 +265,20 @@ class EventManagerPlugin {
|
|
292
265
|
}
|
293
266
|
}
|
294
267
|
|
268
|
+
/** The style elements attribute name used to set value of `APP_ID` token. */
|
269
|
+
const APP_ID_ATTRIBUTE_NAME = 'ng-app-id';
|
295
270
|
class SharedStylesHost {
|
296
|
-
constructor() {
|
297
|
-
this.
|
271
|
+
constructor(doc, appId, nonce, platformId = {}) {
|
272
|
+
this.doc = doc;
|
273
|
+
this.appId = appId;
|
274
|
+
this.nonce = nonce;
|
275
|
+
this.platformId = platformId;
|
276
|
+
// Maps all registered host nodes to a list of style nodes that have been added to the host node.
|
277
|
+
this.styleRef = new Map();
|
278
|
+
this.hostNodes = new Set();
|
279
|
+
this.styleNodesInDOM = this.collectServerRenderedStyles();
|
280
|
+
this.platformIsServer = isPlatformServer(platformId);
|
281
|
+
this.resetHostNodes();
|
298
282
|
}
|
299
283
|
addStyles(styles) {
|
300
284
|
for (const style of styles) {
|
@@ -307,48 +291,33 @@ class SharedStylesHost {
|
|
307
291
|
removeStyles(styles) {
|
308
292
|
for (const style of styles) {
|
309
293
|
const usageCount = this.changeUsageCount(style, -1);
|
310
|
-
if (usageCount
|
294
|
+
if (usageCount <= 0) {
|
311
295
|
this.onStyleRemoved(style);
|
312
296
|
}
|
313
297
|
}
|
314
298
|
}
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
changeUsageCount(style, delta) {
|
321
|
-
const map = this.usageCount;
|
322
|
-
let usage = map.get(style) ?? 0;
|
323
|
-
usage += delta;
|
324
|
-
if (usage > 0) {
|
325
|
-
map.set(style, usage);
|
299
|
+
ngOnDestroy() {
|
300
|
+
const styleNodesInDOM = this.styleNodesInDOM;
|
301
|
+
if (styleNodesInDOM) {
|
302
|
+
styleNodesInDOM.forEach((node) => node.remove());
|
303
|
+
styleNodesInDOM.clear();
|
326
304
|
}
|
327
|
-
|
328
|
-
|
305
|
+
for (const style of this.getAllStyles()) {
|
306
|
+
this.onStyleRemoved(style);
|
329
307
|
}
|
330
|
-
|
308
|
+
this.resetHostNodes();
|
331
309
|
}
|
332
|
-
|
310
|
+
addHost(hostNode) {
|
311
|
+
this.hostNodes.add(hostNode);
|
333
312
|
for (const style of this.getAllStyles()) {
|
334
|
-
this.
|
313
|
+
this.addStyleToHost(hostNode, style);
|
335
314
|
}
|
336
|
-
this.usageCount.clear();
|
337
315
|
}
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
}] });
|
344
|
-
class DomSharedStylesHost extends SharedStylesHost {
|
345
|
-
constructor(doc) {
|
346
|
-
super();
|
347
|
-
this.doc = doc;
|
348
|
-
// Maps all registered host nodes to a list of style nodes that have been added to the host node.
|
349
|
-
this.styleRef = new Map();
|
350
|
-
this.hostNodes = new Set();
|
351
|
-
this.resetHostNodes();
|
316
|
+
removeHost(hostNode) {
|
317
|
+
this.hostNodes.delete(hostNode);
|
318
|
+
}
|
319
|
+
getAllStyles() {
|
320
|
+
return this.styleRef.keys();
|
352
321
|
}
|
353
322
|
onStyleAdded(style) {
|
354
323
|
for (const host of this.hostNodes) {
|
@@ -357,34 +326,68 @@ class DomSharedStylesHost extends SharedStylesHost {
|
|
357
326
|
}
|
358
327
|
onStyleRemoved(style) {
|
359
328
|
const styleRef = this.styleRef;
|
360
|
-
|
361
|
-
styleElements?.forEach(e => e.remove());
|
329
|
+
styleRef.get(style)?.elements?.forEach((node) => node.remove());
|
362
330
|
styleRef.delete(style);
|
363
331
|
}
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
332
|
+
collectServerRenderedStyles() {
|
333
|
+
const styles = this.doc.head?.querySelectorAll(`style[${APP_ID_ATTRIBUTE_NAME}="${this.appId}"]`);
|
334
|
+
if (styles?.length) {
|
335
|
+
const styleMap = new Map();
|
336
|
+
styles.forEach((style) => {
|
337
|
+
if (style.textContent != null) {
|
338
|
+
styleMap.set(style.textContent, style);
|
339
|
+
}
|
340
|
+
});
|
341
|
+
return styleMap;
|
373
342
|
}
|
343
|
+
return null;
|
374
344
|
}
|
375
|
-
|
376
|
-
this.
|
345
|
+
changeUsageCount(style, delta) {
|
346
|
+
const map = this.styleRef;
|
347
|
+
if (map.has(style)) {
|
348
|
+
const styleRefValue = map.get(style);
|
349
|
+
styleRefValue.usage += delta;
|
350
|
+
return styleRefValue.usage;
|
351
|
+
}
|
352
|
+
map.set(style, { usage: delta, elements: [] });
|
353
|
+
return delta;
|
354
|
+
}
|
355
|
+
getStyleElement(host, style) {
|
356
|
+
const styleNodesInDOM = this.styleNodesInDOM;
|
357
|
+
const styleEl = styleNodesInDOM?.get(style);
|
358
|
+
if (styleEl?.parentNode === host) {
|
359
|
+
// `styleNodesInDOM` cannot be undefined due to the above `styleNodesInDOM?.get`.
|
360
|
+
styleNodesInDOM.delete(style);
|
361
|
+
styleEl.removeAttribute(APP_ID_ATTRIBUTE_NAME);
|
362
|
+
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
363
|
+
// This attribute is solely used for debugging purposes.
|
364
|
+
styleEl.setAttribute('ng-style-reused', '');
|
365
|
+
}
|
366
|
+
return styleEl;
|
367
|
+
}
|
368
|
+
else {
|
369
|
+
const styleEl = this.doc.createElement('style');
|
370
|
+
if (this.nonce) {
|
371
|
+
// Uses a keyed write to avoid issues with property minification.
|
372
|
+
styleEl['nonce'] = this.nonce;
|
373
|
+
}
|
374
|
+
styleEl.textContent = style;
|
375
|
+
if (this.platformIsServer) {
|
376
|
+
styleEl.setAttribute(APP_ID_ATTRIBUTE_NAME, this.appId);
|
377
|
+
}
|
378
|
+
return styleEl;
|
379
|
+
}
|
377
380
|
}
|
378
381
|
addStyleToHost(host, style) {
|
379
|
-
const styleEl = this.
|
380
|
-
styleEl.textContent = style;
|
382
|
+
const styleEl = this.getStyleElement(host, style);
|
381
383
|
host.appendChild(styleEl);
|
382
|
-
const
|
384
|
+
const styleRef = this.styleRef;
|
385
|
+
const styleElRef = styleRef.get(style)?.elements;
|
383
386
|
if (styleElRef) {
|
384
387
|
styleElRef.push(styleEl);
|
385
388
|
}
|
386
389
|
else {
|
387
|
-
|
390
|
+
styleRef.set(style, { elements: [styleEl], usage: 1 });
|
388
391
|
}
|
389
392
|
}
|
390
393
|
resetHostNodes() {
|
@@ -394,13 +397,24 @@ class DomSharedStylesHost extends SharedStylesHost {
|
|
394
397
|
hostNodes.add(this.doc.head);
|
395
398
|
}
|
396
399
|
}
|
397
|
-
|
398
|
-
|
399
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
400
|
+
SharedStylesHost.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: SharedStylesHost, deps: [{ token: DOCUMENT }, { token: APP_ID }, { token: CSP_NONCE, optional: true }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
401
|
+
SharedStylesHost.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: SharedStylesHost });
|
402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: SharedStylesHost, decorators: [{
|
400
403
|
type: Injectable
|
401
|
-
}], ctorParameters: function () { return [{ type:
|
404
|
+
}], ctorParameters: function () { return [{ type: Document, decorators: [{
|
402
405
|
type: Inject,
|
403
406
|
args: [DOCUMENT]
|
407
|
+
}] }, { type: undefined, decorators: [{
|
408
|
+
type: Inject,
|
409
|
+
args: [APP_ID]
|
410
|
+
}] }, { type: undefined, decorators: [{
|
411
|
+
type: Inject,
|
412
|
+
args: [CSP_NONCE]
|
413
|
+
}, {
|
414
|
+
type: Optional
|
415
|
+
}] }, { type: undefined, decorators: [{
|
416
|
+
type: Inject,
|
417
|
+
args: [PLATFORM_ID]
|
404
418
|
}] }]; } });
|
405
419
|
|
406
420
|
const NAMESPACE_URIS = {
|
@@ -463,11 +477,12 @@ function decoratePreventDefault(eventHandler) {
|
|
463
477
|
};
|
464
478
|
}
|
465
479
|
class DomRendererFactory2 {
|
466
|
-
constructor(eventManager, sharedStylesHost, appId, removeStylesOnCompDestory) {
|
480
|
+
constructor(eventManager, sharedStylesHost, appId, removeStylesOnCompDestory, nonce) {
|
467
481
|
this.eventManager = eventManager;
|
468
482
|
this.sharedStylesHost = sharedStylesHost;
|
469
483
|
this.appId = appId;
|
470
484
|
this.removeStylesOnCompDestory = removeStylesOnCompDestory;
|
485
|
+
this.nonce = nonce;
|
471
486
|
this.rendererByCompId = new Map();
|
472
487
|
this.defaultRenderer = new DefaultDomRenderer2(eventManager);
|
473
488
|
}
|
@@ -498,7 +513,7 @@ class DomRendererFactory2 {
|
|
498
513
|
renderer = new EmulatedEncapsulationDomRenderer2(eventManager, sharedStylesHost, type, this.appId, removeStylesOnCompDestory);
|
499
514
|
break;
|
500
515
|
case ViewEncapsulation.ShadowDom:
|
501
|
-
return new ShadowDomRenderer(eventManager, sharedStylesHost, element, type);
|
516
|
+
return new ShadowDomRenderer(eventManager, sharedStylesHost, element, type, this.nonce);
|
502
517
|
default:
|
503
518
|
renderer = new NoneEncapsulationDomRenderer(eventManager, sharedStylesHost, type, removeStylesOnCompDestory);
|
504
519
|
break;
|
@@ -514,16 +529,21 @@ class DomRendererFactory2 {
|
|
514
529
|
begin() { }
|
515
530
|
end() { }
|
516
531
|
}
|
517
|
-
DomRendererFactory2.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
518
|
-
DomRendererFactory2.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
532
|
+
DomRendererFactory2.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomRendererFactory2, deps: [{ token: EventManager }, { token: SharedStylesHost }, { token: APP_ID }, { token: REMOVE_STYLES_ON_COMPONENT_DESTROY }, { token: CSP_NONCE, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
533
|
+
DomRendererFactory2.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomRendererFactory2 });
|
534
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomRendererFactory2, decorators: [{
|
520
535
|
type: Injectable
|
521
|
-
}], ctorParameters: function () { return [{ type: EventManager }, { type:
|
536
|
+
}], ctorParameters: function () { return [{ type: EventManager }, { type: SharedStylesHost }, { type: undefined, decorators: [{
|
522
537
|
type: Inject,
|
523
538
|
args: [APP_ID]
|
524
539
|
}] }, { type: undefined, decorators: [{
|
525
540
|
type: Inject,
|
526
541
|
args: [REMOVE_STYLES_ON_COMPONENT_DESTROY]
|
542
|
+
}] }, { type: undefined, decorators: [{
|
543
|
+
type: Inject,
|
544
|
+
args: [CSP_NONCE]
|
545
|
+
}, {
|
546
|
+
type: Optional
|
527
547
|
}] }]; } });
|
528
548
|
class DefaultDomRenderer2 {
|
529
549
|
constructor(eventManager) {
|
@@ -665,7 +685,7 @@ function isTemplateNode(node) {
|
|
665
685
|
return node.tagName === 'TEMPLATE' && node.content !== undefined;
|
666
686
|
}
|
667
687
|
class ShadowDomRenderer extends DefaultDomRenderer2 {
|
668
|
-
constructor(eventManager, sharedStylesHost, hostEl, component) {
|
688
|
+
constructor(eventManager, sharedStylesHost, hostEl, component, nonce) {
|
669
689
|
super(eventManager);
|
670
690
|
this.sharedStylesHost = sharedStylesHost;
|
671
691
|
this.hostEl = hostEl;
|
@@ -674,6 +694,10 @@ class ShadowDomRenderer extends DefaultDomRenderer2 {
|
|
674
694
|
const styles = shimStylesContent(component.id, component.styles);
|
675
695
|
for (const style of styles) {
|
676
696
|
const styleEl = document.createElement('style');
|
697
|
+
if (nonce) {
|
698
|
+
// Uses a keyed write to avoid issues with property minification.
|
699
|
+
styleEl['nonce'] = nonce;
|
700
|
+
}
|
677
701
|
styleEl.textContent = style;
|
678
702
|
this.shadowRoot.appendChild(styleEl);
|
679
703
|
}
|
@@ -755,9 +779,9 @@ class DomEventsPlugin extends EventManagerPlugin {
|
|
755
779
|
return target.removeEventListener(eventName, callback);
|
756
780
|
}
|
757
781
|
}
|
758
|
-
DomEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
759
|
-
DomEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
760
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
782
|
+
DomEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomEventsPlugin, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
783
|
+
DomEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomEventsPlugin });
|
784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomEventsPlugin, decorators: [{
|
761
785
|
type: Injectable
|
762
786
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
763
787
|
type: Inject,
|
@@ -934,9 +958,9 @@ class KeyEventsPlugin extends EventManagerPlugin {
|
|
934
958
|
}
|
935
959
|
}
|
936
960
|
}
|
937
|
-
KeyEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
938
|
-
KeyEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
961
|
+
KeyEventsPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: KeyEventsPlugin, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
962
|
+
KeyEventsPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: KeyEventsPlugin });
|
963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: KeyEventsPlugin, decorators: [{
|
940
964
|
type: Injectable
|
941
965
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
942
966
|
type: Inject,
|
@@ -1102,15 +1126,9 @@ const BROWSER_MODULE_PROVIDERS = [
|
|
1102
1126
|
multi: true,
|
1103
1127
|
deps: [DOCUMENT, NgZone, PLATFORM_ID]
|
1104
1128
|
},
|
1105
|
-
{ provide: EVENT_MANAGER_PLUGINS, useClass: KeyEventsPlugin, multi: true, deps: [DOCUMENT] },
|
1106
|
-
|
1107
|
-
useClass: DomRendererFactory2,
|
1108
|
-
deps: [EventManager, DomSharedStylesHost, APP_ID, REMOVE_STYLES_ON_COMPONENT_DESTROY]
|
1109
|
-
},
|
1129
|
+
{ provide: EVENT_MANAGER_PLUGINS, useClass: KeyEventsPlugin, multi: true, deps: [DOCUMENT] },
|
1130
|
+
DomRendererFactory2, SharedStylesHost, EventManager,
|
1110
1131
|
{ provide: RendererFactory2, useExisting: DomRendererFactory2 },
|
1111
|
-
{ provide: SharedStylesHost, useExisting: DomSharedStylesHost },
|
1112
|
-
{ provide: DomSharedStylesHost, useClass: DomSharedStylesHost, deps: [DOCUMENT] },
|
1113
|
-
{ provide: EventManager, useClass: EventManager, deps: [EVENT_MANAGER_PLUGINS, NgZone] },
|
1114
1132
|
{ provide: XhrFactory, useClass: BrowserXhr, deps: [] },
|
1115
1133
|
NG_DEV_MODE ? { provide: BROWSER_MODULE_PROVIDERS_MARKER, useValue: true } : []
|
1116
1134
|
];
|
@@ -1137,31 +1155,25 @@ class BrowserModule {
|
|
1137
1155
|
* @param params An object containing an identifier for the app to transition.
|
1138
1156
|
* The ID must match between the client and server versions of the app.
|
1139
1157
|
* @returns The reconfigured `BrowserModule` to import into the app's root `AppModule`.
|
1158
|
+
*
|
1159
|
+
* @deprecated Use {@link APP_ID} instead to set the application ID.
|
1140
1160
|
*/
|
1141
1161
|
static withServerTransition(params) {
|
1142
1162
|
return {
|
1143
1163
|
ngModule: BrowserModule,
|
1144
1164
|
providers: [
|
1145
1165
|
{ provide: APP_ID, useValue: params.appId },
|
1146
|
-
{ provide: TRANSITION_ID, useExisting: APP_ID },
|
1147
|
-
SERVER_TRANSITION_PROVIDERS,
|
1148
1166
|
],
|
1149
1167
|
};
|
1150
1168
|
}
|
1151
1169
|
}
|
1152
|
-
BrowserModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1153
|
-
BrowserModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.
|
1154
|
-
BrowserModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.
|
1155
|
-
|
1156
|
-
...TESTABILITY_PROVIDERS
|
1157
|
-
], imports: [CommonModule, ApplicationModule] });
|
1158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: BrowserModule, decorators: [{
|
1170
|
+
BrowserModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserModule, deps: [{ token: BROWSER_MODULE_PROVIDERS_MARKER, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
1171
|
+
BrowserModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserModule, exports: [CommonModule, ApplicationModule] });
|
1172
|
+
BrowserModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserModule, providers: [...BROWSER_MODULE_PROVIDERS, ...TESTABILITY_PROVIDERS], imports: [CommonModule, ApplicationModule] });
|
1173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserModule, decorators: [{
|
1159
1174
|
type: NgModule,
|
1160
1175
|
args: [{
|
1161
|
-
providers: [
|
1162
|
-
...BROWSER_MODULE_PROVIDERS,
|
1163
|
-
...TESTABILITY_PROVIDERS
|
1164
|
-
],
|
1176
|
+
providers: [...BROWSER_MODULE_PROVIDERS, ...TESTABILITY_PROVIDERS],
|
1165
1177
|
exports: [CommonModule, ApplicationModule],
|
1166
1178
|
}]
|
1167
1179
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -1329,9 +1341,9 @@ class Meta {
|
|
1329
1341
|
return META_KEYS_MAP[prop] || prop;
|
1330
1342
|
}
|
1331
1343
|
}
|
1332
|
-
Meta.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1333
|
-
Meta.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
1334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1344
|
+
Meta.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: Meta, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
1345
|
+
Meta.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: Meta, providedIn: 'root', useFactory: createMeta, deps: [] });
|
1346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: Meta, decorators: [{
|
1335
1347
|
type: Injectable,
|
1336
1348
|
args: [{ providedIn: 'root', useFactory: createMeta, deps: [] }]
|
1337
1349
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -1379,9 +1391,9 @@ class Title {
|
|
1379
1391
|
this._doc.title = newTitle || '';
|
1380
1392
|
}
|
1381
1393
|
}
|
1382
|
-
Title.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1383
|
-
Title.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
1384
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1394
|
+
Title.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: Title, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
1395
|
+
Title.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: Title, providedIn: 'root', useFactory: createTitle, deps: [] });
|
1396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: Title, decorators: [{
|
1385
1397
|
type: Injectable,
|
1386
1398
|
args: [{ providedIn: 'root', useFactory: createTitle, deps: [] }]
|
1387
1399
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -1506,10 +1518,10 @@ function disableDebugTools() {
|
|
1506
1518
|
*/
|
1507
1519
|
class BrowserTransferStateModule {
|
1508
1520
|
}
|
1509
|
-
BrowserTransferStateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1510
|
-
BrowserTransferStateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.
|
1511
|
-
BrowserTransferStateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.
|
1512
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1521
|
+
BrowserTransferStateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserTransferStateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1522
|
+
BrowserTransferStateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserTransferStateModule });
|
1523
|
+
BrowserTransferStateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserTransferStateModule });
|
1524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BrowserTransferStateModule, decorators: [{
|
1513
1525
|
type: NgModule,
|
1514
1526
|
args: [{}]
|
1515
1527
|
}] });
|
@@ -1669,9 +1681,9 @@ class HammerGestureConfig {
|
|
1669
1681
|
return mc;
|
1670
1682
|
}
|
1671
1683
|
}
|
1672
|
-
HammerGestureConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1673
|
-
HammerGestureConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
1674
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1684
|
+
HammerGestureConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerGestureConfig, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1685
|
+
HammerGestureConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerGestureConfig });
|
1686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerGestureConfig, decorators: [{
|
1675
1687
|
type: Injectable
|
1676
1688
|
}] });
|
1677
1689
|
/**
|
@@ -1767,9 +1779,9 @@ class HammerGesturesPlugin extends EventManagerPlugin {
|
|
1767
1779
|
return this._config.events.indexOf(eventName) > -1;
|
1768
1780
|
}
|
1769
1781
|
}
|
1770
|
-
HammerGesturesPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1771
|
-
HammerGesturesPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
1772
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1782
|
+
HammerGesturesPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerGesturesPlugin, deps: [{ token: DOCUMENT }, { token: HAMMER_GESTURE_CONFIG }, { token: i0.ɵConsole }, { token: HAMMER_LOADER, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
1783
|
+
HammerGesturesPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerGesturesPlugin });
|
1784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerGesturesPlugin, decorators: [{
|
1773
1785
|
type: Injectable
|
1774
1786
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
1775
1787
|
type: Inject,
|
@@ -1796,9 +1808,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2",
|
|
1796
1808
|
*/
|
1797
1809
|
class HammerModule {
|
1798
1810
|
}
|
1799
|
-
HammerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1800
|
-
HammerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.
|
1801
|
-
HammerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.
|
1811
|
+
HammerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1812
|
+
HammerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerModule });
|
1813
|
+
HammerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerModule, providers: [
|
1802
1814
|
{
|
1803
1815
|
provide: EVENT_MANAGER_PLUGINS,
|
1804
1816
|
useClass: HammerGesturesPlugin,
|
@@ -1807,7 +1819,7 @@ HammerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1807
1819
|
},
|
1808
1820
|
{ provide: HAMMER_GESTURE_CONFIG, useClass: HammerGestureConfig, deps: [] },
|
1809
1821
|
] });
|
1810
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: HammerModule, decorators: [{
|
1811
1823
|
type: NgModule,
|
1812
1824
|
args: [{
|
1813
1825
|
providers: [
|
@@ -1855,9 +1867,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2",
|
|
1855
1867
|
*/
|
1856
1868
|
class DomSanitizer {
|
1857
1869
|
}
|
1858
|
-
DomSanitizer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1859
|
-
DomSanitizer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
1860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1870
|
+
DomSanitizer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomSanitizer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1871
|
+
DomSanitizer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomSanitizer, providedIn: 'root', useExisting: i0.forwardRef(function () { return DomSanitizerImpl; }) });
|
1872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomSanitizer, decorators: [{
|
1861
1873
|
type: Injectable,
|
1862
1874
|
args: [{ providedIn: 'root', useExisting: forwardRef(() => DomSanitizerImpl) }]
|
1863
1875
|
}] });
|
@@ -1920,9 +1932,9 @@ class DomSanitizerImpl extends DomSanitizer {
|
|
1920
1932
|
return ɵbypassSanitizationTrustResourceUrl(value);
|
1921
1933
|
}
|
1922
1934
|
}
|
1923
|
-
DomSanitizerImpl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
1924
|
-
DomSanitizerImpl.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
1925
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
1935
|
+
DomSanitizerImpl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomSanitizerImpl, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
1936
|
+
DomSanitizerImpl.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomSanitizerImpl, providedIn: 'root', useFactory: domSanitizerImplFactory, deps: [{ token: Injector }] });
|
1937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DomSanitizerImpl, decorators: [{
|
1926
1938
|
type: Injectable,
|
1927
1939
|
args: [{ providedIn: 'root', useFactory: domSanitizerImplFactory, deps: [Injector] }]
|
1928
1940
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -1938,7 +1950,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2",
|
|
1938
1950
|
/**
|
1939
1951
|
* @publicApi
|
1940
1952
|
*/
|
1941
|
-
const VERSION = new Version('16.0.0-next.
|
1953
|
+
const VERSION = new Version('16.0.0-next.4');
|
1942
1954
|
|
1943
1955
|
// Re-export TransferState to the public API of the `platform-browser` for backwards-compatibility.
|
1944
1956
|
|
@@ -1955,5 +1967,5 @@ const VERSION = new Version('16.0.0-next.2');
|
|
1955
1967
|
* Generated bundle index. Do not edit.
|
1956
1968
|
*/
|
1957
1969
|
|
1958
|
-
export { BrowserModule, BrowserTransferStateModule, By, DomSanitizer, EVENT_MANAGER_PLUGINS, EventManager, HAMMER_GESTURE_CONFIG, HAMMER_LOADER, HammerGestureConfig, HammerModule, Meta, REMOVE_STYLES_ON_COMPONENT_DESTROY, Title, VERSION, bootstrapApplication, createApplication, disableDebugTools, enableDebugTools, platformBrowser, provideProtractorTestingSupport, BrowserDomAdapter as ɵBrowserDomAdapter, BrowserGetTestability as ɵBrowserGetTestability, DomEventsPlugin as ɵDomEventsPlugin, DomRendererFactory2 as ɵDomRendererFactory2, DomSanitizerImpl as ɵDomSanitizerImpl,
|
1970
|
+
export { BrowserModule, BrowserTransferStateModule, By, DomSanitizer, EVENT_MANAGER_PLUGINS, EventManager, HAMMER_GESTURE_CONFIG, HAMMER_LOADER, HammerGestureConfig, HammerModule, Meta, REMOVE_STYLES_ON_COMPONENT_DESTROY, Title, VERSION, bootstrapApplication, createApplication, disableDebugTools, enableDebugTools, platformBrowser, provideProtractorTestingSupport, BrowserDomAdapter as ɵBrowserDomAdapter, BrowserGetTestability as ɵBrowserGetTestability, DomEventsPlugin as ɵDomEventsPlugin, DomRendererFactory2 as ɵDomRendererFactory2, DomSanitizerImpl as ɵDomSanitizerImpl, HammerGesturesPlugin as ɵHammerGesturesPlugin, INTERNAL_BROWSER_PLATFORM_PROVIDERS as ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS, KeyEventsPlugin as ɵKeyEventsPlugin, NAMESPACE_URIS as ɵNAMESPACE_URIS, SharedStylesHost as ɵSharedStylesHost, initDomAdapter as ɵinitDomAdapter, shimContentAttribute as ɵshimContentAttribute, shimHostAttribute as ɵshimHostAttribute, shimStylesContent as ɵshimStyles };
|
1959
1971
|
//# sourceMappingURL=platform-browser.mjs.map
|