12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232 |
- import {
- CommonModule,
- DomAdapter,
- PLATFORM_BROWSER_ID,
- getDOM,
- isPlatformServer,
- setRootDomAdapter
- } from "./chunk-VHSNDQRF.js";
- import {
- XhrFactory,
- parseCookieValue
- } from "./chunk-OPGNYZHR.js";
- import {
- APP_ID,
- ApplicationModule,
- CSP_NONCE,
- DOCUMENT,
- ErrorHandler,
- INJECTOR_SCOPE,
- Inject,
- Injectable,
- InjectionToken,
- NgModule,
- NgZone,
- Optional,
- PLATFORM_ID,
- PLATFORM_INITIALIZER,
- RendererFactory2,
- RendererStyleFlags2,
- RuntimeError,
- TESTABILITY,
- TESTABILITY_GETTER,
- Testability,
- TestabilityRegistry,
- TracingService,
- ViewEncapsulation,
- _global,
- createPlatformFactory,
- inject,
- internalCreateApplication,
- platformCore,
- setClassMetadata,
- setDocument,
- ɵɵdefineInjectable,
- ɵɵdefineInjector,
- ɵɵdefineNgModule,
- ɵɵinject
- } from "./chunk-Y7NS2SYH.js";
- import {
- __spreadValues
- } from "./chunk-WDMUDEB6.js";
- // node_modules/@angular/platform-browser/fesm2022/dom_renderer.mjs
- var EVENT_MANAGER_PLUGINS = new InjectionToken(ngDevMode ? "EventManagerPlugins" : "");
- var EventManager = class _EventManager {
- _zone;
- _plugins;
- _eventNameToPlugin = /* @__PURE__ */ new Map();
- /**
- * Initializes an instance of the event-manager service.
- */
- constructor(plugins, _zone) {
- this._zone = _zone;
- plugins.forEach((plugin) => {
- plugin.manager = this;
- });
- this._plugins = plugins.slice().reverse();
- }
- /**
- * Registers a handler for a specific element and event.
- *
- * @param element The HTML element to receive event notifications.
- * @param eventName The name of the event to listen for.
- * @param handler A function to call when the notification occurs. Receives the
- * event object as an argument.
- * @param options Options that configure how the event listener is bound.
- * @returns A callback function that can be used to remove the handler.
- */
- addEventListener(element, eventName, handler, options) {
- const plugin = this._findPluginFor(eventName);
- return plugin.addEventListener(element, eventName, handler, options);
- }
- /**
- * Retrieves the compilation zone in which event listeners are registered.
- */
- getZone() {
- return this._zone;
- }
- /** @internal */
- _findPluginFor(eventName) {
- let plugin = this._eventNameToPlugin.get(eventName);
- if (plugin) {
- return plugin;
- }
- const plugins = this._plugins;
- plugin = plugins.find((plugin2) => plugin2.supports(eventName));
- if (!plugin) {
- throw new RuntimeError(5101, (typeof ngDevMode === "undefined" || ngDevMode) && `No event manager plugin found for event ${eventName}`);
- }
- this._eventNameToPlugin.set(eventName, plugin);
- return plugin;
- }
- static ɵfac = function EventManager_Factory(__ngFactoryType__) {
- return new (__ngFactoryType__ || _EventManager)(ɵɵinject(EVENT_MANAGER_PLUGINS), ɵɵinject(NgZone));
- };
- static ɵprov = ɵɵdefineInjectable({
- token: _EventManager,
- factory: _EventManager.ɵfac
- });
- };
- (() => {
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(EventManager, [{
- type: Injectable
- }], () => [{
- type: void 0,
- decorators: [{
- type: Inject,
- args: [EVENT_MANAGER_PLUGINS]
- }]
- }, {
- type: NgZone
- }], null);
- })();
- var EventManagerPlugin = class {
- _doc;
- // TODO: remove (has some usage in G3)
- constructor(_doc) {
- this._doc = _doc;
- }
- // Using non-null assertion because it's set by EventManager's constructor
- manager;
- };
- var APP_ID_ATTRIBUTE_NAME = "ng-app-id";
- function removeElements(elements) {
- for (const element of elements) {
- element.remove();
- }
- }
- function createStyleElement(style, doc) {
- const styleElement = doc.createElement("style");
- styleElement.textContent = style;
- return styleElement;
- }
- function addServerStyles(doc, appId, inline, external) {
- const elements = doc.head?.querySelectorAll(`style[${APP_ID_ATTRIBUTE_NAME}="${appId}"],link[${APP_ID_ATTRIBUTE_NAME}="${appId}"]`);
- if (elements) {
- for (const styleElement of elements) {
- styleElement.removeAttribute(APP_ID_ATTRIBUTE_NAME);
- if (styleElement instanceof HTMLLinkElement) {
- external.set(styleElement.href.slice(styleElement.href.lastIndexOf("/") + 1), {
- usage: 0,
- elements: [styleElement]
- });
- } else if (styleElement.textContent) {
- inline.set(styleElement.textContent, {
- usage: 0,
- elements: [styleElement]
- });
- }
- }
- }
- }
- function createLinkElement(url, doc) {
- const linkElement = doc.createElement("link");
- linkElement.setAttribute("rel", "stylesheet");
- linkElement.setAttribute("href", url);
- return linkElement;
- }
- var SharedStylesHost = class _SharedStylesHost {
- doc;
- appId;
- nonce;
- /**
- * Provides usage information for active inline style content and associated HTML <style> elements.
- * Embedded styles typically originate from the `styles` metadata of a rendered component.
- */
- inline = /* @__PURE__ */ new Map();
- /**
- * Provides usage information for active external style URLs and the associated HTML <link> elements.
- * External styles typically originate from the `ɵɵExternalStylesFeature` of a rendered component.
- */
- external = /* @__PURE__ */ new Map();
- /**
- * Set of host DOM nodes that will have styles attached.
- */
- hosts = /* @__PURE__ */ new Set();
- /**
- * Whether the application code is currently executing on a server.
- */
- isServer;
- constructor(doc, appId, nonce, platformId = {}) {
- this.doc = doc;
- this.appId = appId;
- this.nonce = nonce;
- this.isServer = isPlatformServer(platformId);
- addServerStyles(doc, appId, this.inline, this.external);
- this.hosts.add(doc.head);
- }
- /**
- * Adds embedded styles to the DOM via HTML `style` elements.
- * @param styles An array of style content strings.
- */
- addStyles(styles, urls) {
- for (const value of styles) {
- this.addUsage(value, this.inline, createStyleElement);
- }
- urls?.forEach((value) => this.addUsage(value, this.external, createLinkElement));
- }
- /**
- * Removes embedded styles from the DOM that were added as HTML `style` elements.
- * @param styles An array of style content strings.
- */
- removeStyles(styles, urls) {
- for (const value of styles) {
- this.removeUsage(value, this.inline);
- }
- urls?.forEach((value) => this.removeUsage(value, this.external));
- }
- addUsage(value, usages, creator) {
- const record = usages.get(value);
- if (record) {
- if ((typeof ngDevMode === "undefined" || ngDevMode) && record.usage === 0) {
- record.elements.forEach((element) => element.setAttribute("ng-style-reused", ""));
- }
- record.usage++;
- } else {
- usages.set(value, {
- usage: 1,
- elements: [...this.hosts].map((host) => this.addElement(host, creator(value, this.doc)))
- });
- }
- }
- removeUsage(value, usages) {
- const record = usages.get(value);
- if (record) {
- record.usage--;
- if (record.usage <= 0) {
- removeElements(record.elements);
- usages.delete(value);
- }
- }
- }
- ngOnDestroy() {
- for (const [, {
- elements
- }] of [...this.inline, ...this.external]) {
- removeElements(elements);
- }
- this.hosts.clear();
- }
- /**
- * Adds a host node to the set of style hosts and adds all existing style usage to
- * the newly added host node.
- *
- * This is currently only used for Shadow DOM encapsulation mode.
- */
- addHost(hostNode) {
- this.hosts.add(hostNode);
- for (const [style, {
- elements
- }] of this.inline) {
- elements.push(this.addElement(hostNode, createStyleElement(style, this.doc)));
- }
- for (const [url, {
- elements
- }] of this.external) {
- elements.push(this.addElement(hostNode, createLinkElement(url, this.doc)));
- }
- }
- removeHost(hostNode) {
- this.hosts.delete(hostNode);
- }
- addElement(host, element) {
- if (this.nonce) {
- element.setAttribute("nonce", this.nonce);
- }
- if (this.isServer) {
- element.setAttribute(APP_ID_ATTRIBUTE_NAME, this.appId);
- }
- return host.appendChild(element);
- }
- static ɵfac = function SharedStylesHost_Factory(__ngFactoryType__) {
- return new (__ngFactoryType__ || _SharedStylesHost)(ɵɵinject(DOCUMENT), ɵɵinject(APP_ID), ɵɵinject(CSP_NONCE, 8), ɵɵinject(PLATFORM_ID));
- };
- static ɵprov = ɵɵdefineInjectable({
- token: _SharedStylesHost,
- factory: _SharedStylesHost.ɵfac
- });
- };
- (() => {
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(SharedStylesHost, [{
- type: Injectable
- }], () => [{
- type: Document,
- decorators: [{
- type: Inject,
- args: [DOCUMENT]
- }]
- }, {
- type: void 0,
- decorators: [{
- type: Inject,
- args: [APP_ID]
- }]
- }, {
- type: void 0,
- decorators: [{
- type: Inject,
- args: [CSP_NONCE]
- }, {
- type: Optional
- }]
- }, {
- type: void 0,
- decorators: [{
- type: Inject,
- args: [PLATFORM_ID]
- }]
- }], null);
- })();
- var NAMESPACE_URIS = {
- "svg": "http://www.w3.org/2000/svg",
- "xhtml": "http://www.w3.org/1999/xhtml",
- "xlink": "http://www.w3.org/1999/xlink",
- "xml": "http://www.w3.org/XML/1998/namespace",
- "xmlns": "http://www.w3.org/2000/xmlns/",
- "math": "http://www.w3.org/1998/Math/MathML"
- };
- var COMPONENT_REGEX = /%COMP%/g;
- var SOURCEMAP_URL_REGEXP = /\/\*#\s*sourceMappingURL=(.+?)\s*\*\//;
- var PROTOCOL_REGEXP = /^https?:/;
- var COMPONENT_VARIABLE = "%COMP%";
- var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
- var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
- var REMOVE_STYLES_ON_COMPONENT_DESTROY_DEFAULT = true;
- var REMOVE_STYLES_ON_COMPONENT_DESTROY = new InjectionToken(ngDevMode ? "RemoveStylesOnCompDestroy" : "", {
- providedIn: "root",
- factory: () => REMOVE_STYLES_ON_COMPONENT_DESTROY_DEFAULT
- });
- function shimContentAttribute(componentShortId) {
- return CONTENT_ATTR.replace(COMPONENT_REGEX, componentShortId);
- }
- function shimHostAttribute(componentShortId) {
- return HOST_ATTR.replace(COMPONENT_REGEX, componentShortId);
- }
- function shimStylesContent(compId, styles) {
- return styles.map((s) => s.replace(COMPONENT_REGEX, compId));
- }
- function addBaseHrefToCssSourceMap(baseHref, styles) {
- if (!baseHref) {
- return styles;
- }
- const absoluteBaseHrefUrl = new URL(baseHref, "http://localhost");
- return styles.map((cssContent) => {
- if (!cssContent.includes("sourceMappingURL=")) {
- return cssContent;
- }
- return cssContent.replace(SOURCEMAP_URL_REGEXP, (_, sourceMapUrl) => {
- if (sourceMapUrl[0] === "/" || sourceMapUrl.startsWith("data:") || PROTOCOL_REGEXP.test(sourceMapUrl)) {
- return `/*# sourceMappingURL=${sourceMapUrl} */`;
- }
- const {
- pathname: resolvedSourceMapUrl
- } = new URL(sourceMapUrl, absoluteBaseHrefUrl);
- return `/*# sourceMappingURL=${resolvedSourceMapUrl} */`;
- });
- });
- }
- var DomRendererFactory2 = class _DomRendererFactory2 {
- eventManager;
- sharedStylesHost;
- appId;
- removeStylesOnCompDestroy;
- doc;
- platformId;
- ngZone;
- nonce;
- tracingService;
- rendererByCompId = /* @__PURE__ */ new Map();
- defaultRenderer;
- platformIsServer;
- constructor(eventManager, sharedStylesHost, appId, removeStylesOnCompDestroy, doc, platformId, ngZone, nonce = null, tracingService = null) {
- this.eventManager = eventManager;
- this.sharedStylesHost = sharedStylesHost;
- this.appId = appId;
- this.removeStylesOnCompDestroy = removeStylesOnCompDestroy;
- this.doc = doc;
- this.platformId = platformId;
- this.ngZone = ngZone;
- this.nonce = nonce;
- this.tracingService = tracingService;
- this.platformIsServer = false;
- this.defaultRenderer = new DefaultDomRenderer2(eventManager, doc, ngZone, this.platformIsServer, this.tracingService);
- }
- createRenderer(element, type) {
- if (!element || !type) {
- return this.defaultRenderer;
- }
- if (false) {
- type = __spreadProps(__spreadValues({}, type), {
- encapsulation: ViewEncapsulation.Emulated
- });
- }
- const renderer = this.getOrCreateRenderer(element, type);
- if (renderer instanceof EmulatedEncapsulationDomRenderer2) {
- renderer.applyToHost(element);
- } else if (renderer instanceof NoneEncapsulationDomRenderer) {
- renderer.applyStyles();
- }
- return renderer;
- }
- getOrCreateRenderer(element, type) {
- const rendererByCompId = this.rendererByCompId;
- let renderer = rendererByCompId.get(type.id);
- if (!renderer) {
- const doc = this.doc;
- const ngZone = this.ngZone;
- const eventManager = this.eventManager;
- const sharedStylesHost = this.sharedStylesHost;
- const removeStylesOnCompDestroy = this.removeStylesOnCompDestroy;
- const platformIsServer = this.platformIsServer;
- const tracingService = this.tracingService;
- switch (type.encapsulation) {
- case ViewEncapsulation.Emulated:
- renderer = new EmulatedEncapsulationDomRenderer2(eventManager, sharedStylesHost, type, this.appId, removeStylesOnCompDestroy, doc, ngZone, platformIsServer, tracingService);
- break;
- case ViewEncapsulation.ShadowDom:
- return new ShadowDomRenderer(eventManager, sharedStylesHost, element, type, doc, ngZone, this.nonce, platformIsServer, tracingService);
- default:
- renderer = new NoneEncapsulationDomRenderer(eventManager, sharedStylesHost, type, removeStylesOnCompDestroy, doc, ngZone, platformIsServer, tracingService);
- break;
- }
- rendererByCompId.set(type.id, renderer);
- }
- return renderer;
- }
- ngOnDestroy() {
- this.rendererByCompId.clear();
- }
- /**
- * Used during HMR to clear any cached data about a component.
- * @param componentId ID of the component that is being replaced.
- */
- componentReplaced(componentId) {
- this.rendererByCompId.delete(componentId);
- }
- static ɵfac = function DomRendererFactory2_Factory(__ngFactoryType__) {
- return new (__ngFactoryType__ || _DomRendererFactory2)(ɵɵinject(EventManager), ɵɵinject(SharedStylesHost), ɵɵinject(APP_ID), ɵɵinject(REMOVE_STYLES_ON_COMPONENT_DESTROY), ɵɵinject(DOCUMENT), ɵɵinject(PLATFORM_ID), ɵɵinject(NgZone), ɵɵinject(CSP_NONCE), ɵɵinject(TracingService, 8));
- };
- static ɵprov = ɵɵdefineInjectable({
- token: _DomRendererFactory2,
- factory: _DomRendererFactory2.ɵfac
- });
- };
- (() => {
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(DomRendererFactory2, [{
- type: Injectable
- }], () => [{
- type: EventManager
- }, {
- type: SharedStylesHost
- }, {
- type: void 0,
- decorators: [{
- type: Inject,
- args: [APP_ID]
- }]
- }, {
- type: void 0,
- decorators: [{
- type: Inject,
- args: [REMOVE_STYLES_ON_COMPONENT_DESTROY]
- }]
- }, {
- type: Document,
- decorators: [{
- type: Inject,
- args: [DOCUMENT]
- }]
- }, {
- type: Object,
- decorators: [{
- type: Inject,
- args: [PLATFORM_ID]
- }]
- }, {
- type: NgZone
- }, {
- type: void 0,
- decorators: [{
- type: Inject,
- args: [CSP_NONCE]
- }]
- }, {
- type: TracingService,
- decorators: [{
- type: Inject,
- args: [TracingService]
- }, {
- type: Optional
- }]
- }], null);
- })();
- var DefaultDomRenderer2 = class {
- eventManager;
- doc;
- ngZone;
- platformIsServer;
- tracingService;
- data = /* @__PURE__ */ Object.create(null);
- /**
- * By default this renderer throws when encountering synthetic properties
- * This can be disabled for example by the AsyncAnimationRendererFactory
- */
- throwOnSyntheticProps = true;
- constructor(eventManager, doc, ngZone, platformIsServer, tracingService) {
- this.eventManager = eventManager;
- this.doc = doc;
- this.ngZone = ngZone;
- this.platformIsServer = platformIsServer;
- this.tracingService = tracingService;
- }
- destroy() {
- }
- destroyNode = null;
- createElement(name, namespace) {
- if (namespace) {
- return this.doc.createElementNS(NAMESPACE_URIS[namespace] || namespace, name);
- }
- return this.doc.createElement(name);
- }
- createComment(value) {
- return this.doc.createComment(value);
- }
- createText(value) {
- return this.doc.createTextNode(value);
- }
- appendChild(parent, newChild) {
- const targetParent = isTemplateNode(parent) ? parent.content : parent;
- targetParent.appendChild(newChild);
- }
- insertBefore(parent, newChild, refChild) {
- if (parent) {
- const targetParent = isTemplateNode(parent) ? parent.content : parent;
- targetParent.insertBefore(newChild, refChild);
- }
- }
- removeChild(_parent, oldChild) {
- oldChild.remove();
- }
- selectRootElement(selectorOrNode, preserveContent) {
- let el = typeof selectorOrNode === "string" ? this.doc.querySelector(selectorOrNode) : selectorOrNode;
- if (!el) {
- throw new RuntimeError(-5104, (typeof ngDevMode === "undefined" || ngDevMode) && `The selector "${selectorOrNode}" did not match any elements`);
- }
- if (!preserveContent) {
- el.textContent = "";
- }
- return el;
- }
- parentNode(node) {
- return node.parentNode;
- }
- nextSibling(node) {
- return node.nextSibling;
- }
- setAttribute(el, name, value, namespace) {
- if (namespace) {
- name = namespace + ":" + name;
- const namespaceUri = NAMESPACE_URIS[namespace];
- if (namespaceUri) {
- el.setAttributeNS(namespaceUri, name, value);
- } else {
- el.setAttribute(name, value);
- }
- } else {
- el.setAttribute(name, value);
- }
- }
- removeAttribute(el, name, namespace) {
- if (namespace) {
- const namespaceUri = NAMESPACE_URIS[namespace];
- if (namespaceUri) {
- el.removeAttributeNS(namespaceUri, name);
- } else {
- el.removeAttribute(`${namespace}:${name}`);
- }
- } else {
- el.removeAttribute(name);
- }
- }
- addClass(el, name) {
- el.classList.add(name);
- }
- removeClass(el, name) {
- el.classList.remove(name);
- }
- setStyle(el, style, value, flags) {
- if (flags & (RendererStyleFlags2.DashCase | RendererStyleFlags2.Important)) {
- el.style.setProperty(style, value, flags & RendererStyleFlags2.Important ? "important" : "");
- } else {
- el.style[style] = value;
- }
- }
- removeStyle(el, style, flags) {
- if (flags & RendererStyleFlags2.DashCase) {
- el.style.removeProperty(style);
- } else {
- el.style[style] = "";
- }
- }
- setProperty(el, name, value) {
- if (el == null) {
- return;
- }
- (typeof ngDevMode === "undefined" || ngDevMode) && this.throwOnSyntheticProps && checkNoSyntheticProp(name, "property");
- el[name] = value;
- }
- setValue(node, value) {
- node.nodeValue = value;
- }
- listen(target, event, callback, options) {
- (typeof ngDevMode === "undefined" || ngDevMode) && this.throwOnSyntheticProps && checkNoSyntheticProp(event, "listener");
- if (typeof target === "string") {
- target = getDOM().getGlobalEventTarget(this.doc, target);
- if (!target) {
- throw new RuntimeError(5102, (typeof ngDevMode === "undefined" || ngDevMode) && `Unsupported event target ${target} for event ${event}`);
- }
- }
- let wrappedCallback = this.decoratePreventDefault(callback);
- if (this.tracingService?.wrapEventListener) {
- wrappedCallback = this.tracingService.wrapEventListener(target, event, wrappedCallback);
- }
- return this.eventManager.addEventListener(target, event, wrappedCallback, options);
- }
- decoratePreventDefault(eventHandler) {
- return (event) => {
- if (event === "__ngUnwrap__") {
- return eventHandler;
- }
- const allowDefaultBehavior = false ? this.ngZone.runGuarded(() => eventHandler(event)) : eventHandler(event);
- if (allowDefaultBehavior === false) {
- event.preventDefault();
- }
- return void 0;
- };
- }
- };
- var AT_CHARCODE = (() => "@".charCodeAt(0))();
- function checkNoSyntheticProp(name, nameKind) {
- if (name.charCodeAt(0) === AT_CHARCODE) {
- throw new RuntimeError(5105, `Unexpected synthetic ${nameKind} ${name} found. Please make sure that:
- - Make sure \`provideAnimationsAsync()\`, \`provideAnimations()\` or \`provideNoopAnimations()\` call was added to a list of providers used to bootstrap an application.
- - There is a corresponding animation configuration named \`${name}\` defined in the \`animations\` field of the \`@Component\` decorator (see https://angular.dev/api/core/Component#animations).`);
- }
- }
- function isTemplateNode(node) {
- return node.tagName === "TEMPLATE" && node.content !== void 0;
- }
- var ShadowDomRenderer = class extends DefaultDomRenderer2 {
- sharedStylesHost;
- hostEl;
- shadowRoot;
- constructor(eventManager, sharedStylesHost, hostEl, component, doc, ngZone, nonce, platformIsServer, tracingService) {
- super(eventManager, doc, ngZone, platformIsServer, tracingService);
- this.sharedStylesHost = sharedStylesHost;
- this.hostEl = hostEl;
- this.shadowRoot = hostEl.attachShadow({
- mode: "open"
- });
- this.sharedStylesHost.addHost(this.shadowRoot);
- let styles = component.styles;
- if (ngDevMode) {
- const baseHref = getDOM().getBaseHref(doc) ?? "";
- styles = addBaseHrefToCssSourceMap(baseHref, styles);
- }
- styles = shimStylesContent(component.id, styles);
- for (const style of styles) {
- const styleEl = document.createElement("style");
- if (nonce) {
- styleEl.setAttribute("nonce", nonce);
- }
- styleEl.textContent = style;
- this.shadowRoot.appendChild(styleEl);
- }
- const styleUrls = component.getExternalStyles?.();
- if (styleUrls) {
- for (const styleUrl of styleUrls) {
- const linkEl = createLinkElement(styleUrl, doc);
- if (nonce) {
- linkEl.setAttribute("nonce", nonce);
- }
- this.shadowRoot.appendChild(linkEl);
- }
- }
- }
- nodeOrShadowRoot(node) {
- return node === this.hostEl ? this.shadowRoot : node;
- }
- appendChild(parent, newChild) {
- return super.appendChild(this.nodeOrShadowRoot(parent), newChild);
- }
- insertBefore(parent, newChild, refChild) {
- return super.insertBefore(this.nodeOrShadowRoot(parent), newChild, refChild);
- }
- removeChild(_parent, oldChild) {
- return super.removeChild(null, oldChild);
- }
- parentNode(node) {
- return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(node)));
- }
- destroy() {
- this.sharedStylesHost.removeHost(this.shadowRoot);
- }
- };
- var NoneEncapsulationDomRenderer = class extends DefaultDomRenderer2 {
- sharedStylesHost;
- removeStylesOnCompDestroy;
- styles;
- styleUrls;
- constructor(eventManager, sharedStylesHost, component, removeStylesOnCompDestroy, doc, ngZone, platformIsServer, tracingService, compId) {
- super(eventManager, doc, ngZone, platformIsServer, tracingService);
- this.sharedStylesHost = sharedStylesHost;
- this.removeStylesOnCompDestroy = removeStylesOnCompDestroy;
- let styles = component.styles;
- if (ngDevMode) {
- const baseHref = getDOM().getBaseHref(doc) ?? "";
- styles = addBaseHrefToCssSourceMap(baseHref, styles);
- }
- this.styles = compId ? shimStylesContent(compId, styles) : styles;
- this.styleUrls = component.getExternalStyles?.(compId);
- }
- applyStyles() {
- this.sharedStylesHost.addStyles(this.styles, this.styleUrls);
- }
- destroy() {
- if (!this.removeStylesOnCompDestroy) {
- return;
- }
- this.sharedStylesHost.removeStyles(this.styles, this.styleUrls);
- }
- };
- var EmulatedEncapsulationDomRenderer2 = class extends NoneEncapsulationDomRenderer {
- contentAttr;
- hostAttr;
- constructor(eventManager, sharedStylesHost, component, appId, removeStylesOnCompDestroy, doc, ngZone, platformIsServer, tracingService) {
- const compId = appId + "-" + component.id;
- super(eventManager, sharedStylesHost, component, removeStylesOnCompDestroy, doc, ngZone, platformIsServer, tracingService, compId);
- this.contentAttr = shimContentAttribute(compId);
- this.hostAttr = shimHostAttribute(compId);
- }
- applyToHost(element) {
- this.applyStyles();
- this.setAttribute(element, this.hostAttr, "");
- }
- createElement(parent, name) {
- const el = super.createElement(parent, name);
- super.setAttribute(el, this.contentAttr, "");
- return el;
- }
- };
- // node_modules/@angular/platform-browser/fesm2022/browser.mjs
- var BrowserDomAdapter = class _BrowserDomAdapter extends DomAdapter {
- supportsDOMEvents = true;
- static makeCurrent() {
- setRootDomAdapter(new _BrowserDomAdapter());
- }
- onAndCancel(el, evt, listener, options) {
- el.addEventListener(evt, listener, options);
- return () => {
- el.removeEventListener(evt, listener, options);
- };
- }
- dispatchEvent(el, evt) {
- el.dispatchEvent(evt);
- }
- remove(node) {
- node.remove();
- }
- createElement(tagName, doc) {
- doc = doc || this.getDefaultDocument();
- return doc.createElement(tagName);
- }
- createHtmlDocument() {
- return document.implementation.createHTMLDocument("fakeTitle");
- }
- getDefaultDocument() {
- return document;
- }
- isElementNode(node) {
- return node.nodeType === Node.ELEMENT_NODE;
- }
- isShadowRoot(node) {
- return node instanceof DocumentFragment;
- }
- /** @deprecated No longer being used in Ivy code. To be removed in version 14. */
- getGlobalEventTarget(doc, target) {
- if (target === "window") {
- return window;
- }
- if (target === "document") {
- return doc;
- }
- if (target === "body") {
- return doc.body;
- }
- return null;
- }
- getBaseHref(doc) {
- const href = getBaseElementHref();
- return href == null ? null : relativePath(href);
- }
- resetBaseElement() {
- baseElement = null;
- }
- getUserAgent() {
- return window.navigator.userAgent;
- }
- getCookie(name) {
- return parseCookieValue(document.cookie, name);
- }
- };
- var baseElement = null;
- function getBaseElementHref() {
- baseElement = baseElement || document.head.querySelector("base");
- return baseElement ? baseElement.getAttribute("href") : null;
- }
- function relativePath(url) {
- return new URL(url, document.baseURI).pathname;
- }
- var BrowserGetTestability = class {
- addToWindow(registry) {
- _global["getAngularTestability"] = (elem, findInAncestors = true) => {
- const testability = registry.findTestabilityInTree(elem, findInAncestors);
- if (testability == null) {
- throw new RuntimeError(5103, (typeof ngDevMode === "undefined" || ngDevMode) && "Could not find testability for element.");
- }
- return testability;
- };
- _global["getAllAngularTestabilities"] = () => registry.getAllTestabilities();
- _global["getAllAngularRootElements"] = () => registry.getAllRootElements();
- const whenAllStable = (callback) => {
- const testabilities = _global["getAllAngularTestabilities"]();
- let count = testabilities.length;
- const decrement = function() {
- count--;
- if (count == 0) {
- callback();
- }
- };
- testabilities.forEach((testability) => {
- testability.whenStable(decrement);
- });
- };
- if (!_global["frameworkStabilizers"]) {
- _global["frameworkStabilizers"] = [];
- }
- _global["frameworkStabilizers"].push(whenAllStable);
- }
- findTestabilityInTree(registry, elem, findInAncestors) {
- if (elem == null) {
- return null;
- }
- const t = registry.getTestability(elem);
- if (t != null) {
- return t;
- } else if (!findInAncestors) {
- return null;
- }
- if (getDOM().isShadowRoot(elem)) {
- return this.findTestabilityInTree(registry, elem.host, true);
- }
- return this.findTestabilityInTree(registry, elem.parentElement, true);
- }
- };
- var BrowserXhr = class _BrowserXhr {
- build() {
- return new XMLHttpRequest();
- }
- static ɵfac = function BrowserXhr_Factory(__ngFactoryType__) {
- return new (__ngFactoryType__ || _BrowserXhr)();
- };
- static ɵprov = ɵɵdefineInjectable({
- token: _BrowserXhr,
- factory: _BrowserXhr.ɵfac
- });
- };
- (() => {
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(BrowserXhr, [{
- type: Injectable
- }], null, null);
- })();
- var DomEventsPlugin = class _DomEventsPlugin extends EventManagerPlugin {
- constructor(doc) {
- super(doc);
- }
- // This plugin should come last in the list of plugins, because it accepts all
- // events.
- supports(eventName) {
- return true;
- }
- addEventListener(element, eventName, handler, options) {
- element.addEventListener(eventName, handler, options);
- return () => this.removeEventListener(element, eventName, handler, options);
- }
- removeEventListener(target, eventName, callback, options) {
- return target.removeEventListener(eventName, callback, options);
- }
- static ɵfac = function DomEventsPlugin_Factory(__ngFactoryType__) {
- return new (__ngFactoryType__ || _DomEventsPlugin)(ɵɵinject(DOCUMENT));
- };
- static ɵprov = ɵɵdefineInjectable({
- token: _DomEventsPlugin,
- factory: _DomEventsPlugin.ɵfac
- });
- };
- (() => {
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(DomEventsPlugin, [{
- type: Injectable
- }], () => [{
- type: void 0,
- decorators: [{
- type: Inject,
- args: [DOCUMENT]
- }]
- }], null);
- })();
- var MODIFIER_KEYS = ["alt", "control", "meta", "shift"];
- var _keyMap = {
- "\b": "Backspace",
- " ": "Tab",
- "": "Delete",
- "\x1B": "Escape",
- "Del": "Delete",
- "Esc": "Escape",
- "Left": "ArrowLeft",
- "Right": "ArrowRight",
- "Up": "ArrowUp",
- "Down": "ArrowDown",
- "Menu": "ContextMenu",
- "Scroll": "ScrollLock",
- "Win": "OS"
- };
- var MODIFIER_KEY_GETTERS = {
- "alt": (event) => event.altKey,
- "control": (event) => event.ctrlKey,
- "meta": (event) => event.metaKey,
- "shift": (event) => event.shiftKey
- };
- var KeyEventsPlugin = class _KeyEventsPlugin extends EventManagerPlugin {
- /**
- * Initializes an instance of the browser plug-in.
- * @param doc The document in which key events will be detected.
- */
- constructor(doc) {
- super(doc);
- }
- /**
- * Reports whether a named key event is supported.
- * @param eventName The event name to query.
- * @return True if the named key event is supported.
- */
- supports(eventName) {
- return _KeyEventsPlugin.parseEventName(eventName) != null;
- }
- /**
- * Registers a handler for a specific element and key event.
- * @param element The HTML element to receive event notifications.
- * @param eventName The name of the key event to listen for.
- * @param handler A function to call when the notification occurs. Receives the
- * event object as an argument.
- * @returns The key event that was registered.
- */
- addEventListener(element, eventName, handler, options) {
- const parsedEvent = _KeyEventsPlugin.parseEventName(eventName);
- const outsideHandler = _KeyEventsPlugin.eventCallback(parsedEvent["fullKey"], handler, this.manager.getZone());
- return this.manager.getZone().runOutsideAngular(() => {
- return getDOM().onAndCancel(element, parsedEvent["domEventName"], outsideHandler, options);
- });
- }
- /**
- * Parses the user provided full keyboard event definition and normalizes it for
- * later internal use. It ensures the string is all lowercase, converts special
- * characters to a standard spelling, and orders all the values consistently.
- *
- * @param eventName The name of the key event to listen for.
- * @returns an object with the full, normalized string, and the dom event name
- * or null in the case when the event doesn't match a keyboard event.
- */
- static parseEventName(eventName) {
- const parts = eventName.toLowerCase().split(".");
- const domEventName = parts.shift();
- if (parts.length === 0 || !(domEventName === "keydown" || domEventName === "keyup")) {
- return null;
- }
- const key = _KeyEventsPlugin._normalizeKey(parts.pop());
- let fullKey = "";
- let codeIX = parts.indexOf("code");
- if (codeIX > -1) {
- parts.splice(codeIX, 1);
- fullKey = "code.";
- }
- MODIFIER_KEYS.forEach((modifierName) => {
- const index = parts.indexOf(modifierName);
- if (index > -1) {
- parts.splice(index, 1);
- fullKey += modifierName + ".";
- }
- });
- fullKey += key;
- if (parts.length != 0 || key.length === 0) {
- return null;
- }
- const result = {};
- result["domEventName"] = domEventName;
- result["fullKey"] = fullKey;
- return result;
- }
- /**
- * Determines whether the actual keys pressed match the configured key code string.
- * The `fullKeyCode` event is normalized in the `parseEventName` method when the
- * event is attached to the DOM during the `addEventListener` call. This is unseen
- * by the end user and is normalized for internal consistency and parsing.
- *
- * @param event The keyboard event.
- * @param fullKeyCode The normalized user defined expected key event string
- * @returns boolean.
- */
- static matchEventFullKeyCode(event, fullKeyCode) {
- let keycode = _keyMap[event.key] || event.key;
- let key = "";
- if (fullKeyCode.indexOf("code.") > -1) {
- keycode = event.code;
- key = "code.";
- }
- if (keycode == null || !keycode) return false;
- keycode = keycode.toLowerCase();
- if (keycode === " ") {
- keycode = "space";
- } else if (keycode === ".") {
- keycode = "dot";
- }
- MODIFIER_KEYS.forEach((modifierName) => {
- if (modifierName !== keycode) {
- const modifierGetter = MODIFIER_KEY_GETTERS[modifierName];
- if (modifierGetter(event)) {
- key += modifierName + ".";
- }
- }
- });
- key += keycode;
- return key === fullKeyCode;
- }
- /**
- * Configures a handler callback for a key event.
- * @param fullKey The event name that combines all simultaneous keystrokes.
- * @param handler The function that responds to the key event.
- * @param zone The zone in which the event occurred.
- * @returns A callback function.
- */
- static eventCallback(fullKey, handler, zone) {
- return (event) => {
- if (_KeyEventsPlugin.matchEventFullKeyCode(event, fullKey)) {
- zone.runGuarded(() => handler(event));
- }
- };
- }
- /** @internal */
- static _normalizeKey(keyName) {
- return keyName === "esc" ? "escape" : keyName;
- }
- static ɵfac = function KeyEventsPlugin_Factory(__ngFactoryType__) {
- return new (__ngFactoryType__ || _KeyEventsPlugin)(ɵɵinject(DOCUMENT));
- };
- static ɵprov = ɵɵdefineInjectable({
- token: _KeyEventsPlugin,
- factory: _KeyEventsPlugin.ɵfac
- });
- };
- (() => {
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(KeyEventsPlugin, [{
- type: Injectable
- }], () => [{
- type: void 0,
- decorators: [{
- type: Inject,
- args: [DOCUMENT]
- }]
- }], null);
- })();
- function bootstrapApplication(rootComponent, options) {
- return internalCreateApplication(__spreadValues({
- rootComponent
- }, createProvidersConfig(options)));
- }
- function createApplication(options) {
- return internalCreateApplication(createProvidersConfig(options));
- }
- function createProvidersConfig(options) {
- return {
- appProviders: [...BROWSER_MODULE_PROVIDERS, ...options?.providers ?? []],
- platformProviders: INTERNAL_BROWSER_PLATFORM_PROVIDERS
- };
- }
- function provideProtractorTestingSupport() {
- return [...TESTABILITY_PROVIDERS];
- }
- function initDomAdapter() {
- BrowserDomAdapter.makeCurrent();
- }
- function errorHandler() {
- return new ErrorHandler();
- }
- function _document() {
- setDocument(document);
- return document;
- }
- var INTERNAL_BROWSER_PLATFORM_PROVIDERS = [{
- provide: PLATFORM_ID,
- useValue: PLATFORM_BROWSER_ID
- }, {
- provide: PLATFORM_INITIALIZER,
- useValue: initDomAdapter,
- multi: true
- }, {
- provide: DOCUMENT,
- useFactory: _document
- }];
- var platformBrowser = createPlatformFactory(platformCore, "browser", INTERNAL_BROWSER_PLATFORM_PROVIDERS);
- var BROWSER_MODULE_PROVIDERS_MARKER = new InjectionToken(typeof ngDevMode === "undefined" || ngDevMode ? "BrowserModule Providers Marker" : "");
- var TESTABILITY_PROVIDERS = [{
- provide: TESTABILITY_GETTER,
- useClass: BrowserGetTestability
- }, {
- provide: TESTABILITY,
- useClass: Testability,
- deps: [NgZone, TestabilityRegistry, TESTABILITY_GETTER]
- }, {
- provide: Testability,
- // Also provide as `Testability` for backwards-compatibility.
- useClass: Testability,
- deps: [NgZone, TestabilityRegistry, TESTABILITY_GETTER]
- }];
- var BROWSER_MODULE_PROVIDERS = [{
- provide: INJECTOR_SCOPE,
- useValue: "root"
- }, {
- provide: ErrorHandler,
- useFactory: errorHandler
- }, {
- provide: EVENT_MANAGER_PLUGINS,
- useClass: DomEventsPlugin,
- multi: true,
- deps: [DOCUMENT]
- }, {
- provide: EVENT_MANAGER_PLUGINS,
- useClass: KeyEventsPlugin,
- multi: true,
- deps: [DOCUMENT]
- }, DomRendererFactory2, SharedStylesHost, EventManager, {
- provide: RendererFactory2,
- useExisting: DomRendererFactory2
- }, {
- provide: XhrFactory,
- useClass: BrowserXhr
- }, typeof ngDevMode === "undefined" || ngDevMode ? {
- provide: BROWSER_MODULE_PROVIDERS_MARKER,
- useValue: true
- } : []];
- var BrowserModule = class _BrowserModule {
- constructor() {
- if (typeof ngDevMode === "undefined" || ngDevMode) {
- const providersAlreadyPresent = inject(BROWSER_MODULE_PROVIDERS_MARKER, {
- optional: true,
- skipSelf: true
- });
- if (providersAlreadyPresent) {
- throw new RuntimeError(5100, `Providers from the \`BrowserModule\` have already been loaded. If you need access to common directives such as NgIf and NgFor, import the \`CommonModule\` instead.`);
- }
- }
- }
- static ɵfac = function BrowserModule_Factory(__ngFactoryType__) {
- return new (__ngFactoryType__ || _BrowserModule)();
- };
- static ɵmod = ɵɵdefineNgModule({
- type: _BrowserModule,
- exports: [CommonModule, ApplicationModule]
- });
- static ɵinj = ɵɵdefineInjector({
- providers: [...BROWSER_MODULE_PROVIDERS, ...TESTABILITY_PROVIDERS],
- imports: [CommonModule, ApplicationModule]
- });
- };
- (() => {
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(BrowserModule, [{
- type: NgModule,
- args: [{
- providers: [...BROWSER_MODULE_PROVIDERS, ...TESTABILITY_PROVIDERS],
- exports: [CommonModule, ApplicationModule]
- }]
- }], () => [], null);
- })();
- export {
- EVENT_MANAGER_PLUGINS,
- EventManager,
- EventManagerPlugin,
- SharedStylesHost,
- REMOVE_STYLES_ON_COMPONENT_DESTROY,
- DomRendererFactory2,
- BrowserDomAdapter,
- BrowserGetTestability,
- DomEventsPlugin,
- KeyEventsPlugin,
- bootstrapApplication,
- createApplication,
- provideProtractorTestingSupport,
- platformBrowser,
- BrowserModule
- };
- /*! Bundled license information:
- @angular/platform-browser/fesm2022/dom_renderer.mjs:
- @angular/platform-browser/fesm2022/browser.mjs:
- (**
- * @license Angular v20.0.5
- * (c) 2010-2025 Google LLC. https://angular.io/
- * License: MIT
- *)
- */
- //# sourceMappingURL=chunk-NFFN32GK.js.map
|