`\n // and attach a portal programmatically in the parent component. When Angular does the first CD\n // round, it will fire the setter with empty string, causing the user's content to be cleared.\n if (this.hasAttached() && !portal && !this._isInitialized) {\n return;\n }\n if (this.hasAttached()) {\n super.detach();\n }\n if (portal) {\n super.attach(portal);\n }\n this._attachedPortal = portal || null;\n }\n /** Emits when a portal is attached to the outlet. */\n attached = new EventEmitter();\n /** Component or view reference that is attached to the portal. */\n get attachedRef() {\n return this._attachedRef;\n }\n ngOnInit() {\n this._isInitialized = true;\n }\n ngOnDestroy() {\n super.dispose();\n this._attachedRef = this._attachedPortal = null;\n }\n /**\n * Attach the given ComponentPortal to this PortalOutlet.\n *\n * @param portal Portal to be attached to the portal outlet.\n * @returns Reference to the created component.\n */\n attachComponentPortal(portal) {\n portal.setAttachedHost(this);\n // If the portal specifies an origin, use that as the logical location of the component\n // in the application tree. Otherwise use the location of this PortalOutlet.\n const viewContainerRef = portal.viewContainerRef != null ? portal.viewContainerRef : this._viewContainerRef;\n const ref = viewContainerRef.createComponent(portal.component, {\n index: viewContainerRef.length,\n injector: portal.injector || viewContainerRef.injector,\n projectableNodes: portal.projectableNodes || undefined,\n ngModuleRef: this._moduleRef || undefined\n });\n // If we're using a view container that's different from the injected one (e.g. when the portal\n // specifies its own) we need to move the component into the outlet, otherwise it'll be rendered\n // inside of the alternate view container.\n if (viewContainerRef !== this._viewContainerRef) {\n this._getRootNode().appendChild(ref.hostView.rootNodes[0]);\n }\n super.setDisposeFn(() => ref.destroy());\n this._attachedPortal = portal;\n this._attachedRef = ref;\n this.attached.emit(ref);\n return ref;\n }\n /**\n * Attach the given TemplatePortal to this PortalHost as an embedded View.\n * @param portal Portal to be attached.\n * @returns Reference to the created embedded view.\n */\n attachTemplatePortal(portal) {\n portal.setAttachedHost(this);\n const viewRef = this._viewContainerRef.createEmbeddedView(portal.templateRef, portal.context, {\n injector: portal.injector\n });\n super.setDisposeFn(() => this._viewContainerRef.clear());\n this._attachedPortal = portal;\n this._attachedRef = viewRef;\n this.attached.emit(viewRef);\n return viewRef;\n }\n /**\n * Attaches the given DomPortal to this PortalHost by moving all of the portal content into it.\n * @param portal Portal to be attached.\n * @deprecated To be turned into a method.\n * @breaking-change 10.0.0\n */\n attachDomPortal = portal => {\n const element = portal.element;\n if (!element.parentNode && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error('DOM portal content must be attached to a parent node.');\n }\n // Anchor used to save the element's previous position so\n // that we can restore it when the portal is detached.\n const anchorNode = this._document.createComment('dom-portal');\n portal.setAttachedHost(this);\n element.parentNode.insertBefore(anchorNode, element);\n this._getRootNode().appendChild(element);\n this._attachedPortal = portal;\n super.setDisposeFn(() => {\n if (anchorNode.parentNode) {\n anchorNode.parentNode.replaceChild(element, anchorNode);\n }\n });\n };\n /** Gets the root node of the portal outlet. */\n _getRootNode() {\n const nativeElement = this._viewContainerRef.element.nativeElement;\n // The directive could be set on a template which will result in a comment\n // node being the root. Use the comment's parent node if that is the case.\n return nativeElement.nodeType === nativeElement.ELEMENT_NODE ? nativeElement : nativeElement.parentNode;\n }\n static ɵfac = function CdkPortalOutlet_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkPortalOutlet)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkPortalOutlet,\n selectors: [[\"\", \"cdkPortalOutlet\", \"\"]],\n inputs: {\n portal: [0, \"cdkPortalOutlet\", \"portal\"]\n },\n outputs: {\n attached: \"attached\"\n },\n exportAs: [\"cdkPortalOutlet\"],\n features: [i0.ɵɵInheritDefinitionFeature]\n });\n }\n return CdkPortalOutlet;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * @deprecated Use `CdkPortalOutlet` instead.\n * @breaking-change 9.0.0\n */\nlet PortalHostDirective = /*#__PURE__*/(() => {\n class PortalHostDirective extends CdkPortalOutlet {\n static ɵfac = /* @__PURE__ */(() => {\n let ɵPortalHostDirective_BaseFactory;\n return function PortalHostDirective_Factory(__ngFactoryType__) {\n return (ɵPortalHostDirective_BaseFactory || (ɵPortalHostDirective_BaseFactory = i0.ɵɵgetInheritedFactory(PortalHostDirective)))(__ngFactoryType__ || PortalHostDirective);\n };\n })();\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: PortalHostDirective,\n selectors: [[\"\", \"cdkPortalHost\", \"\"], [\"\", \"portalHost\", \"\"]],\n inputs: {\n portal: [0, \"cdkPortalHost\", \"portal\"]\n },\n exportAs: [\"cdkPortalHost\"],\n features: [i0.ɵɵProvidersFeature([{\n provide: CdkPortalOutlet,\n useExisting: PortalHostDirective\n }]), i0.ɵɵInheritDefinitionFeature]\n });\n }\n return PortalHostDirective;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet PortalModule = /*#__PURE__*/(() => {\n class PortalModule {\n static ɵfac = function PortalModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || PortalModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: PortalModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({});\n }\n return PortalModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { BasePortalOutlet as B, CdkPortalOutlet as C, DomPortalOutlet as D, PortalModule as P, TemplatePortal as T, ComponentPortal as a, CdkPortal as b, TemplatePortalDirective as c, PortalHostDirective as d, Portal as e, DomPortal as f, BasePortalHost as g, DomPortalHost as h };\n","/** Gets whether an event could be a faked `mousedown` event dispatched by a screen reader. */\nfunction isFakeMousedownFromScreenReader(event) {\n // Some screen readers will dispatch a fake `mousedown` event when pressing enter or space on\n // a clickable element. We can distinguish these events when `event.buttons` is zero, or\n // `event.detail` is zero depending on the browser:\n // - `event.buttons` works on Firefox, but fails on Chrome.\n // - `detail` works on Chrome, but fails on Firefox.\n return event.buttons === 0 || event.detail === 0;\n}\n/** Gets whether an event could be a faked `touchstart` event dispatched by a screen reader. */\nfunction isFakeTouchstartFromScreenReader(event) {\n const touch = event.touches && event.touches[0] || event.changedTouches && event.changedTouches[0];\n // A fake `touchstart` can be distinguished from a real one by looking at the `identifier`\n // which is typically >= 0 on a real device versus -1 from a screen reader. Just to be safe,\n // we can also look at `radiusX` and `radiusY`. This behavior was observed against a Windows 10\n // device with a touch screen running NVDA v2020.4 and Firefox 85 or Chrome 88.\n return !!touch && touch.identifier === -1 && (touch.radiusX == null || touch.radiusX === 1) && (touch.radiusY == null || touch.radiusY === 1);\n}\nexport { isFakeTouchstartFromScreenReader as a, isFakeMousedownFromScreenReader as i };\n","let shadowDomIsSupported;\n/** Checks whether the user's browser support Shadow DOM. */\nfunction _supportsShadowDom() {\n if (shadowDomIsSupported == null) {\n const head = typeof document !== 'undefined' ? document.head : null;\n shadowDomIsSupported = !!(head && (head.createShadowRoot || head.attachShadow));\n }\n return shadowDomIsSupported;\n}\n/** Gets the shadow root of an element, if supported and the element is inside the Shadow DOM. */\nfunction _getShadowRoot(element) {\n if (_supportsShadowDom()) {\n const rootNode = element.getRootNode ? element.getRootNode() : null;\n // Note that this should be caught by `_supportsShadowDom`, but some\n // teams have been able to hit this code path on unsupported browsers.\n if (typeof ShadowRoot !== 'undefined' && ShadowRoot && rootNode instanceof ShadowRoot) {\n return rootNode;\n }\n }\n return null;\n}\n/**\n * Gets the currently-focused element on the page while\n * also piercing through Shadow DOM boundaries.\n */\nfunction _getFocusedElementPierceShadowDom() {\n let activeElement = typeof document !== 'undefined' && document ? document.activeElement : null;\n while (activeElement && activeElement.shadowRoot) {\n const newActiveElement = activeElement.shadowRoot.activeElement;\n if (newActiveElement === activeElement) {\n break;\n } else {\n activeElement = newActiveElement;\n }\n }\n return activeElement;\n}\n/** Gets the target of an event while accounting for Shadow DOM. */\nfunction _getEventTarget(event) {\n // If an event is bound outside the Shadow DOM, the `event.target` will\n // point to the shadow root so we have to use `composedPath` instead.\n return event.composedPath ? event.composedPath()[0] : event.target;\n}\nexport { _getEventTarget as _, _getShadowRoot as a, _getFocusedElementPierceShadowDom as b, _supportsShadowDom as c };\n","import { VERSION } from '@angular/core';\n\n// TODO(crisbeto): remove this function when making breaking changes for v20.\n/**\n * Binds an event listener with specific options in a backwards-compatible way.\n * This function is necessary, because `Renderer2.listen` only supports listener options\n * after 19.1 and during the v19 period we support any 19.x version.\n * @docs-private\n */\nfunction _bindEventWithOptions(renderer, target, eventName, callback, options) {\n const major = parseInt(VERSION.major);\n const minor = parseInt(VERSION.minor);\n // Event options in `listen` are only supported in 19.1 and beyond.\n // We also allow 0.0.x, because that indicates a build at HEAD.\n if (major > 19 || major === 19 && minor > 0 || major === 0 && minor === 0) {\n return renderer.listen(target, eventName, callback, options);\n }\n target.addEventListener(eventName, callback, options);\n return () => {\n target.removeEventListener(eventName, callback, options);\n };\n}\nexport { _bindEventWithOptions as _ };\n","import * as i0 from '@angular/core';\nimport { inject, PLATFORM_ID, Injectable } from '@angular/core';\nimport { isPlatformBrowser } from '@angular/common';\n\n// Whether the current platform supports the V8 Break Iterator. The V8 check\n// is necessary to detect all Blink based browsers.\nlet hasV8BreakIterator;\n// We need a try/catch around the reference to `Intl`, because accessing it in some cases can\n// cause IE to throw. These cases are tied to particular versions of Windows and can happen if\n// the consumer is providing a polyfilled `Map`. See:\n// https://github.com/Microsoft/ChakraCore/issues/3189\n// https://github.com/angular/components/issues/15687\ntry {\n hasV8BreakIterator = typeof Intl !== 'undefined' && Intl.v8BreakIterator;\n} catch {\n hasV8BreakIterator = false;\n}\n/**\n * Service to detect the current platform by comparing the userAgent strings and\n * checking browser-specific global properties.\n */\nlet Platform = /*#__PURE__*/(() => {\n class Platform {\n _platformId = inject(PLATFORM_ID);\n // We want to use the Angular platform check because if the Document is shimmed\n // without the navigator, the following checks will fail. This is preferred because\n // sometimes the Document may be shimmed without the user's knowledge or intention\n /** Whether the Angular application is being rendered in the browser. */\n isBrowser = this._platformId ? isPlatformBrowser(this._platformId) : typeof document === 'object' && !!document;\n /** Whether the current browser is Microsoft Edge. */\n EDGE = this.isBrowser && /(edge)/i.test(navigator.userAgent);\n /** Whether the current rendering engine is Microsoft Trident. */\n TRIDENT = this.isBrowser && /(msie|trident)/i.test(navigator.userAgent);\n // EdgeHTML and Trident mock Blink specific things and need to be excluded from this check.\n /** Whether the current rendering engine is Blink. */\n BLINK = this.isBrowser && !!(window.chrome || hasV8BreakIterator) && typeof CSS !== 'undefined' && !this.EDGE && !this.TRIDENT;\n // Webkit is part of the userAgent in EdgeHTML, Blink and Trident. Therefore we need to\n // ensure that Webkit runs standalone and is not used as another engine's base.\n /** Whether the current rendering engine is WebKit. */\n WEBKIT = this.isBrowser && /AppleWebKit/i.test(navigator.userAgent) && !this.BLINK && !this.EDGE && !this.TRIDENT;\n /** Whether the current platform is Apple iOS. */\n IOS = this.isBrowser && /iPad|iPhone|iPod/.test(navigator.userAgent) && !('MSStream' in window);\n // It's difficult to detect the plain Gecko engine, because most of the browsers identify\n // them self as Gecko-like browsers and modify the userAgent's according to that.\n // Since we only cover one explicit Firefox case, we can simply check for Firefox\n // instead of having an unstable check for Gecko.\n /** Whether the current browser is Firefox. */\n FIREFOX = this.isBrowser && /(firefox|minefield)/i.test(navigator.userAgent);\n /** Whether the current platform is Android. */\n // Trident on mobile adds the android platform to the userAgent to trick detections.\n ANDROID = this.isBrowser && /android/i.test(navigator.userAgent) && !this.TRIDENT;\n // Safari browsers will include the Safari keyword in their userAgent. Some browsers may fake\n // this and just place the Safari keyword in the userAgent. To be more safe about Safari every\n // Safari browser should also use Webkit as its layout engine.\n /** Whether the current browser is Safari. */\n SAFARI = this.isBrowser && /safari/i.test(navigator.userAgent) && this.WEBKIT;\n constructor() {}\n static ɵfac = function Platform_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || Platform)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: Platform,\n factory: Platform.ɵfac,\n providedIn: 'root'\n });\n }\n return Platform;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { Platform as P };\n","/** Cached result of whether the user's browser supports passive event listeners. */\nlet supportsPassiveEvents;\n/**\n * Checks whether the user's browser supports passive event listeners.\n * See: https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md\n */\nfunction supportsPassiveEventListeners() {\n if (supportsPassiveEvents == null && typeof window !== 'undefined') {\n try {\n window.addEventListener('test', null, Object.defineProperty({}, 'passive', {\n get: () => supportsPassiveEvents = true\n }));\n } finally {\n supportsPassiveEvents = supportsPassiveEvents || false;\n }\n }\n return supportsPassiveEvents;\n}\n/**\n * Normalizes an `AddEventListener` object to something that can be passed\n * to `addEventListener` on any browser, no matter whether it supports the\n * `options` parameter.\n * @param options Object to be normalized.\n */\nfunction normalizePassiveListenerOptions(options) {\n return supportsPassiveEventListeners() ? options : !!options.capture;\n}\nexport { normalizePassiveListenerOptions as n, supportsPassiveEventListeners as s };\n","import { ElementRef } from '@angular/core';\nfunction coerceNumberProperty(value, fallbackValue = 0) {\n if (_isNumberValue(value)) {\n return Number(value);\n }\n return arguments.length === 2 ? fallbackValue : 0;\n}\n/**\n * Whether the provided value is considered a number.\n * @docs-private\n */\nfunction _isNumberValue(value) {\n // parseFloat(value) handles most of the cases we're interested in (it treats null, empty string,\n // and other non-number values as NaN, where Number just uses 0) but it considers the string\n // '123hello' to be a valid number. Therefore we also check if Number(value) is NaN.\n return !isNaN(parseFloat(value)) && !isNaN(Number(value));\n}\n\n/**\n * Coerces an ElementRef or an Element into an element.\n * Useful for APIs that can accept either a ref or the native element itself.\n */\nfunction coerceElement(elementOrRef) {\n return elementOrRef instanceof ElementRef ? elementOrRef.nativeElement : elementOrRef;\n}\nexport { _isNumberValue as _, coerceNumberProperty as a, coerceElement as c };\n","import * as i0 from '@angular/core';\nimport { InjectionToken, inject, NgZone, RendererFactory2, Injectable, ElementRef, EventEmitter, Directive, Output } from '@angular/core';\nimport { BehaviorSubject, Subject, of } from 'rxjs';\nimport { skip, distinctUntilChanged, takeUntil } from 'rxjs/operators';\nimport { DOCUMENT } from '@angular/common';\nimport { i as isFakeMousedownFromScreenReader, a as isFakeTouchstartFromScreenReader } from './fake-event-detection-7055b1bd.mjs';\nimport { A as ALT, C as CONTROL, M as MAC_META, a as META, S as SHIFT } from './keycodes-107cd3e4.mjs';\nimport { _ as _getEventTarget, a as _getShadowRoot } from './shadow-dom-9f403d00.mjs';\nimport { _ as _bindEventWithOptions } from './backwards-compatibility-bcbe473e.mjs';\nimport { P as Platform } from './platform-610a08ae.mjs';\nimport { n as normalizePassiveListenerOptions } from './passive-listeners-c0bdc49f.mjs';\nimport { c as coerceElement } from './element-08c51fcd.mjs';\n\n/**\n * Injectable options for the InputModalityDetector. These are shallowly merged with the default\n * options.\n */\nconst INPUT_MODALITY_DETECTOR_OPTIONS = /*#__PURE__*/new InjectionToken('cdk-input-modality-detector-options');\n/**\n * Default options for the InputModalityDetector.\n *\n * Modifier keys are ignored by default (i.e. when pressed won't cause the service to detect\n * keyboard input modality) for two reasons:\n *\n * 1. Modifier keys are commonly used with mouse to perform actions such as 'right click' or 'open\n * in new tab', and are thus less representative of actual keyboard interaction.\n * 2. VoiceOver triggers some keyboard events when linearly navigating with Control + Option (but\n * confusingly not with Caps Lock). Thus, to have parity with other screen readers, we ignore\n * these keys so as to not update the input modality.\n *\n * Note that we do not by default ignore the right Meta key on Safari because it has the same key\n * code as the ContextMenu key on other browsers. When we switch to using event.key, we can\n * distinguish between the two.\n */\nconst INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS = {\n ignoreKeys: [ALT, CONTROL, MAC_META, META, SHIFT]\n};\n/**\n * The amount of time needed to pass after a touchstart event in order for a subsequent mousedown\n * event to be attributed as mouse and not touch.\n *\n * This is the value used by AngularJS Material. Through trial and error (on iPhone 6S) they found\n * that a value of around 650ms seems appropriate.\n */\nconst TOUCH_BUFFER_MS = 650;\n/**\n * Event listener options that enable capturing and also mark the listener as passive if the browser\n * supports it.\n */\nconst modalityEventListenerOptions = {\n passive: true,\n capture: true\n};\n/**\n * Service that detects the user's input modality.\n *\n * This service does not update the input modality when a user navigates with a screen reader\n * (e.g. linear navigation with VoiceOver, object navigation / browse mode with NVDA, virtual PC\n * cursor mode with JAWS). This is in part due to technical limitations (i.e. keyboard events do not\n * fire as expected in these modes) but is also arguably the correct behavior. Navigating with a\n * screen reader is akin to visually scanning a page, and should not be interpreted as actual user\n * input interaction.\n *\n * When a user is not navigating but *interacting* with a screen reader, this service attempts to\n * update the input modality to keyboard, but in general this service's behavior is largely\n * undefined.\n */\nlet InputModalityDetector = /*#__PURE__*/(() => {\n class InputModalityDetector {\n _platform = inject(Platform);\n _listenerCleanups;\n /** Emits whenever an input modality is detected. */\n modalityDetected;\n /** Emits when the input modality changes. */\n modalityChanged;\n /** The most recently detected input modality. */\n get mostRecentModality() {\n return this._modality.value;\n }\n /**\n * The most recently detected input modality event target. Is null if no input modality has been\n * detected or if the associated event target is null for some unknown reason.\n */\n _mostRecentTarget = null;\n /** The underlying BehaviorSubject that emits whenever an input modality is detected. */\n _modality = new BehaviorSubject(null);\n /** Options for this InputModalityDetector. */\n _options;\n /**\n * The timestamp of the last touch input modality. Used to determine whether mousedown events\n * should be attributed to mouse or touch.\n */\n _lastTouchMs = 0;\n /**\n * Handles keydown events. Must be an arrow function in order to preserve the context when it gets\n * bound.\n */\n _onKeydown = event => {\n // If this is one of the keys we should ignore, then ignore it and don't update the input\n // modality to keyboard.\n if (this._options?.ignoreKeys?.some(keyCode => keyCode === event.keyCode)) {\n return;\n }\n this._modality.next('keyboard');\n this._mostRecentTarget = _getEventTarget(event);\n };\n /**\n * Handles mousedown events. Must be an arrow function in order to preserve the context when it\n * gets bound.\n */\n _onMousedown = event => {\n // Touches trigger both touch and mouse events, so we need to distinguish between mouse events\n // that were triggered via mouse vs touch. To do so, check if the mouse event occurs closely\n // after the previous touch event.\n if (Date.now() - this._lastTouchMs < TOUCH_BUFFER_MS) {\n return;\n }\n // Fake mousedown events are fired by some screen readers when controls are activated by the\n // screen reader. Attribute them to keyboard input modality.\n this._modality.next(isFakeMousedownFromScreenReader(event) ? 'keyboard' : 'mouse');\n this._mostRecentTarget = _getEventTarget(event);\n };\n /**\n * Handles touchstart events. Must be an arrow function in order to preserve the context when it\n * gets bound.\n */\n _onTouchstart = event => {\n // Same scenario as mentioned in _onMousedown, but on touch screen devices, fake touchstart\n // events are fired. Again, attribute to keyboard input modality.\n if (isFakeTouchstartFromScreenReader(event)) {\n this._modality.next('keyboard');\n return;\n }\n // Store the timestamp of this touch event, as it's used to distinguish between mouse events\n // triggered via mouse vs touch.\n this._lastTouchMs = Date.now();\n this._modality.next('touch');\n this._mostRecentTarget = _getEventTarget(event);\n };\n constructor() {\n const ngZone = inject(NgZone);\n const document = inject(DOCUMENT);\n const options = inject(INPUT_MODALITY_DETECTOR_OPTIONS, {\n optional: true\n });\n this._options = {\n ...INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS,\n ...options\n };\n // Skip the first emission as it's null.\n this.modalityDetected = this._modality.pipe(skip(1));\n this.modalityChanged = this.modalityDetected.pipe(distinctUntilChanged());\n // If we're not in a browser, this service should do nothing, as there's no relevant input\n // modality to detect.\n if (this._platform.isBrowser) {\n const renderer = inject(RendererFactory2).createRenderer(null, null);\n this._listenerCleanups = ngZone.runOutsideAngular(() => {\n return [_bindEventWithOptions(renderer, document, 'keydown', this._onKeydown, modalityEventListenerOptions), _bindEventWithOptions(renderer, document, 'mousedown', this._onMousedown, modalityEventListenerOptions), _bindEventWithOptions(renderer, document, 'touchstart', this._onTouchstart, modalityEventListenerOptions)];\n });\n }\n }\n ngOnDestroy() {\n this._modality.complete();\n this._listenerCleanups?.forEach(cleanup => cleanup());\n }\n static ɵfac = function InputModalityDetector_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || InputModalityDetector)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: InputModalityDetector,\n factory: InputModalityDetector.ɵfac,\n providedIn: 'root'\n });\n }\n return InputModalityDetector;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Detection mode used for attributing the origin of a focus event. */\nvar FocusMonitorDetectionMode = /*#__PURE__*/function (FocusMonitorDetectionMode) {\n /**\n * Any mousedown, keydown, or touchstart event that happened in the previous\n * tick or the current tick will be used to assign a focus event's origin (to\n * either mouse, keyboard, or touch). This is the default option.\n */\n FocusMonitorDetectionMode[FocusMonitorDetectionMode[\"IMMEDIATE\"] = 0] = \"IMMEDIATE\";\n /**\n * A focus event's origin is always attributed to the last corresponding\n * mousedown, keydown, or touchstart event, no matter how long ago it occurred.\n */\n FocusMonitorDetectionMode[FocusMonitorDetectionMode[\"EVENTUAL\"] = 1] = \"EVENTUAL\";\n return FocusMonitorDetectionMode;\n}(FocusMonitorDetectionMode || {});\n/** InjectionToken for FocusMonitorOptions. */\nconst FOCUS_MONITOR_DEFAULT_OPTIONS = /*#__PURE__*/new InjectionToken('cdk-focus-monitor-default-options');\n/**\n * Event listener options that enable capturing and also\n * mark the listener as passive if the browser supports it.\n */\nconst captureEventListenerOptions = /*#__PURE__*/normalizePassiveListenerOptions({\n passive: true,\n capture: true\n});\n/** Monitors mouse and keyboard events to determine the cause of focus events. */\nlet FocusMonitor = /*#__PURE__*/(() => {\n class FocusMonitor {\n _ngZone = inject(NgZone);\n _platform = inject(Platform);\n _inputModalityDetector = inject(InputModalityDetector);\n /** The focus origin that the next focus event is a result of. */\n _origin = null;\n /** The FocusOrigin of the last focus event tracked by the FocusMonitor. */\n _lastFocusOrigin;\n /** Whether the window has just been focused. */\n _windowFocused = false;\n /** The timeout id of the window focus timeout. */\n _windowFocusTimeoutId;\n /** The timeout id of the origin clearing timeout. */\n _originTimeoutId;\n /**\n * Whether the origin was determined via a touch interaction. Necessary as properly attributing\n * focus events to touch interactions requires special logic.\n */\n _originFromTouchInteraction = false;\n /** Map of elements being monitored to their info. */\n _elementInfo = new Map();\n /** The number of elements currently being monitored. */\n _monitoredElementCount = 0;\n /**\n * Keeps track of the root nodes to which we've currently bound a focus/blur handler,\n * as well as the number of monitored elements that they contain. We have to treat focus/blur\n * handlers differently from the rest of the events, because the browser won't emit events\n * to the document when focus moves inside of a shadow root.\n */\n _rootNodeFocusListenerCount = new Map();\n /**\n * The specified detection mode, used for attributing the origin of a focus\n * event.\n */\n _detectionMode;\n /**\n * Event listener for `focus` events on the window.\n * Needs to be an arrow function in order to preserve the context when it gets bound.\n */\n _windowFocusListener = () => {\n // Make a note of when the window regains focus, so we can\n // restore the origin info for the focused element.\n this._windowFocused = true;\n this._windowFocusTimeoutId = setTimeout(() => this._windowFocused = false);\n };\n /** Used to reference correct document/window */\n _document = inject(DOCUMENT, {\n optional: true\n });\n /** Subject for stopping our InputModalityDetector subscription. */\n _stopInputModalityDetector = new Subject();\n constructor() {\n const options = inject(FOCUS_MONITOR_DEFAULT_OPTIONS, {\n optional: true\n });\n this._detectionMode = options?.detectionMode || FocusMonitorDetectionMode.IMMEDIATE;\n }\n /**\n * Event listener for `focus` and 'blur' events on the document.\n * Needs to be an arrow function in order to preserve the context when it gets bound.\n */\n _rootNodeFocusAndBlurListener = event => {\n const target = _getEventTarget(event);\n // We need to walk up the ancestor chain in order to support `checkChildren`.\n for (let element = target; element; element = element.parentElement) {\n if (event.type === 'focus') {\n this._onFocus(event, element);\n } else {\n this._onBlur(event, element);\n }\n }\n };\n monitor(element, checkChildren = false) {\n const nativeElement = coerceElement(element);\n // Do nothing if we're not on the browser platform or the passed in node isn't an element.\n if (!this._platform.isBrowser || nativeElement.nodeType !== 1) {\n // Note: we don't want the observable to emit at all so we don't pass any parameters.\n return of();\n }\n // If the element is inside the shadow DOM, we need to bind our focus/blur listeners to\n // the shadow root, rather than the `document`, because the browser won't emit focus events\n // to the `document`, if focus is moving within the same shadow root.\n const rootNode = _getShadowRoot(nativeElement) || this._getDocument();\n const cachedInfo = this._elementInfo.get(nativeElement);\n // Check if we're already monitoring this element.\n if (cachedInfo) {\n if (checkChildren) {\n // TODO(COMP-318): this can be problematic, because it'll turn all non-checkChildren\n // observers into ones that behave as if `checkChildren` was turned on. We need a more\n // robust solution.\n cachedInfo.checkChildren = true;\n }\n return cachedInfo.subject;\n }\n // Create monitored element info.\n const info = {\n checkChildren: checkChildren,\n subject: new Subject(),\n rootNode\n };\n this._elementInfo.set(nativeElement, info);\n this._registerGlobalListeners(info);\n return info.subject;\n }\n stopMonitoring(element) {\n const nativeElement = coerceElement(element);\n const elementInfo = this._elementInfo.get(nativeElement);\n if (elementInfo) {\n elementInfo.subject.complete();\n this._setClasses(nativeElement);\n this._elementInfo.delete(nativeElement);\n this._removeGlobalListeners(elementInfo);\n }\n }\n focusVia(element, origin, options) {\n const nativeElement = coerceElement(element);\n const focusedElement = this._getDocument().activeElement;\n // If the element is focused already, calling `focus` again won't trigger the event listener\n // which means that the focus classes won't be updated. If that's the case, update the classes\n // directly without waiting for an event.\n if (nativeElement === focusedElement) {\n this._getClosestElementsInfo(nativeElement).forEach(([currentElement, info]) => this._originChanged(currentElement, origin, info));\n } else {\n this._setOrigin(origin);\n // `focus` isn't available on the server\n if (typeof nativeElement.focus === 'function') {\n nativeElement.focus(options);\n }\n }\n }\n ngOnDestroy() {\n this._elementInfo.forEach((_info, element) => this.stopMonitoring(element));\n }\n /** Access injected document if available or fallback to global document reference */\n _getDocument() {\n return this._document || document;\n }\n /** Use defaultView of injected document if available or fallback to global window reference */\n _getWindow() {\n const doc = this._getDocument();\n return doc.defaultView || window;\n }\n _getFocusOrigin(focusEventTarget) {\n if (this._origin) {\n // If the origin was realized via a touch interaction, we need to perform additional checks\n // to determine whether the focus origin should be attributed to touch or program.\n if (this._originFromTouchInteraction) {\n return this._shouldBeAttributedToTouch(focusEventTarget) ? 'touch' : 'program';\n } else {\n return this._origin;\n }\n }\n // If the window has just regained focus, we can restore the most recent origin from before the\n // window blurred. Otherwise, we've reached the point where we can't identify the source of the\n // focus. This typically means one of two things happened:\n //\n // 1) The element was programmatically focused, or\n // 2) The element was focused via screen reader navigation (which generally doesn't fire\n // events).\n //\n // Because we can't distinguish between these two cases, we default to setting `program`.\n if (this._windowFocused && this._lastFocusOrigin) {\n return this._lastFocusOrigin;\n }\n // If the interaction is coming from an input label, we consider it a mouse interactions.\n // This is a special case where focus moves on `click`, rather than `mousedown` which breaks\n // our detection, because all our assumptions are for `mousedown`. We need to handle this\n // special case, because it's very common for checkboxes and radio buttons.\n if (focusEventTarget && this._isLastInteractionFromInputLabel(focusEventTarget)) {\n return 'mouse';\n }\n return 'program';\n }\n /**\n * Returns whether the focus event should be attributed to touch. Recall that in IMMEDIATE mode, a\n * touch origin isn't immediately reset at the next tick (see _setOrigin). This means that when we\n * handle a focus event following a touch interaction, we need to determine whether (1) the focus\n * event was directly caused by the touch interaction or (2) the focus event was caused by a\n * subsequent programmatic focus call triggered by the touch interaction.\n * @param focusEventTarget The target of the focus event under examination.\n */\n _shouldBeAttributedToTouch(focusEventTarget) {\n // Please note that this check is not perfect. Consider the following edge case:\n //\n //
\n //\n // Suppose there is a FocusMonitor in IMMEDIATE mode attached to #parent. When the user touches\n // #child, #parent is programmatically focused. This code will attribute the focus to touch\n // instead of program. This is a relatively minor edge-case that can be worked around by using\n // focusVia(parent, 'program') to focus #parent.\n return this._detectionMode === FocusMonitorDetectionMode.EVENTUAL || !!focusEventTarget?.contains(this._inputModalityDetector._mostRecentTarget);\n }\n /**\n * Sets the focus classes on the element based on the given focus origin.\n * @param element The element to update the classes on.\n * @param origin The focus origin.\n */\n _setClasses(element, origin) {\n element.classList.toggle('cdk-focused', !!origin);\n element.classList.toggle('cdk-touch-focused', origin === 'touch');\n element.classList.toggle('cdk-keyboard-focused', origin === 'keyboard');\n element.classList.toggle('cdk-mouse-focused', origin === 'mouse');\n element.classList.toggle('cdk-program-focused', origin === 'program');\n }\n /**\n * Updates the focus origin. If we're using immediate detection mode, we schedule an async\n * function to clear the origin at the end of a timeout. The duration of the timeout depends on\n * the origin being set.\n * @param origin The origin to set.\n * @param isFromInteraction Whether we are setting the origin from an interaction event.\n */\n _setOrigin(origin, isFromInteraction = false) {\n this._ngZone.runOutsideAngular(() => {\n this._origin = origin;\n this._originFromTouchInteraction = origin === 'touch' && isFromInteraction;\n // If we're in IMMEDIATE mode, reset the origin at the next tick (or in `TOUCH_BUFFER_MS` ms\n // for a touch event). We reset the origin at the next tick because Firefox focuses one tick\n // after the interaction event. We wait `TOUCH_BUFFER_MS` ms before resetting the origin for\n // a touch event because when a touch event is fired, the associated focus event isn't yet in\n // the event queue. Before doing so, clear any pending timeouts.\n if (this._detectionMode === FocusMonitorDetectionMode.IMMEDIATE) {\n clearTimeout(this._originTimeoutId);\n const ms = this._originFromTouchInteraction ? TOUCH_BUFFER_MS : 1;\n this._originTimeoutId = setTimeout(() => this._origin = null, ms);\n }\n });\n }\n /**\n * Handles focus events on a registered element.\n * @param event The focus event.\n * @param element The monitored element.\n */\n _onFocus(event, element) {\n // NOTE(mmalerba): We currently set the classes based on the focus origin of the most recent\n // focus event affecting the monitored element. If we want to use the origin of the first event\n // instead we should check for the cdk-focused class here and return if the element already has\n // it. (This only matters for elements that have includesChildren = true).\n // If we are not counting child-element-focus as focused, make sure that the event target is the\n // monitored element itself.\n const elementInfo = this._elementInfo.get(element);\n const focusEventTarget = _getEventTarget(event);\n if (!elementInfo || !elementInfo.checkChildren && element !== focusEventTarget) {\n return;\n }\n this._originChanged(element, this._getFocusOrigin(focusEventTarget), elementInfo);\n }\n /**\n * Handles blur events on a registered element.\n * @param event The blur event.\n * @param element The monitored element.\n */\n _onBlur(event, element) {\n // If we are counting child-element-focus as focused, make sure that we aren't just blurring in\n // order to focus another child of the monitored element.\n const elementInfo = this._elementInfo.get(element);\n if (!elementInfo || elementInfo.checkChildren && event.relatedTarget instanceof Node && element.contains(event.relatedTarget)) {\n return;\n }\n this._setClasses(element);\n this._emitOrigin(elementInfo, null);\n }\n _emitOrigin(info, origin) {\n if (info.subject.observers.length) {\n this._ngZone.run(() => info.subject.next(origin));\n }\n }\n _registerGlobalListeners(elementInfo) {\n if (!this._platform.isBrowser) {\n return;\n }\n const rootNode = elementInfo.rootNode;\n const rootNodeFocusListeners = this._rootNodeFocusListenerCount.get(rootNode) || 0;\n if (!rootNodeFocusListeners) {\n this._ngZone.runOutsideAngular(() => {\n rootNode.addEventListener('focus', this._rootNodeFocusAndBlurListener, captureEventListenerOptions);\n rootNode.addEventListener('blur', this._rootNodeFocusAndBlurListener, captureEventListenerOptions);\n });\n }\n this._rootNodeFocusListenerCount.set(rootNode, rootNodeFocusListeners + 1);\n // Register global listeners when first element is monitored.\n if (++this._monitoredElementCount === 1) {\n // Note: we listen to events in the capture phase so we\n // can detect them even if the user stops propagation.\n this._ngZone.runOutsideAngular(() => {\n const window = this._getWindow();\n window.addEventListener('focus', this._windowFocusListener);\n });\n // The InputModalityDetector is also just a collection of global listeners.\n this._inputModalityDetector.modalityDetected.pipe(takeUntil(this._stopInputModalityDetector)).subscribe(modality => {\n this._setOrigin(modality, true /* isFromInteraction */);\n });\n }\n }\n _removeGlobalListeners(elementInfo) {\n const rootNode = elementInfo.rootNode;\n if (this._rootNodeFocusListenerCount.has(rootNode)) {\n const rootNodeFocusListeners = this._rootNodeFocusListenerCount.get(rootNode);\n if (rootNodeFocusListeners > 1) {\n this._rootNodeFocusListenerCount.set(rootNode, rootNodeFocusListeners - 1);\n } else {\n rootNode.removeEventListener('focus', this._rootNodeFocusAndBlurListener, captureEventListenerOptions);\n rootNode.removeEventListener('blur', this._rootNodeFocusAndBlurListener, captureEventListenerOptions);\n this._rootNodeFocusListenerCount.delete(rootNode);\n }\n }\n // Unregister global listeners when last element is unmonitored.\n if (! --this._monitoredElementCount) {\n const window = this._getWindow();\n window.removeEventListener('focus', this._windowFocusListener);\n // Equivalently, stop our InputModalityDetector subscription.\n this._stopInputModalityDetector.next();\n // Clear timeouts for all potentially pending timeouts to prevent the leaks.\n clearTimeout(this._windowFocusTimeoutId);\n clearTimeout(this._originTimeoutId);\n }\n }\n /** Updates all the state on an element once its focus origin has changed. */\n _originChanged(element, origin, elementInfo) {\n this._setClasses(element, origin);\n this._emitOrigin(elementInfo, origin);\n this._lastFocusOrigin = origin;\n }\n /**\n * Collects the `MonitoredElementInfo` of a particular element and\n * all of its ancestors that have enabled `checkChildren`.\n * @param element Element from which to start the search.\n */\n _getClosestElementsInfo(element) {\n const results = [];\n this._elementInfo.forEach((info, currentElement) => {\n if (currentElement === element || info.checkChildren && currentElement.contains(element)) {\n results.push([currentElement, info]);\n }\n });\n return results;\n }\n /**\n * Returns whether an interaction is likely to have come from the user clicking the `label` of\n * an `input` or `textarea` in order to focus it.\n * @param focusEventTarget Target currently receiving focus.\n */\n _isLastInteractionFromInputLabel(focusEventTarget) {\n const {\n _mostRecentTarget: mostRecentTarget,\n mostRecentModality\n } = this._inputModalityDetector;\n // If the last interaction used the mouse on an element contained by one of the labels\n // of an `input`/`textarea` that is currently focused, it is very likely that the\n // user redirected focus using the label.\n if (mostRecentModality !== 'mouse' || !mostRecentTarget || mostRecentTarget === focusEventTarget || focusEventTarget.nodeName !== 'INPUT' && focusEventTarget.nodeName !== 'TEXTAREA' || focusEventTarget.disabled) {\n return false;\n }\n const labels = focusEventTarget.labels;\n if (labels) {\n for (let i = 0; i < labels.length; i++) {\n if (labels[i].contains(mostRecentTarget)) {\n return true;\n }\n }\n }\n return false;\n }\n static ɵfac = function FocusMonitor_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || FocusMonitor)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: FocusMonitor,\n factory: FocusMonitor.ɵfac,\n providedIn: 'root'\n });\n }\n return FocusMonitor;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Directive that determines how a particular element was focused (via keyboard, mouse, touch, or\n * programmatically) and adds corresponding classes to the element.\n *\n * There are two variants of this directive:\n * 1) cdkMonitorElementFocus: does not consider an element to be focused if one of its children is\n * focused.\n * 2) cdkMonitorSubtreeFocus: considers an element focused if it or any of its children are focused.\n */\nlet CdkMonitorFocus = /*#__PURE__*/(() => {\n class CdkMonitorFocus {\n _elementRef = inject(ElementRef);\n _focusMonitor = inject(FocusMonitor);\n _monitorSubscription;\n _focusOrigin = null;\n cdkFocusChange = new EventEmitter();\n constructor() {}\n get focusOrigin() {\n return this._focusOrigin;\n }\n ngAfterViewInit() {\n const element = this._elementRef.nativeElement;\n this._monitorSubscription = this._focusMonitor.monitor(element, element.nodeType === 1 && element.hasAttribute('cdkMonitorSubtreeFocus')).subscribe(origin => {\n this._focusOrigin = origin;\n this.cdkFocusChange.emit(origin);\n });\n }\n ngOnDestroy() {\n this._focusMonitor.stopMonitoring(this._elementRef);\n if (this._monitorSubscription) {\n this._monitorSubscription.unsubscribe();\n }\n }\n static ɵfac = function CdkMonitorFocus_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkMonitorFocus)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkMonitorFocus,\n selectors: [[\"\", \"cdkMonitorElementFocus\", \"\"], [\"\", \"cdkMonitorSubtreeFocus\", \"\"]],\n outputs: {\n cdkFocusChange: \"cdkFocusChange\"\n },\n exportAs: [\"cdkMonitorFocus\"]\n });\n }\n return CdkMonitorFocus;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { CdkMonitorFocus as C, FocusMonitorDetectionMode as F, InputModalityDetector as I, INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS as a, INPUT_MODALITY_DETECTOR_OPTIONS as b, FOCUS_MONITOR_DEFAULT_OPTIONS as c, FocusMonitor as d };\n","import * as i0 from '@angular/core';\nimport { inject, Injector, EnvironmentInjector, ApplicationRef, createComponent, Injectable } from '@angular/core';\n\n/** Apps in which we've loaded styles. */\nconst appsWithLoaders = /*#__PURE__*/new WeakMap();\n/**\n * Service that loads structural styles dynamically\n * and ensures that they're only loaded once per app.\n */\nlet _CdkPrivateStyleLoader = /*#__PURE__*/(() => {\n class _CdkPrivateStyleLoader {\n _appRef;\n _injector = inject(Injector);\n _environmentInjector = inject(EnvironmentInjector);\n /**\n * Loads a set of styles.\n * @param loader Component which will be instantiated to load the styles.\n */\n load(loader) {\n // Resolve the app ref lazily to avoid circular dependency errors if this is called too early.\n const appRef = this._appRef = this._appRef || this._injector.get(ApplicationRef);\n let data = appsWithLoaders.get(appRef);\n // If we haven't loaded for this app before, we have to initialize it.\n if (!data) {\n data = {\n loaders: new Set(),\n refs: []\n };\n appsWithLoaders.set(appRef, data);\n // When the app is destroyed, we need to clean up all the related loaders.\n appRef.onDestroy(() => {\n appsWithLoaders.get(appRef)?.refs.forEach(ref => ref.destroy());\n appsWithLoaders.delete(appRef);\n });\n }\n // If the loader hasn't been loaded before, we need to instatiate it.\n if (!data.loaders.has(loader)) {\n data.loaders.add(loader);\n data.refs.push(createComponent(loader, {\n environmentInjector: this._environmentInjector\n }));\n }\n }\n static ɵfac = function _CdkPrivateStyleLoader_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || _CdkPrivateStyleLoader)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: _CdkPrivateStyleLoader,\n factory: _CdkPrivateStyleLoader.ɵfac,\n providedIn: 'root'\n });\n }\n return _CdkPrivateStyleLoader;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { _CdkPrivateStyleLoader as _ };\n","import * as i0 from '@angular/core';\nimport { Component, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core';\n\n/**\n * Component used to load the .cdk-visually-hidden styles.\n * @docs-private\n */\nlet _VisuallyHiddenLoader = /*#__PURE__*/(() => {\n class _VisuallyHiddenLoader {\n static ɵfac = function _VisuallyHiddenLoader_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || _VisuallyHiddenLoader)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: _VisuallyHiddenLoader,\n selectors: [[\"ng-component\"]],\n exportAs: [\"cdkVisuallyHidden\"],\n decls: 0,\n vars: 0,\n template: function _VisuallyHiddenLoader_Template(rf, ctx) {},\n styles: [\".cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n return _VisuallyHiddenLoader;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { _VisuallyHiddenLoader as _ };\n","function coerceArray(value) {\n return Array.isArray(value) ? value : [value];\n}\nexport { coerceArray as c };\n","import * as i0 from '@angular/core';\nimport { inject, CSP_NONCE, Injectable, NgZone } from '@angular/core';\nimport { Subject, combineLatest, concat, Observable } from 'rxjs';\nimport { take, skip, debounceTime, map, startWith, takeUntil } from 'rxjs/operators';\nimport { P as Platform } from './platform-610a08ae.mjs';\nimport { c as coerceArray } from './array-88e1bec3.mjs';\n\n/** Global registry for all dynamically-created, injected media queries. */\nconst mediaQueriesForWebkitCompatibility = /*#__PURE__*/new Set();\n/** Style tag that holds all of the dynamically-created media queries. */\nlet mediaQueryStyleNode;\n/** A utility for calling matchMedia queries. */\nlet MediaMatcher = /*#__PURE__*/(() => {\n class MediaMatcher {\n _platform = inject(Platform);\n _nonce = inject(CSP_NONCE, {\n optional: true\n });\n /** The internal matchMedia method to return back a MediaQueryList like object. */\n _matchMedia;\n constructor() {\n this._matchMedia = this._platform.isBrowser && window.matchMedia ?\n // matchMedia is bound to the window scope intentionally as it is an illegal invocation to\n // call it from a different scope.\n window.matchMedia.bind(window) : noopMatchMedia;\n }\n /**\n * Evaluates the given media query and returns the native MediaQueryList from which results\n * can be retrieved.\n * Confirms the layout engine will trigger for the selector query provided and returns the\n * MediaQueryList for the query provided.\n */\n matchMedia(query) {\n if (this._platform.WEBKIT || this._platform.BLINK) {\n createEmptyStyleRule(query, this._nonce);\n }\n return this._matchMedia(query);\n }\n static ɵfac = function MediaMatcher_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MediaMatcher)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: MediaMatcher,\n factory: MediaMatcher.ɵfac,\n providedIn: 'root'\n });\n }\n return MediaMatcher;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Creates an empty stylesheet that is used to work around browser inconsistencies related to\n * `matchMedia`. At the time of writing, it handles the following cases:\n * 1. On WebKit browsers, a media query has to have at least one rule in order for `matchMedia`\n * to fire. We work around it by declaring a dummy stylesheet with a `@media` declaration.\n * 2. In some cases Blink browsers will stop firing the `matchMedia` listener if none of the rules\n * inside the `@media` match existing elements on the page. We work around it by having one rule\n * targeting the `body`. See https://github.com/angular/components/issues/23546.\n */\nfunction createEmptyStyleRule(query, nonce) {\n if (mediaQueriesForWebkitCompatibility.has(query)) {\n return;\n }\n try {\n if (!mediaQueryStyleNode) {\n mediaQueryStyleNode = document.createElement('style');\n if (nonce) {\n mediaQueryStyleNode.setAttribute('nonce', nonce);\n }\n mediaQueryStyleNode.setAttribute('type', 'text/css');\n document.head.appendChild(mediaQueryStyleNode);\n }\n if (mediaQueryStyleNode.sheet) {\n mediaQueryStyleNode.sheet.insertRule(`@media ${query} {body{ }}`, 0);\n mediaQueriesForWebkitCompatibility.add(query);\n }\n } catch (e) {\n console.error(e);\n }\n}\n/** No-op matchMedia replacement for non-browser platforms. */\nfunction noopMatchMedia(query) {\n // Use `as any` here to avoid adding additional necessary properties for\n // the noop matcher.\n return {\n matches: query === 'all' || query === '',\n media: query,\n addListener: () => {},\n removeListener: () => {}\n };\n}\n\n/** Utility for checking the matching state of `@media` queries. */\nlet BreakpointObserver = /*#__PURE__*/(() => {\n class BreakpointObserver {\n _mediaMatcher = inject(MediaMatcher);\n _zone = inject(NgZone);\n /** A map of all media queries currently being listened for. */\n _queries = new Map();\n /** A subject for all other observables to takeUntil based on. */\n _destroySubject = new Subject();\n constructor() {}\n /** Completes the active subject, signalling to all other observables to complete. */\n ngOnDestroy() {\n this._destroySubject.next();\n this._destroySubject.complete();\n }\n /**\n * Whether one or more media queries match the current viewport size.\n * @param value One or more media queries to check.\n * @returns Whether any of the media queries match.\n */\n isMatched(value) {\n const queries = splitQueries(coerceArray(value));\n return queries.some(mediaQuery => this._registerQuery(mediaQuery).mql.matches);\n }\n /**\n * Gets an observable of results for the given queries that will emit new results for any changes\n * in matching of the given queries.\n * @param value One or more media queries to check.\n * @returns A stream of matches for the given queries.\n */\n observe(value) {\n const queries = splitQueries(coerceArray(value));\n const observables = queries.map(query => this._registerQuery(query).observable);\n let stateObservable = combineLatest(observables);\n // Emit the first state immediately, and then debounce the subsequent emissions.\n stateObservable = concat(stateObservable.pipe(take(1)), stateObservable.pipe(skip(1), debounceTime(0)));\n return stateObservable.pipe(map(breakpointStates => {\n const response = {\n matches: false,\n breakpoints: {}\n };\n breakpointStates.forEach(({\n matches,\n query\n }) => {\n response.matches = response.matches || matches;\n response.breakpoints[query] = matches;\n });\n return response;\n }));\n }\n /** Registers a specific query to be listened for. */\n _registerQuery(query) {\n // Only set up a new MediaQueryList if it is not already being listened for.\n if (this._queries.has(query)) {\n return this._queries.get(query);\n }\n const mql = this._mediaMatcher.matchMedia(query);\n // Create callback for match changes and add it is as a listener.\n const queryObservable = new Observable(observer => {\n // Listener callback methods are wrapped to be placed back in ngZone. Callbacks must be placed\n // back into the zone because matchMedia is only included in Zone.js by loading the\n // webapis-media-query.js file alongside the zone.js file. Additionally, some browsers do not\n // have MediaQueryList inherit from EventTarget, which causes inconsistencies in how Zone.js\n // patches it.\n const handler = e => this._zone.run(() => observer.next(e));\n mql.addListener(handler);\n return () => {\n mql.removeListener(handler);\n };\n }).pipe(startWith(mql), map(({\n matches\n }) => ({\n query,\n matches\n })), takeUntil(this._destroySubject));\n // Add the MediaQueryList to the set of queries.\n const output = {\n observable: queryObservable,\n mql\n };\n this._queries.set(query, output);\n return output;\n }\n static ɵfac = function BreakpointObserver_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || BreakpointObserver)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: BreakpointObserver,\n factory: BreakpointObserver.ɵfac,\n providedIn: 'root'\n });\n }\n return BreakpointObserver;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Split each query string into separate query strings if two queries are provided as comma\n * separated.\n */\nfunction splitQueries(queries) {\n return queries.map(query => query.split(',')).reduce((a1, a2) => a1.concat(a2)).map(query => query.trim());\n}\nexport { BreakpointObserver as B, MediaMatcher as M };\n","import * as i0 from '@angular/core';\nimport { Injectable, inject, NgZone, ElementRef, EventEmitter, booleanAttribute, Directive, Output, Input, NgModule } from '@angular/core';\nimport { Observable, Subject } from 'rxjs';\nimport { map, filter, debounceTime } from 'rxjs/operators';\nimport { a as coerceNumberProperty, c as coerceElement } from './element-08c51fcd.mjs';\n\n// Angular may add, remove, or edit comment nodes during change detection. We don't care about\n// these changes because they don't affect the user-preceived content, and worse it can cause\n// infinite change detection cycles where the change detection updates a comment, triggering the\n// MutationObserver, triggering another change detection and kicking the cycle off again.\nfunction shouldIgnoreRecord(record) {\n // Ignore changes to comment text.\n if (record.type === 'characterData' && record.target instanceof Comment) {\n return true;\n }\n // Ignore addition / removal of comments.\n if (record.type === 'childList') {\n for (let i = 0; i < record.addedNodes.length; i++) {\n if (!(record.addedNodes[i] instanceof Comment)) {\n return false;\n }\n }\n for (let i = 0; i < record.removedNodes.length; i++) {\n if (!(record.removedNodes[i] instanceof Comment)) {\n return false;\n }\n }\n return true;\n }\n // Observe everything else.\n return false;\n}\n/**\n * Factory that creates a new MutationObserver and allows us to stub it out in unit tests.\n * @docs-private\n */\nlet MutationObserverFactory = /*#__PURE__*/(() => {\n class MutationObserverFactory {\n create(callback) {\n return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);\n }\n static ɵfac = function MutationObserverFactory_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MutationObserverFactory)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: MutationObserverFactory,\n factory: MutationObserverFactory.ɵfac,\n providedIn: 'root'\n });\n }\n return MutationObserverFactory;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** An injectable service that allows watching elements for changes to their content. */\nlet ContentObserver = /*#__PURE__*/(() => {\n class ContentObserver {\n _mutationObserverFactory = inject(MutationObserverFactory);\n /** Keeps track of the existing MutationObservers so they can be reused. */\n _observedElements = new Map();\n _ngZone = inject(NgZone);\n constructor() {}\n ngOnDestroy() {\n this._observedElements.forEach((_, element) => this._cleanupObserver(element));\n }\n observe(elementOrRef) {\n const element = coerceElement(elementOrRef);\n return new Observable(observer => {\n const stream = this._observeElement(element);\n const subscription = stream.pipe(map(records => records.filter(record => !shouldIgnoreRecord(record))), filter(records => !!records.length)).subscribe(records => {\n this._ngZone.run(() => {\n observer.next(records);\n });\n });\n return () => {\n subscription.unsubscribe();\n this._unobserveElement(element);\n };\n });\n }\n /**\n * Observes the given element by using the existing MutationObserver if available, or creating a\n * new one if not.\n */\n _observeElement(element) {\n return this._ngZone.runOutsideAngular(() => {\n if (!this._observedElements.has(element)) {\n const stream = new Subject();\n const observer = this._mutationObserverFactory.create(mutations => stream.next(mutations));\n if (observer) {\n observer.observe(element, {\n characterData: true,\n childList: true,\n subtree: true\n });\n }\n this._observedElements.set(element, {\n observer,\n stream,\n count: 1\n });\n } else {\n this._observedElements.get(element).count++;\n }\n return this._observedElements.get(element).stream;\n });\n }\n /**\n * Un-observes the given element and cleans up the underlying MutationObserver if nobody else is\n * observing this element.\n */\n _unobserveElement(element) {\n if (this._observedElements.has(element)) {\n this._observedElements.get(element).count--;\n if (!this._observedElements.get(element).count) {\n this._cleanupObserver(element);\n }\n }\n }\n /** Clean up the underlying MutationObserver for the specified element. */\n _cleanupObserver(element) {\n if (this._observedElements.has(element)) {\n const {\n observer,\n stream\n } = this._observedElements.get(element);\n if (observer) {\n observer.disconnect();\n }\n stream.complete();\n this._observedElements.delete(element);\n }\n }\n static ɵfac = function ContentObserver_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ContentObserver)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ContentObserver,\n factory: ContentObserver.ɵfac,\n providedIn: 'root'\n });\n }\n return ContentObserver;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Directive that triggers a callback whenever the content of\n * its associated element has changed.\n */\nlet CdkObserveContent = /*#__PURE__*/(() => {\n class CdkObserveContent {\n _contentObserver = inject(ContentObserver);\n _elementRef = inject(ElementRef);\n /** Event emitted for each change in the element's content. */\n event = new EventEmitter();\n /**\n * Whether observing content is disabled. This option can be used\n * to disconnect the underlying MutationObserver until it is needed.\n */\n get disabled() {\n return this._disabled;\n }\n set disabled(value) {\n this._disabled = value;\n this._disabled ? this._unsubscribe() : this._subscribe();\n }\n _disabled = false;\n /** Debounce interval for emitting the changes. */\n get debounce() {\n return this._debounce;\n }\n set debounce(value) {\n this._debounce = coerceNumberProperty(value);\n this._subscribe();\n }\n _debounce;\n _currentSubscription = null;\n constructor() {}\n ngAfterContentInit() {\n if (!this._currentSubscription && !this.disabled) {\n this._subscribe();\n }\n }\n ngOnDestroy() {\n this._unsubscribe();\n }\n _subscribe() {\n this._unsubscribe();\n const stream = this._contentObserver.observe(this._elementRef);\n this._currentSubscription = (this.debounce ? stream.pipe(debounceTime(this.debounce)) : stream).subscribe(this.event);\n }\n _unsubscribe() {\n this._currentSubscription?.unsubscribe();\n }\n static ɵfac = function CdkObserveContent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkObserveContent)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkObserveContent,\n selectors: [[\"\", \"cdkObserveContent\", \"\"]],\n inputs: {\n disabled: [2, \"cdkObserveContentDisabled\", \"disabled\", booleanAttribute],\n debounce: \"debounce\"\n },\n outputs: {\n event: \"cdkObserveContent\"\n },\n exportAs: [\"cdkObserveContent\"]\n });\n }\n return CdkObserveContent;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ObserversModule = /*#__PURE__*/(() => {\n class ObserversModule {\n static ɵfac = function ObserversModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ObserversModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: ObserversModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [MutationObserverFactory]\n });\n }\n return ObserversModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { ContentObserver as C, MutationObserverFactory as M, ObserversModule as O, CdkObserveContent as a };\n","import * as i0 from '@angular/core';\nimport { inject, Injectable, afterNextRender, NgZone, Injector, ElementRef, booleanAttribute, Directive, Input, InjectionToken, NgModule } from '@angular/core';\nimport { C as CdkMonitorFocus } from './focus-monitor-fc0bdee7.mjs';\nimport { DOCUMENT } from '@angular/common';\nimport { P as Platform } from './platform-610a08ae.mjs';\nimport { b as _getFocusedElementPierceShadowDom } from './shadow-dom-9f403d00.mjs';\nimport { _ as _CdkPrivateStyleLoader } from './style-loader-51b80670.mjs';\nimport { _ as _VisuallyHiddenLoader } from './visually-hidden-7e8689f8.mjs';\nimport { B as BreakpointObserver } from './breakpoints-observer-75147d6a.mjs';\nimport { C as ContentObserver, O as ObserversModule } from './observe-content-a5002af1.mjs';\n\n/**\n * Configuration for the isFocusable method.\n */\nclass IsFocusableConfig {\n /**\n * Whether to count an element as focusable even if it is not currently visible.\n */\n ignoreVisibility = false;\n}\n// The InteractivityChecker leans heavily on the ally.js accessibility utilities.\n// Methods like `isTabbable` are only covering specific edge-cases for the browsers which are\n// supported.\n/**\n * Utility for checking the interactivity of an element, such as whether it is focusable or\n * tabbable.\n */\nlet InteractivityChecker = /*#__PURE__*/(() => {\n class InteractivityChecker {\n _platform = inject(Platform);\n constructor() {}\n /**\n * Gets whether an element is disabled.\n *\n * @param element Element to be checked.\n * @returns Whether the element is disabled.\n */\n isDisabled(element) {\n // This does not capture some cases, such as a non-form control with a disabled attribute or\n // a form control inside of a disabled form, but should capture the most common cases.\n return element.hasAttribute('disabled');\n }\n /**\n * Gets whether an element is visible for the purposes of interactivity.\n *\n * This will capture states like `display: none` and `visibility: hidden`, but not things like\n * being clipped by an `overflow: hidden` parent or being outside the viewport.\n *\n * @returns Whether the element is visible.\n */\n isVisible(element) {\n return hasGeometry(element) && getComputedStyle(element).visibility === 'visible';\n }\n /**\n * Gets whether an element can be reached via Tab key.\n * Assumes that the element has already been checked with isFocusable.\n *\n * @param element Element to be checked.\n * @returns Whether the element is tabbable.\n */\n isTabbable(element) {\n // Nothing is tabbable on the server 😎\n if (!this._platform.isBrowser) {\n return false;\n }\n const frameElement = getFrameElement(getWindow(element));\n if (frameElement) {\n // Frame elements inherit their tabindex onto all child elements.\n if (getTabIndexValue(frameElement) === -1) {\n return false;\n }\n // Browsers disable tabbing to an element inside of an invisible frame.\n if (!this.isVisible(frameElement)) {\n return false;\n }\n }\n let nodeName = element.nodeName.toLowerCase();\n let tabIndexValue = getTabIndexValue(element);\n if (element.hasAttribute('contenteditable')) {\n return tabIndexValue !== -1;\n }\n if (nodeName === 'iframe' || nodeName === 'object') {\n // The frame or object's content may be tabbable depending on the content, but it's\n // not possibly to reliably detect the content of the frames. We always consider such\n // elements as non-tabbable.\n return false;\n }\n // In iOS, the browser only considers some specific elements as tabbable.\n if (this._platform.WEBKIT && this._platform.IOS && !isPotentiallyTabbableIOS(element)) {\n return false;\n }\n if (nodeName === 'audio') {\n // Audio elements without controls enabled are never tabbable, regardless\n // of the tabindex attribute explicitly being set.\n if (!element.hasAttribute('controls')) {\n return false;\n }\n // Audio elements with controls are by default tabbable unless the\n // tabindex attribute is set to `-1` explicitly.\n return tabIndexValue !== -1;\n }\n if (nodeName === 'video') {\n // For all video elements, if the tabindex attribute is set to `-1`, the video\n // is not tabbable. Note: We cannot rely on the default `HTMLElement.tabIndex`\n // property as that one is set to `-1` in Chrome, Edge and Safari v13.1. The\n // tabindex attribute is the source of truth here.\n if (tabIndexValue === -1) {\n return false;\n }\n // If the tabindex is explicitly set, and not `-1` (as per check before), the\n // video element is always tabbable (regardless of whether it has controls or not).\n if (tabIndexValue !== null) {\n return true;\n }\n // Otherwise (when no explicit tabindex is set), a video is only tabbable if it\n // has controls enabled. Firefox is special as videos are always tabbable regardless\n // of whether there are controls or not.\n return this._platform.FIREFOX || element.hasAttribute('controls');\n }\n return element.tabIndex >= 0;\n }\n /**\n * Gets whether an element can be focused by the user.\n *\n * @param element Element to be checked.\n * @param config The config object with options to customize this method's behavior\n * @returns Whether the element is focusable.\n */\n isFocusable(element, config) {\n // Perform checks in order of left to most expensive.\n // Again, naive approach that does not capture many edge cases and browser quirks.\n return isPotentiallyFocusable(element) && !this.isDisabled(element) && (config?.ignoreVisibility || this.isVisible(element));\n }\n static ɵfac = function InteractivityChecker_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || InteractivityChecker)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: InteractivityChecker,\n factory: InteractivityChecker.ɵfac,\n providedIn: 'root'\n });\n }\n return InteractivityChecker;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Returns the frame element from a window object. Since browsers like MS Edge throw errors if\n * the frameElement property is being accessed from a different host address, this property\n * should be accessed carefully.\n */\nfunction getFrameElement(window) {\n try {\n return window.frameElement;\n } catch {\n return null;\n }\n}\n/** Checks whether the specified element has any geometry / rectangles. */\nfunction hasGeometry(element) {\n // Use logic from jQuery to check for an invisible element.\n // See https://github.com/jquery/jquery/blob/master/src/css/hiddenVisibleSelectors.js#L12\n return !!(element.offsetWidth || element.offsetHeight || typeof element.getClientRects === 'function' && element.getClientRects().length);\n}\n/** Gets whether an element's */\nfunction isNativeFormElement(element) {\n let nodeName = element.nodeName.toLowerCase();\n return nodeName === 'input' || nodeName === 'select' || nodeName === 'button' || nodeName === 'textarea';\n}\n/** Gets whether an element is an `
`. */\nfunction isHiddenInput(element) {\n return isInputElement(element) && element.type == 'hidden';\n}\n/** Gets whether an element is an anchor that has an href attribute. */\nfunction isAnchorWithHref(element) {\n return isAnchorElement(element) && element.hasAttribute('href');\n}\n/** Gets whether an element is an input element. */\nfunction isInputElement(element) {\n return element.nodeName.toLowerCase() == 'input';\n}\n/** Gets whether an element is an anchor element. */\nfunction isAnchorElement(element) {\n return element.nodeName.toLowerCase() == 'a';\n}\n/** Gets whether an element has a valid tabindex. */\nfunction hasValidTabIndex(element) {\n if (!element.hasAttribute('tabindex') || element.tabIndex === undefined) {\n return false;\n }\n let tabIndex = element.getAttribute('tabindex');\n return !!(tabIndex && !isNaN(parseInt(tabIndex, 10)));\n}\n/**\n * Returns the parsed tabindex from the element attributes instead of returning the\n * evaluated tabindex from the browsers defaults.\n */\nfunction getTabIndexValue(element) {\n if (!hasValidTabIndex(element)) {\n return null;\n }\n // See browser issue in Gecko https://bugzilla.mozilla.org/show_bug.cgi?id=1128054\n const tabIndex = parseInt(element.getAttribute('tabindex') || '', 10);\n return isNaN(tabIndex) ? -1 : tabIndex;\n}\n/** Checks whether the specified element is potentially tabbable on iOS */\nfunction isPotentiallyTabbableIOS(element) {\n let nodeName = element.nodeName.toLowerCase();\n let inputType = nodeName === 'input' && element.type;\n return inputType === 'text' || inputType === 'password' || nodeName === 'select' || nodeName === 'textarea';\n}\n/**\n * Gets whether an element is potentially focusable without taking current visible/disabled state\n * into account.\n */\nfunction isPotentiallyFocusable(element) {\n // Inputs are potentially focusable *unless* they're type=\"hidden\".\n if (isHiddenInput(element)) {\n return false;\n }\n return isNativeFormElement(element) || isAnchorWithHref(element) || element.hasAttribute('contenteditable') || hasValidTabIndex(element);\n}\n/** Gets the parent window of a DOM node with regards of being inside of an iframe. */\nfunction getWindow(node) {\n // ownerDocument is null if `node` itself *is* a document.\n return node.ownerDocument && node.ownerDocument.defaultView || window;\n}\n\n/**\n * Class that allows for trapping focus within a DOM element.\n *\n * This class currently uses a relatively simple approach to focus trapping.\n * It assumes that the tab order is the same as DOM order, which is not necessarily true.\n * Things like `tabIndex > 0`, flex `order`, and shadow roots can cause the two to be misaligned.\n */\nclass FocusTrap {\n _element;\n _checker;\n _ngZone;\n _document;\n _injector;\n _startAnchor;\n _endAnchor;\n _hasAttached = false;\n // Event listeners for the anchors. Need to be regular functions so that we can unbind them later.\n startAnchorListener = () => this.focusLastTabbableElement();\n endAnchorListener = () => this.focusFirstTabbableElement();\n /** Whether the focus trap is active. */\n get enabled() {\n return this._enabled;\n }\n set enabled(value) {\n this._enabled = value;\n if (this._startAnchor && this._endAnchor) {\n this._toggleAnchorTabIndex(value, this._startAnchor);\n this._toggleAnchorTabIndex(value, this._endAnchor);\n }\n }\n _enabled = true;\n constructor(_element, _checker, _ngZone, _document, deferAnchors = false, /** @breaking-change 20.0.0 param to become required */\n _injector) {\n this._element = _element;\n this._checker = _checker;\n this._ngZone = _ngZone;\n this._document = _document;\n this._injector = _injector;\n if (!deferAnchors) {\n this.attachAnchors();\n }\n }\n /** Destroys the focus trap by cleaning up the anchors. */\n destroy() {\n const startAnchor = this._startAnchor;\n const endAnchor = this._endAnchor;\n if (startAnchor) {\n startAnchor.removeEventListener('focus', this.startAnchorListener);\n startAnchor.remove();\n }\n if (endAnchor) {\n endAnchor.removeEventListener('focus', this.endAnchorListener);\n endAnchor.remove();\n }\n this._startAnchor = this._endAnchor = null;\n this._hasAttached = false;\n }\n /**\n * Inserts the anchors into the DOM. This is usually done automatically\n * in the constructor, but can be deferred for cases like directives with `*ngIf`.\n * @returns Whether the focus trap managed to attach successfully. This may not be the case\n * if the target element isn't currently in the DOM.\n */\n attachAnchors() {\n // If we're not on the browser, there can be no focus to trap.\n if (this._hasAttached) {\n return true;\n }\n this._ngZone.runOutsideAngular(() => {\n if (!this._startAnchor) {\n this._startAnchor = this._createAnchor();\n this._startAnchor.addEventListener('focus', this.startAnchorListener);\n }\n if (!this._endAnchor) {\n this._endAnchor = this._createAnchor();\n this._endAnchor.addEventListener('focus', this.endAnchorListener);\n }\n });\n if (this._element.parentNode) {\n this._element.parentNode.insertBefore(this._startAnchor, this._element);\n this._element.parentNode.insertBefore(this._endAnchor, this._element.nextSibling);\n this._hasAttached = true;\n }\n return this._hasAttached;\n }\n /**\n * Waits for the zone to stabilize, then focuses the first tabbable element.\n * @returns Returns a promise that resolves with a boolean, depending\n * on whether focus was moved successfully.\n */\n focusInitialElementWhenReady(options) {\n return new Promise(resolve => {\n this._executeOnStable(() => resolve(this.focusInitialElement(options)));\n });\n }\n /**\n * Waits for the zone to stabilize, then focuses\n * the first tabbable element within the focus trap region.\n * @returns Returns a promise that resolves with a boolean, depending\n * on whether focus was moved successfully.\n */\n focusFirstTabbableElementWhenReady(options) {\n return new Promise(resolve => {\n this._executeOnStable(() => resolve(this.focusFirstTabbableElement(options)));\n });\n }\n /**\n * Waits for the zone to stabilize, then focuses\n * the last tabbable element within the focus trap region.\n * @returns Returns a promise that resolves with a boolean, depending\n * on whether focus was moved successfully.\n */\n focusLastTabbableElementWhenReady(options) {\n return new Promise(resolve => {\n this._executeOnStable(() => resolve(this.focusLastTabbableElement(options)));\n });\n }\n /**\n * Get the specified boundary element of the trapped region.\n * @param bound The boundary to get (start or end of trapped region).\n * @returns The boundary element.\n */\n _getRegionBoundary(bound) {\n // Contains the deprecated version of selector, for temporary backwards comparability.\n const markers = this._element.querySelectorAll(`[cdk-focus-region-${bound}], ` + `[cdkFocusRegion${bound}], ` + `[cdk-focus-${bound}]`);\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n for (let i = 0; i < markers.length; i++) {\n // @breaking-change 8.0.0\n if (markers[i].hasAttribute(`cdk-focus-${bound}`)) {\n console.warn(`Found use of deprecated attribute 'cdk-focus-${bound}', ` + `use 'cdkFocusRegion${bound}' instead. The deprecated ` + `attribute will be removed in 8.0.0.`, markers[i]);\n } else if (markers[i].hasAttribute(`cdk-focus-region-${bound}`)) {\n console.warn(`Found use of deprecated attribute 'cdk-focus-region-${bound}', ` + `use 'cdkFocusRegion${bound}' instead. The deprecated attribute ` + `will be removed in 8.0.0.`, markers[i]);\n }\n }\n }\n if (bound == 'start') {\n return markers.length ? markers[0] : this._getFirstTabbableElement(this._element);\n }\n return markers.length ? markers[markers.length - 1] : this._getLastTabbableElement(this._element);\n }\n /**\n * Focuses the element that should be focused when the focus trap is initialized.\n * @returns Whether focus was moved successfully.\n */\n focusInitialElement(options) {\n // Contains the deprecated version of selector, for temporary backwards comparability.\n const redirectToElement = this._element.querySelector(`[cdk-focus-initial], ` + `[cdkFocusInitial]`);\n if (redirectToElement) {\n // @breaking-change 8.0.0\n if ((typeof ngDevMode === 'undefined' || ngDevMode) && redirectToElement.hasAttribute(`cdk-focus-initial`)) {\n console.warn(`Found use of deprecated attribute 'cdk-focus-initial', ` + `use 'cdkFocusInitial' instead. The deprecated attribute ` + `will be removed in 8.0.0`, redirectToElement);\n }\n // Warn the consumer if the element they've pointed to\n // isn't focusable, when not in production mode.\n if ((typeof ngDevMode === 'undefined' || ngDevMode) && !this._checker.isFocusable(redirectToElement)) {\n console.warn(`Element matching '[cdkFocusInitial]' is not focusable.`, redirectToElement);\n }\n if (!this._checker.isFocusable(redirectToElement)) {\n const focusableChild = this._getFirstTabbableElement(redirectToElement);\n focusableChild?.focus(options);\n return !!focusableChild;\n }\n redirectToElement.focus(options);\n return true;\n }\n return this.focusFirstTabbableElement(options);\n }\n /**\n * Focuses the first tabbable element within the focus trap region.\n * @returns Whether focus was moved successfully.\n */\n focusFirstTabbableElement(options) {\n const redirectToElement = this._getRegionBoundary('start');\n if (redirectToElement) {\n redirectToElement.focus(options);\n }\n return !!redirectToElement;\n }\n /**\n * Focuses the last tabbable element within the focus trap region.\n * @returns Whether focus was moved successfully.\n */\n focusLastTabbableElement(options) {\n const redirectToElement = this._getRegionBoundary('end');\n if (redirectToElement) {\n redirectToElement.focus(options);\n }\n return !!redirectToElement;\n }\n /**\n * Checks whether the focus trap has successfully been attached.\n */\n hasAttached() {\n return this._hasAttached;\n }\n /** Get the first tabbable element from a DOM subtree (inclusive). */\n _getFirstTabbableElement(root) {\n if (this._checker.isFocusable(root) && this._checker.isTabbable(root)) {\n return root;\n }\n const children = root.children;\n for (let i = 0; i < children.length; i++) {\n const tabbableChild = children[i].nodeType === this._document.ELEMENT_NODE ? this._getFirstTabbableElement(children[i]) : null;\n if (tabbableChild) {\n return tabbableChild;\n }\n }\n return null;\n }\n /** Get the last tabbable element from a DOM subtree (inclusive). */\n _getLastTabbableElement(root) {\n if (this._checker.isFocusable(root) && this._checker.isTabbable(root)) {\n return root;\n }\n // Iterate in reverse DOM order.\n const children = root.children;\n for (let i = children.length - 1; i >= 0; i--) {\n const tabbableChild = children[i].nodeType === this._document.ELEMENT_NODE ? this._getLastTabbableElement(children[i]) : null;\n if (tabbableChild) {\n return tabbableChild;\n }\n }\n return null;\n }\n /** Creates an anchor element. */\n _createAnchor() {\n const anchor = this._document.createElement('div');\n this._toggleAnchorTabIndex(this._enabled, anchor);\n anchor.classList.add('cdk-visually-hidden');\n anchor.classList.add('cdk-focus-trap-anchor');\n anchor.setAttribute('aria-hidden', 'true');\n return anchor;\n }\n /**\n * Toggles the `tabindex` of an anchor, based on the enabled state of the focus trap.\n * @param isEnabled Whether the focus trap is enabled.\n * @param anchor Anchor on which to toggle the tabindex.\n */\n _toggleAnchorTabIndex(isEnabled, anchor) {\n // Remove the tabindex completely, rather than setting it to -1, because if the\n // element has a tabindex, the user might still hit it when navigating with the arrow keys.\n isEnabled ? anchor.setAttribute('tabindex', '0') : anchor.removeAttribute('tabindex');\n }\n /**\n * Toggles the`tabindex` of both anchors to either trap Tab focus or allow it to escape.\n * @param enabled: Whether the anchors should trap Tab.\n */\n toggleAnchors(enabled) {\n if (this._startAnchor && this._endAnchor) {\n this._toggleAnchorTabIndex(enabled, this._startAnchor);\n this._toggleAnchorTabIndex(enabled, this._endAnchor);\n }\n }\n /** Executes a function when the zone is stable. */\n _executeOnStable(fn) {\n // TODO: remove this conditional when injector is required in the constructor.\n if (this._injector) {\n afterNextRender(fn, {\n injector: this._injector\n });\n } else {\n setTimeout(fn);\n }\n }\n}\n/**\n * Factory that allows easy instantiation of focus traps.\n */\nlet FocusTrapFactory = /*#__PURE__*/(() => {\n class FocusTrapFactory {\n _checker = inject(InteractivityChecker);\n _ngZone = inject(NgZone);\n _document = inject(DOCUMENT);\n _injector = inject(Injector);\n constructor() {\n inject(_CdkPrivateStyleLoader).load(_VisuallyHiddenLoader);\n }\n /**\n * Creates a focus-trapped region around the given element.\n * @param element The element around which focus will be trapped.\n * @param deferCaptureElements Defers the creation of focus-capturing elements to be done\n * manually by the user.\n * @returns The created focus trap instance.\n */\n create(element, deferCaptureElements = false) {\n return new FocusTrap(element, this._checker, this._ngZone, this._document, deferCaptureElements, this._injector);\n }\n static ɵfac = function FocusTrapFactory_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || FocusTrapFactory)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: FocusTrapFactory,\n factory: FocusTrapFactory.ɵfac,\n providedIn: 'root'\n });\n }\n return FocusTrapFactory;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** Directive for trapping focus within a region. */\nlet CdkTrapFocus = /*#__PURE__*/(() => {\n class CdkTrapFocus {\n _elementRef = inject(ElementRef);\n _focusTrapFactory = inject(FocusTrapFactory);\n /** Underlying FocusTrap instance. */\n focusTrap;\n /** Previously focused element to restore focus to upon destroy when using autoCapture. */\n _previouslyFocusedElement = null;\n /** Whether the focus trap is active. */\n get enabled() {\n return this.focusTrap?.enabled || false;\n }\n set enabled(value) {\n if (this.focusTrap) {\n this.focusTrap.enabled = value;\n }\n }\n /**\n * Whether the directive should automatically move focus into the trapped region upon\n * initialization and return focus to the previous activeElement upon destruction.\n */\n autoCapture;\n constructor() {\n const platform = inject(Platform);\n if (platform.isBrowser) {\n this.focusTrap = this._focusTrapFactory.create(this._elementRef.nativeElement, true);\n }\n }\n ngOnDestroy() {\n this.focusTrap?.destroy();\n // If we stored a previously focused element when using autoCapture, return focus to that\n // element now that the trapped region is being destroyed.\n if (this._previouslyFocusedElement) {\n this._previouslyFocusedElement.focus();\n this._previouslyFocusedElement = null;\n }\n }\n ngAfterContentInit() {\n this.focusTrap?.attachAnchors();\n if (this.autoCapture) {\n this._captureFocus();\n }\n }\n ngDoCheck() {\n if (this.focusTrap && !this.focusTrap.hasAttached()) {\n this.focusTrap.attachAnchors();\n }\n }\n ngOnChanges(changes) {\n const autoCaptureChange = changes['autoCapture'];\n if (autoCaptureChange && !autoCaptureChange.firstChange && this.autoCapture && this.focusTrap?.hasAttached()) {\n this._captureFocus();\n }\n }\n _captureFocus() {\n this._previouslyFocusedElement = _getFocusedElementPierceShadowDom();\n this.focusTrap?.focusInitialElementWhenReady();\n }\n static ɵfac = function CdkTrapFocus_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkTrapFocus)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkTrapFocus,\n selectors: [[\"\", \"cdkTrapFocus\", \"\"]],\n inputs: {\n enabled: [2, \"cdkTrapFocus\", \"enabled\", booleanAttribute],\n autoCapture: [2, \"cdkTrapFocusAutoCapture\", \"autoCapture\", booleanAttribute]\n },\n exportAs: [\"cdkTrapFocus\"],\n features: [i0.ɵɵNgOnChangesFeature]\n });\n }\n return CdkTrapFocus;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst LIVE_ANNOUNCER_ELEMENT_TOKEN = /*#__PURE__*/new InjectionToken('liveAnnouncerElement', {\n providedIn: 'root',\n factory: LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY\n});\n/**\n * @docs-private\n * @deprecated No longer used, will be removed.\n * @breaking-change 21.0.0\n */\nfunction LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY() {\n return null;\n}\n/** Injection token that can be used to configure the default options for the LiveAnnouncer. */\nconst LIVE_ANNOUNCER_DEFAULT_OPTIONS = /*#__PURE__*/new InjectionToken('LIVE_ANNOUNCER_DEFAULT_OPTIONS');\nlet uniqueIds = 0;\nlet LiveAnnouncer = /*#__PURE__*/(() => {\n class LiveAnnouncer {\n _ngZone = inject(NgZone);\n _defaultOptions = inject(LIVE_ANNOUNCER_DEFAULT_OPTIONS, {\n optional: true\n });\n _liveElement;\n _document = inject(DOCUMENT);\n _previousTimeout;\n _currentPromise;\n _currentResolve;\n constructor() {\n const elementToken = inject(LIVE_ANNOUNCER_ELEMENT_TOKEN, {\n optional: true\n });\n this._liveElement = elementToken || this._createLiveElement();\n }\n announce(message, ...args) {\n const defaultOptions = this._defaultOptions;\n let politeness;\n let duration;\n if (args.length === 1 && typeof args[0] === 'number') {\n duration = args[0];\n } else {\n [politeness, duration] = args;\n }\n this.clear();\n clearTimeout(this._previousTimeout);\n if (!politeness) {\n politeness = defaultOptions && defaultOptions.politeness ? defaultOptions.politeness : 'polite';\n }\n if (duration == null && defaultOptions) {\n duration = defaultOptions.duration;\n }\n // TODO: ensure changing the politeness works on all environments we support.\n this._liveElement.setAttribute('aria-live', politeness);\n if (this._liveElement.id) {\n this._exposeAnnouncerToModals(this._liveElement.id);\n }\n // This 100ms timeout is necessary for some browser + screen-reader combinations:\n // - Both JAWS and NVDA over IE11 will not announce anything without a non-zero timeout.\n // - With Chrome and IE11 with NVDA or JAWS, a repeated (identical) message won't be read a\n // second time without clearing and then using a non-zero delay.\n // (using JAWS 17 at time of this writing).\n return this._ngZone.runOutsideAngular(() => {\n if (!this._currentPromise) {\n this._currentPromise = new Promise(resolve => this._currentResolve = resolve);\n }\n clearTimeout(this._previousTimeout);\n this._previousTimeout = setTimeout(() => {\n this._liveElement.textContent = message;\n if (typeof duration === 'number') {\n this._previousTimeout = setTimeout(() => this.clear(), duration);\n }\n // For some reason in tests this can be undefined\n // Probably related to ZoneJS and every other thing that patches browser APIs in tests\n this._currentResolve?.();\n this._currentPromise = this._currentResolve = undefined;\n }, 100);\n return this._currentPromise;\n });\n }\n /**\n * Clears the current text from the announcer element. Can be used to prevent\n * screen readers from reading the text out again while the user is going\n * through the page landmarks.\n */\n clear() {\n if (this._liveElement) {\n this._liveElement.textContent = '';\n }\n }\n ngOnDestroy() {\n clearTimeout(this._previousTimeout);\n this._liveElement?.remove();\n this._liveElement = null;\n this._currentResolve?.();\n this._currentPromise = this._currentResolve = undefined;\n }\n _createLiveElement() {\n const elementClass = 'cdk-live-announcer-element';\n const previousElements = this._document.getElementsByClassName(elementClass);\n const liveEl = this._document.createElement('div');\n // Remove any old containers. This can happen when coming in from a server-side-rendered page.\n for (let i = 0; i < previousElements.length; i++) {\n previousElements[i].remove();\n }\n liveEl.classList.add(elementClass);\n liveEl.classList.add('cdk-visually-hidden');\n liveEl.setAttribute('aria-atomic', 'true');\n liveEl.setAttribute('aria-live', 'polite');\n liveEl.id = `cdk-live-announcer-${uniqueIds++}`;\n this._document.body.appendChild(liveEl);\n return liveEl;\n }\n /**\n * Some browsers won't expose the accessibility node of the live announcer element if there is an\n * `aria-modal` and the live announcer is outside of it. This method works around the issue by\n * pointing the `aria-owns` of all modals to the live announcer element.\n */\n _exposeAnnouncerToModals(id) {\n // TODO(http://github.com/angular/components/issues/26853): consider de-duplicating this with\n // the `SnakBarContainer` and other usages.\n //\n // Note that the selector here is limited to CDK overlays at the moment in order to reduce the\n // section of the DOM we need to look through. This should cover all the cases we support, but\n // the selector can be expanded if it turns out to be too narrow.\n const modals = this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal=\"true\"]');\n for (let i = 0; i < modals.length; i++) {\n const modal = modals[i];\n const ariaOwns = modal.getAttribute('aria-owns');\n if (!ariaOwns) {\n modal.setAttribute('aria-owns', id);\n } else if (ariaOwns.indexOf(id) === -1) {\n modal.setAttribute('aria-owns', ariaOwns + ' ' + id);\n }\n }\n }\n static ɵfac = function LiveAnnouncer_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || LiveAnnouncer)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: LiveAnnouncer,\n factory: LiveAnnouncer.ɵfac,\n providedIn: 'root'\n });\n }\n return LiveAnnouncer;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * A directive that works similarly to aria-live, but uses the LiveAnnouncer to ensure compatibility\n * with a wider range of browsers and screen readers.\n */\nlet CdkAriaLive = /*#__PURE__*/(() => {\n class CdkAriaLive {\n _elementRef = inject(ElementRef);\n _liveAnnouncer = inject(LiveAnnouncer);\n _contentObserver = inject(ContentObserver);\n _ngZone = inject(NgZone);\n /** The aria-live politeness level to use when announcing messages. */\n get politeness() {\n return this._politeness;\n }\n set politeness(value) {\n this._politeness = value === 'off' || value === 'assertive' ? value : 'polite';\n if (this._politeness === 'off') {\n if (this._subscription) {\n this._subscription.unsubscribe();\n this._subscription = null;\n }\n } else if (!this._subscription) {\n this._subscription = this._ngZone.runOutsideAngular(() => {\n return this._contentObserver.observe(this._elementRef).subscribe(() => {\n // Note that we use textContent here, rather than innerText, in order to avoid a reflow.\n const elementText = this._elementRef.nativeElement.textContent;\n // The `MutationObserver` fires also for attribute\n // changes which we don't want to announce.\n if (elementText !== this._previousAnnouncedText) {\n this._liveAnnouncer.announce(elementText, this._politeness, this.duration);\n this._previousAnnouncedText = elementText;\n }\n });\n });\n }\n }\n _politeness = 'polite';\n /** Time in milliseconds after which to clear out the announcer element. */\n duration;\n _previousAnnouncedText;\n _subscription;\n constructor() {\n inject(_CdkPrivateStyleLoader).load(_VisuallyHiddenLoader);\n }\n ngOnDestroy() {\n if (this._subscription) {\n this._subscription.unsubscribe();\n }\n }\n static ɵfac = function CdkAriaLive_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkAriaLive)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkAriaLive,\n selectors: [[\"\", \"cdkAriaLive\", \"\"]],\n inputs: {\n politeness: [0, \"cdkAriaLive\", \"politeness\"],\n duration: [0, \"cdkAriaLiveDuration\", \"duration\"]\n },\n exportAs: [\"cdkAriaLive\"]\n });\n }\n return CdkAriaLive;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Set of possible high-contrast mode backgrounds. */\nvar HighContrastMode = /*#__PURE__*/function (HighContrastMode) {\n HighContrastMode[HighContrastMode[\"NONE\"] = 0] = \"NONE\";\n HighContrastMode[HighContrastMode[\"BLACK_ON_WHITE\"] = 1] = \"BLACK_ON_WHITE\";\n HighContrastMode[HighContrastMode[\"WHITE_ON_BLACK\"] = 2] = \"WHITE_ON_BLACK\";\n return HighContrastMode;\n}(HighContrastMode || {});\n/** CSS class applied to the document body when in black-on-white high-contrast mode. */\nconst BLACK_ON_WHITE_CSS_CLASS = 'cdk-high-contrast-black-on-white';\n/** CSS class applied to the document body when in white-on-black high-contrast mode. */\nconst WHITE_ON_BLACK_CSS_CLASS = 'cdk-high-contrast-white-on-black';\n/** CSS class applied to the document body when in high-contrast mode. */\nconst HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS = 'cdk-high-contrast-active';\n/**\n * Service to determine whether the browser is currently in a high-contrast-mode environment.\n *\n * Microsoft Windows supports an accessibility feature called \"High Contrast Mode\". This mode\n * changes the appearance of all applications, including web applications, to dramatically increase\n * contrast.\n *\n * IE, Edge, and Firefox currently support this mode. Chrome does not support Windows High Contrast\n * Mode. This service does not detect high-contrast mode as added by the Chrome \"High Contrast\"\n * browser extension.\n */\nlet HighContrastModeDetector = /*#__PURE__*/(() => {\n class HighContrastModeDetector {\n _platform = inject(Platform);\n /**\n * Figuring out the high contrast mode and adding the body classes can cause\n * some expensive layouts. This flag is used to ensure that we only do it once.\n */\n _hasCheckedHighContrastMode;\n _document = inject(DOCUMENT);\n _breakpointSubscription;\n constructor() {\n this._breakpointSubscription = inject(BreakpointObserver).observe('(forced-colors: active)').subscribe(() => {\n if (this._hasCheckedHighContrastMode) {\n this._hasCheckedHighContrastMode = false;\n this._applyBodyHighContrastModeCssClasses();\n }\n });\n }\n /** Gets the current high-contrast-mode for the page. */\n getHighContrastMode() {\n if (!this._platform.isBrowser) {\n return HighContrastMode.NONE;\n }\n // Create a test element with an arbitrary background-color that is neither black nor\n // white; high-contrast mode will coerce the color to either black or white. Also ensure that\n // appending the test element to the DOM does not affect layout by absolutely positioning it\n const testElement = this._document.createElement('div');\n testElement.style.backgroundColor = 'rgb(1,2,3)';\n testElement.style.position = 'absolute';\n this._document.body.appendChild(testElement);\n // Get the computed style for the background color, collapsing spaces to normalize between\n // browsers. Once we get this color, we no longer need the test element. Access the `window`\n // via the document so we can fake it in tests. Note that we have extra null checks, because\n // this logic will likely run during app bootstrap and throwing can break the entire app.\n const documentWindow = this._document.defaultView || window;\n const computedStyle = documentWindow && documentWindow.getComputedStyle ? documentWindow.getComputedStyle(testElement) : null;\n const computedColor = (computedStyle && computedStyle.backgroundColor || '').replace(/ /g, '');\n testElement.remove();\n switch (computedColor) {\n // Pre Windows 11 dark theme.\n case 'rgb(0,0,0)':\n // Windows 11 dark themes.\n case 'rgb(45,50,54)':\n case 'rgb(32,32,32)':\n return HighContrastMode.WHITE_ON_BLACK;\n // Pre Windows 11 light theme.\n case 'rgb(255,255,255)':\n // Windows 11 light theme.\n case 'rgb(255,250,239)':\n return HighContrastMode.BLACK_ON_WHITE;\n }\n return HighContrastMode.NONE;\n }\n ngOnDestroy() {\n this._breakpointSubscription.unsubscribe();\n }\n /** Applies CSS classes indicating high-contrast mode to document body (browser-only). */\n _applyBodyHighContrastModeCssClasses() {\n if (!this._hasCheckedHighContrastMode && this._platform.isBrowser && this._document.body) {\n const bodyClasses = this._document.body.classList;\n bodyClasses.remove(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, BLACK_ON_WHITE_CSS_CLASS, WHITE_ON_BLACK_CSS_CLASS);\n this._hasCheckedHighContrastMode = true;\n const mode = this.getHighContrastMode();\n if (mode === HighContrastMode.BLACK_ON_WHITE) {\n bodyClasses.add(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, BLACK_ON_WHITE_CSS_CLASS);\n } else if (mode === HighContrastMode.WHITE_ON_BLACK) {\n bodyClasses.add(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, WHITE_ON_BLACK_CSS_CLASS);\n }\n }\n }\n static ɵfac = function HighContrastModeDetector_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || HighContrastModeDetector)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: HighContrastModeDetector,\n factory: HighContrastModeDetector.ɵfac,\n providedIn: 'root'\n });\n }\n return HighContrastModeDetector;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet A11yModule = /*#__PURE__*/(() => {\n class A11yModule {\n constructor() {\n inject(HighContrastModeDetector)._applyBodyHighContrastModeCssClasses();\n }\n static ɵfac = function A11yModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || A11yModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: A11yModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [ObserversModule]\n });\n }\n return A11yModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { A11yModule as A, CdkTrapFocus as C, FocusTrap as F, HighContrastModeDetector as H, InteractivityChecker as I, LiveAnnouncer as L, HighContrastMode as a, FocusTrapFactory as b, IsFocusableConfig as c, CdkAriaLive as d, LIVE_ANNOUNCER_ELEMENT_TOKEN as e, LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY as f, LIVE_ANNOUNCER_DEFAULT_OPTIONS as g };\n","/** Gets whether the code is currently running in a test environment. */\nfunction _isTestEnvironment() {\n // We can't use `declare const` because it causes conflicts inside Google with the real typings\n // for these symbols and we can't read them off the global object, because they don't appear to\n // be attached there for some runners like Jest.\n // (see: https://github.com/angular/components/issues/23365#issuecomment-938146643)\n return (\n // @ts-ignore\n typeof __karma__ !== 'undefined' && !!__karma__ ||\n // @ts-ignore\n typeof jasmine !== 'undefined' && !!jasmine ||\n // @ts-ignore\n typeof jest !== 'undefined' && !!jest ||\n // @ts-ignore\n typeof Mocha !== 'undefined' && !!Mocha\n );\n}\nexport { _isTestEnvironment as _ };\n","/** Coerces a value to a CSS pixel value. */\nfunction coerceCssPixelValue(value) {\n if (value == null) {\n return '';\n }\n return typeof value === 'string' ? value : `${value}px`;\n}\nexport { coerceCssPixelValue as c };\n","import * as i0 from '@angular/core';\nimport { InjectionToken, inject, EventEmitter, Injectable } from '@angular/core';\nimport { DOCUMENT } from '@angular/common';\n\n/**\n * Injection token used to inject the document into Directionality.\n * This is used so that the value can be faked in tests.\n *\n * We can't use the real document in tests because changing the real `dir` causes geometry-based\n * tests in Safari to fail.\n *\n * We also can't re-provide the DOCUMENT token from platform-browser because the unit tests\n * themselves use things like `querySelector` in test code.\n *\n * This token is defined in a separate file from Directionality as a workaround for\n * https://github.com/angular/angular/issues/22559\n *\n * @docs-private\n */\nconst DIR_DOCUMENT = /*#__PURE__*/new InjectionToken('cdk-dir-doc', {\n providedIn: 'root',\n factory: DIR_DOCUMENT_FACTORY\n});\n/**\n * @docs-private\n * @deprecated No longer used, will be removed.\n * @breaking-change 21.0.0\n */\nfunction DIR_DOCUMENT_FACTORY() {\n return inject(DOCUMENT);\n}\n\n/** Regex that matches locales with an RTL script. Taken from `goog.i18n.bidi.isRtlLanguage`. */\nconst RTL_LOCALE_PATTERN = /^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;\n/** Resolves a string value to a specific direction. */\nfunction _resolveDirectionality(rawValue) {\n const value = rawValue?.toLowerCase() || '';\n if (value === 'auto' && typeof navigator !== 'undefined' && navigator?.language) {\n return RTL_LOCALE_PATTERN.test(navigator.language) ? 'rtl' : 'ltr';\n }\n return value === 'rtl' ? 'rtl' : 'ltr';\n}\n/**\n * The directionality (LTR / RTL) context for the application (or a subtree of it).\n * Exposes the current direction and a stream of direction changes.\n */\nlet Directionality = /*#__PURE__*/(() => {\n class Directionality {\n /** The current 'ltr' or 'rtl' value. */\n value = 'ltr';\n /** Stream that emits whenever the 'ltr' / 'rtl' state changes. */\n change = new EventEmitter();\n constructor() {\n const _document = inject(DIR_DOCUMENT, {\n optional: true\n });\n if (_document) {\n const bodyDir = _document.body ? _document.body.dir : null;\n const htmlDir = _document.documentElement ? _document.documentElement.dir : null;\n this.value = _resolveDirectionality(bodyDir || htmlDir || 'ltr');\n }\n }\n ngOnDestroy() {\n this.change.complete();\n }\n static ɵfac = function Directionality_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || Directionality)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: Directionality,\n factory: Directionality.ɵfac,\n providedIn: 'root'\n });\n }\n return Directionality;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { Directionality as D, _resolveDirectionality as _, DIR_DOCUMENT as a };\n","/** The possible ways the browser may handle the horizontal scroll axis in RTL languages. */\nvar RtlScrollAxisType = /*#__PURE__*/function (RtlScrollAxisType) {\n /**\n * scrollLeft is 0 when scrolled all the way left and (scrollWidth - clientWidth) when scrolled\n * all the way right.\n */\n RtlScrollAxisType[RtlScrollAxisType[\"NORMAL\"] = 0] = \"NORMAL\";\n /**\n * scrollLeft is -(scrollWidth - clientWidth) when scrolled all the way left and 0 when scrolled\n * all the way right.\n */\n RtlScrollAxisType[RtlScrollAxisType[\"NEGATED\"] = 1] = \"NEGATED\";\n /**\n * scrollLeft is (scrollWidth - clientWidth) when scrolled all the way left and 0 when scrolled\n * all the way right.\n */\n RtlScrollAxisType[RtlScrollAxisType[\"INVERTED\"] = 2] = \"INVERTED\";\n return RtlScrollAxisType;\n}(RtlScrollAxisType || {});\n/** Cached result of the way the browser handles the horizontal scroll axis in RTL mode. */\nlet rtlScrollAxisType;\n/** Cached result of the check that indicates whether the browser supports scroll behaviors. */\nlet scrollBehaviorSupported;\n/** Check whether the browser supports scroll behaviors. */\nfunction supportsScrollBehavior() {\n if (scrollBehaviorSupported == null) {\n // If we're not in the browser, it can't be supported. Also check for `Element`, because\n // some projects stub out the global `document` during SSR which can throw us off.\n if (typeof document !== 'object' || !document || typeof Element !== 'function' || !Element) {\n scrollBehaviorSupported = false;\n return scrollBehaviorSupported;\n }\n // If the element can have a `scrollBehavior` style, we can be sure that it's supported.\n if ('scrollBehavior' in document.documentElement.style) {\n scrollBehaviorSupported = true;\n } else {\n // At this point we have 3 possibilities: `scrollTo` isn't supported at all, it's\n // supported but it doesn't handle scroll behavior, or it has been polyfilled.\n const scrollToFunction = Element.prototype.scrollTo;\n if (scrollToFunction) {\n // We can detect if the function has been polyfilled by calling `toString` on it. Native\n // functions are obfuscated using `[native code]`, whereas if it was overwritten we'd get\n // the actual function source. Via https://davidwalsh.name/detect-native-function. Consider\n // polyfilled functions as supporting scroll behavior.\n scrollBehaviorSupported = !/\\{\\s*\\[native code\\]\\s*\\}/.test(scrollToFunction.toString());\n } else {\n scrollBehaviorSupported = false;\n }\n }\n }\n return scrollBehaviorSupported;\n}\n/**\n * Checks the type of RTL scroll axis used by this browser. As of time of writing, Chrome is NORMAL,\n * Firefox & Safari are NEGATED, and IE & Edge are INVERTED.\n */\nfunction getRtlScrollAxisType() {\n // We can't check unless we're on the browser. Just assume 'normal' if we're not.\n if (typeof document !== 'object' || !document) {\n return RtlScrollAxisType.NORMAL;\n }\n if (rtlScrollAxisType == null) {\n // Create a 1px wide scrolling container and a 2px wide content element.\n const scrollContainer = document.createElement('div');\n const containerStyle = scrollContainer.style;\n scrollContainer.dir = 'rtl';\n containerStyle.width = '1px';\n containerStyle.overflow = 'auto';\n containerStyle.visibility = 'hidden';\n containerStyle.pointerEvents = 'none';\n containerStyle.position = 'absolute';\n const content = document.createElement('div');\n const contentStyle = content.style;\n contentStyle.width = '2px';\n contentStyle.height = '1px';\n scrollContainer.appendChild(content);\n document.body.appendChild(scrollContainer);\n rtlScrollAxisType = RtlScrollAxisType.NORMAL;\n // The viewport starts scrolled all the way to the right in RTL mode. If we are in a NORMAL\n // browser this would mean that the scrollLeft should be 1. If it's zero instead we know we're\n // dealing with one of the other two types of browsers.\n if (scrollContainer.scrollLeft === 0) {\n // In a NEGATED browser the scrollLeft is always somewhere in [-maxScrollAmount, 0]. For an\n // INVERTED browser it is always somewhere in [0, maxScrollAmount]. We can determine which by\n // setting to the scrollLeft to 1. This is past the max for a NEGATED browser, so it will\n // return 0 when we read it again.\n scrollContainer.scrollLeft = 1;\n rtlScrollAxisType = scrollContainer.scrollLeft === 0 ? RtlScrollAxisType.NEGATED : RtlScrollAxisType.INVERTED;\n }\n scrollContainer.remove();\n }\n return rtlScrollAxisType;\n}\nexport { RtlScrollAxisType as R, getRtlScrollAxisType as g, supportsScrollBehavior as s };\n","import * as i0 from '@angular/core';\nimport { EventEmitter, Directive, Output, Input, NgModule } from '@angular/core';\nimport { _ as _resolveDirectionality, D as Directionality } from './directionality-0a678adc.mjs';\n\n/**\n * Directive to listen for changes of direction of part of the DOM.\n *\n * Provides itself as Directionality such that descendant directives only need to ever inject\n * Directionality to get the closest direction.\n */\nlet Dir = /*#__PURE__*/(() => {\n class Dir {\n /** Normalized direction that accounts for invalid/unsupported values. */\n _dir = 'ltr';\n /** Whether the `value` has been set to its initial value. */\n _isInitialized = false;\n /** Direction as passed in by the consumer. */\n _rawDir;\n /** Event emitted when the direction changes. */\n change = new EventEmitter();\n /** @docs-private */\n get dir() {\n return this._dir;\n }\n set dir(value) {\n const previousValue = this._dir;\n // Note: `_resolveDirectionality` resolves the language based on the browser's language,\n // whereas the browser does it based on the content of the element. Since doing so based\n // on the content can be expensive, for now we're doing the simpler matching.\n this._dir = _resolveDirectionality(value);\n this._rawDir = value;\n if (previousValue !== this._dir && this._isInitialized) {\n this.change.emit(this._dir);\n }\n }\n /** Current layout direction of the element. */\n get value() {\n return this.dir;\n }\n /** Initialize once default value has been set. */\n ngAfterContentInit() {\n this._isInitialized = true;\n }\n ngOnDestroy() {\n this.change.complete();\n }\n static ɵfac = function Dir_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || Dir)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: Dir,\n selectors: [[\"\", \"dir\", \"\"]],\n hostVars: 1,\n hostBindings: function Dir_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵattribute(\"dir\", ctx._rawDir);\n }\n },\n inputs: {\n dir: \"dir\"\n },\n outputs: {\n change: \"dirChange\"\n },\n exportAs: [\"dir\"],\n features: [i0.ɵɵProvidersFeature([{\n provide: Directionality,\n useExisting: Dir\n }])]\n });\n }\n return Dir;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet BidiModule = /*#__PURE__*/(() => {\n class BidiModule {\n static ɵfac = function BidiModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || BidiModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: BidiModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({});\n }\n return BidiModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { BidiModule as B, Dir as D };\n","import * as i0 from '@angular/core';\nimport { InjectionToken, forwardRef, Directive, Input, inject, NgZone, RendererFactory2, Injectable, ElementRef, Renderer2, ChangeDetectorRef, Injector, afterNextRender, booleanAttribute, Optional, Inject, Component, ViewEncapsulation, ChangeDetectionStrategy, Output, ViewChild, ViewContainerRef, TemplateRef, IterableDiffers, NgModule } from '@angular/core';\nimport { Subject, of, Observable, Subscription, animationFrameScheduler, asapScheduler, isObservable } from 'rxjs';\nimport { distinctUntilChanged, auditTime, filter, startWith, takeUntil, pairwise, switchMap, shareReplay } from 'rxjs/operators';\nimport { a as coerceNumberProperty, c as coerceElement } from './element-08c51fcd.mjs';\nimport { P as Platform } from './platform-610a08ae.mjs';\nimport { D as Directionality } from './directionality-0a678adc.mjs';\nimport { g as getRtlScrollAxisType, R as RtlScrollAxisType, s as supportsScrollBehavior } from './scrolling-61955dd1.mjs';\nimport { DOCUMENT } from '@angular/common';\nimport { b as _VIEW_REPEATER_STRATEGY, A as ArrayDataSource, _ as _RecycleViewRepeaterStrategy } from './recycle-view-repeater-strategy-c1712813.mjs';\nimport { i as isDataSource } from './data-source-5320b6fd.mjs';\nimport { B as BidiModule } from './bidi-module-56dd006c.mjs';\n\n/** The injection token used to specify the virtual scrolling strategy. */\nconst _c0 = [\"contentWrapper\"];\nconst _c1 = [\"*\"];\nconst VIRTUAL_SCROLL_STRATEGY = /*#__PURE__*/new InjectionToken('VIRTUAL_SCROLL_STRATEGY');\n\n/** Virtual scrolling strategy for lists with items of known fixed size. */\nclass FixedSizeVirtualScrollStrategy {\n _scrolledIndexChange = /*#__PURE__*/new Subject();\n /** @docs-private Implemented as part of VirtualScrollStrategy. */\n scrolledIndexChange = /*#__PURE__*/this._scrolledIndexChange.pipe(/*#__PURE__*/distinctUntilChanged());\n /** The attached viewport. */\n _viewport = null;\n /** The size of the items in the virtually scrolling list. */\n _itemSize;\n /** The minimum amount of buffer rendered beyond the viewport (in pixels). */\n _minBufferPx;\n /** The number of buffer items to render beyond the edge of the viewport (in pixels). */\n _maxBufferPx;\n /**\n * @param itemSize The size of the items in the virtually scrolling list.\n * @param minBufferPx The minimum amount of buffer (in pixels) before needing to render more\n * @param maxBufferPx The amount of buffer (in pixels) to render when rendering more.\n */\n constructor(itemSize, minBufferPx, maxBufferPx) {\n this._itemSize = itemSize;\n this._minBufferPx = minBufferPx;\n this._maxBufferPx = maxBufferPx;\n }\n /**\n * Attaches this scroll strategy to a viewport.\n * @param viewport The viewport to attach this strategy to.\n */\n attach(viewport) {\n this._viewport = viewport;\n this._updateTotalContentSize();\n this._updateRenderedRange();\n }\n /** Detaches this scroll strategy from the currently attached viewport. */\n detach() {\n this._scrolledIndexChange.complete();\n this._viewport = null;\n }\n /**\n * Update the item size and buffer size.\n * @param itemSize The size of the items in the virtually scrolling list.\n * @param minBufferPx The minimum amount of buffer (in pixels) before needing to render more\n * @param maxBufferPx The amount of buffer (in pixels) to render when rendering more.\n */\n updateItemAndBufferSize(itemSize, minBufferPx, maxBufferPx) {\n if (maxBufferPx < minBufferPx && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error('CDK virtual scroll: maxBufferPx must be greater than or equal to minBufferPx');\n }\n this._itemSize = itemSize;\n this._minBufferPx = minBufferPx;\n this._maxBufferPx = maxBufferPx;\n this._updateTotalContentSize();\n this._updateRenderedRange();\n }\n /** @docs-private Implemented as part of VirtualScrollStrategy. */\n onContentScrolled() {\n this._updateRenderedRange();\n }\n /** @docs-private Implemented as part of VirtualScrollStrategy. */\n onDataLengthChanged() {\n this._updateTotalContentSize();\n this._updateRenderedRange();\n }\n /** @docs-private Implemented as part of VirtualScrollStrategy. */\n onContentRendered() {\n /* no-op */\n }\n /** @docs-private Implemented as part of VirtualScrollStrategy. */\n onRenderedOffsetChanged() {\n /* no-op */\n }\n /**\n * Scroll to the offset for the given index.\n * @param index The index of the element to scroll to.\n * @param behavior The ScrollBehavior to use when scrolling.\n */\n scrollToIndex(index, behavior) {\n if (this._viewport) {\n this._viewport.scrollToOffset(index * this._itemSize, behavior);\n }\n }\n /** Update the viewport's total content size. */\n _updateTotalContentSize() {\n if (!this._viewport) {\n return;\n }\n this._viewport.setTotalContentSize(this._viewport.getDataLength() * this._itemSize);\n }\n /** Update the viewport's rendered range. */\n _updateRenderedRange() {\n if (!this._viewport) {\n return;\n }\n const renderedRange = this._viewport.getRenderedRange();\n const newRange = {\n start: renderedRange.start,\n end: renderedRange.end\n };\n const viewportSize = this._viewport.getViewportSize();\n const dataLength = this._viewport.getDataLength();\n let scrollOffset = this._viewport.measureScrollOffset();\n // Prevent NaN as result when dividing by zero.\n let firstVisibleIndex = this._itemSize > 0 ? scrollOffset / this._itemSize : 0;\n // If user scrolls to the bottom of the list and data changes to a smaller list\n if (newRange.end > dataLength) {\n // We have to recalculate the first visible index based on new data length and viewport size.\n const maxVisibleItems = Math.ceil(viewportSize / this._itemSize);\n const newVisibleIndex = Math.max(0, Math.min(firstVisibleIndex, dataLength - maxVisibleItems));\n // If first visible index changed we must update scroll offset to handle start/end buffers\n // Current range must also be adjusted to cover the new position (bottom of new list).\n if (firstVisibleIndex != newVisibleIndex) {\n firstVisibleIndex = newVisibleIndex;\n scrollOffset = newVisibleIndex * this._itemSize;\n newRange.start = Math.floor(firstVisibleIndex);\n }\n newRange.end = Math.max(0, Math.min(dataLength, newRange.start + maxVisibleItems));\n }\n const startBuffer = scrollOffset - newRange.start * this._itemSize;\n if (startBuffer < this._minBufferPx && newRange.start != 0) {\n const expandStart = Math.ceil((this._maxBufferPx - startBuffer) / this._itemSize);\n newRange.start = Math.max(0, newRange.start - expandStart);\n newRange.end = Math.min(dataLength, Math.ceil(firstVisibleIndex + (viewportSize + this._minBufferPx) / this._itemSize));\n } else {\n const endBuffer = newRange.end * this._itemSize - (scrollOffset + viewportSize);\n if (endBuffer < this._minBufferPx && newRange.end != dataLength) {\n const expandEnd = Math.ceil((this._maxBufferPx - endBuffer) / this._itemSize);\n if (expandEnd > 0) {\n newRange.end = Math.min(dataLength, newRange.end + expandEnd);\n newRange.start = Math.max(0, Math.floor(firstVisibleIndex - this._minBufferPx / this._itemSize));\n }\n }\n }\n this._viewport.setRenderedRange(newRange);\n this._viewport.setRenderedContentOffset(this._itemSize * newRange.start);\n this._scrolledIndexChange.next(Math.floor(firstVisibleIndex));\n }\n}\n/**\n * Provider factory for `FixedSizeVirtualScrollStrategy` that simply extracts the already created\n * `FixedSizeVirtualScrollStrategy` from the given directive.\n * @param fixedSizeDir The instance of `CdkFixedSizeVirtualScroll` to extract the\n * `FixedSizeVirtualScrollStrategy` from.\n */\nfunction _fixedSizeVirtualScrollStrategyFactory(fixedSizeDir) {\n return fixedSizeDir._scrollStrategy;\n}\n/** A virtual scroll strategy that supports fixed-size items. */\nlet CdkFixedSizeVirtualScroll = /*#__PURE__*/(() => {\n class CdkFixedSizeVirtualScroll {\n /** The size of the items in the list (in pixels). */\n get itemSize() {\n return this._itemSize;\n }\n set itemSize(value) {\n this._itemSize = coerceNumberProperty(value);\n }\n _itemSize = 20;\n /**\n * The minimum amount of buffer rendered beyond the viewport (in pixels).\n * If the amount of buffer dips below this number, more items will be rendered. Defaults to 100px.\n */\n get minBufferPx() {\n return this._minBufferPx;\n }\n set minBufferPx(value) {\n this._minBufferPx = coerceNumberProperty(value);\n }\n _minBufferPx = 100;\n /**\n * The number of pixels worth of buffer to render for when rendering new items. Defaults to 200px.\n */\n get maxBufferPx() {\n return this._maxBufferPx;\n }\n set maxBufferPx(value) {\n this._maxBufferPx = coerceNumberProperty(value);\n }\n _maxBufferPx = 200;\n /** The scroll strategy used by this directive. */\n _scrollStrategy = new FixedSizeVirtualScrollStrategy(this.itemSize, this.minBufferPx, this.maxBufferPx);\n ngOnChanges() {\n this._scrollStrategy.updateItemAndBufferSize(this.itemSize, this.minBufferPx, this.maxBufferPx);\n }\n static ɵfac = function CdkFixedSizeVirtualScroll_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkFixedSizeVirtualScroll)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkFixedSizeVirtualScroll,\n selectors: [[\"cdk-virtual-scroll-viewport\", \"itemSize\", \"\"]],\n inputs: {\n itemSize: \"itemSize\",\n minBufferPx: \"minBufferPx\",\n maxBufferPx: \"maxBufferPx\"\n },\n features: [i0.ɵɵProvidersFeature([{\n provide: VIRTUAL_SCROLL_STRATEGY,\n useFactory: _fixedSizeVirtualScrollStrategyFactory,\n deps: [forwardRef(() => CdkFixedSizeVirtualScroll)]\n }]), i0.ɵɵNgOnChangesFeature]\n });\n }\n return CdkFixedSizeVirtualScroll;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Time in ms to throttle the scrolling events by default. */\nconst DEFAULT_SCROLL_TIME = 20;\n/**\n * Service contained all registered Scrollable references and emits an event when any one of the\n * Scrollable references emit a scrolled event.\n */\nlet ScrollDispatcher = /*#__PURE__*/(() => {\n class ScrollDispatcher {\n _ngZone = inject(NgZone);\n _platform = inject(Platform);\n _renderer = inject(RendererFactory2).createRenderer(null, null);\n _cleanupGlobalListener;\n constructor() {}\n /** Subject for notifying that a registered scrollable reference element has been scrolled. */\n _scrolled = new Subject();\n /** Keeps track of the amount of subscriptions to `scrolled`. Used for cleaning up afterwards. */\n _scrolledCount = 0;\n /**\n * Map of all the scrollable references that are registered with the service and their\n * scroll event subscriptions.\n */\n scrollContainers = new Map();\n /**\n * Registers a scrollable instance with the service and listens for its scrolled events. When the\n * scrollable is scrolled, the service emits the event to its scrolled observable.\n * @param scrollable Scrollable instance to be registered.\n */\n register(scrollable) {\n if (!this.scrollContainers.has(scrollable)) {\n this.scrollContainers.set(scrollable, scrollable.elementScrolled().subscribe(() => this._scrolled.next(scrollable)));\n }\n }\n /**\n * De-registers a Scrollable reference and unsubscribes from its scroll event observable.\n * @param scrollable Scrollable instance to be deregistered.\n */\n deregister(scrollable) {\n const scrollableReference = this.scrollContainers.get(scrollable);\n if (scrollableReference) {\n scrollableReference.unsubscribe();\n this.scrollContainers.delete(scrollable);\n }\n }\n /**\n * Returns an observable that emits an event whenever any of the registered Scrollable\n * references (or window, document, or body) fire a scrolled event. Can provide a time in ms\n * to override the default \"throttle\" time.\n *\n * **Note:** in order to avoid hitting change detection for every scroll event,\n * all of the events emitted from this stream will be run outside the Angular zone.\n * If you need to update any data bindings as a result of a scroll event, you have\n * to run the callback using `NgZone.run`.\n */\n scrolled(auditTimeInMs = DEFAULT_SCROLL_TIME) {\n if (!this._platform.isBrowser) {\n return of();\n }\n return new Observable(observer => {\n if (!this._cleanupGlobalListener) {\n this._cleanupGlobalListener = this._ngZone.runOutsideAngular(() => this._renderer.listen('document', 'scroll', () => this._scrolled.next()));\n }\n // In the case of a 0ms delay, use an observable without auditTime\n // since it does add a perceptible delay in processing overhead.\n const subscription = auditTimeInMs > 0 ? this._scrolled.pipe(auditTime(auditTimeInMs)).subscribe(observer) : this._scrolled.subscribe(observer);\n this._scrolledCount++;\n return () => {\n subscription.unsubscribe();\n this._scrolledCount--;\n if (!this._scrolledCount) {\n this._cleanupGlobalListener?.();\n this._cleanupGlobalListener = undefined;\n }\n };\n });\n }\n ngOnDestroy() {\n this._cleanupGlobalListener?.();\n this._cleanupGlobalListener = undefined;\n this.scrollContainers.forEach((_, container) => this.deregister(container));\n this._scrolled.complete();\n }\n /**\n * Returns an observable that emits whenever any of the\n * scrollable ancestors of an element are scrolled.\n * @param elementOrElementRef Element whose ancestors to listen for.\n * @param auditTimeInMs Time to throttle the scroll events.\n */\n ancestorScrolled(elementOrElementRef, auditTimeInMs) {\n const ancestors = this.getAncestorScrollContainers(elementOrElementRef);\n return this.scrolled(auditTimeInMs).pipe(filter(target => !target || ancestors.indexOf(target) > -1));\n }\n /** Returns all registered Scrollables that contain the provided element. */\n getAncestorScrollContainers(elementOrElementRef) {\n const scrollingContainers = [];\n this.scrollContainers.forEach((_subscription, scrollable) => {\n if (this._scrollableContainsElement(scrollable, elementOrElementRef)) {\n scrollingContainers.push(scrollable);\n }\n });\n return scrollingContainers;\n }\n /** Returns true if the element is contained within the provided Scrollable. */\n _scrollableContainsElement(scrollable, elementOrElementRef) {\n let element = coerceElement(elementOrElementRef);\n let scrollableElement = scrollable.getElementRef().nativeElement;\n // Traverse through the element parents until we reach null, checking if any of the elements\n // are the scrollable's element.\n do {\n if (element == scrollableElement) {\n return true;\n }\n } while (element = element.parentElement);\n return false;\n }\n static ɵfac = function ScrollDispatcher_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ScrollDispatcher)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ScrollDispatcher,\n factory: ScrollDispatcher.ɵfac,\n providedIn: 'root'\n });\n }\n return ScrollDispatcher;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Sends an event when the directive's element is scrolled. Registers itself with the\n * ScrollDispatcher service to include itself as part of its collection of scrolling events that it\n * can be listened to through the service.\n */\nlet CdkScrollable = /*#__PURE__*/(() => {\n class CdkScrollable {\n elementRef = inject(ElementRef);\n scrollDispatcher = inject(ScrollDispatcher);\n ngZone = inject(NgZone);\n dir = inject(Directionality, {\n optional: true\n });\n _scrollElement = this.elementRef.nativeElement;\n _destroyed = new Subject();\n _renderer = inject(Renderer2);\n _cleanupScroll;\n _elementScrolled = new Subject();\n constructor() {}\n ngOnInit() {\n this._cleanupScroll = this.ngZone.runOutsideAngular(() => this._renderer.listen(this._scrollElement, 'scroll', event => this._elementScrolled.next(event)));\n this.scrollDispatcher.register(this);\n }\n ngOnDestroy() {\n this._cleanupScroll?.();\n this._elementScrolled.complete();\n this.scrollDispatcher.deregister(this);\n this._destroyed.next();\n this._destroyed.complete();\n }\n /** Returns observable that emits when a scroll event is fired on the host element. */\n elementScrolled() {\n return this._elementScrolled;\n }\n /** Gets the ElementRef for the viewport. */\n getElementRef() {\n return this.elementRef;\n }\n /**\n * Scrolls to the specified offsets. This is a normalized version of the browser's native scrollTo\n * method, since browsers are not consistent about what scrollLeft means in RTL. For this method\n * left and right always refer to the left and right side of the scrolling container irrespective\n * of the layout direction. start and end refer to left and right in an LTR context and vice-versa\n * in an RTL context.\n * @param options specified the offsets to scroll to.\n */\n scrollTo(options) {\n const el = this.elementRef.nativeElement;\n const isRtl = this.dir && this.dir.value == 'rtl';\n // Rewrite start & end offsets as right or left offsets.\n if (options.left == null) {\n options.left = isRtl ? options.end : options.start;\n }\n if (options.right == null) {\n options.right = isRtl ? options.start : options.end;\n }\n // Rewrite the bottom offset as a top offset.\n if (options.bottom != null) {\n options.top = el.scrollHeight - el.clientHeight - options.bottom;\n }\n // Rewrite the right offset as a left offset.\n if (isRtl && getRtlScrollAxisType() != RtlScrollAxisType.NORMAL) {\n if (options.left != null) {\n options.right = el.scrollWidth - el.clientWidth - options.left;\n }\n if (getRtlScrollAxisType() == RtlScrollAxisType.INVERTED) {\n options.left = options.right;\n } else if (getRtlScrollAxisType() == RtlScrollAxisType.NEGATED) {\n options.left = options.right ? -options.right : options.right;\n }\n } else {\n if (options.right != null) {\n options.left = el.scrollWidth - el.clientWidth - options.right;\n }\n }\n this._applyScrollToOptions(options);\n }\n _applyScrollToOptions(options) {\n const el = this.elementRef.nativeElement;\n if (supportsScrollBehavior()) {\n el.scrollTo(options);\n } else {\n if (options.top != null) {\n el.scrollTop = options.top;\n }\n if (options.left != null) {\n el.scrollLeft = options.left;\n }\n }\n }\n /**\n * Measures the scroll offset relative to the specified edge of the viewport. This method can be\n * used instead of directly checking scrollLeft or scrollTop, since browsers are not consistent\n * about what scrollLeft means in RTL. The values returned by this method are normalized such that\n * left and right always refer to the left and right side of the scrolling container irrespective\n * of the layout direction. start and end refer to left and right in an LTR context and vice-versa\n * in an RTL context.\n * @param from The edge to measure from.\n */\n measureScrollOffset(from) {\n const LEFT = 'left';\n const RIGHT = 'right';\n const el = this.elementRef.nativeElement;\n if (from == 'top') {\n return el.scrollTop;\n }\n if (from == 'bottom') {\n return el.scrollHeight - el.clientHeight - el.scrollTop;\n }\n // Rewrite start & end as left or right offsets.\n const isRtl = this.dir && this.dir.value == 'rtl';\n if (from == 'start') {\n from = isRtl ? RIGHT : LEFT;\n } else if (from == 'end') {\n from = isRtl ? LEFT : RIGHT;\n }\n if (isRtl && getRtlScrollAxisType() == RtlScrollAxisType.INVERTED) {\n // For INVERTED, scrollLeft is (scrollWidth - clientWidth) when scrolled all the way left and\n // 0 when scrolled all the way right.\n if (from == LEFT) {\n return el.scrollWidth - el.clientWidth - el.scrollLeft;\n } else {\n return el.scrollLeft;\n }\n } else if (isRtl && getRtlScrollAxisType() == RtlScrollAxisType.NEGATED) {\n // For NEGATED, scrollLeft is -(scrollWidth - clientWidth) when scrolled all the way left and\n // 0 when scrolled all the way right.\n if (from == LEFT) {\n return el.scrollLeft + el.scrollWidth - el.clientWidth;\n } else {\n return -el.scrollLeft;\n }\n } else {\n // For NORMAL, as well as non-RTL contexts, scrollLeft is 0 when scrolled all the way left and\n // (scrollWidth - clientWidth) when scrolled all the way right.\n if (from == LEFT) {\n return el.scrollLeft;\n } else {\n return el.scrollWidth - el.clientWidth - el.scrollLeft;\n }\n }\n }\n static ɵfac = function CdkScrollable_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkScrollable)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkScrollable,\n selectors: [[\"\", \"cdk-scrollable\", \"\"], [\"\", \"cdkScrollable\", \"\"]]\n });\n }\n return CdkScrollable;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Time in ms to throttle the resize events by default. */\nconst DEFAULT_RESIZE_TIME = 20;\n/**\n * Simple utility for getting the bounds of the browser viewport.\n * @docs-private\n */\nlet ViewportRuler = /*#__PURE__*/(() => {\n class ViewportRuler {\n _platform = inject(Platform);\n _listeners;\n /** Cached viewport dimensions. */\n _viewportSize;\n /** Stream of viewport change events. */\n _change = new Subject();\n /** Used to reference correct document/window */\n _document = inject(DOCUMENT, {\n optional: true\n });\n constructor() {\n const ngZone = inject(NgZone);\n const renderer = inject(RendererFactory2).createRenderer(null, null);\n ngZone.runOutsideAngular(() => {\n if (this._platform.isBrowser) {\n const changeListener = event => this._change.next(event);\n this._listeners = [renderer.listen('window', 'resize', changeListener), renderer.listen('window', 'orientationchange', changeListener)];\n }\n // Clear the cached position so that the viewport is re-measured next time it is required.\n // We don't need to keep track of the subscription, because it is completed on destroy.\n this.change().subscribe(() => this._viewportSize = null);\n });\n }\n ngOnDestroy() {\n this._listeners?.forEach(cleanup => cleanup());\n this._change.complete();\n }\n /** Returns the viewport's width and height. */\n getViewportSize() {\n if (!this._viewportSize) {\n this._updateViewportSize();\n }\n const output = {\n width: this._viewportSize.width,\n height: this._viewportSize.height\n };\n // If we're not on a browser, don't cache the size since it'll be mocked out anyway.\n if (!this._platform.isBrowser) {\n this._viewportSize = null;\n }\n return output;\n }\n /** Gets a DOMRect for the viewport's bounds. */\n getViewportRect() {\n // Use the document element's bounding rect rather than the window scroll properties\n // (e.g. pageYOffset, scrollY) due to in issue in Chrome and IE where window scroll\n // properties and client coordinates (boundingClientRect, clientX/Y, etc.) are in different\n // conceptual viewports. Under most circumstances these viewports are equivalent, but they\n // can disagree when the page is pinch-zoomed (on devices that support touch).\n // See https://bugs.chromium.org/p/chromium/issues/detail?id=489206#c4\n // We use the documentElement instead of the body because, by default (without a css reset)\n // browsers typically give the document body an 8px margin, which is not included in\n // getBoundingClientRect().\n const scrollPosition = this.getViewportScrollPosition();\n const {\n width,\n height\n } = this.getViewportSize();\n return {\n top: scrollPosition.top,\n left: scrollPosition.left,\n bottom: scrollPosition.top + height,\n right: scrollPosition.left + width,\n height,\n width\n };\n }\n /** Gets the (top, left) scroll position of the viewport. */\n getViewportScrollPosition() {\n // While we can get a reference to the fake document\n // during SSR, it doesn't have getBoundingClientRect.\n if (!this._platform.isBrowser) {\n return {\n top: 0,\n left: 0\n };\n }\n // The top-left-corner of the viewport is determined by the scroll position of the document\n // body, normally just (scrollLeft, scrollTop). However, Chrome and Firefox disagree about\n // whether `document.body` or `document.documentElement` is the scrolled element, so reading\n // `scrollTop` and `scrollLeft` is inconsistent. However, using the bounding rect of\n // `document.documentElement` works consistently, where the `top` and `left` values will\n // equal negative the scroll position.\n const document = this._document;\n const window = this._getWindow();\n const documentElement = document.documentElement;\n const documentRect = documentElement.getBoundingClientRect();\n const top = -documentRect.top || document.body.scrollTop || window.scrollY || documentElement.scrollTop || 0;\n const left = -documentRect.left || document.body.scrollLeft || window.scrollX || documentElement.scrollLeft || 0;\n return {\n top,\n left\n };\n }\n /**\n * Returns a stream that emits whenever the size of the viewport changes.\n * This stream emits outside of the Angular zone.\n * @param throttleTime Time in milliseconds to throttle the stream.\n */\n change(throttleTime = DEFAULT_RESIZE_TIME) {\n return throttleTime > 0 ? this._change.pipe(auditTime(throttleTime)) : this._change;\n }\n /** Use defaultView of injected document if available or fallback to global window reference */\n _getWindow() {\n return this._document.defaultView || window;\n }\n /** Updates the cached viewport size. */\n _updateViewportSize() {\n const window = this._getWindow();\n this._viewportSize = this._platform.isBrowser ? {\n width: window.innerWidth,\n height: window.innerHeight\n } : {\n width: 0,\n height: 0\n };\n }\n static ɵfac = function ViewportRuler_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ViewportRuler)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ViewportRuler,\n factory: ViewportRuler.ɵfac,\n providedIn: 'root'\n });\n }\n return ViewportRuler;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst VIRTUAL_SCROLLABLE = /*#__PURE__*/new InjectionToken('VIRTUAL_SCROLLABLE');\n/**\n * Extending the {@link CdkScrollable} to be used as scrolling container for virtual scrolling.\n */\nlet CdkVirtualScrollable = /*#__PURE__*/(() => {\n class CdkVirtualScrollable extends CdkScrollable {\n constructor() {\n super();\n }\n /**\n * Measure the viewport size for the provided orientation.\n *\n * @param orientation The orientation to measure the size from.\n */\n measureViewportSize(orientation) {\n const viewportEl = this.elementRef.nativeElement;\n return orientation === 'horizontal' ? viewportEl.clientWidth : viewportEl.clientHeight;\n }\n static ɵfac = function CdkVirtualScrollable_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkVirtualScrollable)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkVirtualScrollable,\n features: [i0.ɵɵInheritDefinitionFeature]\n });\n }\n return CdkVirtualScrollable;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Checks if the given ranges are equal. */\nfunction rangesEqual(r1, r2) {\n return r1.start == r2.start && r1.end == r2.end;\n}\n/**\n * Scheduler to be used for scroll events. Needs to fall back to\n * something that doesn't rely on requestAnimationFrame on environments\n * that don't support it (e.g. server-side rendering).\n */\nconst SCROLL_SCHEDULER = typeof requestAnimationFrame !== 'undefined' ? animationFrameScheduler : asapScheduler;\n/** A viewport that virtualizes its scrolling with the help of `CdkVirtualForOf`. */\nlet CdkVirtualScrollViewport = /*#__PURE__*/(() => {\n class CdkVirtualScrollViewport extends CdkVirtualScrollable {\n elementRef = inject(ElementRef);\n _changeDetectorRef = inject(ChangeDetectorRef);\n _scrollStrategy = inject(VIRTUAL_SCROLL_STRATEGY, {\n optional: true\n });\n scrollable = inject(VIRTUAL_SCROLLABLE, {\n optional: true\n });\n _platform = inject(Platform);\n /** Emits when the viewport is detached from a CdkVirtualForOf. */\n _detachedSubject = new Subject();\n /** Emits when the rendered range changes. */\n _renderedRangeSubject = new Subject();\n /** The direction the viewport scrolls. */\n get orientation() {\n return this._orientation;\n }\n set orientation(orientation) {\n if (this._orientation !== orientation) {\n this._orientation = orientation;\n this._calculateSpacerSize();\n }\n }\n _orientation = 'vertical';\n /**\n * Whether rendered items should persist in the DOM after scrolling out of view. By default, items\n * will be removed.\n */\n appendOnly = false;\n // Note: we don't use the typical EventEmitter here because we need to subscribe to the scroll\n // strategy lazily (i.e. only if the user is actually listening to the events). We do this because\n // depending on how the strategy calculates the scrolled index, it may come at a cost to\n // performance.\n /** Emits when the index of the first element visible in the viewport changes. */\n scrolledIndexChange = new Observable(observer => this._scrollStrategy.scrolledIndexChange.subscribe(index => Promise.resolve().then(() => this.ngZone.run(() => observer.next(index)))));\n /** The element that wraps the rendered content. */\n _contentWrapper;\n /** A stream that emits whenever the rendered range changes. */\n renderedRangeStream = this._renderedRangeSubject;\n /**\n * The total size of all content (in pixels), including content that is not currently rendered.\n */\n _totalContentSize = 0;\n /** A string representing the `style.width` property value to be used for the spacer element. */\n _totalContentWidth = '';\n /** A string representing the `style.height` property value to be used for the spacer element. */\n _totalContentHeight = '';\n /**\n * The CSS transform applied to the rendered subset of items so that they appear within the bounds\n * of the visible viewport.\n */\n _renderedContentTransform;\n /** The currently rendered range of indices. */\n _renderedRange = {\n start: 0,\n end: 0\n };\n /** The length of the data bound to this viewport (in number of items). */\n _dataLength = 0;\n /** The size of the viewport (in pixels). */\n _viewportSize = 0;\n /** the currently attached CdkVirtualScrollRepeater. */\n _forOf;\n /** The last rendered content offset that was set. */\n _renderedContentOffset = 0;\n /**\n * Whether the last rendered content offset was to the end of the content (and therefore needs to\n * be rewritten as an offset to the start of the content).\n */\n _renderedContentOffsetNeedsRewrite = false;\n /** Whether there is a pending change detection cycle. */\n _isChangeDetectionPending = false;\n /** A list of functions to run after the next change detection cycle. */\n _runAfterChangeDetection = [];\n /** Subscription to changes in the viewport size. */\n _viewportChanges = Subscription.EMPTY;\n _injector = inject(Injector);\n _isDestroyed = false;\n constructor() {\n super();\n const viewportRuler = inject(ViewportRuler);\n if (!this._scrollStrategy && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error('Error: cdk-virtual-scroll-viewport requires the \"itemSize\" property to be set.');\n }\n this._viewportChanges = viewportRuler.change().subscribe(() => {\n this.checkViewportSize();\n });\n if (!this.scrollable) {\n // No scrollable is provided, so the virtual-scroll-viewport needs to become a scrollable\n this.elementRef.nativeElement.classList.add('cdk-virtual-scrollable');\n this.scrollable = this;\n }\n }\n ngOnInit() {\n // Scrolling depends on the element dimensions which we can't get during SSR.\n if (!this._platform.isBrowser) {\n return;\n }\n if (this.scrollable === this) {\n super.ngOnInit();\n }\n // It's still too early to measure the viewport at this point. Deferring with a promise allows\n // the Viewport to be rendered with the correct size before we measure. We run this outside the\n // zone to avoid causing more change detection cycles. We handle the change detection loop\n // ourselves instead.\n this.ngZone.runOutsideAngular(() => Promise.resolve().then(() => {\n this._measureViewportSize();\n this._scrollStrategy.attach(this);\n this.scrollable.elementScrolled().pipe(\n // Start off with a fake scroll event so we properly detect our initial position.\n startWith(null),\n // Collect multiple events into one until the next animation frame. This way if\n // there are multiple scroll events in the same frame we only need to recheck\n // our layout once.\n auditTime(0, SCROLL_SCHEDULER),\n // Usually `elementScrolled` is completed when the scrollable is destroyed, but\n // that may not be the case if a `CdkVirtualScrollableElement` is used so we have\n // to unsubscribe here just in case.\n takeUntil(this._destroyed)).subscribe(() => this._scrollStrategy.onContentScrolled());\n this._markChangeDetectionNeeded();\n }));\n }\n ngOnDestroy() {\n this.detach();\n this._scrollStrategy.detach();\n // Complete all subjects\n this._renderedRangeSubject.complete();\n this._detachedSubject.complete();\n this._viewportChanges.unsubscribe();\n this._isDestroyed = true;\n super.ngOnDestroy();\n }\n /** Attaches a `CdkVirtualScrollRepeater` to this viewport. */\n attach(forOf) {\n if (this._forOf && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error('CdkVirtualScrollViewport is already attached.');\n }\n // Subscribe to the data stream of the CdkVirtualForOf to keep track of when the data length\n // changes. Run outside the zone to avoid triggering change detection, since we're managing the\n // change detection loop ourselves.\n this.ngZone.runOutsideAngular(() => {\n this._forOf = forOf;\n this._forOf.dataStream.pipe(takeUntil(this._detachedSubject)).subscribe(data => {\n const newLength = data.length;\n if (newLength !== this._dataLength) {\n this._dataLength = newLength;\n this._scrollStrategy.onDataLengthChanged();\n }\n this._doChangeDetection();\n });\n });\n }\n /** Detaches the current `CdkVirtualForOf`. */\n detach() {\n this._forOf = null;\n this._detachedSubject.next();\n }\n /** Gets the length of the data bound to this viewport (in number of items). */\n getDataLength() {\n return this._dataLength;\n }\n /** Gets the size of the viewport (in pixels). */\n getViewportSize() {\n return this._viewportSize;\n }\n // TODO(mmalerba): This is technically out of sync with what's really rendered until a render\n // cycle happens. I'm being careful to only call it after the render cycle is complete and before\n // setting it to something else, but its error prone and should probably be split into\n // `pendingRange` and `renderedRange`, the latter reflecting whats actually in the DOM.\n /** Get the current rendered range of items. */\n getRenderedRange() {\n return this._renderedRange;\n }\n measureBoundingClientRectWithScrollOffset(from) {\n return this.getElementRef().nativeElement.getBoundingClientRect()[from];\n }\n /**\n * Sets the total size of all content (in pixels), including content that is not currently\n * rendered.\n */\n setTotalContentSize(size) {\n if (this._totalContentSize !== size) {\n this._totalContentSize = size;\n this._calculateSpacerSize();\n this._markChangeDetectionNeeded();\n }\n }\n /** Sets the currently rendered range of indices. */\n setRenderedRange(range) {\n if (!rangesEqual(this._renderedRange, range)) {\n if (this.appendOnly) {\n range = {\n start: 0,\n end: Math.max(this._renderedRange.end, range.end)\n };\n }\n this._renderedRangeSubject.next(this._renderedRange = range);\n this._markChangeDetectionNeeded(() => this._scrollStrategy.onContentRendered());\n }\n }\n /**\n * Gets the offset from the start of the viewport to the start of the rendered data (in pixels).\n */\n getOffsetToRenderedContentStart() {\n return this._renderedContentOffsetNeedsRewrite ? null : this._renderedContentOffset;\n }\n /**\n * Sets the offset from the start of the viewport to either the start or end of the rendered data\n * (in pixels).\n */\n setRenderedContentOffset(offset, to = 'to-start') {\n // In appendOnly, we always start from the top\n offset = this.appendOnly && to === 'to-start' ? 0 : offset;\n // For a horizontal viewport in a right-to-left language we need to translate along the x-axis\n // in the negative direction.\n const isRtl = this.dir && this.dir.value == 'rtl';\n const isHorizontal = this.orientation == 'horizontal';\n const axis = isHorizontal ? 'X' : 'Y';\n const axisDirection = isHorizontal && isRtl ? -1 : 1;\n let transform = `translate${axis}(${Number(axisDirection * offset)}px)`;\n this._renderedContentOffset = offset;\n if (to === 'to-end') {\n transform += ` translate${axis}(-100%)`;\n // The viewport should rewrite this as a `to-start` offset on the next render cycle. Otherwise\n // elements will appear to expand in the wrong direction (e.g. `mat-expansion-panel` would\n // expand upward).\n this._renderedContentOffsetNeedsRewrite = true;\n }\n if (this._renderedContentTransform != transform) {\n // We know this value is safe because we parse `offset` with `Number()` before passing it\n // into the string.\n this._renderedContentTransform = transform;\n this._markChangeDetectionNeeded(() => {\n if (this._renderedContentOffsetNeedsRewrite) {\n this._renderedContentOffset -= this.measureRenderedContentSize();\n this._renderedContentOffsetNeedsRewrite = false;\n this.setRenderedContentOffset(this._renderedContentOffset);\n } else {\n this._scrollStrategy.onRenderedOffsetChanged();\n }\n });\n }\n }\n /**\n * Scrolls to the given offset from the start of the viewport. Please note that this is not always\n * the same as setting `scrollTop` or `scrollLeft`. In a horizontal viewport with right-to-left\n * direction, this would be the equivalent of setting a fictional `scrollRight` property.\n * @param offset The offset to scroll to.\n * @param behavior The ScrollBehavior to use when scrolling. Default is behavior is `auto`.\n */\n scrollToOffset(offset, behavior = 'auto') {\n const options = {\n behavior\n };\n if (this.orientation === 'horizontal') {\n options.start = offset;\n } else {\n options.top = offset;\n }\n this.scrollable.scrollTo(options);\n }\n /**\n * Scrolls to the offset for the given index.\n * @param index The index of the element to scroll to.\n * @param behavior The ScrollBehavior to use when scrolling. Default is behavior is `auto`.\n */\n scrollToIndex(index, behavior = 'auto') {\n this._scrollStrategy.scrollToIndex(index, behavior);\n }\n /**\n * Gets the current scroll offset from the start of the scrollable (in pixels).\n * @param from The edge to measure the offset from. Defaults to 'top' in vertical mode and 'start'\n * in horizontal mode.\n */\n measureScrollOffset(from) {\n // This is to break the call cycle\n let measureScrollOffset;\n if (this.scrollable == this) {\n measureScrollOffset = _from => super.measureScrollOffset(_from);\n } else {\n measureScrollOffset = _from => this.scrollable.measureScrollOffset(_from);\n }\n return Math.max(0, measureScrollOffset(from ?? (this.orientation === 'horizontal' ? 'start' : 'top')) - this.measureViewportOffset());\n }\n /**\n * Measures the offset of the viewport from the scrolling container\n * @param from The edge to measure from.\n */\n measureViewportOffset(from) {\n let fromRect;\n const LEFT = 'left';\n const RIGHT = 'right';\n const isRtl = this.dir?.value == 'rtl';\n if (from == 'start') {\n fromRect = isRtl ? RIGHT : LEFT;\n } else if (from == 'end') {\n fromRect = isRtl ? LEFT : RIGHT;\n } else if (from) {\n fromRect = from;\n } else {\n fromRect = this.orientation === 'horizontal' ? 'left' : 'top';\n }\n const scrollerClientRect = this.scrollable.measureBoundingClientRectWithScrollOffset(fromRect);\n const viewportClientRect = this.elementRef.nativeElement.getBoundingClientRect()[fromRect];\n return viewportClientRect - scrollerClientRect;\n }\n /** Measure the combined size of all of the rendered items. */\n measureRenderedContentSize() {\n const contentEl = this._contentWrapper.nativeElement;\n return this.orientation === 'horizontal' ? contentEl.offsetWidth : contentEl.offsetHeight;\n }\n /**\n * Measure the total combined size of the given range. Throws if the range includes items that are\n * not rendered.\n */\n measureRangeSize(range) {\n if (!this._forOf) {\n return 0;\n }\n return this._forOf.measureRangeSize(range, this.orientation);\n }\n /** Update the viewport dimensions and re-render. */\n checkViewportSize() {\n // TODO: Cleanup later when add logic for handling content resize\n this._measureViewportSize();\n this._scrollStrategy.onDataLengthChanged();\n }\n /** Measure the viewport size. */\n _measureViewportSize() {\n this._viewportSize = this.scrollable.measureViewportSize(this.orientation);\n }\n /** Queue up change detection to run. */\n _markChangeDetectionNeeded(runAfter) {\n if (runAfter) {\n this._runAfterChangeDetection.push(runAfter);\n }\n // Use a Promise to batch together calls to `_doChangeDetection`. This way if we set a bunch of\n // properties sequentially we only have to run `_doChangeDetection` once at the end.\n if (!this._isChangeDetectionPending) {\n this._isChangeDetectionPending = true;\n this.ngZone.runOutsideAngular(() => Promise.resolve().then(() => {\n this._doChangeDetection();\n }));\n }\n }\n /** Run change detection. */\n _doChangeDetection() {\n if (this._isDestroyed) {\n return;\n }\n this.ngZone.run(() => {\n // Apply changes to Angular bindings. Note: We must call `markForCheck` to run change detection\n // from the root, since the repeated items are content projected in. Calling `detectChanges`\n // instead does not properly check the projected content.\n this._changeDetectorRef.markForCheck();\n // Apply the content transform. The transform can't be set via an Angular binding because\n // bypassSecurityTrustStyle is banned in Google. However the value is safe, it's composed of\n // string literals, a variable that can only be 'X' or 'Y', and user input that is run through\n // the `Number` function first to coerce it to a numeric value.\n this._contentWrapper.nativeElement.style.transform = this._renderedContentTransform;\n afterNextRender(() => {\n this._isChangeDetectionPending = false;\n const runAfterChangeDetection = this._runAfterChangeDetection;\n this._runAfterChangeDetection = [];\n for (const fn of runAfterChangeDetection) {\n fn();\n }\n }, {\n injector: this._injector\n });\n });\n }\n /** Calculates the `style.width` and `style.height` for the spacer element. */\n _calculateSpacerSize() {\n this._totalContentHeight = this.orientation === 'horizontal' ? '' : `${this._totalContentSize}px`;\n this._totalContentWidth = this.orientation === 'horizontal' ? `${this._totalContentSize}px` : '';\n }\n static ɵfac = function CdkVirtualScrollViewport_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkVirtualScrollViewport)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: CdkVirtualScrollViewport,\n selectors: [[\"cdk-virtual-scroll-viewport\"]],\n viewQuery: function CdkVirtualScrollViewport_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c0, 7);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._contentWrapper = _t.first);\n }\n },\n hostAttrs: [1, \"cdk-virtual-scroll-viewport\"],\n hostVars: 4,\n hostBindings: function CdkVirtualScrollViewport_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵclassProp(\"cdk-virtual-scroll-orientation-horizontal\", ctx.orientation === \"horizontal\")(\"cdk-virtual-scroll-orientation-vertical\", ctx.orientation !== \"horizontal\");\n }\n },\n inputs: {\n orientation: \"orientation\",\n appendOnly: [2, \"appendOnly\", \"appendOnly\", booleanAttribute]\n },\n outputs: {\n scrolledIndexChange: \"scrolledIndexChange\"\n },\n features: [i0.ɵɵProvidersFeature([{\n provide: CdkScrollable,\n useFactory: (virtualScrollable, viewport) => virtualScrollable || viewport,\n deps: [[new Optional(), new Inject(VIRTUAL_SCROLLABLE)], CdkVirtualScrollViewport]\n }]), i0.ɵɵInheritDefinitionFeature],\n ngContentSelectors: _c1,\n decls: 4,\n vars: 4,\n consts: [[\"contentWrapper\", \"\"], [1, \"cdk-virtual-scroll-content-wrapper\"], [1, \"cdk-virtual-scroll-spacer\"]],\n template: function CdkVirtualScrollViewport_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵprojectionDef();\n i0.ɵɵelementStart(0, \"div\", 1, 0);\n i0.ɵɵprojection(2);\n i0.ɵɵelementEnd();\n i0.ɵɵelement(3, \"div\", 2);\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵstyleProp(\"width\", ctx._totalContentWidth)(\"height\", ctx._totalContentHeight);\n }\n },\n styles: [\"cdk-virtual-scroll-viewport{display:block;position:relative;transform:translateZ(0)}.cdk-virtual-scrollable{overflow:auto;will-change:scroll-position;contain:strict}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{height:1px;transform-origin:0 0;flex:0 0 auto}[dir=rtl] .cdk-virtual-scroll-spacer{transform-origin:100% 0}\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n return CdkVirtualScrollViewport;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Helper to extract the offset of a DOM Node in a certain direction. */\nfunction getOffset(orientation, direction, node) {\n const el = node;\n if (!el.getBoundingClientRect) {\n return 0;\n }\n const rect = el.getBoundingClientRect();\n if (orientation === 'horizontal') {\n return direction === 'start' ? rect.left : rect.right;\n }\n return direction === 'start' ? rect.top : rect.bottom;\n}\n/**\n * A directive similar to `ngForOf` to be used for rendering data inside a virtual scrolling\n * container.\n */\nlet CdkVirtualForOf = /*#__PURE__*/(() => {\n class CdkVirtualForOf {\n _viewContainerRef = inject(ViewContainerRef);\n _template = inject(TemplateRef);\n _differs = inject(IterableDiffers);\n _viewRepeater = inject(_VIEW_REPEATER_STRATEGY);\n _viewport = inject(CdkVirtualScrollViewport, {\n skipSelf: true\n });\n /** Emits when the rendered view of the data changes. */\n viewChange = new Subject();\n /** Subject that emits when a new DataSource instance is given. */\n _dataSourceChanges = new Subject();\n /** The DataSource to display. */\n get cdkVirtualForOf() {\n return this._cdkVirtualForOf;\n }\n set cdkVirtualForOf(value) {\n this._cdkVirtualForOf = value;\n if (isDataSource(value)) {\n this._dataSourceChanges.next(value);\n } else {\n // If value is an an NgIterable, convert it to an array.\n this._dataSourceChanges.next(new ArrayDataSource(isObservable(value) ? value : Array.from(value || [])));\n }\n }\n _cdkVirtualForOf;\n /**\n * The `TrackByFunction` to use for tracking changes. The `TrackByFunction` takes the index and\n * the item and produces a value to be used as the item's identity when tracking changes.\n */\n get cdkVirtualForTrackBy() {\n return this._cdkVirtualForTrackBy;\n }\n set cdkVirtualForTrackBy(fn) {\n this._needsUpdate = true;\n this._cdkVirtualForTrackBy = fn ? (index, item) => fn(index + (this._renderedRange ? this._renderedRange.start : 0), item) : undefined;\n }\n _cdkVirtualForTrackBy;\n /** The template used to stamp out new elements. */\n set cdkVirtualForTemplate(value) {\n if (value) {\n this._needsUpdate = true;\n this._template = value;\n }\n }\n /**\n * The size of the cache used to store templates that are not being used for re-use later.\n * Setting the cache size to `0` will disable caching. Defaults to 20 templates.\n */\n get cdkVirtualForTemplateCacheSize() {\n return this._viewRepeater.viewCacheSize;\n }\n set cdkVirtualForTemplateCacheSize(size) {\n this._viewRepeater.viewCacheSize = coerceNumberProperty(size);\n }\n /** Emits whenever the data in the current DataSource changes. */\n dataStream = this._dataSourceChanges.pipe(\n // Start off with null `DataSource`.\n startWith(null),\n // Bundle up the previous and current data sources so we can work with both.\n pairwise(),\n // Use `_changeDataSource` to disconnect from the previous data source and connect to the\n // new one, passing back a stream of data changes which we run through `switchMap` to give\n // us a data stream that emits the latest data from whatever the current `DataSource` is.\n switchMap(([prev, cur]) => this._changeDataSource(prev, cur)),\n // Replay the last emitted data when someone subscribes.\n shareReplay(1));\n /** The differ used to calculate changes to the data. */\n _differ = null;\n /** The most recent data emitted from the DataSource. */\n _data;\n /** The currently rendered items. */\n _renderedItems;\n /** The currently rendered range of indices. */\n _renderedRange;\n /** Whether the rendered data should be updated during the next ngDoCheck cycle. */\n _needsUpdate = false;\n _destroyed = new Subject();\n constructor() {\n const ngZone = inject(NgZone);\n this.dataStream.subscribe(data => {\n this._data = data;\n this._onRenderedDataChange();\n });\n this._viewport.renderedRangeStream.pipe(takeUntil(this._destroyed)).subscribe(range => {\n this._renderedRange = range;\n if (this.viewChange.observers.length) {\n ngZone.run(() => this.viewChange.next(this._renderedRange));\n }\n this._onRenderedDataChange();\n });\n this._viewport.attach(this);\n }\n /**\n * Measures the combined size (width for horizontal orientation, height for vertical) of all items\n * in the specified range. Throws an error if the range includes items that are not currently\n * rendered.\n */\n measureRangeSize(range, orientation) {\n if (range.start >= range.end) {\n return 0;\n }\n if ((range.start < this._renderedRange.start || range.end > this._renderedRange.end) && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error(`Error: attempted to measure an item that isn't rendered.`);\n }\n // The index into the list of rendered views for the first item in the range.\n const renderedStartIndex = range.start - this._renderedRange.start;\n // The length of the range we're measuring.\n const rangeLen = range.end - range.start;\n // Loop over all the views, find the first and land node and compute the size by subtracting\n // the top of the first node from the bottom of the last one.\n let firstNode;\n let lastNode;\n // Find the first node by starting from the beginning and going forwards.\n for (let i = 0; i < rangeLen; i++) {\n const view = this._viewContainerRef.get(i + renderedStartIndex);\n if (view && view.rootNodes.length) {\n firstNode = lastNode = view.rootNodes[0];\n break;\n }\n }\n // Find the last node by starting from the end and going backwards.\n for (let i = rangeLen - 1; i > -1; i--) {\n const view = this._viewContainerRef.get(i + renderedStartIndex);\n if (view && view.rootNodes.length) {\n lastNode = view.rootNodes[view.rootNodes.length - 1];\n break;\n }\n }\n return firstNode && lastNode ? getOffset(orientation, 'end', lastNode) - getOffset(orientation, 'start', firstNode) : 0;\n }\n ngDoCheck() {\n if (this._differ && this._needsUpdate) {\n // TODO(mmalerba): We should differentiate needs update due to scrolling and a new portion of\n // this list being rendered (can use simpler algorithm) vs needs update due to data actually\n // changing (need to do this diff).\n const changes = this._differ.diff(this._renderedItems);\n if (!changes) {\n this._updateContext();\n } else {\n this._applyChanges(changes);\n }\n this._needsUpdate = false;\n }\n }\n ngOnDestroy() {\n this._viewport.detach();\n this._dataSourceChanges.next(undefined);\n this._dataSourceChanges.complete();\n this.viewChange.complete();\n this._destroyed.next();\n this._destroyed.complete();\n this._viewRepeater.detach();\n }\n /** React to scroll state changes in the viewport. */\n _onRenderedDataChange() {\n if (!this._renderedRange) {\n return;\n }\n this._renderedItems = this._data.slice(this._renderedRange.start, this._renderedRange.end);\n if (!this._differ) {\n // Use a wrapper function for the `trackBy` so any new values are\n // picked up automatically without having to recreate the differ.\n this._differ = this._differs.find(this._renderedItems).create((index, item) => {\n return this.cdkVirtualForTrackBy ? this.cdkVirtualForTrackBy(index, item) : item;\n });\n }\n this._needsUpdate = true;\n }\n /** Swap out one `DataSource` for another. */\n _changeDataSource(oldDs, newDs) {\n if (oldDs) {\n oldDs.disconnect(this);\n }\n this._needsUpdate = true;\n return newDs ? newDs.connect(this) : of();\n }\n /** Update the `CdkVirtualForOfContext` for all views. */\n _updateContext() {\n const count = this._data.length;\n let i = this._viewContainerRef.length;\n while (i--) {\n const view = this._viewContainerRef.get(i);\n view.context.index = this._renderedRange.start + i;\n view.context.count = count;\n this._updateComputedContextProperties(view.context);\n view.detectChanges();\n }\n }\n /** Apply changes to the DOM. */\n _applyChanges(changes) {\n this._viewRepeater.applyChanges(changes, this._viewContainerRef, (record, _adjustedPreviousIndex, currentIndex) => this._getEmbeddedViewArgs(record, currentIndex), record => record.item);\n // Update $implicit for any items that had an identity change.\n changes.forEachIdentityChange(record => {\n const view = this._viewContainerRef.get(record.currentIndex);\n view.context.$implicit = record.item;\n });\n // Update the context variables on all items.\n const count = this._data.length;\n let i = this._viewContainerRef.length;\n while (i--) {\n const view = this._viewContainerRef.get(i);\n view.context.index = this._renderedRange.start + i;\n view.context.count = count;\n this._updateComputedContextProperties(view.context);\n }\n }\n /** Update the computed properties on the `CdkVirtualForOfContext`. */\n _updateComputedContextProperties(context) {\n context.first = context.index === 0;\n context.last = context.index === context.count - 1;\n context.even = context.index % 2 === 0;\n context.odd = !context.even;\n }\n _getEmbeddedViewArgs(record, index) {\n // Note that it's important that we insert the item directly at the proper index,\n // rather than inserting it and the moving it in place, because if there's a directive\n // on the same node that injects the `ViewContainerRef`, Angular will insert another\n // comment node which can throw off the move when it's being repeated for all items.\n return {\n templateRef: this._template,\n context: {\n $implicit: record.item,\n // It's guaranteed that the iterable is not \"undefined\" or \"null\" because we only\n // generate views for elements if the \"cdkVirtualForOf\" iterable has elements.\n cdkVirtualForOf: this._cdkVirtualForOf,\n index: -1,\n count: -1,\n first: false,\n last: false,\n odd: false,\n even: false\n },\n index\n };\n }\n static ngTemplateContextGuard(directive, context) {\n return true;\n }\n static ɵfac = function CdkVirtualForOf_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkVirtualForOf)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkVirtualForOf,\n selectors: [[\"\", \"cdkVirtualFor\", \"\", \"cdkVirtualForOf\", \"\"]],\n inputs: {\n cdkVirtualForOf: \"cdkVirtualForOf\",\n cdkVirtualForTrackBy: \"cdkVirtualForTrackBy\",\n cdkVirtualForTemplate: \"cdkVirtualForTemplate\",\n cdkVirtualForTemplateCacheSize: \"cdkVirtualForTemplateCacheSize\"\n },\n features: [i0.ɵɵProvidersFeature([{\n provide: _VIEW_REPEATER_STRATEGY,\n useClass: _RecycleViewRepeaterStrategy\n }])]\n });\n }\n return CdkVirtualForOf;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Provides a virtual scrollable for the element it is attached to.\n */\nlet CdkVirtualScrollableElement = /*#__PURE__*/(() => {\n class CdkVirtualScrollableElement extends CdkVirtualScrollable {\n constructor() {\n super();\n }\n measureBoundingClientRectWithScrollOffset(from) {\n return this.getElementRef().nativeElement.getBoundingClientRect()[from] - this.measureScrollOffset(from);\n }\n static ɵfac = function CdkVirtualScrollableElement_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkVirtualScrollableElement)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkVirtualScrollableElement,\n selectors: [[\"\", \"cdkVirtualScrollingElement\", \"\"]],\n hostAttrs: [1, \"cdk-virtual-scrollable\"],\n features: [i0.ɵɵProvidersFeature([{\n provide: VIRTUAL_SCROLLABLE,\n useExisting: CdkVirtualScrollableElement\n }]), i0.ɵɵInheritDefinitionFeature]\n });\n }\n return CdkVirtualScrollableElement;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Provides as virtual scrollable for the global / window scrollbar.\n */\nlet CdkVirtualScrollableWindow = /*#__PURE__*/(() => {\n class CdkVirtualScrollableWindow extends CdkVirtualScrollable {\n constructor() {\n super();\n const document = inject(DOCUMENT);\n this.elementRef = new ElementRef(document.documentElement);\n this._scrollElement = document;\n }\n measureBoundingClientRectWithScrollOffset(from) {\n return this.getElementRef().nativeElement.getBoundingClientRect()[from];\n }\n static ɵfac = function CdkVirtualScrollableWindow_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkVirtualScrollableWindow)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkVirtualScrollableWindow,\n selectors: [[\"cdk-virtual-scroll-viewport\", \"scrollWindow\", \"\"]],\n features: [i0.ɵɵProvidersFeature([{\n provide: VIRTUAL_SCROLLABLE,\n useExisting: CdkVirtualScrollableWindow\n }]), i0.ɵɵInheritDefinitionFeature]\n });\n }\n return CdkVirtualScrollableWindow;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet CdkScrollableModule = /*#__PURE__*/(() => {\n class CdkScrollableModule {\n static ɵfac = function CdkScrollableModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkScrollableModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: CdkScrollableModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({});\n }\n return CdkScrollableModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * @docs-primary-export\n */\nlet ScrollingModule = /*#__PURE__*/(() => {\n class ScrollingModule {\n static ɵfac = function ScrollingModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ScrollingModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: ScrollingModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [BidiModule, CdkScrollableModule, BidiModule, CdkScrollableModule]\n });\n }\n return ScrollingModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { CdkScrollableModule as C, DEFAULT_SCROLL_TIME as D, FixedSizeVirtualScrollStrategy as F, ScrollDispatcher as S, ViewportRuler as V, _fixedSizeVirtualScrollStrategyFactory as _, ScrollingModule as a, CdkScrollable as b, CdkFixedSizeVirtualScroll as c, CdkVirtualForOf as d, CdkVirtualScrollViewport as e, CdkVirtualScrollableWindow as f, CdkVirtualScrollableElement as g, DEFAULT_RESIZE_TIME as h, VIRTUAL_SCROLL_STRATEGY as i, VIRTUAL_SCROLLABLE as j, CdkVirtualScrollable as k };\n","import * as i0 from '@angular/core';\nimport { inject, APP_ID, Injectable } from '@angular/core';\n\n/**\n * Keeps track of the ID count per prefix. This helps us make the IDs a bit more deterministic\n * like they were before the service was introduced. Note that ideally we wouldn't have to do\n * this, but there are some internal tests that rely on the IDs.\n */\nconst counters = {};\n/** Service that generates unique IDs for DOM nodes. */\nlet _IdGenerator = /*#__PURE__*/(() => {\n class _IdGenerator {\n _appId = inject(APP_ID);\n /**\n * Generates a unique ID with a specific prefix.\n * @param prefix Prefix to add to the ID.\n */\n getId(prefix) {\n // Omit the app ID if it's the default `ng`. Since the vast majority of pages have one\n // Angular app on them, we can reduce the amount of breakages by not adding it.\n if (this._appId !== 'ng') {\n prefix += this._appId;\n }\n if (!counters.hasOwnProperty(prefix)) {\n counters[prefix] = 0;\n }\n return `${prefix}${counters[prefix]++}`;\n }\n static ɵfac = function _IdGenerator_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || _IdGenerator)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: _IdGenerator,\n factory: _IdGenerator.ɵfac,\n providedIn: 'root'\n });\n }\n return _IdGenerator;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { _IdGenerator as _ };\n","/**\n * Checks whether a modifier key is pressed.\n * @param event Event to be checked.\n */\nfunction hasModifierKey(event, ...modifiers) {\n if (modifiers.length) {\n return modifiers.some(modifier => event[modifier]);\n }\n return event.altKey || event.shiftKey || event.ctrlKey || event.metaKey;\n}\nexport { hasModifierKey as h };\n","import * as i0 from '@angular/core';\nimport { inject, NgZone, Injectable, RendererFactory2, Component, ChangeDetectionStrategy, ViewEncapsulation, untracked, afterRender, afterNextRender, ElementRef, Injector, ANIMATION_MODULE_TYPE, EnvironmentInjector, ApplicationRef, InjectionToken, Directive, EventEmitter, TemplateRef, ViewContainerRef, booleanAttribute, Input, Output, NgModule } from '@angular/core';\nimport { DOCUMENT, Location } from '@angular/common';\nimport { P as Platform } from './platform-610a08ae.mjs';\nimport { _ as _bindEventWithOptions } from './backwards-compatibility-bcbe473e.mjs';\nimport { _ as _getEventTarget } from './shadow-dom-9f403d00.mjs';\nimport { _ as _isTestEnvironment } from './test-environment-34eef1ee.mjs';\nimport { _ as _CdkPrivateStyleLoader } from './style-loader-51b80670.mjs';\nimport { Subject, Subscription, merge } from 'rxjs';\nimport { filter, takeUntil, takeWhile } from 'rxjs/operators';\nimport { c as coerceCssPixelValue } from './css-pixel-value-447bbfe8.mjs';\nimport { c as coerceArray } from './array-88e1bec3.mjs';\nimport { S as ScrollDispatcher, V as ViewportRuler, a as ScrollingModule } from './scrolling-module-aa1faac1.mjs';\nimport { s as supportsScrollBehavior } from './scrolling-61955dd1.mjs';\nimport { D as DomPortalOutlet, T as TemplatePortal, P as PortalModule } from './portal-directives-6dd242f4.mjs';\nimport { D as Directionality } from './directionality-0a678adc.mjs';\nimport { _ as _IdGenerator } from './id-generator-1959b006.mjs';\nimport { e as ESCAPE } from './keycodes-107cd3e4.mjs';\nimport { h as hasModifierKey } from './modifiers-33a5859e.mjs';\nimport { B as BidiModule } from './bidi-module-56dd006c.mjs';\nconst scrollBehaviorSupported = /*#__PURE__*/supportsScrollBehavior();\n/**\n * Strategy that will prevent the user from scrolling while the overlay is visible.\n */\nclass BlockScrollStrategy {\n _viewportRuler;\n _previousHTMLStyles = {\n top: '',\n left: ''\n };\n _previousScrollPosition;\n _isEnabled = false;\n _document;\n constructor(_viewportRuler, document) {\n this._viewportRuler = _viewportRuler;\n this._document = document;\n }\n /** Attaches this scroll strategy to an overlay. */\n attach() {}\n /** Blocks page-level scroll while the attached overlay is open. */\n enable() {\n if (this._canBeEnabled()) {\n const root = this._document.documentElement;\n this._previousScrollPosition = this._viewportRuler.getViewportScrollPosition();\n // Cache the previous inline styles in case the user had set them.\n this._previousHTMLStyles.left = root.style.left || '';\n this._previousHTMLStyles.top = root.style.top || '';\n // Note: we're using the `html` node, instead of the `body`, because the `body` may\n // have the user agent margin, whereas the `html` is guaranteed not to have one.\n root.style.left = coerceCssPixelValue(-this._previousScrollPosition.left);\n root.style.top = coerceCssPixelValue(-this._previousScrollPosition.top);\n root.classList.add('cdk-global-scrollblock');\n this._isEnabled = true;\n }\n }\n /** Unblocks page-level scroll while the attached overlay is open. */\n disable() {\n if (this._isEnabled) {\n const html = this._document.documentElement;\n const body = this._document.body;\n const htmlStyle = html.style;\n const bodyStyle = body.style;\n const previousHtmlScrollBehavior = htmlStyle.scrollBehavior || '';\n const previousBodyScrollBehavior = bodyStyle.scrollBehavior || '';\n this._isEnabled = false;\n htmlStyle.left = this._previousHTMLStyles.left;\n htmlStyle.top = this._previousHTMLStyles.top;\n html.classList.remove('cdk-global-scrollblock');\n // Disable user-defined smooth scrolling temporarily while we restore the scroll position.\n // See https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior\n // Note that we don't mutate the property if the browser doesn't support `scroll-behavior`,\n // because it can throw off feature detections in `supportsScrollBehavior` which\n // checks for `'scrollBehavior' in documentElement.style`.\n if (scrollBehaviorSupported) {\n htmlStyle.scrollBehavior = bodyStyle.scrollBehavior = 'auto';\n }\n window.scroll(this._previousScrollPosition.left, this._previousScrollPosition.top);\n if (scrollBehaviorSupported) {\n htmlStyle.scrollBehavior = previousHtmlScrollBehavior;\n bodyStyle.scrollBehavior = previousBodyScrollBehavior;\n }\n }\n }\n _canBeEnabled() {\n // Since the scroll strategies can't be singletons, we have to use a global CSS class\n // (`cdk-global-scrollblock`) to make sure that we don't try to disable global\n // scrolling multiple times.\n const html = this._document.documentElement;\n if (html.classList.contains('cdk-global-scrollblock') || this._isEnabled) {\n return false;\n }\n const body = this._document.body;\n const viewport = this._viewportRuler.getViewportSize();\n return body.scrollHeight > viewport.height || body.scrollWidth > viewport.width;\n }\n}\n\n/**\n * Returns an error to be thrown when attempting to attach an already-attached scroll strategy.\n */\nfunction getMatScrollStrategyAlreadyAttachedError() {\n return Error(`Scroll strategy has already been attached.`);\n}\n\n/**\n * Strategy that will close the overlay as soon as the user starts scrolling.\n */\nclass CloseScrollStrategy {\n _scrollDispatcher;\n _ngZone;\n _viewportRuler;\n _config;\n _scrollSubscription = null;\n _overlayRef;\n _initialScrollPosition;\n constructor(_scrollDispatcher, _ngZone, _viewportRuler, _config) {\n this._scrollDispatcher = _scrollDispatcher;\n this._ngZone = _ngZone;\n this._viewportRuler = _viewportRuler;\n this._config = _config;\n }\n /** Attaches this scroll strategy to an overlay. */\n attach(overlayRef) {\n if (this._overlayRef && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw getMatScrollStrategyAlreadyAttachedError();\n }\n this._overlayRef = overlayRef;\n }\n /** Enables the closing of the attached overlay on scroll. */\n enable() {\n if (this._scrollSubscription) {\n return;\n }\n const stream = this._scrollDispatcher.scrolled(0).pipe(filter(scrollable => {\n return !scrollable || !this._overlayRef.overlayElement.contains(scrollable.getElementRef().nativeElement);\n }));\n if (this._config && this._config.threshold && this._config.threshold > 1) {\n this._initialScrollPosition = this._viewportRuler.getViewportScrollPosition().top;\n this._scrollSubscription = stream.subscribe(() => {\n const scrollPosition = this._viewportRuler.getViewportScrollPosition().top;\n if (Math.abs(scrollPosition - this._initialScrollPosition) > this._config.threshold) {\n this._detach();\n } else {\n this._overlayRef.updatePosition();\n }\n });\n } else {\n this._scrollSubscription = stream.subscribe(this._detach);\n }\n }\n /** Disables the closing the attached overlay on scroll. */\n disable() {\n if (this._scrollSubscription) {\n this._scrollSubscription.unsubscribe();\n this._scrollSubscription = null;\n }\n }\n detach() {\n this.disable();\n this._overlayRef = null;\n }\n /** Detaches the overlay ref and disables the scroll strategy. */\n _detach = () => {\n this.disable();\n if (this._overlayRef.hasAttached()) {\n this._ngZone.run(() => this._overlayRef.detach());\n }\n };\n}\n\n/** Scroll strategy that doesn't do anything. */\nclass NoopScrollStrategy {\n /** Does nothing, as this scroll strategy is a no-op. */\n enable() {}\n /** Does nothing, as this scroll strategy is a no-op. */\n disable() {}\n /** Does nothing, as this scroll strategy is a no-op. */\n attach() {}\n}\n\n/**\n * Gets whether an element is scrolled outside of view by any of its parent scrolling containers.\n * @param element Dimensions of the element (from getBoundingClientRect)\n * @param scrollContainers Dimensions of element's scrolling containers (from getBoundingClientRect)\n * @returns Whether the element is scrolled out of view\n * @docs-private\n */\nfunction isElementScrolledOutsideView(element, scrollContainers) {\n return scrollContainers.some(containerBounds => {\n const outsideAbove = element.bottom < containerBounds.top;\n const outsideBelow = element.top > containerBounds.bottom;\n const outsideLeft = element.right < containerBounds.left;\n const outsideRight = element.left > containerBounds.right;\n return outsideAbove || outsideBelow || outsideLeft || outsideRight;\n });\n}\n/**\n * Gets whether an element is clipped by any of its scrolling containers.\n * @param element Dimensions of the element (from getBoundingClientRect)\n * @param scrollContainers Dimensions of element's scrolling containers (from getBoundingClientRect)\n * @returns Whether the element is clipped\n * @docs-private\n */\nfunction isElementClippedByScrolling(element, scrollContainers) {\n return scrollContainers.some(scrollContainerRect => {\n const clippedAbove = element.top < scrollContainerRect.top;\n const clippedBelow = element.bottom > scrollContainerRect.bottom;\n const clippedLeft = element.left < scrollContainerRect.left;\n const clippedRight = element.right > scrollContainerRect.right;\n return clippedAbove || clippedBelow || clippedLeft || clippedRight;\n });\n}\n\n/**\n * Strategy that will update the element position as the user is scrolling.\n */\nclass RepositionScrollStrategy {\n _scrollDispatcher;\n _viewportRuler;\n _ngZone;\n _config;\n _scrollSubscription = null;\n _overlayRef;\n constructor(_scrollDispatcher, _viewportRuler, _ngZone, _config) {\n this._scrollDispatcher = _scrollDispatcher;\n this._viewportRuler = _viewportRuler;\n this._ngZone = _ngZone;\n this._config = _config;\n }\n /** Attaches this scroll strategy to an overlay. */\n attach(overlayRef) {\n if (this._overlayRef && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw getMatScrollStrategyAlreadyAttachedError();\n }\n this._overlayRef = overlayRef;\n }\n /** Enables repositioning of the attached overlay on scroll. */\n enable() {\n if (!this._scrollSubscription) {\n const throttle = this._config ? this._config.scrollThrottle : 0;\n this._scrollSubscription = this._scrollDispatcher.scrolled(throttle).subscribe(() => {\n this._overlayRef.updatePosition();\n // TODO(crisbeto): make `close` on by default once all components can handle it.\n if (this._config && this._config.autoClose) {\n const overlayRect = this._overlayRef.overlayElement.getBoundingClientRect();\n const {\n width,\n height\n } = this._viewportRuler.getViewportSize();\n // TODO(crisbeto): include all ancestor scroll containers here once\n // we have a way of exposing the trigger element to the scroll strategy.\n const parentRects = [{\n width,\n height,\n bottom: height,\n right: width,\n top: 0,\n left: 0\n }];\n if (isElementScrolledOutsideView(overlayRect, parentRects)) {\n this.disable();\n this._ngZone.run(() => this._overlayRef.detach());\n }\n }\n });\n }\n }\n /** Disables repositioning of the attached overlay on scroll. */\n disable() {\n if (this._scrollSubscription) {\n this._scrollSubscription.unsubscribe();\n this._scrollSubscription = null;\n }\n }\n detach() {\n this.disable();\n this._overlayRef = null;\n }\n}\n\n/**\n * Options for how an overlay will handle scrolling.\n *\n * Users can provide a custom value for `ScrollStrategyOptions` to replace the default\n * behaviors. This class primarily acts as a factory for ScrollStrategy instances.\n */\nlet ScrollStrategyOptions = /*#__PURE__*/(() => {\n class ScrollStrategyOptions {\n _scrollDispatcher = inject(ScrollDispatcher);\n _viewportRuler = inject(ViewportRuler);\n _ngZone = inject(NgZone);\n _document = inject(DOCUMENT);\n constructor() {}\n /** Do nothing on scroll. */\n noop = () => new NoopScrollStrategy();\n /**\n * Close the overlay as soon as the user scrolls.\n * @param config Configuration to be used inside the scroll strategy.\n */\n close = config => new CloseScrollStrategy(this._scrollDispatcher, this._ngZone, this._viewportRuler, config);\n /** Block scrolling. */\n block = () => new BlockScrollStrategy(this._viewportRuler, this._document);\n /**\n * Update the overlay's position on scroll.\n * @param config Configuration to be used inside the scroll strategy.\n * Allows debouncing the reposition calls.\n */\n reposition = config => new RepositionScrollStrategy(this._scrollDispatcher, this._viewportRuler, this._ngZone, config);\n static ɵfac = function ScrollStrategyOptions_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ScrollStrategyOptions)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ScrollStrategyOptions,\n factory: ScrollStrategyOptions.ɵfac,\n providedIn: 'root'\n });\n }\n return ScrollStrategyOptions;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Initial configuration used when creating an overlay. */\nclass OverlayConfig {\n /** Strategy with which to position the overlay. */\n positionStrategy;\n /** Strategy to be used when handling scroll events while the overlay is open. */\n scrollStrategy = /*#__PURE__*/new NoopScrollStrategy();\n /** Custom class to add to the overlay pane. */\n panelClass = '';\n /** Whether the overlay has a backdrop. */\n hasBackdrop = false;\n /** Custom class to add to the backdrop */\n backdropClass = 'cdk-overlay-dark-backdrop';\n /** The width of the overlay panel. If a number is provided, pixel units are assumed. */\n width;\n /** The height of the overlay panel. If a number is provided, pixel units are assumed. */\n height;\n /** The min-width of the overlay panel. If a number is provided, pixel units are assumed. */\n minWidth;\n /** The min-height of the overlay panel. If a number is provided, pixel units are assumed. */\n minHeight;\n /** The max-width of the overlay panel. If a number is provided, pixel units are assumed. */\n maxWidth;\n /** The max-height of the overlay panel. If a number is provided, pixel units are assumed. */\n maxHeight;\n /**\n * Direction of the text in the overlay panel. If a `Directionality` instance\n * is passed in, the overlay will handle changes to its value automatically.\n */\n direction;\n /**\n * Whether the overlay should be disposed of when the user goes backwards/forwards in history.\n * Note that this usually doesn't include clicking on links (unless the user is using\n * the `HashLocationStrategy`).\n */\n disposeOnNavigation = false;\n constructor(config) {\n if (config) {\n // Use `Iterable` instead of `Array` because TypeScript, as of 3.6.3,\n // loses the array generic type in the `for of`. But we *also* have to use `Array` because\n // typescript won't iterate over an `Iterable` unless you compile with `--downlevelIteration`\n const configKeys = Object.keys(config);\n for (const key of configKeys) {\n if (config[key] !== undefined) {\n // TypeScript, as of version 3.5, sees the left-hand-side of this expression\n // as \"I don't know *which* key this is, so the only valid value is the intersection\n // of all the possible values.\" In this case, that happens to be `undefined`. TypeScript\n // is not smart enough to see that the right-hand-side is actually an access of the same\n // exact type with the same exact key, meaning that the value type must be identical.\n // So we use `any` to work around this.\n this[key] = config[key];\n }\n }\n }\n }\n}\n\n/** The points of the origin element and the overlay element to connect. */\nclass ConnectionPositionPair {\n offsetX;\n offsetY;\n panelClass;\n /** X-axis attachment point for connected overlay origin. Can be 'start', 'end', or 'center'. */\n originX;\n /** Y-axis attachment point for connected overlay origin. Can be 'top', 'bottom', or 'center'. */\n originY;\n /** X-axis attachment point for connected overlay. Can be 'start', 'end', or 'center'. */\n overlayX;\n /** Y-axis attachment point for connected overlay. Can be 'top', 'bottom', or 'center'. */\n overlayY;\n constructor(origin, overlay, /** Offset along the X axis. */\n offsetX, /** Offset along the Y axis. */\n offsetY, /** Class(es) to be applied to the panel while this position is active. */\n panelClass) {\n this.offsetX = offsetX;\n this.offsetY = offsetY;\n this.panelClass = panelClass;\n this.originX = origin.originX;\n this.originY = origin.originY;\n this.overlayX = overlay.overlayX;\n this.overlayY = overlay.overlayY;\n }\n}\n/**\n * Set of properties regarding the position of the origin and overlay relative to the viewport\n * with respect to the containing Scrollable elements.\n *\n * The overlay and origin are clipped if any part of their bounding client rectangle exceeds the\n * bounds of any one of the strategy's Scrollable's bounding client rectangle.\n *\n * The overlay and origin are outside view if there is no overlap between their bounding client\n * rectangle and any one of the strategy's Scrollable's bounding client rectangle.\n *\n * ----------- -----------\n * | outside | | clipped |\n * | view | --------------------------\n * | | | | | |\n * ---------- | ----------- |\n * -------------------------- | |\n * | | | Scrollable |\n * | | | |\n * | | --------------------------\n * | Scrollable |\n * | |\n * --------------------------\n *\n * @docs-private\n */\nclass ScrollingVisibility {\n isOriginClipped;\n isOriginOutsideView;\n isOverlayClipped;\n isOverlayOutsideView;\n}\n/** The change event emitted by the strategy when a fallback position is used. */\nclass ConnectedOverlayPositionChange {\n connectionPair;\n scrollableViewProperties;\n constructor(/** The position used as a result of this change. */\n connectionPair, /** @docs-private */\n scrollableViewProperties) {\n this.connectionPair = connectionPair;\n this.scrollableViewProperties = scrollableViewProperties;\n }\n}\n/**\n * Validates whether a vertical position property matches the expected values.\n * @param property Name of the property being validated.\n * @param value Value of the property being validated.\n * @docs-private\n */\nfunction validateVerticalPosition(property, value) {\n if (value !== 'top' && value !== 'bottom' && value !== 'center') {\n throw Error(`ConnectedPosition: Invalid ${property} \"${value}\". ` + `Expected \"top\", \"bottom\" or \"center\".`);\n }\n}\n/**\n * Validates whether a horizontal position property matches the expected values.\n * @param property Name of the property being validated.\n * @param value Value of the property being validated.\n * @docs-private\n */\nfunction validateHorizontalPosition(property, value) {\n if (value !== 'start' && value !== 'end' && value !== 'center') {\n throw Error(`ConnectedPosition: Invalid ${property} \"${value}\". ` + `Expected \"start\", \"end\" or \"center\".`);\n }\n}\n\n/**\n * Service for dispatching events that land on the body to appropriate overlay ref,\n * if any. It maintains a list of attached overlays to determine best suited overlay based\n * on event target and order of overlay opens.\n */\nlet BaseOverlayDispatcher = /*#__PURE__*/(() => {\n class BaseOverlayDispatcher {\n /** Currently attached overlays in the order they were attached. */\n _attachedOverlays = [];\n _document = inject(DOCUMENT);\n _isAttached;\n constructor() {}\n ngOnDestroy() {\n this.detach();\n }\n /** Add a new overlay to the list of attached overlay refs. */\n add(overlayRef) {\n // Ensure that we don't get the same overlay multiple times.\n this.remove(overlayRef);\n this._attachedOverlays.push(overlayRef);\n }\n /** Remove an overlay from the list of attached overlay refs. */\n remove(overlayRef) {\n const index = this._attachedOverlays.indexOf(overlayRef);\n if (index > -1) {\n this._attachedOverlays.splice(index, 1);\n }\n // Remove the global listener once there are no more overlays.\n if (this._attachedOverlays.length === 0) {\n this.detach();\n }\n }\n static ɵfac = function BaseOverlayDispatcher_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || BaseOverlayDispatcher)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: BaseOverlayDispatcher,\n factory: BaseOverlayDispatcher.ɵfac,\n providedIn: 'root'\n });\n }\n return BaseOverlayDispatcher;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Service for dispatching keyboard events that land on the body to appropriate overlay ref,\n * if any. It maintains a list of attached overlays to determine best suited overlay based\n * on event target and order of overlay opens.\n */\nlet OverlayKeyboardDispatcher = /*#__PURE__*/(() => {\n class OverlayKeyboardDispatcher extends BaseOverlayDispatcher {\n _ngZone = inject(NgZone);\n _renderer = inject(RendererFactory2).createRenderer(null, null);\n _cleanupKeydown;\n /** Add a new overlay to the list of attached overlay refs. */\n add(overlayRef) {\n super.add(overlayRef);\n // Lazily start dispatcher once first overlay is added\n if (!this._isAttached) {\n this._ngZone.runOutsideAngular(() => {\n this._cleanupKeydown = this._renderer.listen('body', 'keydown', this._keydownListener);\n });\n this._isAttached = true;\n }\n }\n /** Detaches the global keyboard event listener. */\n detach() {\n if (this._isAttached) {\n this._cleanupKeydown?.();\n this._isAttached = false;\n }\n }\n /** Keyboard event listener that will be attached to the body. */\n _keydownListener = event => {\n const overlays = this._attachedOverlays;\n for (let i = overlays.length - 1; i > -1; i--) {\n // Dispatch the keydown event to the top overlay which has subscribers to its keydown events.\n // We want to target the most recent overlay, rather than trying to match where the event came\n // from, because some components might open an overlay, but keep focus on a trigger element\n // (e.g. for select and autocomplete). We skip overlays without keydown event subscriptions,\n // because we don't want overlays that don't handle keyboard events to block the ones below\n // them that do.\n if (overlays[i]._keydownEvents.observers.length > 0) {\n this._ngZone.run(() => overlays[i]._keydownEvents.next(event));\n break;\n }\n }\n };\n static ɵfac = /* @__PURE__ */(() => {\n let ɵOverlayKeyboardDispatcher_BaseFactory;\n return function OverlayKeyboardDispatcher_Factory(__ngFactoryType__) {\n return (ɵOverlayKeyboardDispatcher_BaseFactory || (ɵOverlayKeyboardDispatcher_BaseFactory = i0.ɵɵgetInheritedFactory(OverlayKeyboardDispatcher)))(__ngFactoryType__ || OverlayKeyboardDispatcher);\n };\n })();\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: OverlayKeyboardDispatcher,\n factory: OverlayKeyboardDispatcher.ɵfac,\n providedIn: 'root'\n });\n }\n return OverlayKeyboardDispatcher;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Service for dispatching mouse click events that land on the body to appropriate overlay ref,\n * if any. It maintains a list of attached overlays to determine best suited overlay based\n * on event target and order of overlay opens.\n */\nlet OverlayOutsideClickDispatcher = /*#__PURE__*/(() => {\n class OverlayOutsideClickDispatcher extends BaseOverlayDispatcher {\n _platform = inject(Platform);\n _ngZone = inject(NgZone);\n _renderer = inject(RendererFactory2).createRenderer(null, null);\n _cursorOriginalValue;\n _cursorStyleIsSet = false;\n _pointerDownEventTarget;\n _cleanups;\n /** Add a new overlay to the list of attached overlay refs. */\n add(overlayRef) {\n super.add(overlayRef);\n // Safari on iOS does not generate click events for non-interactive\n // elements. However, we want to receive a click for any element outside\n // the overlay. We can force a \"clickable\" state by setting\n // `cursor: pointer` on the document body. See:\n // https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event#Safari_Mobile\n // https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html\n if (!this._isAttached) {\n const body = this._document.body;\n const eventOptions = {\n capture: true\n };\n this._cleanups = this._ngZone.runOutsideAngular(() => [_bindEventWithOptions(this._renderer, body, 'pointerdown', this._pointerDownListener, eventOptions), _bindEventWithOptions(this._renderer, body, 'click', this._clickListener, eventOptions), _bindEventWithOptions(this._renderer, body, 'auxclick', this._clickListener, eventOptions), _bindEventWithOptions(this._renderer, body, 'contextmenu', this._clickListener, eventOptions)]);\n // click event is not fired on iOS. To make element \"clickable\" we are\n // setting the cursor to pointer\n if (this._platform.IOS && !this._cursorStyleIsSet) {\n this._cursorOriginalValue = body.style.cursor;\n body.style.cursor = 'pointer';\n this._cursorStyleIsSet = true;\n }\n this._isAttached = true;\n }\n }\n /** Detaches the global keyboard event listener. */\n detach() {\n if (this._isAttached) {\n this._cleanups?.forEach(cleanup => cleanup());\n this._cleanups = undefined;\n if (this._platform.IOS && this._cursorStyleIsSet) {\n this._document.body.style.cursor = this._cursorOriginalValue;\n this._cursorStyleIsSet = false;\n }\n this._isAttached = false;\n }\n }\n /** Store pointerdown event target to track origin of click. */\n _pointerDownListener = event => {\n this._pointerDownEventTarget = _getEventTarget(event);\n };\n /** Click event listener that will be attached to the body propagate phase. */\n _clickListener = event => {\n const target = _getEventTarget(event);\n // In case of a click event, we want to check the origin of the click\n // (e.g. in case where a user starts a click inside the overlay and\n // releases the click outside of it).\n // This is done by using the event target of the preceding pointerdown event.\n // Every click event caused by a pointer device has a preceding pointerdown\n // event, unless the click was programmatically triggered (e.g. in a unit test).\n const origin = event.type === 'click' && this._pointerDownEventTarget ? this._pointerDownEventTarget : target;\n // Reset the stored pointerdown event target, to avoid having it interfere\n // in subsequent events.\n this._pointerDownEventTarget = null;\n // We copy the array because the original may be modified asynchronously if the\n // outsidePointerEvents listener decides to detach overlays resulting in index errors inside\n // the for loop.\n const overlays = this._attachedOverlays.slice();\n // Dispatch the mouse event to the top overlay which has subscribers to its mouse events.\n // We want to target all overlays for which the click could be considered as outside click.\n // As soon as we reach an overlay for which the click is not outside click we break off\n // the loop.\n for (let i = overlays.length - 1; i > -1; i--) {\n const overlayRef = overlays[i];\n if (overlayRef._outsidePointerEvents.observers.length < 1 || !overlayRef.hasAttached()) {\n continue;\n }\n // If it's a click inside the overlay, just break - we should do nothing\n // If it's an outside click (both origin and target of the click) dispatch the mouse event,\n // and proceed with the next overlay\n if (containsPierceShadowDom(overlayRef.overlayElement, target) || containsPierceShadowDom(overlayRef.overlayElement, origin)) {\n break;\n }\n const outsidePointerEvents = overlayRef._outsidePointerEvents;\n /** @breaking-change 14.0.0 _ngZone will be required. */\n if (this._ngZone) {\n this._ngZone.run(() => outsidePointerEvents.next(event));\n } else {\n outsidePointerEvents.next(event);\n }\n }\n };\n static ɵfac = /* @__PURE__ */(() => {\n let ɵOverlayOutsideClickDispatcher_BaseFactory;\n return function OverlayOutsideClickDispatcher_Factory(__ngFactoryType__) {\n return (ɵOverlayOutsideClickDispatcher_BaseFactory || (ɵOverlayOutsideClickDispatcher_BaseFactory = i0.ɵɵgetInheritedFactory(OverlayOutsideClickDispatcher)))(__ngFactoryType__ || OverlayOutsideClickDispatcher);\n };\n })();\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: OverlayOutsideClickDispatcher,\n factory: OverlayOutsideClickDispatcher.ɵfac,\n providedIn: 'root'\n });\n }\n return OverlayOutsideClickDispatcher;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** Version of `Element.contains` that transcends shadow DOM boundaries. */\nfunction containsPierceShadowDom(parent, child) {\n const supportsShadowRoot = typeof ShadowRoot !== 'undefined' && ShadowRoot;\n let current = child;\n while (current) {\n if (current === parent) {\n return true;\n }\n current = supportsShadowRoot && current instanceof ShadowRoot ? current.host : current.parentNode;\n }\n return false;\n}\nlet _CdkOverlayStyleLoader = /*#__PURE__*/(() => {\n class _CdkOverlayStyleLoader {\n static ɵfac = function _CdkOverlayStyleLoader_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || _CdkOverlayStyleLoader)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: _CdkOverlayStyleLoader,\n selectors: [[\"ng-component\"]],\n hostAttrs: [\"cdk-overlay-style-loader\", \"\"],\n decls: 0,\n vars: 0,\n template: function _CdkOverlayStyleLoader_Template(rf, ctx) {},\n styles: [\".cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed}@layer cdk-overlay{.cdk-overlay-container{z-index:1000}}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute}@layer cdk-overlay{.cdk-global-overlay-wrapper{z-index:1000}}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;display:flex;max-width:100%;max-height:100%}@layer cdk-overlay{.cdk-overlay-pane{z-index:1000}}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:0}@layer cdk-overlay{.cdk-overlay-backdrop{z-index:1000;transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}}.cdk-overlay-backdrop-showing{opacity:1}@media(forced-colors: active){.cdk-overlay-backdrop-showing{opacity:.6}}@layer cdk-overlay{.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,.cdk-high-contrast-active .cdk-overlay-transparent-backdrop{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;display:flex;flex-direction:column;min-width:1px;min-height:1px}@layer cdk-overlay{.cdk-overlay-connected-position-bounding-box{z-index:1000}}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n return _CdkOverlayStyleLoader;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** Container inside which all overlays will render. */\nlet OverlayContainer = /*#__PURE__*/(() => {\n class OverlayContainer {\n _platform = inject(Platform);\n _containerElement;\n _document = inject(DOCUMENT);\n _styleLoader = inject(_CdkPrivateStyleLoader);\n constructor() {}\n ngOnDestroy() {\n this._containerElement?.remove();\n }\n /**\n * This method returns the overlay container element. It will lazily\n * create the element the first time it is called to facilitate using\n * the container in non-browser environments.\n * @returns the container element\n */\n getContainerElement() {\n this._loadStyles();\n if (!this._containerElement) {\n this._createContainer();\n }\n return this._containerElement;\n }\n /**\n * Create the overlay container element, which is simply a div\n * with the 'cdk-overlay-container' class on the document body.\n */\n _createContainer() {\n const containerClass = 'cdk-overlay-container';\n // TODO(crisbeto): remove the testing check once we have an overlay testing\n // module or Angular starts tearing down the testing `NgModule`. See:\n // https://github.com/angular/angular/issues/18831\n if (this._platform.isBrowser || _isTestEnvironment()) {\n const oppositePlatformContainers = this._document.querySelectorAll(`.${containerClass}[platform=\"server\"], ` + `.${containerClass}[platform=\"test\"]`);\n // Remove any old containers from the opposite platform.\n // This can happen when transitioning from the server to the client.\n for (let i = 0; i < oppositePlatformContainers.length; i++) {\n oppositePlatformContainers[i].remove();\n }\n }\n const container = this._document.createElement('div');\n container.classList.add(containerClass);\n // A long time ago we kept adding new overlay containers whenever a new app was instantiated,\n // but at some point we added logic which clears the duplicate ones in order to avoid leaks.\n // The new logic was a little too aggressive since it was breaking some legitimate use cases.\n // To mitigate the problem we made it so that only containers from a different platform are\n // cleared, but the side-effect was that people started depending on the overly-aggressive\n // logic to clean up their tests for them. Until we can introduce an overlay-specific testing\n // module which does the cleanup, we try to detect that we're in a test environment and we\n // always clear the container. See #17006.\n // TODO(crisbeto): remove the test environment check once we have an overlay testing module.\n if (_isTestEnvironment()) {\n container.setAttribute('platform', 'test');\n } else if (!this._platform.isBrowser) {\n container.setAttribute('platform', 'server');\n }\n this._document.body.appendChild(container);\n this._containerElement = container;\n }\n /** Loads the structural styles necessary for the overlay to work. */\n _loadStyles() {\n this._styleLoader.load(_CdkOverlayStyleLoader);\n }\n static ɵfac = function OverlayContainer_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || OverlayContainer)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: OverlayContainer,\n factory: OverlayContainer.ɵfac,\n providedIn: 'root'\n });\n }\n return OverlayContainer;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Encapsulates the logic for attaching and detaching a backdrop. */\nclass BackdropRef {\n _renderer;\n _ngZone;\n element;\n _cleanupClick;\n _cleanupTransitionEnd;\n _fallbackTimeout;\n constructor(document, _renderer, _ngZone, onClick) {\n this._renderer = _renderer;\n this._ngZone = _ngZone;\n this.element = document.createElement('div');\n this.element.classList.add('cdk-overlay-backdrop');\n this._cleanupClick = _renderer.listen(this.element, 'click', onClick);\n }\n detach() {\n this._ngZone.runOutsideAngular(() => {\n const element = this.element;\n clearTimeout(this._fallbackTimeout);\n this._cleanupTransitionEnd?.();\n this._cleanupTransitionEnd = this._renderer.listen(element, 'transitionend', this.dispose);\n this._fallbackTimeout = setTimeout(this.dispose, 500);\n // If the backdrop doesn't have a transition, the `transitionend` event won't fire.\n // In this case we make it unclickable and we try to remove it after a delay.\n element.style.pointerEvents = 'none';\n element.classList.remove('cdk-overlay-backdrop-showing');\n });\n }\n dispose = () => {\n clearTimeout(this._fallbackTimeout);\n this._cleanupClick?.();\n this._cleanupTransitionEnd?.();\n this._cleanupClick = this._cleanupTransitionEnd = this._fallbackTimeout = undefined;\n this.element.remove();\n };\n}\n\n/**\n * Reference to an overlay that has been created with the Overlay service.\n * Used to manipulate or dispose of said overlay.\n */\nclass OverlayRef {\n _portalOutlet;\n _host;\n _pane;\n _config;\n _ngZone;\n _keyboardDispatcher;\n _document;\n _location;\n _outsideClickDispatcher;\n _animationsDisabled;\n _injector;\n _renderer;\n _backdropClick = /*#__PURE__*/new Subject();\n _attachments = /*#__PURE__*/new Subject();\n _detachments = /*#__PURE__*/new Subject();\n _positionStrategy;\n _scrollStrategy;\n _locationChanges = Subscription.EMPTY;\n _backdropRef = null;\n /**\n * Reference to the parent of the `_host` at the time it was detached. Used to restore\n * the `_host` to its original position in the DOM when it gets re-attached.\n */\n _previousHostParent;\n /** Stream of keydown events dispatched to this overlay. */\n _keydownEvents = /*#__PURE__*/new Subject();\n /** Stream of mouse outside events dispatched to this overlay. */\n _outsidePointerEvents = /*#__PURE__*/new Subject();\n _renders = /*#__PURE__*/new Subject();\n _afterRenderRef;\n /** Reference to the currently-running `afterNextRender` call. */\n _afterNextRenderRef;\n constructor(_portalOutlet, _host, _pane, _config, _ngZone, _keyboardDispatcher, _document, _location, _outsideClickDispatcher, _animationsDisabled = false, _injector, _renderer) {\n this._portalOutlet = _portalOutlet;\n this._host = _host;\n this._pane = _pane;\n this._config = _config;\n this._ngZone = _ngZone;\n this._keyboardDispatcher = _keyboardDispatcher;\n this._document = _document;\n this._location = _location;\n this._outsideClickDispatcher = _outsideClickDispatcher;\n this._animationsDisabled = _animationsDisabled;\n this._injector = _injector;\n this._renderer = _renderer;\n if (_config.scrollStrategy) {\n this._scrollStrategy = _config.scrollStrategy;\n this._scrollStrategy.attach(this);\n }\n this._positionStrategy = _config.positionStrategy;\n // Users could open the overlay from an `effect`, in which case we need to\n // run the `afterRender` as `untracked`. We don't recommend that users do\n // this, but we also don't want to break users who are doing it.\n this._afterRenderRef = untracked(() => afterRender(() => {\n this._renders.next();\n }, {\n injector: this._injector\n }));\n }\n /** The overlay's HTML element */\n get overlayElement() {\n return this._pane;\n }\n /** The overlay's backdrop HTML element. */\n get backdropElement() {\n return this._backdropRef?.element || null;\n }\n /**\n * Wrapper around the panel element. Can be used for advanced\n * positioning where a wrapper with specific styling is\n * required around the overlay pane.\n */\n get hostElement() {\n return this._host;\n }\n /**\n * Attaches content, given via a Portal, to the overlay.\n * If the overlay is configured to have a backdrop, it will be created.\n *\n * @param portal Portal instance to which to attach the overlay.\n * @returns The portal attachment result.\n */\n attach(portal) {\n // Insert the host into the DOM before attaching the portal, otherwise\n // the animations module will skip animations on repeat attachments.\n if (!this._host.parentElement && this._previousHostParent) {\n this._previousHostParent.appendChild(this._host);\n }\n const attachResult = this._portalOutlet.attach(portal);\n if (this._positionStrategy) {\n this._positionStrategy.attach(this);\n }\n this._updateStackingOrder();\n this._updateElementSize();\n this._updateElementDirection();\n if (this._scrollStrategy) {\n this._scrollStrategy.enable();\n }\n // We need to clean this up ourselves, because we're passing in an\n // `EnvironmentInjector` below which won't ever be destroyed.\n // Otherwise it causes some callbacks to be retained (see #29696).\n this._afterNextRenderRef?.destroy();\n // Update the position once the overlay is fully rendered before attempting to position it,\n // as the position may depend on the size of the rendered content.\n this._afterNextRenderRef = afterNextRender(() => {\n // The overlay could've been detached before the callback executed.\n if (this.hasAttached()) {\n this.updatePosition();\n }\n }, {\n injector: this._injector\n });\n // Enable pointer events for the overlay pane element.\n this._togglePointerEvents(true);\n if (this._config.hasBackdrop) {\n this._attachBackdrop();\n }\n if (this._config.panelClass) {\n this._toggleClasses(this._pane, this._config.panelClass, true);\n }\n // Only emit the `attachments` event once all other setup is done.\n this._attachments.next();\n // Track this overlay by the keyboard dispatcher\n this._keyboardDispatcher.add(this);\n if (this._config.disposeOnNavigation) {\n this._locationChanges = this._location.subscribe(() => this.dispose());\n }\n this._outsideClickDispatcher.add(this);\n // TODO(crisbeto): the null check is here, because the portal outlet returns `any`.\n // We should be guaranteed for the result to be `ComponentRef | EmbeddedViewRef`, but\n // `instanceof EmbeddedViewRef` doesn't appear to work at the moment.\n if (typeof attachResult?.onDestroy === 'function') {\n // In most cases we control the portal and we know when it is being detached so that\n // we can finish the disposal process. The exception is if the user passes in a custom\n // `ViewContainerRef` that isn't destroyed through the overlay API. Note that we use\n // `detach` here instead of `dispose`, because we don't know if the user intends to\n // reattach the overlay at a later point. It also has the advantage of waiting for animations.\n attachResult.onDestroy(() => {\n if (this.hasAttached()) {\n // We have to delay the `detach` call, because detaching immediately prevents\n // other destroy hooks from running. This is likely a framework bug similar to\n // https://github.com/angular/angular/issues/46119\n this._ngZone.runOutsideAngular(() => Promise.resolve().then(() => this.detach()));\n }\n });\n }\n return attachResult;\n }\n /**\n * Detaches an overlay from a portal.\n * @returns The portal detachment result.\n */\n detach() {\n if (!this.hasAttached()) {\n return;\n }\n this.detachBackdrop();\n // When the overlay is detached, the pane element should disable pointer events.\n // This is necessary because otherwise the pane element will cover the page and disable\n // pointer events therefore. Depends on the position strategy and the applied pane boundaries.\n this._togglePointerEvents(false);\n if (this._positionStrategy && this._positionStrategy.detach) {\n this._positionStrategy.detach();\n }\n if (this._scrollStrategy) {\n this._scrollStrategy.disable();\n }\n const detachmentResult = this._portalOutlet.detach();\n // Only emit after everything is detached.\n this._detachments.next();\n // Remove this overlay from keyboard dispatcher tracking.\n this._keyboardDispatcher.remove(this);\n // Keeping the host element in the DOM can cause scroll jank, because it still gets\n // rendered, even though it's transparent and unclickable which is why we remove it.\n this._detachContentWhenEmpty();\n this._locationChanges.unsubscribe();\n this._outsideClickDispatcher.remove(this);\n return detachmentResult;\n }\n /** Cleans up the overlay from the DOM. */\n dispose() {\n const isAttached = this.hasAttached();\n if (this._positionStrategy) {\n this._positionStrategy.dispose();\n }\n this._disposeScrollStrategy();\n this._backdropRef?.dispose();\n this._locationChanges.unsubscribe();\n this._keyboardDispatcher.remove(this);\n this._portalOutlet.dispose();\n this._attachments.complete();\n this._backdropClick.complete();\n this._keydownEvents.complete();\n this._outsidePointerEvents.complete();\n this._outsideClickDispatcher.remove(this);\n this._host?.remove();\n this._afterNextRenderRef?.destroy();\n this._previousHostParent = this._pane = this._host = this._backdropRef = null;\n if (isAttached) {\n this._detachments.next();\n }\n this._detachments.complete();\n this._afterRenderRef.destroy();\n this._renders.complete();\n }\n /** Whether the overlay has attached content. */\n hasAttached() {\n return this._portalOutlet.hasAttached();\n }\n /** Gets an observable that emits when the backdrop has been clicked. */\n backdropClick() {\n return this._backdropClick;\n }\n /** Gets an observable that emits when the overlay has been attached. */\n attachments() {\n return this._attachments;\n }\n /** Gets an observable that emits when the overlay has been detached. */\n detachments() {\n return this._detachments;\n }\n /** Gets an observable of keydown events targeted to this overlay. */\n keydownEvents() {\n return this._keydownEvents;\n }\n /** Gets an observable of pointer events targeted outside this overlay. */\n outsidePointerEvents() {\n return this._outsidePointerEvents;\n }\n /** Gets the current overlay configuration, which is immutable. */\n getConfig() {\n return this._config;\n }\n /** Updates the position of the overlay based on the position strategy. */\n updatePosition() {\n if (this._positionStrategy) {\n this._positionStrategy.apply();\n }\n }\n /** Switches to a new position strategy and updates the overlay position. */\n updatePositionStrategy(strategy) {\n if (strategy === this._positionStrategy) {\n return;\n }\n if (this._positionStrategy) {\n this._positionStrategy.dispose();\n }\n this._positionStrategy = strategy;\n if (this.hasAttached()) {\n strategy.attach(this);\n this.updatePosition();\n }\n }\n /** Update the size properties of the overlay. */\n updateSize(sizeConfig) {\n this._config = {\n ...this._config,\n ...sizeConfig\n };\n this._updateElementSize();\n }\n /** Sets the LTR/RTL direction for the overlay. */\n setDirection(dir) {\n this._config = {\n ...this._config,\n direction: dir\n };\n this._updateElementDirection();\n }\n /** Add a CSS class or an array of classes to the overlay pane. */\n addPanelClass(classes) {\n if (this._pane) {\n this._toggleClasses(this._pane, classes, true);\n }\n }\n /** Remove a CSS class or an array of classes from the overlay pane. */\n removePanelClass(classes) {\n if (this._pane) {\n this._toggleClasses(this._pane, classes, false);\n }\n }\n /**\n * Returns the layout direction of the overlay panel.\n */\n getDirection() {\n const direction = this._config.direction;\n if (!direction) {\n return 'ltr';\n }\n return typeof direction === 'string' ? direction : direction.value;\n }\n /** Switches to a new scroll strategy. */\n updateScrollStrategy(strategy) {\n if (strategy === this._scrollStrategy) {\n return;\n }\n this._disposeScrollStrategy();\n this._scrollStrategy = strategy;\n if (this.hasAttached()) {\n strategy.attach(this);\n strategy.enable();\n }\n }\n /** Updates the text direction of the overlay panel. */\n _updateElementDirection() {\n this._host.setAttribute('dir', this.getDirection());\n }\n /** Updates the size of the overlay element based on the overlay config. */\n _updateElementSize() {\n if (!this._pane) {\n return;\n }\n const style = this._pane.style;\n style.width = coerceCssPixelValue(this._config.width);\n style.height = coerceCssPixelValue(this._config.height);\n style.minWidth = coerceCssPixelValue(this._config.minWidth);\n style.minHeight = coerceCssPixelValue(this._config.minHeight);\n style.maxWidth = coerceCssPixelValue(this._config.maxWidth);\n style.maxHeight = coerceCssPixelValue(this._config.maxHeight);\n }\n /** Toggles the pointer events for the overlay pane element. */\n _togglePointerEvents(enablePointer) {\n this._pane.style.pointerEvents = enablePointer ? '' : 'none';\n }\n /** Attaches a backdrop for this overlay. */\n _attachBackdrop() {\n const showingClass = 'cdk-overlay-backdrop-showing';\n this._backdropRef?.dispose();\n this._backdropRef = new BackdropRef(this._document, this._renderer, this._ngZone, event => {\n this._backdropClick.next(event);\n });\n if (this._animationsDisabled) {\n this._backdropRef.element.classList.add('cdk-overlay-backdrop-noop-animation');\n }\n if (this._config.backdropClass) {\n this._toggleClasses(this._backdropRef.element, this._config.backdropClass, true);\n }\n // Insert the backdrop before the pane in the DOM order,\n // in order to handle stacked overlays properly.\n this._host.parentElement.insertBefore(this._backdropRef.element, this._host);\n // Add class to fade-in the backdrop after one frame.\n if (!this._animationsDisabled && typeof requestAnimationFrame !== 'undefined') {\n this._ngZone.runOutsideAngular(() => {\n requestAnimationFrame(() => this._backdropRef?.element.classList.add(showingClass));\n });\n } else {\n this._backdropRef.element.classList.add(showingClass);\n }\n }\n /**\n * Updates the stacking order of the element, moving it to the top if necessary.\n * This is required in cases where one overlay was detached, while another one,\n * that should be behind it, was destroyed. The next time both of them are opened,\n * the stacking will be wrong, because the detached element's pane will still be\n * in its original DOM position.\n */\n _updateStackingOrder() {\n if (this._host.nextSibling) {\n this._host.parentNode.appendChild(this._host);\n }\n }\n /** Detaches the backdrop (if any) associated with the overlay. */\n detachBackdrop() {\n if (this._animationsDisabled) {\n this._backdropRef?.dispose();\n this._backdropRef = null;\n } else {\n this._backdropRef?.detach();\n }\n }\n /** Toggles a single CSS class or an array of classes on an element. */\n _toggleClasses(element, cssClasses, isAdd) {\n const classes = coerceArray(cssClasses || []).filter(c => !!c);\n if (classes.length) {\n isAdd ? element.classList.add(...classes) : element.classList.remove(...classes);\n }\n }\n /** Detaches the overlay content next time the zone stabilizes. */\n _detachContentWhenEmpty() {\n // Normally we wouldn't have to explicitly run this outside the `NgZone`, however\n // if the consumer is using `zone-patch-rxjs`, the `Subscription.unsubscribe` call will\n // be patched to run inside the zone, which will throw us into an infinite loop.\n this._ngZone.runOutsideAngular(() => {\n // We can't remove the host here immediately, because the overlay pane's content\n // might still be animating. This stream helps us avoid interrupting the animation\n // by waiting for the pane to become empty.\n const subscription = this._renders.pipe(takeUntil(merge(this._attachments, this._detachments))).subscribe(() => {\n // Needs a couple of checks for the pane and host, because\n // they may have been removed by the time the zone stabilizes.\n if (!this._pane || !this._host || this._pane.children.length === 0) {\n if (this._pane && this._config.panelClass) {\n this._toggleClasses(this._pane, this._config.panelClass, false);\n }\n if (this._host && this._host.parentElement) {\n this._previousHostParent = this._host.parentElement;\n this._host.remove();\n }\n subscription.unsubscribe();\n }\n });\n });\n }\n /** Disposes of a scroll strategy. */\n _disposeScrollStrategy() {\n const scrollStrategy = this._scrollStrategy;\n scrollStrategy?.disable();\n scrollStrategy?.detach?.();\n }\n}\n\n// TODO: refactor clipping detection into a separate thing (part of scrolling module)\n// TODO: doesn't handle both flexible width and height when it has to scroll along both axis.\n/** Class to be added to the overlay bounding box. */\nconst boundingBoxClass = 'cdk-overlay-connected-position-bounding-box';\n/** Regex used to split a string on its CSS units. */\nconst cssUnitPattern = /([A-Za-z%]+)$/;\n/**\n * A strategy for positioning overlays. Using this strategy, an overlay is given an\n * implicit position relative some origin element. The relative position is defined in terms of\n * a point on the origin element that is connected to a point on the overlay element. For example,\n * a basic dropdown is connecting the bottom-left corner of the origin to the top-left corner\n * of the overlay.\n */\nclass FlexibleConnectedPositionStrategy {\n _viewportRuler;\n _document;\n _platform;\n _overlayContainer;\n /** The overlay to which this strategy is attached. */\n _overlayRef;\n /** Whether we're performing the very first positioning of the overlay. */\n _isInitialRender;\n /** Last size used for the bounding box. Used to avoid resizing the overlay after open. */\n _lastBoundingBoxSize = {\n width: 0,\n height: 0\n };\n /** Whether the overlay was pushed in a previous positioning. */\n _isPushed = false;\n /** Whether the overlay can be pushed on-screen on the initial open. */\n _canPush = true;\n /** Whether the overlay can grow via flexible width/height after the initial open. */\n _growAfterOpen = false;\n /** Whether the overlay's width and height can be constrained to fit within the viewport. */\n _hasFlexibleDimensions = true;\n /** Whether the overlay position is locked. */\n _positionLocked = false;\n /** Cached origin dimensions */\n _originRect;\n /** Cached overlay dimensions */\n _overlayRect;\n /** Cached viewport dimensions */\n _viewportRect;\n /** Cached container dimensions */\n _containerRect;\n /** Amount of space that must be maintained between the overlay and the edge of the viewport. */\n _viewportMargin = 0;\n /** The Scrollable containers used to check scrollable view properties on position change. */\n _scrollables = [];\n /** Ordered list of preferred positions, from most to least desirable. */\n _preferredPositions = [];\n /** The origin element against which the overlay will be positioned. */\n _origin;\n /** The overlay pane element. */\n _pane;\n /** Whether the strategy has been disposed of already. */\n _isDisposed;\n /**\n * Parent element for the overlay panel used to constrain the overlay panel's size to fit\n * within the viewport.\n */\n _boundingBox;\n /** The last position to have been calculated as the best fit position. */\n _lastPosition;\n /** The last calculated scroll visibility. Only tracked */\n _lastScrollVisibility;\n /** Subject that emits whenever the position changes. */\n _positionChanges = /*#__PURE__*/new Subject();\n /** Subscription to viewport size changes. */\n _resizeSubscription = Subscription.EMPTY;\n /** Default offset for the overlay along the x axis. */\n _offsetX = 0;\n /** Default offset for the overlay along the y axis. */\n _offsetY = 0;\n /** Selector to be used when finding the elements on which to set the transform origin. */\n _transformOriginSelector;\n /** Keeps track of the CSS classes that the position strategy has applied on the overlay panel. */\n _appliedPanelClasses = [];\n /** Amount by which the overlay was pushed in each axis during the last time it was positioned. */\n _previousPushAmount;\n /** Observable sequence of position changes. */\n positionChanges = this._positionChanges;\n /** Ordered list of preferred positions, from most to least desirable. */\n get positions() {\n return this._preferredPositions;\n }\n constructor(connectedTo, _viewportRuler, _document, _platform, _overlayContainer) {\n this._viewportRuler = _viewportRuler;\n this._document = _document;\n this._platform = _platform;\n this._overlayContainer = _overlayContainer;\n this.setOrigin(connectedTo);\n }\n /** Attaches this position strategy to an overlay. */\n attach(overlayRef) {\n if (this._overlayRef && overlayRef !== this._overlayRef && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error('This position strategy is already attached to an overlay');\n }\n this._validatePositions();\n overlayRef.hostElement.classList.add(boundingBoxClass);\n this._overlayRef = overlayRef;\n this._boundingBox = overlayRef.hostElement;\n this._pane = overlayRef.overlayElement;\n this._isDisposed = false;\n this._isInitialRender = true;\n this._lastPosition = null;\n this._resizeSubscription.unsubscribe();\n this._resizeSubscription = this._viewportRuler.change().subscribe(() => {\n // When the window is resized, we want to trigger the next reposition as if it\n // was an initial render, in order for the strategy to pick a new optimal position,\n // otherwise position locking will cause it to stay at the old one.\n this._isInitialRender = true;\n this.apply();\n });\n }\n /**\n * Updates the position of the overlay element, using whichever preferred position relative\n * to the origin best fits on-screen.\n *\n * The selection of a position goes as follows:\n * - If any positions fit completely within the viewport as-is,\n * choose the first position that does so.\n * - If flexible dimensions are enabled and at least one satisfies the given minimum width/height,\n * choose the position with the greatest available size modified by the positions' weight.\n * - If pushing is enabled, take the position that went off-screen the least and push it\n * on-screen.\n * - If none of the previous criteria were met, use the position that goes off-screen the least.\n * @docs-private\n */\n apply() {\n // We shouldn't do anything if the strategy was disposed or we're on the server.\n if (this._isDisposed || !this._platform.isBrowser) {\n return;\n }\n // If the position has been applied already (e.g. when the overlay was opened) and the\n // consumer opted into locking in the position, re-use the old position, in order to\n // prevent the overlay from jumping around.\n if (!this._isInitialRender && this._positionLocked && this._lastPosition) {\n this.reapplyLastPosition();\n return;\n }\n this._clearPanelClasses();\n this._resetOverlayElementStyles();\n this._resetBoundingBoxStyles();\n // We need the bounding rects for the origin, the overlay and the container to determine how to position\n // the overlay relative to the origin.\n // We use the viewport rect to determine whether a position would go off-screen.\n this._viewportRect = this._getNarrowedViewportRect();\n this._originRect = this._getOriginRect();\n this._overlayRect = this._pane.getBoundingClientRect();\n this._containerRect = this._overlayContainer.getContainerElement().getBoundingClientRect();\n const originRect = this._originRect;\n const overlayRect = this._overlayRect;\n const viewportRect = this._viewportRect;\n const containerRect = this._containerRect;\n // Positions where the overlay will fit with flexible dimensions.\n const flexibleFits = [];\n // Fallback if none of the preferred positions fit within the viewport.\n let fallback;\n // Go through each of the preferred positions looking for a good fit.\n // If a good fit is found, it will be applied immediately.\n for (let pos of this._preferredPositions) {\n // Get the exact (x, y) coordinate for the point-of-origin on the origin element.\n let originPoint = this._getOriginPoint(originRect, containerRect, pos);\n // From that point-of-origin, get the exact (x, y) coordinate for the top-left corner of the\n // overlay in this position. We use the top-left corner for calculations and later translate\n // this into an appropriate (top, left, bottom, right) style.\n let overlayPoint = this._getOverlayPoint(originPoint, overlayRect, pos);\n // Calculate how well the overlay would fit into the viewport with this point.\n let overlayFit = this._getOverlayFit(overlayPoint, overlayRect, viewportRect, pos);\n // If the overlay, without any further work, fits into the viewport, use this position.\n if (overlayFit.isCompletelyWithinViewport) {\n this._isPushed = false;\n this._applyPosition(pos, originPoint);\n return;\n }\n // If the overlay has flexible dimensions, we can use this position\n // so long as there's enough space for the minimum dimensions.\n if (this._canFitWithFlexibleDimensions(overlayFit, overlayPoint, viewportRect)) {\n // Save positions where the overlay will fit with flexible dimensions. We will use these\n // if none of the positions fit *without* flexible dimensions.\n flexibleFits.push({\n position: pos,\n origin: originPoint,\n overlayRect,\n boundingBoxRect: this._calculateBoundingBoxRect(originPoint, pos)\n });\n continue;\n }\n // If the current preferred position does not fit on the screen, remember the position\n // if it has more visible area on-screen than we've seen and move onto the next preferred\n // position.\n if (!fallback || fallback.overlayFit.visibleArea < overlayFit.visibleArea) {\n fallback = {\n overlayFit,\n overlayPoint,\n originPoint,\n position: pos,\n overlayRect\n };\n }\n }\n // If there are any positions where the overlay would fit with flexible dimensions, choose the\n // one that has the greatest area available modified by the position's weight\n if (flexibleFits.length) {\n let bestFit = null;\n let bestScore = -1;\n for (const fit of flexibleFits) {\n const score = fit.boundingBoxRect.width * fit.boundingBoxRect.height * (fit.position.weight || 1);\n if (score > bestScore) {\n bestScore = score;\n bestFit = fit;\n }\n }\n this._isPushed = false;\n this._applyPosition(bestFit.position, bestFit.origin);\n return;\n }\n // When none of the preferred positions fit within the viewport, take the position\n // that went off-screen the least and attempt to push it on-screen.\n if (this._canPush) {\n // TODO(jelbourn): after pushing, the opening \"direction\" of the overlay might not make sense.\n this._isPushed = true;\n this._applyPosition(fallback.position, fallback.originPoint);\n return;\n }\n // All options for getting the overlay within the viewport have been exhausted, so go with the\n // position that went off-screen the least.\n this._applyPosition(fallback.position, fallback.originPoint);\n }\n detach() {\n this._clearPanelClasses();\n this._lastPosition = null;\n this._previousPushAmount = null;\n this._resizeSubscription.unsubscribe();\n }\n /** Cleanup after the element gets destroyed. */\n dispose() {\n if (this._isDisposed) {\n return;\n }\n // We can't use `_resetBoundingBoxStyles` here, because it resets\n // some properties to zero, rather than removing them.\n if (this._boundingBox) {\n extendStyles(this._boundingBox.style, {\n top: '',\n left: '',\n right: '',\n bottom: '',\n height: '',\n width: '',\n alignItems: '',\n justifyContent: ''\n });\n }\n if (this._pane) {\n this._resetOverlayElementStyles();\n }\n if (this._overlayRef) {\n this._overlayRef.hostElement.classList.remove(boundingBoxClass);\n }\n this.detach();\n this._positionChanges.complete();\n this._overlayRef = this._boundingBox = null;\n this._isDisposed = true;\n }\n /**\n * This re-aligns the overlay element with the trigger in its last calculated position,\n * even if a position higher in the \"preferred positions\" list would now fit. This\n * allows one to re-align the panel without changing the orientation of the panel.\n */\n reapplyLastPosition() {\n if (this._isDisposed || !this._platform.isBrowser) {\n return;\n }\n const lastPosition = this._lastPosition;\n if (lastPosition) {\n this._originRect = this._getOriginRect();\n this._overlayRect = this._pane.getBoundingClientRect();\n this._viewportRect = this._getNarrowedViewportRect();\n this._containerRect = this._overlayContainer.getContainerElement().getBoundingClientRect();\n const originPoint = this._getOriginPoint(this._originRect, this._containerRect, lastPosition);\n this._applyPosition(lastPosition, originPoint);\n } else {\n this.apply();\n }\n }\n /**\n * Sets the list of Scrollable containers that host the origin element so that\n * on reposition we can evaluate if it or the overlay has been clipped or outside view. Every\n * Scrollable must be an ancestor element of the strategy's origin element.\n */\n withScrollableContainers(scrollables) {\n this._scrollables = scrollables;\n return this;\n }\n /**\n * Adds new preferred positions.\n * @param positions List of positions options for this overlay.\n */\n withPositions(positions) {\n this._preferredPositions = positions;\n // If the last calculated position object isn't part of the positions anymore, clear\n // it in order to avoid it being picked up if the consumer tries to re-apply.\n if (positions.indexOf(this._lastPosition) === -1) {\n this._lastPosition = null;\n }\n this._validatePositions();\n return this;\n }\n /**\n * Sets a minimum distance the overlay may be positioned to the edge of the viewport.\n * @param margin Required margin between the overlay and the viewport edge in pixels.\n */\n withViewportMargin(margin) {\n this._viewportMargin = margin;\n return this;\n }\n /** Sets whether the overlay's width and height can be constrained to fit within the viewport. */\n withFlexibleDimensions(flexibleDimensions = true) {\n this._hasFlexibleDimensions = flexibleDimensions;\n return this;\n }\n /** Sets whether the overlay can grow after the initial open via flexible width/height. */\n withGrowAfterOpen(growAfterOpen = true) {\n this._growAfterOpen = growAfterOpen;\n return this;\n }\n /** Sets whether the overlay can be pushed on-screen if none of the provided positions fit. */\n withPush(canPush = true) {\n this._canPush = canPush;\n return this;\n }\n /**\n * Sets whether the overlay's position should be locked in after it is positioned\n * initially. When an overlay is locked in, it won't attempt to reposition itself\n * when the position is re-applied (e.g. when the user scrolls away).\n * @param isLocked Whether the overlay should locked in.\n */\n withLockedPosition(isLocked = true) {\n this._positionLocked = isLocked;\n return this;\n }\n /**\n * Sets the origin, relative to which to position the overlay.\n * Using an element origin is useful for building components that need to be positioned\n * relatively to a trigger (e.g. dropdown menus or tooltips), whereas using a point can be\n * used for cases like contextual menus which open relative to the user's pointer.\n * @param origin Reference to the new origin.\n */\n setOrigin(origin) {\n this._origin = origin;\n return this;\n }\n /**\n * Sets the default offset for the overlay's connection point on the x-axis.\n * @param offset New offset in the X axis.\n */\n withDefaultOffsetX(offset) {\n this._offsetX = offset;\n return this;\n }\n /**\n * Sets the default offset for the overlay's connection point on the y-axis.\n * @param offset New offset in the Y axis.\n */\n withDefaultOffsetY(offset) {\n this._offsetY = offset;\n return this;\n }\n /**\n * Configures that the position strategy should set a `transform-origin` on some elements\n * inside the overlay, depending on the current position that is being applied. This is\n * useful for the cases where the origin of an animation can change depending on the\n * alignment of the overlay.\n * @param selector CSS selector that will be used to find the target\n * elements onto which to set the transform origin.\n */\n withTransformOriginOn(selector) {\n this._transformOriginSelector = selector;\n return this;\n }\n /**\n * Gets the (x, y) coordinate of a connection point on the origin based on a relative position.\n */\n _getOriginPoint(originRect, containerRect, pos) {\n let x;\n if (pos.originX == 'center') {\n // Note: when centering we should always use the `left`\n // offset, otherwise the position will be wrong in RTL.\n x = originRect.left + originRect.width / 2;\n } else {\n const startX = this._isRtl() ? originRect.right : originRect.left;\n const endX = this._isRtl() ? originRect.left : originRect.right;\n x = pos.originX == 'start' ? startX : endX;\n }\n // When zooming in Safari the container rectangle contains negative values for the position\n // and we need to re-add them to the calculated coordinates.\n if (containerRect.left < 0) {\n x -= containerRect.left;\n }\n let y;\n if (pos.originY == 'center') {\n y = originRect.top + originRect.height / 2;\n } else {\n y = pos.originY == 'top' ? originRect.top : originRect.bottom;\n }\n // Normally the containerRect's top value would be zero, however when the overlay is attached to an input\n // (e.g. in an autocomplete), mobile browsers will shift everything in order to put the input in the middle\n // of the screen and to make space for the virtual keyboard. We need to account for this offset,\n // otherwise our positioning will be thrown off.\n // Additionally, when zooming in Safari this fixes the vertical position.\n if (containerRect.top < 0) {\n y -= containerRect.top;\n }\n return {\n x,\n y\n };\n }\n /**\n * Gets the (x, y) coordinate of the top-left corner of the overlay given a given position and\n * origin point to which the overlay should be connected.\n */\n _getOverlayPoint(originPoint, overlayRect, pos) {\n // Calculate the (overlayStartX, overlayStartY), the start of the\n // potential overlay position relative to the origin point.\n let overlayStartX;\n if (pos.overlayX == 'center') {\n overlayStartX = -overlayRect.width / 2;\n } else if (pos.overlayX === 'start') {\n overlayStartX = this._isRtl() ? -overlayRect.width : 0;\n } else {\n overlayStartX = this._isRtl() ? 0 : -overlayRect.width;\n }\n let overlayStartY;\n if (pos.overlayY == 'center') {\n overlayStartY = -overlayRect.height / 2;\n } else {\n overlayStartY = pos.overlayY == 'top' ? 0 : -overlayRect.height;\n }\n // The (x, y) coordinates of the overlay.\n return {\n x: originPoint.x + overlayStartX,\n y: originPoint.y + overlayStartY\n };\n }\n /** Gets how well an overlay at the given point will fit within the viewport. */\n _getOverlayFit(point, rawOverlayRect, viewport, position) {\n // Round the overlay rect when comparing against the\n // viewport, because the viewport is always rounded.\n const overlay = getRoundedBoundingClientRect(rawOverlayRect);\n let {\n x,\n y\n } = point;\n let offsetX = this._getOffset(position, 'x');\n let offsetY = this._getOffset(position, 'y');\n // Account for the offsets since they could push the overlay out of the viewport.\n if (offsetX) {\n x += offsetX;\n }\n if (offsetY) {\n y += offsetY;\n }\n // How much the overlay would overflow at this position, on each side.\n let leftOverflow = 0 - x;\n let rightOverflow = x + overlay.width - viewport.width;\n let topOverflow = 0 - y;\n let bottomOverflow = y + overlay.height - viewport.height;\n // Visible parts of the element on each axis.\n let visibleWidth = this._subtractOverflows(overlay.width, leftOverflow, rightOverflow);\n let visibleHeight = this._subtractOverflows(overlay.height, topOverflow, bottomOverflow);\n let visibleArea = visibleWidth * visibleHeight;\n return {\n visibleArea,\n isCompletelyWithinViewport: overlay.width * overlay.height === visibleArea,\n fitsInViewportVertically: visibleHeight === overlay.height,\n fitsInViewportHorizontally: visibleWidth == overlay.width\n };\n }\n /**\n * Whether the overlay can fit within the viewport when it may resize either its width or height.\n * @param fit How well the overlay fits in the viewport at some position.\n * @param point The (x, y) coordinates of the overlay at some position.\n * @param viewport The geometry of the viewport.\n */\n _canFitWithFlexibleDimensions(fit, point, viewport) {\n if (this._hasFlexibleDimensions) {\n const availableHeight = viewport.bottom - point.y;\n const availableWidth = viewport.right - point.x;\n const minHeight = getPixelValue(this._overlayRef.getConfig().minHeight);\n const minWidth = getPixelValue(this._overlayRef.getConfig().minWidth);\n const verticalFit = fit.fitsInViewportVertically || minHeight != null && minHeight <= availableHeight;\n const horizontalFit = fit.fitsInViewportHorizontally || minWidth != null && minWidth <= availableWidth;\n return verticalFit && horizontalFit;\n }\n return false;\n }\n /**\n * Gets the point at which the overlay can be \"pushed\" on-screen. If the overlay is larger than\n * the viewport, the top-left corner will be pushed on-screen (with overflow occurring on the\n * right and bottom).\n *\n * @param start Starting point from which the overlay is pushed.\n * @param rawOverlayRect Dimensions of the overlay.\n * @param scrollPosition Current viewport scroll position.\n * @returns The point at which to position the overlay after pushing. This is effectively a new\n * originPoint.\n */\n _pushOverlayOnScreen(start, rawOverlayRect, scrollPosition) {\n // If the position is locked and we've pushed the overlay already, reuse the previous push\n // amount, rather than pushing it again. If we were to continue pushing, the element would\n // remain in the viewport, which goes against the expectations when position locking is enabled.\n if (this._previousPushAmount && this._positionLocked) {\n return {\n x: start.x + this._previousPushAmount.x,\n y: start.y + this._previousPushAmount.y\n };\n }\n // Round the overlay rect when comparing against the\n // viewport, because the viewport is always rounded.\n const overlay = getRoundedBoundingClientRect(rawOverlayRect);\n const viewport = this._viewportRect;\n // Determine how much the overlay goes outside the viewport on each\n // side, which we'll use to decide which direction to push it.\n const overflowRight = Math.max(start.x + overlay.width - viewport.width, 0);\n const overflowBottom = Math.max(start.y + overlay.height - viewport.height, 0);\n const overflowTop = Math.max(viewport.top - scrollPosition.top - start.y, 0);\n const overflowLeft = Math.max(viewport.left - scrollPosition.left - start.x, 0);\n // Amount by which to push the overlay in each axis such that it remains on-screen.\n let pushX = 0;\n let pushY = 0;\n // If the overlay fits completely within the bounds of the viewport, push it from whichever\n // direction is goes off-screen. Otherwise, push the top-left corner such that its in the\n // viewport and allow for the trailing end of the overlay to go out of bounds.\n if (overlay.width <= viewport.width) {\n pushX = overflowLeft || -overflowRight;\n } else {\n pushX = start.x < this._viewportMargin ? viewport.left - scrollPosition.left - start.x : 0;\n }\n if (overlay.height <= viewport.height) {\n pushY = overflowTop || -overflowBottom;\n } else {\n pushY = start.y < this._viewportMargin ? viewport.top - scrollPosition.top - start.y : 0;\n }\n this._previousPushAmount = {\n x: pushX,\n y: pushY\n };\n return {\n x: start.x + pushX,\n y: start.y + pushY\n };\n }\n /**\n * Applies a computed position to the overlay and emits a position change.\n * @param position The position preference\n * @param originPoint The point on the origin element where the overlay is connected.\n */\n _applyPosition(position, originPoint) {\n this._setTransformOrigin(position);\n this._setOverlayElementStyles(originPoint, position);\n this._setBoundingBoxStyles(originPoint, position);\n if (position.panelClass) {\n this._addPanelClasses(position.panelClass);\n }\n // Notify that the position has been changed along with its change properties.\n // We only emit if we've got any subscriptions, because the scroll visibility\n // calculations can be somewhat expensive.\n if (this._positionChanges.observers.length) {\n const scrollVisibility = this._getScrollVisibility();\n // We're recalculating on scroll, but we only want to emit if anything\n // changed since downstream code might be hitting the `NgZone`.\n if (position !== this._lastPosition || !this._lastScrollVisibility || !compareScrollVisibility(this._lastScrollVisibility, scrollVisibility)) {\n const changeEvent = new ConnectedOverlayPositionChange(position, scrollVisibility);\n this._positionChanges.next(changeEvent);\n }\n this._lastScrollVisibility = scrollVisibility;\n }\n // Save the last connected position in case the position needs to be re-calculated.\n this._lastPosition = position;\n this._isInitialRender = false;\n }\n /** Sets the transform origin based on the configured selector and the passed-in position. */\n _setTransformOrigin(position) {\n if (!this._transformOriginSelector) {\n return;\n }\n const elements = this._boundingBox.querySelectorAll(this._transformOriginSelector);\n let xOrigin;\n let yOrigin = position.overlayY;\n if (position.overlayX === 'center') {\n xOrigin = 'center';\n } else if (this._isRtl()) {\n xOrigin = position.overlayX === 'start' ? 'right' : 'left';\n } else {\n xOrigin = position.overlayX === 'start' ? 'left' : 'right';\n }\n for (let i = 0; i < elements.length; i++) {\n elements[i].style.transformOrigin = `${xOrigin} ${yOrigin}`;\n }\n }\n /**\n * Gets the position and size of the overlay's sizing container.\n *\n * This method does no measuring and applies no styles so that we can cheaply compute the\n * bounds for all positions and choose the best fit based on these results.\n */\n _calculateBoundingBoxRect(origin, position) {\n const viewport = this._viewportRect;\n const isRtl = this._isRtl();\n let height, top, bottom;\n if (position.overlayY === 'top') {\n // Overlay is opening \"downward\" and thus is bound by the bottom viewport edge.\n top = origin.y;\n height = viewport.height - top + this._viewportMargin;\n } else if (position.overlayY === 'bottom') {\n // Overlay is opening \"upward\" and thus is bound by the top viewport edge. We need to add\n // the viewport margin back in, because the viewport rect is narrowed down to remove the\n // margin, whereas the `origin` position is calculated based on its `DOMRect`.\n bottom = viewport.height - origin.y + this._viewportMargin * 2;\n height = viewport.height - bottom + this._viewportMargin;\n } else {\n // If neither top nor bottom, it means that the overlay is vertically centered on the\n // origin point. Note that we want the position relative to the viewport, rather than\n // the page, which is why we don't use something like `viewport.bottom - origin.y` and\n // `origin.y - viewport.top`.\n const smallestDistanceToViewportEdge = Math.min(viewport.bottom - origin.y + viewport.top, origin.y);\n const previousHeight = this._lastBoundingBoxSize.height;\n height = smallestDistanceToViewportEdge * 2;\n top = origin.y - smallestDistanceToViewportEdge;\n if (height > previousHeight && !this._isInitialRender && !this._growAfterOpen) {\n top = origin.y - previousHeight / 2;\n }\n }\n // The overlay is opening 'right-ward' (the content flows to the right).\n const isBoundedByRightViewportEdge = position.overlayX === 'start' && !isRtl || position.overlayX === 'end' && isRtl;\n // The overlay is opening 'left-ward' (the content flows to the left).\n const isBoundedByLeftViewportEdge = position.overlayX === 'end' && !isRtl || position.overlayX === 'start' && isRtl;\n let width, left, right;\n if (isBoundedByLeftViewportEdge) {\n right = viewport.width - origin.x + this._viewportMargin * 2;\n width = origin.x - this._viewportMargin;\n } else if (isBoundedByRightViewportEdge) {\n left = origin.x;\n width = viewport.right - origin.x;\n } else {\n // If neither start nor end, it means that the overlay is horizontally centered on the\n // origin point. Note that we want the position relative to the viewport, rather than\n // the page, which is why we don't use something like `viewport.right - origin.x` and\n // `origin.x - viewport.left`.\n const smallestDistanceToViewportEdge = Math.min(viewport.right - origin.x + viewport.left, origin.x);\n const previousWidth = this._lastBoundingBoxSize.width;\n width = smallestDistanceToViewportEdge * 2;\n left = origin.x - smallestDistanceToViewportEdge;\n if (width > previousWidth && !this._isInitialRender && !this._growAfterOpen) {\n left = origin.x - previousWidth / 2;\n }\n }\n return {\n top: top,\n left: left,\n bottom: bottom,\n right: right,\n width,\n height\n };\n }\n /**\n * Sets the position and size of the overlay's sizing wrapper. The wrapper is positioned on the\n * origin's connection point and stretches to the bounds of the viewport.\n *\n * @param origin The point on the origin element where the overlay is connected.\n * @param position The position preference\n */\n _setBoundingBoxStyles(origin, position) {\n const boundingBoxRect = this._calculateBoundingBoxRect(origin, position);\n // It's weird if the overlay *grows* while scrolling, so we take the last size into account\n // when applying a new size.\n if (!this._isInitialRender && !this._growAfterOpen) {\n boundingBoxRect.height = Math.min(boundingBoxRect.height, this._lastBoundingBoxSize.height);\n boundingBoxRect.width = Math.min(boundingBoxRect.width, this._lastBoundingBoxSize.width);\n }\n const styles = {};\n if (this._hasExactPosition()) {\n styles.top = styles.left = '0';\n styles.bottom = styles.right = styles.maxHeight = styles.maxWidth = '';\n styles.width = styles.height = '100%';\n } else {\n const maxHeight = this._overlayRef.getConfig().maxHeight;\n const maxWidth = this._overlayRef.getConfig().maxWidth;\n styles.height = coerceCssPixelValue(boundingBoxRect.height);\n styles.top = coerceCssPixelValue(boundingBoxRect.top);\n styles.bottom = coerceCssPixelValue(boundingBoxRect.bottom);\n styles.width = coerceCssPixelValue(boundingBoxRect.width);\n styles.left = coerceCssPixelValue(boundingBoxRect.left);\n styles.right = coerceCssPixelValue(boundingBoxRect.right);\n // Push the pane content towards the proper direction.\n if (position.overlayX === 'center') {\n styles.alignItems = 'center';\n } else {\n styles.alignItems = position.overlayX === 'end' ? 'flex-end' : 'flex-start';\n }\n if (position.overlayY === 'center') {\n styles.justifyContent = 'center';\n } else {\n styles.justifyContent = position.overlayY === 'bottom' ? 'flex-end' : 'flex-start';\n }\n if (maxHeight) {\n styles.maxHeight = coerceCssPixelValue(maxHeight);\n }\n if (maxWidth) {\n styles.maxWidth = coerceCssPixelValue(maxWidth);\n }\n }\n this._lastBoundingBoxSize = boundingBoxRect;\n extendStyles(this._boundingBox.style, styles);\n }\n /** Resets the styles for the bounding box so that a new positioning can be computed. */\n _resetBoundingBoxStyles() {\n extendStyles(this._boundingBox.style, {\n top: '0',\n left: '0',\n right: '0',\n bottom: '0',\n height: '',\n width: '',\n alignItems: '',\n justifyContent: ''\n });\n }\n /** Resets the styles for the overlay pane so that a new positioning can be computed. */\n _resetOverlayElementStyles() {\n extendStyles(this._pane.style, {\n top: '',\n left: '',\n bottom: '',\n right: '',\n position: '',\n transform: ''\n });\n }\n /** Sets positioning styles to the overlay element. */\n _setOverlayElementStyles(originPoint, position) {\n const styles = {};\n const hasExactPosition = this._hasExactPosition();\n const hasFlexibleDimensions = this._hasFlexibleDimensions;\n const config = this._overlayRef.getConfig();\n if (hasExactPosition) {\n const scrollPosition = this._viewportRuler.getViewportScrollPosition();\n extendStyles(styles, this._getExactOverlayY(position, originPoint, scrollPosition));\n extendStyles(styles, this._getExactOverlayX(position, originPoint, scrollPosition));\n } else {\n styles.position = 'static';\n }\n // Use a transform to apply the offsets. We do this because the `center` positions rely on\n // being in the normal flex flow and setting a `top` / `left` at all will completely throw\n // off the position. We also can't use margins, because they won't have an effect in some\n // cases where the element doesn't have anything to \"push off of\". Finally, this works\n // better both with flexible and non-flexible positioning.\n let transformString = '';\n let offsetX = this._getOffset(position, 'x');\n let offsetY = this._getOffset(position, 'y');\n if (offsetX) {\n transformString += `translateX(${offsetX}px) `;\n }\n if (offsetY) {\n transformString += `translateY(${offsetY}px)`;\n }\n styles.transform = transformString.trim();\n // If a maxWidth or maxHeight is specified on the overlay, we remove them. We do this because\n // we need these values to both be set to \"100%\" for the automatic flexible sizing to work.\n // The maxHeight and maxWidth are set on the boundingBox in order to enforce the constraint.\n // Note that this doesn't apply when we have an exact position, in which case we do want to\n // apply them because they'll be cleared from the bounding box.\n if (config.maxHeight) {\n if (hasExactPosition) {\n styles.maxHeight = coerceCssPixelValue(config.maxHeight);\n } else if (hasFlexibleDimensions) {\n styles.maxHeight = '';\n }\n }\n if (config.maxWidth) {\n if (hasExactPosition) {\n styles.maxWidth = coerceCssPixelValue(config.maxWidth);\n } else if (hasFlexibleDimensions) {\n styles.maxWidth = '';\n }\n }\n extendStyles(this._pane.style, styles);\n }\n /** Gets the exact top/bottom for the overlay when not using flexible sizing or when pushing. */\n _getExactOverlayY(position, originPoint, scrollPosition) {\n // Reset any existing styles. This is necessary in case the\n // preferred position has changed since the last `apply`.\n let styles = {\n top: '',\n bottom: ''\n };\n let overlayPoint = this._getOverlayPoint(originPoint, this._overlayRect, position);\n if (this._isPushed) {\n overlayPoint = this._pushOverlayOnScreen(overlayPoint, this._overlayRect, scrollPosition);\n }\n // We want to set either `top` or `bottom` based on whether the overlay wants to appear\n // above or below the origin and the direction in which the element will expand.\n if (position.overlayY === 'bottom') {\n // When using `bottom`, we adjust the y position such that it is the distance\n // from the bottom of the viewport rather than the top.\n const documentHeight = this._document.documentElement.clientHeight;\n styles.bottom = `${documentHeight - (overlayPoint.y + this._overlayRect.height)}px`;\n } else {\n styles.top = coerceCssPixelValue(overlayPoint.y);\n }\n return styles;\n }\n /** Gets the exact left/right for the overlay when not using flexible sizing or when pushing. */\n _getExactOverlayX(position, originPoint, scrollPosition) {\n // Reset any existing styles. This is necessary in case the preferred position has\n // changed since the last `apply`.\n let styles = {\n left: '',\n right: ''\n };\n let overlayPoint = this._getOverlayPoint(originPoint, this._overlayRect, position);\n if (this._isPushed) {\n overlayPoint = this._pushOverlayOnScreen(overlayPoint, this._overlayRect, scrollPosition);\n }\n // We want to set either `left` or `right` based on whether the overlay wants to appear \"before\"\n // or \"after\" the origin, which determines the direction in which the element will expand.\n // For the horizontal axis, the meaning of \"before\" and \"after\" change based on whether the\n // page is in RTL or LTR.\n let horizontalStyleProperty;\n if (this._isRtl()) {\n horizontalStyleProperty = position.overlayX === 'end' ? 'left' : 'right';\n } else {\n horizontalStyleProperty = position.overlayX === 'end' ? 'right' : 'left';\n }\n // When we're setting `right`, we adjust the x position such that it is the distance\n // from the right edge of the viewport rather than the left edge.\n if (horizontalStyleProperty === 'right') {\n const documentWidth = this._document.documentElement.clientWidth;\n styles.right = `${documentWidth - (overlayPoint.x + this._overlayRect.width)}px`;\n } else {\n styles.left = coerceCssPixelValue(overlayPoint.x);\n }\n return styles;\n }\n /**\n * Gets the view properties of the trigger and overlay, including whether they are clipped\n * or completely outside the view of any of the strategy's scrollables.\n */\n _getScrollVisibility() {\n // Note: needs fresh rects since the position could've changed.\n const originBounds = this._getOriginRect();\n const overlayBounds = this._pane.getBoundingClientRect();\n // TODO(jelbourn): instead of needing all of the client rects for these scrolling containers\n // every time, we should be able to use the scrollTop of the containers if the size of those\n // containers hasn't changed.\n const scrollContainerBounds = this._scrollables.map(scrollable => {\n return scrollable.getElementRef().nativeElement.getBoundingClientRect();\n });\n return {\n isOriginClipped: isElementClippedByScrolling(originBounds, scrollContainerBounds),\n isOriginOutsideView: isElementScrolledOutsideView(originBounds, scrollContainerBounds),\n isOverlayClipped: isElementClippedByScrolling(overlayBounds, scrollContainerBounds),\n isOverlayOutsideView: isElementScrolledOutsideView(overlayBounds, scrollContainerBounds)\n };\n }\n /** Subtracts the amount that an element is overflowing on an axis from its length. */\n _subtractOverflows(length, ...overflows) {\n return overflows.reduce((currentValue, currentOverflow) => {\n return currentValue - Math.max(currentOverflow, 0);\n }, length);\n }\n /** Narrows the given viewport rect by the current _viewportMargin. */\n _getNarrowedViewportRect() {\n // We recalculate the viewport rect here ourselves, rather than using the ViewportRuler,\n // because we want to use the `clientWidth` and `clientHeight` as the base. The difference\n // being that the client properties don't include the scrollbar, as opposed to `innerWidth`\n // and `innerHeight` that do. This is necessary, because the overlay container uses\n // 100% `width` and `height` which don't include the scrollbar either.\n const width = this._document.documentElement.clientWidth;\n const height = this._document.documentElement.clientHeight;\n const scrollPosition = this._viewportRuler.getViewportScrollPosition();\n return {\n top: scrollPosition.top + this._viewportMargin,\n left: scrollPosition.left + this._viewportMargin,\n right: scrollPosition.left + width - this._viewportMargin,\n bottom: scrollPosition.top + height - this._viewportMargin,\n width: width - 2 * this._viewportMargin,\n height: height - 2 * this._viewportMargin\n };\n }\n /** Whether the we're dealing with an RTL context */\n _isRtl() {\n return this._overlayRef.getDirection() === 'rtl';\n }\n /** Determines whether the overlay uses exact or flexible positioning. */\n _hasExactPosition() {\n return !this._hasFlexibleDimensions || this._isPushed;\n }\n /** Retrieves the offset of a position along the x or y axis. */\n _getOffset(position, axis) {\n if (axis === 'x') {\n // We don't do something like `position['offset' + axis]` in\n // order to avoid breaking minifiers that rename properties.\n return position.offsetX == null ? this._offsetX : position.offsetX;\n }\n return position.offsetY == null ? this._offsetY : position.offsetY;\n }\n /** Validates that the current position match the expected values. */\n _validatePositions() {\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (!this._preferredPositions.length) {\n throw Error('FlexibleConnectedPositionStrategy: At least one position is required.');\n }\n // TODO(crisbeto): remove these once Angular's template type\n // checking is advanced enough to catch these cases.\n this._preferredPositions.forEach(pair => {\n validateHorizontalPosition('originX', pair.originX);\n validateVerticalPosition('originY', pair.originY);\n validateHorizontalPosition('overlayX', pair.overlayX);\n validateVerticalPosition('overlayY', pair.overlayY);\n });\n }\n }\n /** Adds a single CSS class or an array of classes on the overlay panel. */\n _addPanelClasses(cssClasses) {\n if (this._pane) {\n coerceArray(cssClasses).forEach(cssClass => {\n if (cssClass !== '' && this._appliedPanelClasses.indexOf(cssClass) === -1) {\n this._appliedPanelClasses.push(cssClass);\n this._pane.classList.add(cssClass);\n }\n });\n }\n }\n /** Clears the classes that the position strategy has applied from the overlay panel. */\n _clearPanelClasses() {\n if (this._pane) {\n this._appliedPanelClasses.forEach(cssClass => {\n this._pane.classList.remove(cssClass);\n });\n this._appliedPanelClasses = [];\n }\n }\n /** Returns the DOMRect of the current origin. */\n _getOriginRect() {\n const origin = this._origin;\n if (origin instanceof ElementRef) {\n return origin.nativeElement.getBoundingClientRect();\n }\n // Check for Element so SVG elements are also supported.\n if (origin instanceof Element) {\n return origin.getBoundingClientRect();\n }\n const width = origin.width || 0;\n const height = origin.height || 0;\n // If the origin is a point, return a client rect as if it was a 0x0 element at the point.\n return {\n top: origin.y,\n bottom: origin.y + height,\n left: origin.x,\n right: origin.x + width,\n height,\n width\n };\n }\n}\n/** Shallow-extends a stylesheet object with another stylesheet object. */\nfunction extendStyles(destination, source) {\n for (let key in source) {\n if (source.hasOwnProperty(key)) {\n destination[key] = source[key];\n }\n }\n return destination;\n}\n/**\n * Extracts the pixel value as a number from a value, if it's a number\n * or a CSS pixel string (e.g. `1337px`). Otherwise returns null.\n */\nfunction getPixelValue(input) {\n if (typeof input !== 'number' && input != null) {\n const [value, units] = input.split(cssUnitPattern);\n return !units || units === 'px' ? parseFloat(value) : null;\n }\n return input || null;\n}\n/**\n * Gets a version of an element's bounding `DOMRect` where all the values are rounded down to\n * the nearest pixel. This allows us to account for the cases where there may be sub-pixel\n * deviations in the `DOMRect` returned by the browser (e.g. when zoomed in with a percentage\n * size, see #21350).\n */\nfunction getRoundedBoundingClientRect(clientRect) {\n return {\n top: Math.floor(clientRect.top),\n right: Math.floor(clientRect.right),\n bottom: Math.floor(clientRect.bottom),\n left: Math.floor(clientRect.left),\n width: Math.floor(clientRect.width),\n height: Math.floor(clientRect.height)\n };\n}\n/** Returns whether two `ScrollingVisibility` objects are identical. */\nfunction compareScrollVisibility(a, b) {\n if (a === b) {\n return true;\n }\n return a.isOriginClipped === b.isOriginClipped && a.isOriginOutsideView === b.isOriginOutsideView && a.isOverlayClipped === b.isOverlayClipped && a.isOverlayOutsideView === b.isOverlayOutsideView;\n}\nconst STANDARD_DROPDOWN_BELOW_POSITIONS = [{\n originX: 'start',\n originY: 'bottom',\n overlayX: 'start',\n overlayY: 'top'\n}, {\n originX: 'start',\n originY: 'top',\n overlayX: 'start',\n overlayY: 'bottom'\n}, {\n originX: 'end',\n originY: 'bottom',\n overlayX: 'end',\n overlayY: 'top'\n}, {\n originX: 'end',\n originY: 'top',\n overlayX: 'end',\n overlayY: 'bottom'\n}];\nconst STANDARD_DROPDOWN_ADJACENT_POSITIONS = [{\n originX: 'end',\n originY: 'top',\n overlayX: 'start',\n overlayY: 'top'\n}, {\n originX: 'end',\n originY: 'bottom',\n overlayX: 'start',\n overlayY: 'bottom'\n}, {\n originX: 'start',\n originY: 'top',\n overlayX: 'end',\n overlayY: 'top'\n}, {\n originX: 'start',\n originY: 'bottom',\n overlayX: 'end',\n overlayY: 'bottom'\n}];\n\n/** Class to be added to the overlay pane wrapper. */\nconst wrapperClass = 'cdk-global-overlay-wrapper';\n/**\n * A strategy for positioning overlays. Using this strategy, an overlay is given an\n * explicit position relative to the browser's viewport. We use flexbox, instead of\n * transforms, in order to avoid issues with subpixel rendering which can cause the\n * element to become blurry.\n */\nclass GlobalPositionStrategy {\n /** The overlay to which this strategy is attached. */\n _overlayRef;\n _cssPosition = 'static';\n _topOffset = '';\n _bottomOffset = '';\n _alignItems = '';\n _xPosition = '';\n _xOffset = '';\n _width = '';\n _height = '';\n _isDisposed = false;\n attach(overlayRef) {\n const config = overlayRef.getConfig();\n this._overlayRef = overlayRef;\n if (this._width && !config.width) {\n overlayRef.updateSize({\n width: this._width\n });\n }\n if (this._height && !config.height) {\n overlayRef.updateSize({\n height: this._height\n });\n }\n overlayRef.hostElement.classList.add(wrapperClass);\n this._isDisposed = false;\n }\n /**\n * Sets the top position of the overlay. Clears any previously set vertical position.\n * @param value New top offset.\n */\n top(value = '') {\n this._bottomOffset = '';\n this._topOffset = value;\n this._alignItems = 'flex-start';\n return this;\n }\n /**\n * Sets the left position of the overlay. Clears any previously set horizontal position.\n * @param value New left offset.\n */\n left(value = '') {\n this._xOffset = value;\n this._xPosition = 'left';\n return this;\n }\n /**\n * Sets the bottom position of the overlay. Clears any previously set vertical position.\n * @param value New bottom offset.\n */\n bottom(value = '') {\n this._topOffset = '';\n this._bottomOffset = value;\n this._alignItems = 'flex-end';\n return this;\n }\n /**\n * Sets the right position of the overlay. Clears any previously set horizontal position.\n * @param value New right offset.\n */\n right(value = '') {\n this._xOffset = value;\n this._xPosition = 'right';\n return this;\n }\n /**\n * Sets the overlay to the start of the viewport, depending on the overlay direction.\n * This will be to the left in LTR layouts and to the right in RTL.\n * @param offset Offset from the edge of the screen.\n */\n start(value = '') {\n this._xOffset = value;\n this._xPosition = 'start';\n return this;\n }\n /**\n * Sets the overlay to the end of the viewport, depending on the overlay direction.\n * This will be to the right in LTR layouts and to the left in RTL.\n * @param offset Offset from the edge of the screen.\n */\n end(value = '') {\n this._xOffset = value;\n this._xPosition = 'end';\n return this;\n }\n /**\n * Sets the overlay width and clears any previously set width.\n * @param value New width for the overlay\n * @deprecated Pass the `width` through the `OverlayConfig`.\n * @breaking-change 8.0.0\n */\n width(value = '') {\n if (this._overlayRef) {\n this._overlayRef.updateSize({\n width: value\n });\n } else {\n this._width = value;\n }\n return this;\n }\n /**\n * Sets the overlay height and clears any previously set height.\n * @param value New height for the overlay\n * @deprecated Pass the `height` through the `OverlayConfig`.\n * @breaking-change 8.0.0\n */\n height(value = '') {\n if (this._overlayRef) {\n this._overlayRef.updateSize({\n height: value\n });\n } else {\n this._height = value;\n }\n return this;\n }\n /**\n * Centers the overlay horizontally with an optional offset.\n * Clears any previously set horizontal position.\n *\n * @param offset Overlay offset from the horizontal center.\n */\n centerHorizontally(offset = '') {\n this.left(offset);\n this._xPosition = 'center';\n return this;\n }\n /**\n * Centers the overlay vertically with an optional offset.\n * Clears any previously set vertical position.\n *\n * @param offset Overlay offset from the vertical center.\n */\n centerVertically(offset = '') {\n this.top(offset);\n this._alignItems = 'center';\n return this;\n }\n /**\n * Apply the position to the element.\n * @docs-private\n */\n apply() {\n // Since the overlay ref applies the strategy asynchronously, it could\n // have been disposed before it ends up being applied. If that is the\n // case, we shouldn't do anything.\n if (!this._overlayRef || !this._overlayRef.hasAttached()) {\n return;\n }\n const styles = this._overlayRef.overlayElement.style;\n const parentStyles = this._overlayRef.hostElement.style;\n const config = this._overlayRef.getConfig();\n const {\n width,\n height,\n maxWidth,\n maxHeight\n } = config;\n const shouldBeFlushHorizontally = (width === '100%' || width === '100vw') && (!maxWidth || maxWidth === '100%' || maxWidth === '100vw');\n const shouldBeFlushVertically = (height === '100%' || height === '100vh') && (!maxHeight || maxHeight === '100%' || maxHeight === '100vh');\n const xPosition = this._xPosition;\n const xOffset = this._xOffset;\n const isRtl = this._overlayRef.getConfig().direction === 'rtl';\n let marginLeft = '';\n let marginRight = '';\n let justifyContent = '';\n if (shouldBeFlushHorizontally) {\n justifyContent = 'flex-start';\n } else if (xPosition === 'center') {\n justifyContent = 'center';\n if (isRtl) {\n marginRight = xOffset;\n } else {\n marginLeft = xOffset;\n }\n } else if (isRtl) {\n if (xPosition === 'left' || xPosition === 'end') {\n justifyContent = 'flex-end';\n marginLeft = xOffset;\n } else if (xPosition === 'right' || xPosition === 'start') {\n justifyContent = 'flex-start';\n marginRight = xOffset;\n }\n } else if (xPosition === 'left' || xPosition === 'start') {\n justifyContent = 'flex-start';\n marginLeft = xOffset;\n } else if (xPosition === 'right' || xPosition === 'end') {\n justifyContent = 'flex-end';\n marginRight = xOffset;\n }\n styles.position = this._cssPosition;\n styles.marginLeft = shouldBeFlushHorizontally ? '0' : marginLeft;\n styles.marginTop = shouldBeFlushVertically ? '0' : this._topOffset;\n styles.marginBottom = this._bottomOffset;\n styles.marginRight = shouldBeFlushHorizontally ? '0' : marginRight;\n parentStyles.justifyContent = justifyContent;\n parentStyles.alignItems = shouldBeFlushVertically ? 'flex-start' : this._alignItems;\n }\n /**\n * Cleans up the DOM changes from the position strategy.\n * @docs-private\n */\n dispose() {\n if (this._isDisposed || !this._overlayRef) {\n return;\n }\n const styles = this._overlayRef.overlayElement.style;\n const parent = this._overlayRef.hostElement;\n const parentStyles = parent.style;\n parent.classList.remove(wrapperClass);\n parentStyles.justifyContent = parentStyles.alignItems = styles.marginTop = styles.marginBottom = styles.marginLeft = styles.marginRight = styles.position = '';\n this._overlayRef = null;\n this._isDisposed = true;\n }\n}\n\n/** Builder for overlay position strategy. */\nlet OverlayPositionBuilder = /*#__PURE__*/(() => {\n class OverlayPositionBuilder {\n _viewportRuler = inject(ViewportRuler);\n _document = inject(DOCUMENT);\n _platform = inject(Platform);\n _overlayContainer = inject(OverlayContainer);\n constructor() {}\n /**\n * Creates a global position strategy.\n */\n global() {\n return new GlobalPositionStrategy();\n }\n /**\n * Creates a flexible position strategy.\n * @param origin Origin relative to which to position the overlay.\n */\n flexibleConnectedTo(origin) {\n return new FlexibleConnectedPositionStrategy(origin, this._viewportRuler, this._document, this._platform, this._overlayContainer);\n }\n static ɵfac = function OverlayPositionBuilder_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || OverlayPositionBuilder)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: OverlayPositionBuilder,\n factory: OverlayPositionBuilder.ɵfac,\n providedIn: 'root'\n });\n }\n return OverlayPositionBuilder;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Service to create Overlays. Overlays are dynamically added pieces of floating UI, meant to be\n * used as a low-level building block for other components. Dialogs, tooltips, menus,\n * selects, etc. can all be built using overlays. The service should primarily be used by authors\n * of re-usable components rather than developers building end-user applications.\n *\n * An overlay *is* a PortalOutlet, so any kind of Portal can be loaded into one.\n */\nlet Overlay = /*#__PURE__*/(() => {\n class Overlay {\n scrollStrategies = inject(ScrollStrategyOptions);\n _overlayContainer = inject(OverlayContainer);\n _positionBuilder = inject(OverlayPositionBuilder);\n _keyboardDispatcher = inject(OverlayKeyboardDispatcher);\n _injector = inject(Injector);\n _ngZone = inject(NgZone);\n _document = inject(DOCUMENT);\n _directionality = inject(Directionality);\n _location = inject(Location);\n _outsideClickDispatcher = inject(OverlayOutsideClickDispatcher);\n _animationsModuleType = inject(ANIMATION_MODULE_TYPE, {\n optional: true\n });\n _idGenerator = inject(_IdGenerator);\n _renderer = inject(RendererFactory2).createRenderer(null, null);\n _appRef;\n _styleLoader = inject(_CdkPrivateStyleLoader);\n constructor() {}\n /**\n * Creates an overlay.\n * @param config Configuration applied to the overlay.\n * @returns Reference to the created overlay.\n */\n create(config) {\n // This is done in the overlay container as well, but we have it here\n // since it's common to mock out the overlay container in tests.\n this._styleLoader.load(_CdkOverlayStyleLoader);\n const host = this._createHostElement();\n const pane = this._createPaneElement(host);\n const portalOutlet = this._createPortalOutlet(pane);\n const overlayConfig = new OverlayConfig(config);\n overlayConfig.direction = overlayConfig.direction || this._directionality.value;\n return new OverlayRef(portalOutlet, host, pane, overlayConfig, this._ngZone, this._keyboardDispatcher, this._document, this._location, this._outsideClickDispatcher, this._animationsModuleType === 'NoopAnimations', this._injector.get(EnvironmentInjector), this._renderer);\n }\n /**\n * Gets a position builder that can be used, via fluent API,\n * to construct and configure a position strategy.\n * @returns An overlay position builder.\n */\n position() {\n return this._positionBuilder;\n }\n /**\n * Creates the DOM element for an overlay and appends it to the overlay container.\n * @returns Newly-created pane element\n */\n _createPaneElement(host) {\n const pane = this._document.createElement('div');\n pane.id = this._idGenerator.getId('cdk-overlay-');\n pane.classList.add('cdk-overlay-pane');\n host.appendChild(pane);\n return pane;\n }\n /**\n * Creates the host element that wraps around an overlay\n * and can be used for advanced positioning.\n * @returns Newly-create host element.\n */\n _createHostElement() {\n const host = this._document.createElement('div');\n this._overlayContainer.getContainerElement().appendChild(host);\n return host;\n }\n /**\n * Create a DomPortalOutlet into which the overlay content can be loaded.\n * @param pane The DOM element to turn into a portal outlet.\n * @returns A portal outlet for the given DOM element.\n */\n _createPortalOutlet(pane) {\n // We have to resolve the ApplicationRef later in order to allow people\n // to use overlay-based providers during app initialization.\n if (!this._appRef) {\n this._appRef = this._injector.get(ApplicationRef);\n }\n return new DomPortalOutlet(pane, null, this._appRef, this._injector, this._document);\n }\n static ɵfac = function Overlay_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || Overlay)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: Overlay,\n factory: Overlay.ɵfac,\n providedIn: 'root'\n });\n }\n return Overlay;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Default set of positions for the overlay. Follows the behavior of a dropdown. */\nconst defaultPositionList = [{\n originX: 'start',\n originY: 'bottom',\n overlayX: 'start',\n overlayY: 'top'\n}, {\n originX: 'start',\n originY: 'top',\n overlayX: 'start',\n overlayY: 'bottom'\n}, {\n originX: 'end',\n originY: 'top',\n overlayX: 'end',\n overlayY: 'bottom'\n}, {\n originX: 'end',\n originY: 'bottom',\n overlayX: 'end',\n overlayY: 'top'\n}];\n/** Injection token that determines the scroll handling while the connected overlay is open. */\nconst CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY = /*#__PURE__*/new InjectionToken('cdk-connected-overlay-scroll-strategy', {\n providedIn: 'root',\n factory: () => {\n const overlay = inject(Overlay);\n return () => overlay.scrollStrategies.reposition();\n }\n});\n/**\n * Directive applied to an element to make it usable as an origin for an Overlay using a\n * ConnectedPositionStrategy.\n */\nlet CdkOverlayOrigin = /*#__PURE__*/(() => {\n class CdkOverlayOrigin {\n elementRef = inject(ElementRef);\n constructor() {}\n static ɵfac = function CdkOverlayOrigin_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkOverlayOrigin)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkOverlayOrigin,\n selectors: [[\"\", \"cdk-overlay-origin\", \"\"], [\"\", \"overlay-origin\", \"\"], [\"\", \"cdkOverlayOrigin\", \"\"]],\n exportAs: [\"cdkOverlayOrigin\"]\n });\n }\n return CdkOverlayOrigin;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Directive to facilitate declarative creation of an\n * Overlay using a FlexibleConnectedPositionStrategy.\n */\nlet CdkConnectedOverlay = /*#__PURE__*/(() => {\n class CdkConnectedOverlay {\n _overlay = inject(Overlay);\n _dir = inject(Directionality, {\n optional: true\n });\n _overlayRef;\n _templatePortal;\n _backdropSubscription = Subscription.EMPTY;\n _attachSubscription = Subscription.EMPTY;\n _detachSubscription = Subscription.EMPTY;\n _positionSubscription = Subscription.EMPTY;\n _offsetX;\n _offsetY;\n _position;\n _scrollStrategyFactory = inject(CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY);\n _disposeOnNavigation = false;\n _ngZone = inject(NgZone);\n /** Origin for the connected overlay. */\n origin;\n /** Registered connected position pairs. */\n positions;\n /**\n * This input overrides the positions input if specified. It lets users pass\n * in arbitrary positioning strategies.\n */\n positionStrategy;\n /** The offset in pixels for the overlay connection point on the x-axis */\n get offsetX() {\n return this._offsetX;\n }\n set offsetX(offsetX) {\n this._offsetX = offsetX;\n if (this._position) {\n this._updatePositionStrategy(this._position);\n }\n }\n /** The offset in pixels for the overlay connection point on the y-axis */\n get offsetY() {\n return this._offsetY;\n }\n set offsetY(offsetY) {\n this._offsetY = offsetY;\n if (this._position) {\n this._updatePositionStrategy(this._position);\n }\n }\n /** The width of the overlay panel. */\n width;\n /** The height of the overlay panel. */\n height;\n /** The min width of the overlay panel. */\n minWidth;\n /** The min height of the overlay panel. */\n minHeight;\n /** The custom class to be set on the backdrop element. */\n backdropClass;\n /** The custom class to add to the overlay pane element. */\n panelClass;\n /** Margin between the overlay and the viewport edges. */\n viewportMargin = 0;\n /** Strategy to be used when handling scroll events while the overlay is open. */\n scrollStrategy;\n /** Whether the overlay is open. */\n open = false;\n /** Whether the overlay can be closed by user interaction. */\n disableClose = false;\n /** CSS selector which to set the transform origin. */\n transformOriginSelector;\n /** Whether or not the overlay should attach a backdrop. */\n hasBackdrop = false;\n /** Whether or not the overlay should be locked when scrolling. */\n lockPosition = false;\n /** Whether the overlay's width and height can be constrained to fit within the viewport. */\n flexibleDimensions = false;\n /** Whether the overlay can grow after the initial open when flexible positioning is turned on. */\n growAfterOpen = false;\n /** Whether the overlay can be pushed on-screen if none of the provided positions fit. */\n push = false;\n /** Whether the overlay should be disposed of when the user goes backwards/forwards in history. */\n get disposeOnNavigation() {\n return this._disposeOnNavigation;\n }\n set disposeOnNavigation(value) {\n this._disposeOnNavigation = value;\n }\n /** Event emitted when the backdrop is clicked. */\n backdropClick = new EventEmitter();\n /** Event emitted when the position has changed. */\n positionChange = new EventEmitter();\n /** Event emitted when the overlay has been attached. */\n attach = new EventEmitter();\n /** Event emitted when the overlay has been detached. */\n detach = new EventEmitter();\n /** Emits when there are keyboard events that are targeted at the overlay. */\n overlayKeydown = new EventEmitter();\n /** Emits when there are mouse outside click events that are targeted at the overlay. */\n overlayOutsideClick = new EventEmitter();\n // TODO(jelbourn): inputs for size, scroll behavior, animation, etc.\n constructor() {\n const templateRef = inject(TemplateRef);\n const viewContainerRef = inject(ViewContainerRef);\n this._templatePortal = new TemplatePortal(templateRef, viewContainerRef);\n this.scrollStrategy = this._scrollStrategyFactory();\n }\n /** The associated overlay reference. */\n get overlayRef() {\n return this._overlayRef;\n }\n /** The element's layout direction. */\n get dir() {\n return this._dir ? this._dir.value : 'ltr';\n }\n ngOnDestroy() {\n this._attachSubscription.unsubscribe();\n this._detachSubscription.unsubscribe();\n this._backdropSubscription.unsubscribe();\n this._positionSubscription.unsubscribe();\n this._overlayRef?.dispose();\n }\n ngOnChanges(changes) {\n if (this._position) {\n this._updatePositionStrategy(this._position);\n this._overlayRef?.updateSize({\n width: this.width,\n minWidth: this.minWidth,\n height: this.height,\n minHeight: this.minHeight\n });\n if (changes['origin'] && this.open) {\n this._position.apply();\n }\n }\n if (changes['open']) {\n this.open ? this.attachOverlay() : this.detachOverlay();\n }\n }\n /** Creates an overlay */\n _createOverlay() {\n if (!this.positions || !this.positions.length) {\n this.positions = defaultPositionList;\n }\n const overlayRef = this._overlayRef = this._overlay.create(this._buildConfig());\n this._attachSubscription = overlayRef.attachments().subscribe(() => this.attach.emit());\n this._detachSubscription = overlayRef.detachments().subscribe(() => this.detach.emit());\n overlayRef.keydownEvents().subscribe(event => {\n this.overlayKeydown.next(event);\n if (event.keyCode === ESCAPE && !this.disableClose && !hasModifierKey(event)) {\n event.preventDefault();\n this.detachOverlay();\n }\n });\n this._overlayRef.outsidePointerEvents().subscribe(event => {\n const origin = this._getOriginElement();\n const target = _getEventTarget(event);\n if (!origin || origin !== target && !origin.contains(target)) {\n this.overlayOutsideClick.next(event);\n }\n });\n }\n /** Builds the overlay config based on the directive's inputs */\n _buildConfig() {\n const positionStrategy = this._position = this.positionStrategy || this._createPositionStrategy();\n const overlayConfig = new OverlayConfig({\n direction: this._dir || 'ltr',\n positionStrategy,\n scrollStrategy: this.scrollStrategy,\n hasBackdrop: this.hasBackdrop,\n disposeOnNavigation: this.disposeOnNavigation\n });\n if (this.width || this.width === 0) {\n overlayConfig.width = this.width;\n }\n if (this.height || this.height === 0) {\n overlayConfig.height = this.height;\n }\n if (this.minWidth || this.minWidth === 0) {\n overlayConfig.minWidth = this.minWidth;\n }\n if (this.minHeight || this.minHeight === 0) {\n overlayConfig.minHeight = this.minHeight;\n }\n if (this.backdropClass) {\n overlayConfig.backdropClass = this.backdropClass;\n }\n if (this.panelClass) {\n overlayConfig.panelClass = this.panelClass;\n }\n return overlayConfig;\n }\n /** Updates the state of a position strategy, based on the values of the directive inputs. */\n _updatePositionStrategy(positionStrategy) {\n const positions = this.positions.map(currentPosition => ({\n originX: currentPosition.originX,\n originY: currentPosition.originY,\n overlayX: currentPosition.overlayX,\n overlayY: currentPosition.overlayY,\n offsetX: currentPosition.offsetX || this.offsetX,\n offsetY: currentPosition.offsetY || this.offsetY,\n panelClass: currentPosition.panelClass || undefined\n }));\n return positionStrategy.setOrigin(this._getOrigin()).withPositions(positions).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector);\n }\n /** Returns the position strategy of the overlay to be set on the overlay config */\n _createPositionStrategy() {\n const strategy = this._overlay.position().flexibleConnectedTo(this._getOrigin());\n this._updatePositionStrategy(strategy);\n return strategy;\n }\n _getOrigin() {\n if (this.origin instanceof CdkOverlayOrigin) {\n return this.origin.elementRef;\n } else {\n return this.origin;\n }\n }\n _getOriginElement() {\n if (this.origin instanceof CdkOverlayOrigin) {\n return this.origin.elementRef.nativeElement;\n }\n if (this.origin instanceof ElementRef) {\n return this.origin.nativeElement;\n }\n if (typeof Element !== 'undefined' && this.origin instanceof Element) {\n return this.origin;\n }\n return null;\n }\n /** Attaches the overlay. */\n attachOverlay() {\n if (!this._overlayRef) {\n this._createOverlay();\n } else {\n // Update the overlay size, in case the directive's inputs have changed\n this._overlayRef.getConfig().hasBackdrop = this.hasBackdrop;\n }\n if (!this._overlayRef.hasAttached()) {\n this._overlayRef.attach(this._templatePortal);\n }\n if (this.hasBackdrop) {\n this._backdropSubscription = this._overlayRef.backdropClick().subscribe(event => {\n this.backdropClick.emit(event);\n });\n } else {\n this._backdropSubscription.unsubscribe();\n }\n this._positionSubscription.unsubscribe();\n // Only subscribe to `positionChanges` if requested, because putting\n // together all the information for it can be expensive.\n if (this.positionChange.observers.length > 0) {\n this._positionSubscription = this._position.positionChanges.pipe(takeWhile(() => this.positionChange.observers.length > 0)).subscribe(position => {\n this._ngZone.run(() => this.positionChange.emit(position));\n if (this.positionChange.observers.length === 0) {\n this._positionSubscription.unsubscribe();\n }\n });\n }\n this.open = true;\n }\n /** Detaches the overlay. */\n detachOverlay() {\n this._overlayRef?.detach();\n this._backdropSubscription.unsubscribe();\n this._positionSubscription.unsubscribe();\n this.open = false;\n }\n static ɵfac = function CdkConnectedOverlay_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkConnectedOverlay)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: CdkConnectedOverlay,\n selectors: [[\"\", \"cdk-connected-overlay\", \"\"], [\"\", \"connected-overlay\", \"\"], [\"\", \"cdkConnectedOverlay\", \"\"]],\n inputs: {\n origin: [0, \"cdkConnectedOverlayOrigin\", \"origin\"],\n positions: [0, \"cdkConnectedOverlayPositions\", \"positions\"],\n positionStrategy: [0, \"cdkConnectedOverlayPositionStrategy\", \"positionStrategy\"],\n offsetX: [0, \"cdkConnectedOverlayOffsetX\", \"offsetX\"],\n offsetY: [0, \"cdkConnectedOverlayOffsetY\", \"offsetY\"],\n width: [0, \"cdkConnectedOverlayWidth\", \"width\"],\n height: [0, \"cdkConnectedOverlayHeight\", \"height\"],\n minWidth: [0, \"cdkConnectedOverlayMinWidth\", \"minWidth\"],\n minHeight: [0, \"cdkConnectedOverlayMinHeight\", \"minHeight\"],\n backdropClass: [0, \"cdkConnectedOverlayBackdropClass\", \"backdropClass\"],\n panelClass: [0, \"cdkConnectedOverlayPanelClass\", \"panelClass\"],\n viewportMargin: [0, \"cdkConnectedOverlayViewportMargin\", \"viewportMargin\"],\n scrollStrategy: [0, \"cdkConnectedOverlayScrollStrategy\", \"scrollStrategy\"],\n open: [0, \"cdkConnectedOverlayOpen\", \"open\"],\n disableClose: [0, \"cdkConnectedOverlayDisableClose\", \"disableClose\"],\n transformOriginSelector: [0, \"cdkConnectedOverlayTransformOriginOn\", \"transformOriginSelector\"],\n hasBackdrop: [2, \"cdkConnectedOverlayHasBackdrop\", \"hasBackdrop\", booleanAttribute],\n lockPosition: [2, \"cdkConnectedOverlayLockPosition\", \"lockPosition\", booleanAttribute],\n flexibleDimensions: [2, \"cdkConnectedOverlayFlexibleDimensions\", \"flexibleDimensions\", booleanAttribute],\n growAfterOpen: [2, \"cdkConnectedOverlayGrowAfterOpen\", \"growAfterOpen\", booleanAttribute],\n push: [2, \"cdkConnectedOverlayPush\", \"push\", booleanAttribute],\n disposeOnNavigation: [2, \"cdkConnectedOverlayDisposeOnNavigation\", \"disposeOnNavigation\", booleanAttribute]\n },\n outputs: {\n backdropClick: \"backdropClick\",\n positionChange: \"positionChange\",\n attach: \"attach\",\n detach: \"detach\",\n overlayKeydown: \"overlayKeydown\",\n overlayOutsideClick: \"overlayOutsideClick\"\n },\n exportAs: [\"cdkConnectedOverlay\"],\n features: [i0.ɵɵNgOnChangesFeature]\n });\n }\n return CdkConnectedOverlay;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * @docs-private\n * @deprecated No longer used, will be removed.\n * @breaking-change 21.0.0\n */\nfunction CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay) {\n return () => overlay.scrollStrategies.reposition();\n}\n/**\n * @docs-private\n * @deprecated No longer used, will be removed.\n * @breaking-change 21.0.0\n */\nconst CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER = {\n provide: CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY,\n deps: [Overlay],\n useFactory: CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER_FACTORY\n};\nlet OverlayModule = /*#__PURE__*/(() => {\n class OverlayModule {\n static ɵfac = function OverlayModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || OverlayModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: OverlayModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [Overlay, CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER],\n imports: [BidiModule, PortalModule, ScrollingModule, ScrollingModule]\n });\n }\n return OverlayModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { BlockScrollStrategy as B, CdkOverlayOrigin as C, FlexibleConnectedPositionStrategy as F, GlobalPositionStrategy as G, NoopScrollStrategy as N, OverlayRef as O, RepositionScrollStrategy as R, STANDARD_DROPDOWN_BELOW_POSITIONS as S, Overlay as a, OverlayContainer as b, OverlayConfig as c, OverlayModule as d, STANDARD_DROPDOWN_ADJACENT_POSITIONS as e, CdkConnectedOverlay as f, OverlayPositionBuilder as g, ConnectionPositionPair as h, ScrollingVisibility as i, ConnectedOverlayPositionChange as j, validateHorizontalPosition as k, ScrollStrategyOptions as l, CloseScrollStrategy as m, OverlayOutsideClickDispatcher as n, OverlayKeyboardDispatcher as o, validateVerticalPosition as v };\n","import { DOCUMENT } from '@angular/common';\nimport * as i0 from '@angular/core';\nimport { inject, ElementRef, NgZone, Renderer2, ChangeDetectorRef, Injector, afterNextRender, Component, ViewEncapsulation, ChangeDetectionStrategy, ViewChild, InjectionToken, TemplateRef, Injectable, NgModule } from '@angular/core';\nimport { B as BasePortalOutlet, C as CdkPortalOutlet, a as ComponentPortal, T as TemplatePortal, P as PortalModule } from './portal-directives-6dd242f4.mjs';\nfunction CdkDialogContainer_ng_template_0_Template(rf, ctx) {}\nexport { b as ɵɵCdkPortal, C as ɵɵCdkPortalOutlet, d as ɵɵPortalHostDirective, c as ɵɵTemplatePortalDirective } from './portal-directives-6dd242f4.mjs';\nimport { b as FocusTrapFactory, I as InteractivityChecker, A as A11yModule } from './a11y-module-1746e350.mjs';\nimport { O as OverlayRef, a as Overlay, b as OverlayContainer, c as OverlayConfig, d as OverlayModule } from './overlay-module-6629f4c6.mjs';\nimport { d as FocusMonitor } from './focus-monitor-fc0bdee7.mjs';\nimport { P as Platform } from './platform-610a08ae.mjs';\nimport { b as _getFocusedElementPierceShadowDom } from './shadow-dom-9f403d00.mjs';\nimport { Subject, defer, of } from 'rxjs';\nimport { e as ESCAPE } from './keycodes-107cd3e4.mjs';\nimport { h as hasModifierKey } from './modifiers-33a5859e.mjs';\nimport { startWith } from 'rxjs/operators';\nimport { _ as _IdGenerator } from './id-generator-1959b006.mjs';\nimport { D as Directionality } from './directionality-0a678adc.mjs';\nimport './style-loader-51b80670.mjs';\nimport './visually-hidden-7e8689f8.mjs';\nimport './breakpoints-observer-75147d6a.mjs';\nimport './array-88e1bec3.mjs';\nimport './observe-content-a5002af1.mjs';\nimport './element-08c51fcd.mjs';\nimport './backwards-compatibility-bcbe473e.mjs';\nimport './test-environment-34eef1ee.mjs';\nimport './css-pixel-value-447bbfe8.mjs';\nimport './scrolling-module-aa1faac1.mjs';\nimport './scrolling-61955dd1.mjs';\nimport './recycle-view-repeater-strategy-c1712813.mjs';\nimport './data-source-5320b6fd.mjs';\nimport './bidi-module-56dd006c.mjs';\nimport './fake-event-detection-7055b1bd.mjs';\nimport './passive-listeners-c0bdc49f.mjs';\n\n/** Configuration for opening a modal dialog. */\nclass DialogConfig {\n /**\n * Where the attached component should live in Angular's *logical* component tree.\n * This affects what is available for injection and the change detection order for the\n * component instantiated inside of the dialog. This does not affect where the dialog\n * content will be rendered.\n */\n viewContainerRef;\n /**\n * Injector used for the instantiation of the component to be attached. If provided,\n * takes precedence over the injector indirectly provided by `ViewContainerRef`.\n */\n injector;\n /** ID for the dialog. If omitted, a unique one will be generated. */\n id;\n /** The ARIA role of the dialog element. */\n role = 'dialog';\n /** Optional CSS class or classes applied to the overlay panel. */\n panelClass = '';\n /** Whether the dialog has a backdrop. */\n hasBackdrop = true;\n /** Optional CSS class or classes applied to the overlay backdrop. */\n backdropClass = '';\n /** Whether the dialog closes with the escape key or pointer events outside the panel element. */\n disableClose = false;\n /** Width of the dialog. */\n width = '';\n /** Height of the dialog. */\n height = '';\n /** Min-width of the dialog. If a number is provided, assumes pixel units. */\n minWidth;\n /** Min-height of the dialog. If a number is provided, assumes pixel units. */\n minHeight;\n /** Max-width of the dialog. If a number is provided, assumes pixel units. Defaults to 80vw. */\n maxWidth;\n /** Max-height of the dialog. If a number is provided, assumes pixel units. */\n maxHeight;\n /** Strategy to use when positioning the dialog. Defaults to centering it on the page. */\n positionStrategy;\n /** Data being injected into the child component. */\n data = null;\n /** Layout direction for the dialog's content. */\n direction;\n /** ID of the element that describes the dialog. */\n ariaDescribedBy = null;\n /** ID of the element that labels the dialog. */\n ariaLabelledBy = null;\n /** Dialog label applied via `aria-label` */\n ariaLabel = null;\n /**\n * Whether this is a modal dialog. Used to set the `aria-modal` attribute. Off by default,\n * because it can interfere with other overlay-based components (e.g. `mat-select`) and because\n * it is redundant since the dialog marks all outside content as `aria-hidden` anyway.\n */\n ariaModal = false;\n /**\n * Where the dialog should focus on open.\n * @breaking-change 14.0.0 Remove boolean option from autoFocus. Use string or\n * AutoFocusTarget instead.\n */\n autoFocus = 'first-tabbable';\n /**\n * Whether the dialog should restore focus to the previously-focused element upon closing.\n * Has the following behavior based on the type that is passed in:\n * - `boolean` - when true, will return focus to the element that was focused before the dialog\n * was opened, otherwise won't restore focus at all.\n * - `string` - focus will be restored to the first element that matches the CSS selector.\n * - `HTMLElement` - focus will be restored to the specific element.\n */\n restoreFocus = true;\n /**\n * Scroll strategy to be used for the dialog. This determines how\n * the dialog responds to scrolling underneath the panel element.\n */\n scrollStrategy;\n /**\n * Whether the dialog should close when the user navigates backwards or forwards through browser\n * history. This does not apply to navigation via anchor element unless using URL-hash based\n * routing (`HashLocationStrategy` in the Angular router).\n */\n closeOnNavigation = true;\n /**\n * Whether the dialog should close when the dialog service is destroyed. This is useful if\n * another service is wrapping the dialog and is managing the destruction instead.\n */\n closeOnDestroy = true;\n /**\n * Whether the dialog should close when the underlying overlay is detached. This is useful if\n * another service is wrapping the dialog and is managing the destruction instead. E.g. an\n * external detachment can happen as a result of a scroll strategy triggering it or when the\n * browser location changes.\n */\n closeOnOverlayDetachments = true;\n /**\n * Alternate `ComponentFactoryResolver` to use when resolving the associated component.\n * @deprecated No longer used. Will be removed.\n * @breaking-change 20.0.0\n */\n componentFactoryResolver;\n /**\n * Providers that will be exposed to the contents of the dialog. Can also\n * be provided as a function in order to generate the providers lazily.\n */\n providers;\n /**\n * Component into which the dialog content will be rendered. Defaults to `CdkDialogContainer`.\n * A configuration object can be passed in to customize the providers that will be exposed\n * to the dialog container.\n */\n container;\n /**\n * Context that will be passed to template-based dialogs.\n * A function can be passed in to resolve the context lazily.\n */\n templateContext;\n}\nfunction throwDialogContentAlreadyAttachedError() {\n throw Error('Attempting to attach dialog content after content is already attached');\n}\n/**\n * Internal component that wraps user-provided dialog content.\n * @docs-private\n */\nlet CdkDialogContainer = /*#__PURE__*/(() => {\n class CdkDialogContainer extends BasePortalOutlet {\n _elementRef = inject(ElementRef);\n _focusTrapFactory = inject(FocusTrapFactory);\n _config;\n _interactivityChecker = inject(InteractivityChecker);\n _ngZone = inject(NgZone);\n _overlayRef = inject(OverlayRef);\n _focusMonitor = inject(FocusMonitor);\n _renderer = inject(Renderer2);\n _platform = inject(Platform);\n _document = inject(DOCUMENT, {\n optional: true\n });\n /** The portal outlet inside of this container into which the dialog content will be loaded. */\n _portalOutlet;\n /** The class that traps and manages focus within the dialog. */\n _focusTrap = null;\n /** Element that was focused before the dialog was opened. Save this to restore upon close. */\n _elementFocusedBeforeDialogWasOpened = null;\n /**\n * Type of interaction that led to the dialog being closed. This is used to determine\n * whether the focus style will be applied when returning focus to its original location\n * after the dialog is closed.\n */\n _closeInteractionType = null;\n /**\n * Queue of the IDs of the dialog's label element, based on their definition order. The first\n * ID will be used as the `aria-labelledby` value. We use a queue here to handle the case\n * where there are two or more titles in the DOM at a time and the first one is destroyed while\n * the rest are present.\n */\n _ariaLabelledByQueue = [];\n _changeDetectorRef = inject(ChangeDetectorRef);\n _injector = inject(Injector);\n _isDestroyed = false;\n constructor() {\n super();\n // Callback is primarily for some internal tests\n // that were instantiating the dialog container manually.\n this._config = inject(DialogConfig, {\n optional: true\n }) || new DialogConfig();\n if (this._config.ariaLabelledBy) {\n this._ariaLabelledByQueue.push(this._config.ariaLabelledBy);\n }\n }\n _addAriaLabelledBy(id) {\n this._ariaLabelledByQueue.push(id);\n this._changeDetectorRef.markForCheck();\n }\n _removeAriaLabelledBy(id) {\n const index = this._ariaLabelledByQueue.indexOf(id);\n if (index > -1) {\n this._ariaLabelledByQueue.splice(index, 1);\n this._changeDetectorRef.markForCheck();\n }\n }\n _contentAttached() {\n this._initializeFocusTrap();\n this._handleBackdropClicks();\n this._captureInitialFocus();\n }\n /**\n * Can be used by child classes to customize the initial focus\n * capturing behavior (e.g. if it's tied to an animation).\n */\n _captureInitialFocus() {\n this._trapFocus();\n }\n ngOnDestroy() {\n this._isDestroyed = true;\n this._restoreFocus();\n }\n /**\n * Attach a ComponentPortal as content to this dialog container.\n * @param portal Portal to be attached as the dialog content.\n */\n attachComponentPortal(portal) {\n if (this._portalOutlet.hasAttached() && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throwDialogContentAlreadyAttachedError();\n }\n const result = this._portalOutlet.attachComponentPortal(portal);\n this._contentAttached();\n return result;\n }\n /**\n * Attach a TemplatePortal as content to this dialog container.\n * @param portal Portal to be attached as the dialog content.\n */\n attachTemplatePortal(portal) {\n if (this._portalOutlet.hasAttached() && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throwDialogContentAlreadyAttachedError();\n }\n const result = this._portalOutlet.attachTemplatePortal(portal);\n this._contentAttached();\n return result;\n }\n /**\n * Attaches a DOM portal to the dialog container.\n * @param portal Portal to be attached.\n * @deprecated To be turned into a method.\n * @breaking-change 10.0.0\n */\n attachDomPortal = portal => {\n if (this._portalOutlet.hasAttached() && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throwDialogContentAlreadyAttachedError();\n }\n const result = this._portalOutlet.attachDomPortal(portal);\n this._contentAttached();\n return result;\n };\n // TODO(crisbeto): this shouldn't be exposed, but there are internal references to it.\n /** Captures focus if it isn't already inside the dialog. */\n _recaptureFocus() {\n if (!this._containsFocus()) {\n this._trapFocus();\n }\n }\n /**\n * Focuses the provided element. If the element is not focusable, it will add a tabIndex\n * attribute to forcefully focus it. The attribute is removed after focus is moved.\n * @param element The element to focus.\n */\n _forceFocus(element, options) {\n if (!this._interactivityChecker.isFocusable(element)) {\n element.tabIndex = -1;\n // The tabindex attribute should be removed to avoid navigating to that element again\n this._ngZone.runOutsideAngular(() => {\n const callback = () => {\n deregisterBlur();\n deregisterMousedown();\n element.removeAttribute('tabindex');\n };\n const deregisterBlur = this._renderer.listen(element, 'blur', callback);\n const deregisterMousedown = this._renderer.listen(element, 'mousedown', callback);\n });\n }\n element.focus(options);\n }\n /**\n * Focuses the first element that matches the given selector within the focus trap.\n * @param selector The CSS selector for the element to set focus to.\n */\n _focusByCssSelector(selector, options) {\n let elementToFocus = this._elementRef.nativeElement.querySelector(selector);\n if (elementToFocus) {\n this._forceFocus(elementToFocus, options);\n }\n }\n /**\n * Moves the focus inside the focus trap. When autoFocus is not set to 'dialog', if focus\n * cannot be moved then focus will go to the dialog container.\n */\n _trapFocus() {\n if (this._isDestroyed) {\n return;\n }\n // If were to attempt to focus immediately, then the content of the dialog would not yet be\n // ready in instances where change detection has to run first. To deal with this, we simply\n // wait until after the next render.\n afterNextRender(() => {\n const element = this._elementRef.nativeElement;\n switch (this._config.autoFocus) {\n case false:\n case 'dialog':\n // Ensure that focus is on the dialog container. It's possible that a different\n // component tried to move focus while the open animation was running. See:\n // https://github.com/angular/components/issues/16215. Note that we only want to do this\n // if the focus isn't inside the dialog already, because it's possible that the consumer\n // turned off `autoFocus` in order to move focus themselves.\n if (!this._containsFocus()) {\n element.focus();\n }\n break;\n case true:\n case 'first-tabbable':\n const focusedSuccessfully = this._focusTrap?.focusInitialElement();\n // If we weren't able to find a focusable element in the dialog, then focus the dialog\n // container instead.\n if (!focusedSuccessfully) {\n this._focusDialogContainer();\n }\n break;\n case 'first-heading':\n this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role=\"heading\"]');\n break;\n default:\n this._focusByCssSelector(this._config.autoFocus);\n break;\n }\n }, {\n injector: this._injector\n });\n }\n /** Restores focus to the element that was focused before the dialog opened. */\n _restoreFocus() {\n const focusConfig = this._config.restoreFocus;\n let focusTargetElement = null;\n if (typeof focusConfig === 'string') {\n focusTargetElement = this._document.querySelector(focusConfig);\n } else if (typeof focusConfig === 'boolean') {\n focusTargetElement = focusConfig ? this._elementFocusedBeforeDialogWasOpened : null;\n } else if (focusConfig) {\n focusTargetElement = focusConfig;\n }\n // We need the extra check, because IE can set the `activeElement` to null in some cases.\n if (this._config.restoreFocus && focusTargetElement && typeof focusTargetElement.focus === 'function') {\n const activeElement = _getFocusedElementPierceShadowDom();\n const element = this._elementRef.nativeElement;\n // Make sure that focus is still inside the dialog or is on the body (usually because a\n // non-focusable element like the backdrop was clicked) before moving it. It's possible that\n // the consumer moved it themselves before the animation was done, in which case we shouldn't\n // do anything.\n if (!activeElement || activeElement === this._document.body || activeElement === element || element.contains(activeElement)) {\n if (this._focusMonitor) {\n this._focusMonitor.focusVia(focusTargetElement, this._closeInteractionType);\n this._closeInteractionType = null;\n } else {\n focusTargetElement.focus();\n }\n }\n }\n if (this._focusTrap) {\n this._focusTrap.destroy();\n }\n }\n /** Focuses the dialog container. */\n _focusDialogContainer() {\n // Note that there is no focus method when rendering on the server.\n if (this._elementRef.nativeElement.focus) {\n this._elementRef.nativeElement.focus();\n }\n }\n /** Returns whether focus is inside the dialog. */\n _containsFocus() {\n const element = this._elementRef.nativeElement;\n const activeElement = _getFocusedElementPierceShadowDom();\n return element === activeElement || element.contains(activeElement);\n }\n /** Sets up the focus trap. */\n _initializeFocusTrap() {\n if (this._platform.isBrowser) {\n this._focusTrap = this._focusTrapFactory.create(this._elementRef.nativeElement);\n // Save the previously focused element. This element will be re-focused\n // when the dialog closes.\n if (this._document) {\n this._elementFocusedBeforeDialogWasOpened = _getFocusedElementPierceShadowDom();\n }\n }\n }\n /** Sets up the listener that handles clicks on the dialog backdrop. */\n _handleBackdropClicks() {\n // Clicking on the backdrop will move focus out of dialog.\n // Recapture it if closing via the backdrop is disabled.\n this._overlayRef.backdropClick().subscribe(() => {\n if (this._config.disableClose) {\n this._recaptureFocus();\n }\n });\n }\n static ɵfac = function CdkDialogContainer_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CdkDialogContainer)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: CdkDialogContainer,\n selectors: [[\"cdk-dialog-container\"]],\n viewQuery: function CdkDialogContainer_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(CdkPortalOutlet, 7);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._portalOutlet = _t.first);\n }\n },\n hostAttrs: [\"tabindex\", \"-1\", 1, \"cdk-dialog-container\"],\n hostVars: 6,\n hostBindings: function CdkDialogContainer_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵattribute(\"id\", ctx._config.id || null)(\"role\", ctx._config.role)(\"aria-modal\", ctx._config.ariaModal)(\"aria-labelledby\", ctx._config.ariaLabel ? null : ctx._ariaLabelledByQueue[0])(\"aria-label\", ctx._config.ariaLabel)(\"aria-describedby\", ctx._config.ariaDescribedBy || null);\n }\n },\n features: [i0.ɵɵInheritDefinitionFeature],\n decls: 1,\n vars: 0,\n consts: [[\"cdkPortalOutlet\", \"\"]],\n template: function CdkDialogContainer_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, CdkDialogContainer_ng_template_0_Template, 0, 0, \"ng-template\", 0);\n }\n },\n dependencies: [CdkPortalOutlet],\n styles: [\".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}\"],\n encapsulation: 2\n });\n }\n return CdkDialogContainer;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Reference to a dialog opened via the Dialog service.\n */\nclass DialogRef {\n overlayRef;\n config;\n /**\n * Instance of component opened into the dialog. Will be\n * null when the dialog is opened using a `TemplateRef`.\n */\n componentInstance;\n /**\n * `ComponentRef` of the component opened into the dialog. Will be\n * null when the dialog is opened using a `TemplateRef`.\n */\n componentRef;\n /** Instance of the container that is rendering out the dialog content. */\n containerInstance;\n /** Whether the user is allowed to close the dialog. */\n disableClose;\n /** Emits when the dialog has been closed. */\n closed = /*#__PURE__*/new Subject();\n /** Emits when the backdrop of the dialog is clicked. */\n backdropClick;\n /** Emits when on keyboard events within the dialog. */\n keydownEvents;\n /** Emits on pointer events that happen outside of the dialog. */\n outsidePointerEvents;\n /** Unique ID for the dialog. */\n id;\n /** Subscription to external detachments of the dialog. */\n _detachSubscription;\n constructor(overlayRef, config) {\n this.overlayRef = overlayRef;\n this.config = config;\n this.disableClose = config.disableClose;\n this.backdropClick = overlayRef.backdropClick();\n this.keydownEvents = overlayRef.keydownEvents();\n this.outsidePointerEvents = overlayRef.outsidePointerEvents();\n this.id = config.id; // By the time the dialog is created we are guaranteed to have an ID.\n this.keydownEvents.subscribe(event => {\n if (event.keyCode === ESCAPE && !this.disableClose && !hasModifierKey(event)) {\n event.preventDefault();\n this.close(undefined, {\n focusOrigin: 'keyboard'\n });\n }\n });\n this.backdropClick.subscribe(() => {\n if (!this.disableClose) {\n this.close(undefined, {\n focusOrigin: 'mouse'\n });\n }\n });\n this._detachSubscription = overlayRef.detachments().subscribe(() => {\n // Check specifically for `false`, because we want `undefined` to be treated like `true`.\n if (config.closeOnOverlayDetachments !== false) {\n this.close();\n }\n });\n }\n /**\n * Close the dialog.\n * @param result Optional result to return to the dialog opener.\n * @param options Additional options to customize the closing behavior.\n */\n close(result, options) {\n if (this.containerInstance) {\n const closedSubject = this.closed;\n this.containerInstance._closeInteractionType = options?.focusOrigin || 'program';\n // Drop the detach subscription first since it can be triggered by the\n // `dispose` call and override the result of this closing sequence.\n this._detachSubscription.unsubscribe();\n this.overlayRef.dispose();\n closedSubject.next(result);\n closedSubject.complete();\n this.componentInstance = this.containerInstance = null;\n }\n }\n /** Updates the position of the dialog based on the current position strategy. */\n updatePosition() {\n this.overlayRef.updatePosition();\n return this;\n }\n /**\n * Updates the dialog's width and height.\n * @param width New width of the dialog.\n * @param height New height of the dialog.\n */\n updateSize(width = '', height = '') {\n this.overlayRef.updateSize({\n width,\n height\n });\n return this;\n }\n /** Add a CSS class or an array of classes to the overlay pane. */\n addPanelClass(classes) {\n this.overlayRef.addPanelClass(classes);\n return this;\n }\n /** Remove a CSS class or an array of classes from the overlay pane. */\n removePanelClass(classes) {\n this.overlayRef.removePanelClass(classes);\n return this;\n }\n}\n\n/** Injection token for the Dialog's ScrollStrategy. */\nconst DIALOG_SCROLL_STRATEGY = /*#__PURE__*/new InjectionToken('DialogScrollStrategy', {\n providedIn: 'root',\n factory: () => {\n const overlay = inject(Overlay);\n return () => overlay.scrollStrategies.block();\n }\n});\n/** Injection token for the Dialog's Data. */\nconst DIALOG_DATA = /*#__PURE__*/new InjectionToken('DialogData');\n/** Injection token that can be used to provide default options for the dialog module. */\nconst DEFAULT_DIALOG_CONFIG = /*#__PURE__*/new InjectionToken('DefaultDialogConfig');\n/**\n * @docs-private\n * @deprecated No longer used. To be removed.\n * @breaking-change 19.0.0\n */\nfunction DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay) {\n return () => overlay.scrollStrategies.block();\n}\n/**\n * @docs-private\n * @deprecated No longer used. To be removed.\n * @breaking-change 19.0.0\n */\nconst DIALOG_SCROLL_STRATEGY_PROVIDER = {\n provide: DIALOG_SCROLL_STRATEGY,\n deps: [Overlay],\n useFactory: DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY\n};\nlet Dialog = /*#__PURE__*/(() => {\n class Dialog {\n _overlay = inject(Overlay);\n _injector = inject(Injector);\n _defaultOptions = inject(DEFAULT_DIALOG_CONFIG, {\n optional: true\n });\n _parentDialog = inject(Dialog, {\n optional: true,\n skipSelf: true\n });\n _overlayContainer = inject(OverlayContainer);\n _idGenerator = inject(_IdGenerator);\n _openDialogsAtThisLevel = [];\n _afterAllClosedAtThisLevel = new Subject();\n _afterOpenedAtThisLevel = new Subject();\n _ariaHiddenElements = new Map();\n _scrollStrategy = inject(DIALOG_SCROLL_STRATEGY);\n /** Keeps track of the currently-open dialogs. */\n get openDialogs() {\n return this._parentDialog ? this._parentDialog.openDialogs : this._openDialogsAtThisLevel;\n }\n /** Stream that emits when a dialog has been opened. */\n get afterOpened() {\n return this._parentDialog ? this._parentDialog.afterOpened : this._afterOpenedAtThisLevel;\n }\n /**\n * Stream that emits when all open dialog have finished closing.\n * Will emit on subscribe if there are no open dialogs to begin with.\n */\n afterAllClosed = defer(() => this.openDialogs.length ? this._getAfterAllClosed() : this._getAfterAllClosed().pipe(startWith(undefined)));\n constructor() {}\n open(componentOrTemplateRef, config) {\n const defaults = this._defaultOptions || new DialogConfig();\n config = {\n ...defaults,\n ...config\n };\n config.id = config.id || this._idGenerator.getId('cdk-dialog-');\n if (config.id && this.getDialogById(config.id) && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error(`Dialog with id \"${config.id}\" exists already. The dialog id must be unique.`);\n }\n const overlayConfig = this._getOverlayConfig(config);\n const overlayRef = this._overlay.create(overlayConfig);\n const dialogRef = new DialogRef(overlayRef, config);\n const dialogContainer = this._attachContainer(overlayRef, dialogRef, config);\n dialogRef.containerInstance = dialogContainer;\n this._attachDialogContent(componentOrTemplateRef, dialogRef, dialogContainer, config);\n // If this is the first dialog that we're opening, hide all the non-overlay content.\n if (!this.openDialogs.length) {\n this._hideNonDialogContentFromAssistiveTechnology();\n }\n this.openDialogs.push(dialogRef);\n dialogRef.closed.subscribe(() => this._removeOpenDialog(dialogRef, true));\n this.afterOpened.next(dialogRef);\n return dialogRef;\n }\n /**\n * Closes all of the currently-open dialogs.\n */\n closeAll() {\n reverseForEach(this.openDialogs, dialog => dialog.close());\n }\n /**\n * Finds an open dialog by its id.\n * @param id ID to use when looking up the dialog.\n */\n getDialogById(id) {\n return this.openDialogs.find(dialog => dialog.id === id);\n }\n ngOnDestroy() {\n // Make one pass over all the dialogs that need to be untracked, but should not be closed. We\n // want to stop tracking the open dialog even if it hasn't been closed, because the tracking\n // determines when `aria-hidden` is removed from elements outside the dialog.\n reverseForEach(this._openDialogsAtThisLevel, dialog => {\n // Check for `false` specifically since we want `undefined` to be interpreted as `true`.\n if (dialog.config.closeOnDestroy === false) {\n this._removeOpenDialog(dialog, false);\n }\n });\n // Make a second pass and close the remaining dialogs. We do this second pass in order to\n // correctly dispatch the `afterAllClosed` event in case we have a mixed array of dialogs\n // that should be closed and dialogs that should not.\n reverseForEach(this._openDialogsAtThisLevel, dialog => dialog.close());\n this._afterAllClosedAtThisLevel.complete();\n this._afterOpenedAtThisLevel.complete();\n this._openDialogsAtThisLevel = [];\n }\n /**\n * Creates an overlay config from a dialog config.\n * @param config The dialog configuration.\n * @returns The overlay configuration.\n */\n _getOverlayConfig(config) {\n const state = new OverlayConfig({\n positionStrategy: config.positionStrategy || this._overlay.position().global().centerHorizontally().centerVertically(),\n scrollStrategy: config.scrollStrategy || this._scrollStrategy(),\n panelClass: config.panelClass,\n hasBackdrop: config.hasBackdrop,\n direction: config.direction,\n minWidth: config.minWidth,\n minHeight: config.minHeight,\n maxWidth: config.maxWidth,\n maxHeight: config.maxHeight,\n width: config.width,\n height: config.height,\n disposeOnNavigation: config.closeOnNavigation\n });\n if (config.backdropClass) {\n state.backdropClass = config.backdropClass;\n }\n return state;\n }\n /**\n * Attaches a dialog container to a dialog's already-created overlay.\n * @param overlay Reference to the dialog's underlying overlay.\n * @param config The dialog configuration.\n * @returns A promise resolving to a ComponentRef for the attached container.\n */\n _attachContainer(overlay, dialogRef, config) {\n const userInjector = config.injector || config.viewContainerRef?.injector;\n const providers = [{\n provide: DialogConfig,\n useValue: config\n }, {\n provide: DialogRef,\n useValue: dialogRef\n }, {\n provide: OverlayRef,\n useValue: overlay\n }];\n let containerType;\n if (config.container) {\n if (typeof config.container === 'function') {\n containerType = config.container;\n } else {\n containerType = config.container.type;\n providers.push(...config.container.providers(config));\n }\n } else {\n containerType = CdkDialogContainer;\n }\n const containerPortal = new ComponentPortal(containerType, config.viewContainerRef, Injector.create({\n parent: userInjector || this._injector,\n providers\n }));\n const containerRef = overlay.attach(containerPortal);\n return containerRef.instance;\n }\n /**\n * Attaches the user-provided component to the already-created dialog container.\n * @param componentOrTemplateRef The type of component being loaded into the dialog,\n * or a TemplateRef to instantiate as the content.\n * @param dialogRef Reference to the dialog being opened.\n * @param dialogContainer Component that is going to wrap the dialog content.\n * @param config Configuration used to open the dialog.\n */\n _attachDialogContent(componentOrTemplateRef, dialogRef, dialogContainer, config) {\n if (componentOrTemplateRef instanceof TemplateRef) {\n const injector = this._createInjector(config, dialogRef, dialogContainer, undefined);\n let context = {\n $implicit: config.data,\n dialogRef\n };\n if (config.templateContext) {\n context = {\n ...context,\n ...(typeof config.templateContext === 'function' ? config.templateContext() : config.templateContext)\n };\n }\n dialogContainer.attachTemplatePortal(new TemplatePortal(componentOrTemplateRef, null, context, injector));\n } else {\n const injector = this._createInjector(config, dialogRef, dialogContainer, this._injector);\n const contentRef = dialogContainer.attachComponentPortal(new ComponentPortal(componentOrTemplateRef, config.viewContainerRef, injector));\n dialogRef.componentRef = contentRef;\n dialogRef.componentInstance = contentRef.instance;\n }\n }\n /**\n * Creates a custom injector to be used inside the dialog. This allows a component loaded inside\n * of a dialog to close itself and, optionally, to return a value.\n * @param config Config object that is used to construct the dialog.\n * @param dialogRef Reference to the dialog being opened.\n * @param dialogContainer Component that is going to wrap the dialog content.\n * @param fallbackInjector Injector to use as a fallback when a lookup fails in the custom\n * dialog injector, if the user didn't provide a custom one.\n * @returns The custom injector that can be used inside the dialog.\n */\n _createInjector(config, dialogRef, dialogContainer, fallbackInjector) {\n const userInjector = config.injector || config.viewContainerRef?.injector;\n const providers = [{\n provide: DIALOG_DATA,\n useValue: config.data\n }, {\n provide: DialogRef,\n useValue: dialogRef\n }];\n if (config.providers) {\n if (typeof config.providers === 'function') {\n providers.push(...config.providers(dialogRef, config, dialogContainer));\n } else {\n providers.push(...config.providers);\n }\n }\n if (config.direction && (!userInjector || !userInjector.get(Directionality, null, {\n optional: true\n }))) {\n providers.push({\n provide: Directionality,\n useValue: {\n value: config.direction,\n change: of()\n }\n });\n }\n return Injector.create({\n parent: userInjector || fallbackInjector,\n providers\n });\n }\n /**\n * Removes a dialog from the array of open dialogs.\n * @param dialogRef Dialog to be removed.\n * @param emitEvent Whether to emit an event if this is the last dialog.\n */\n _removeOpenDialog(dialogRef, emitEvent) {\n const index = this.openDialogs.indexOf(dialogRef);\n if (index > -1) {\n this.openDialogs.splice(index, 1);\n // If all the dialogs were closed, remove/restore the `aria-hidden`\n // to a the siblings and emit to the `afterAllClosed` stream.\n if (!this.openDialogs.length) {\n this._ariaHiddenElements.forEach((previousValue, element) => {\n if (previousValue) {\n element.setAttribute('aria-hidden', previousValue);\n } else {\n element.removeAttribute('aria-hidden');\n }\n });\n this._ariaHiddenElements.clear();\n if (emitEvent) {\n this._getAfterAllClosed().next();\n }\n }\n }\n }\n /** Hides all of the content that isn't an overlay from assistive technology. */\n _hideNonDialogContentFromAssistiveTechnology() {\n const overlayContainer = this._overlayContainer.getContainerElement();\n // Ensure that the overlay container is attached to the DOM.\n if (overlayContainer.parentElement) {\n const siblings = overlayContainer.parentElement.children;\n for (let i = siblings.length - 1; i > -1; i--) {\n const sibling = siblings[i];\n if (sibling !== overlayContainer && sibling.nodeName !== 'SCRIPT' && sibling.nodeName !== 'STYLE' && !sibling.hasAttribute('aria-live')) {\n this._ariaHiddenElements.set(sibling, sibling.getAttribute('aria-hidden'));\n sibling.setAttribute('aria-hidden', 'true');\n }\n }\n }\n }\n _getAfterAllClosed() {\n const parent = this._parentDialog;\n return parent ? parent._getAfterAllClosed() : this._afterAllClosedAtThisLevel;\n }\n static ɵfac = function Dialog_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || Dialog)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: Dialog,\n factory: Dialog.ɵfac,\n providedIn: 'root'\n });\n }\n return Dialog;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Executes a callback against all elements in an array while iterating in reverse.\n * Useful if the array is being modified as it is being iterated.\n */\nfunction reverseForEach(items, callback) {\n let i = items.length;\n while (i--) {\n callback(items[i]);\n }\n}\nlet DialogModule = /*#__PURE__*/(() => {\n class DialogModule {\n static ɵfac = function DialogModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DialogModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: DialogModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [Dialog],\n imports: [OverlayModule, PortalModule, A11yModule,\n // Re-export the PortalModule so that people extending the `CdkDialogContainer`\n // don't have to remember to import it or be faced with an unhelpful error.\n PortalModule]\n });\n }\n return DialogModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { CdkDialogContainer, DEFAULT_DIALOG_CONFIG, DIALOG_DATA, DIALOG_SCROLL_STRATEGY, DIALOG_SCROLL_STRATEGY_PROVIDER, DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, Dialog, DialogConfig, DialogModule, DialogRef, throwDialogContentAlreadyAttachedError };\n","export { _ as _isNumberValue, c as coerceElement, a as coerceNumberProperty } from './element-08c51fcd.mjs';\nexport { c as coerceArray } from './array-88e1bec3.mjs';\nexport { c as coerceCssPixelValue } from './css-pixel-value-447bbfe8.mjs';\nimport '@angular/core';\n\n/** Coerces a data-bound value (typically a string) to a boolean. */\nfunction coerceBooleanProperty(value) {\n return value != null && `${value}` !== 'false';\n}\n\n/**\n * Coerces a value to an array of trimmed non-empty strings.\n * Any input that is not an array, `null` or `undefined` will be turned into a string\n * via `toString()` and subsequently split with the given separator.\n * `null` and `undefined` will result in an empty array.\n * This results in the following outcomes:\n * - `null` -> `[]`\n * - `[null]` -> `[\"null\"]`\n * - `[\"a\", \"b \", \" \"]` -> `[\"a\", \"b\"]`\n * - `[1, [2, 3]]` -> `[\"1\", \"2,3\"]`\n * - `[{ a: 0 }]` -> `[\"[object Object]\"]`\n * - `{ a: 0 }` -> `[\"[object\", \"Object]\"]`\n *\n * Useful for defining CSS classes or table columns.\n * @param value the value to coerce into an array of strings\n * @param separator split-separator if value isn't an array\n */\nfunction coerceStringArray(value, separator = /\\s+/) {\n const result = [];\n if (value != null) {\n const sourceValues = Array.isArray(value) ? value : `${value}`.split(separator);\n for (const sourceValue of sourceValues) {\n const trimmedString = `${sourceValue}`.trim();\n if (trimmedString) {\n result.push(trimmedString);\n }\n }\n }\n return result;\n}\nexport { coerceBooleanProperty, coerceStringArray };\n","import { Subject } from 'rxjs';\nimport { tap, debounceTime, filter, map } from 'rxjs/operators';\nimport { c as A, Z, d as ZERO, N as NINE } from './keycodes-107cd3e4.mjs';\nconst DEFAULT_TYPEAHEAD_DEBOUNCE_INTERVAL_MS = 200;\n/**\n * Selects items based on keyboard inputs. Implements the typeahead functionality of\n * `role=\"listbox\"` or `role=\"tree\"` and other related roles.\n */\nclass Typeahead {\n _letterKeyStream = /*#__PURE__*/new Subject();\n _items = [];\n _selectedItemIndex = -1;\n /** Buffer for the letters that the user has pressed */\n _pressedLetters = [];\n _skipPredicateFn;\n _selectedItem = /*#__PURE__*/new Subject();\n selectedItem = this._selectedItem;\n constructor(initialItems, config) {\n const typeAheadInterval = typeof config?.debounceInterval === 'number' ? config.debounceInterval : DEFAULT_TYPEAHEAD_DEBOUNCE_INTERVAL_MS;\n if (config?.skipPredicate) {\n this._skipPredicateFn = config.skipPredicate;\n }\n if ((typeof ngDevMode === 'undefined' || ngDevMode) && initialItems.length && initialItems.some(item => typeof item.getLabel !== 'function')) {\n throw new Error('KeyManager items in typeahead mode must implement the `getLabel` method.');\n }\n this.setItems(initialItems);\n this._setupKeyHandler(typeAheadInterval);\n }\n destroy() {\n this._pressedLetters = [];\n this._letterKeyStream.complete();\n this._selectedItem.complete();\n }\n setCurrentSelectedItemIndex(index) {\n this._selectedItemIndex = index;\n }\n setItems(items) {\n this._items = items;\n }\n handleKey(event) {\n const keyCode = event.keyCode;\n // Attempt to use the `event.key` which also maps it to the user's keyboard language,\n // otherwise fall back to resolving alphanumeric characters via the keyCode.\n if (event.key && event.key.length === 1) {\n this._letterKeyStream.next(event.key.toLocaleUpperCase());\n } else if (keyCode >= A && keyCode <= Z || keyCode >= ZERO && keyCode <= NINE) {\n this._letterKeyStream.next(String.fromCharCode(keyCode));\n }\n }\n /** Gets whether the user is currently typing into the manager using the typeahead feature. */\n isTyping() {\n return this._pressedLetters.length > 0;\n }\n /** Resets the currently stored sequence of typed letters. */\n reset() {\n this._pressedLetters = [];\n }\n _setupKeyHandler(typeAheadInterval) {\n // Debounce the presses of non-navigational keys, collect the ones that correspond to letters\n // and convert those letters back into a string. Afterwards find the first item that starts\n // with that string and select it.\n this._letterKeyStream.pipe(tap(letter => this._pressedLetters.push(letter)), debounceTime(typeAheadInterval), filter(() => this._pressedLetters.length > 0), map(() => this._pressedLetters.join('').toLocaleUpperCase())).subscribe(inputString => {\n // Start at 1 because we want to start searching at the item immediately\n // following the current active item.\n for (let i = 1; i < this._items.length + 1; i++) {\n const index = (this._selectedItemIndex + i) % this._items.length;\n const item = this._items[index];\n if (!this._skipPredicateFn?.(item) && item.getLabel?.().toLocaleUpperCase().trim().indexOf(inputString) === 0) {\n this._selectedItem.next(item);\n break;\n }\n }\n this._pressedLetters = [];\n });\n }\n}\nexport { Typeahead as T };\n","import { signal, QueryList, isSignal, effect } from '@angular/core';\nimport { Subscription, Subject } from 'rxjs';\nimport { T as Typeahead } from './typeahead-11ae39bd.mjs';\nimport { h as hasModifierKey } from './modifiers-33a5859e.mjs';\nimport { P as PAGE_DOWN, b as PAGE_UP, E as END, H as HOME, L as LEFT_ARROW, R as RIGHT_ARROW, U as UP_ARROW, D as DOWN_ARROW, T as TAB } from './keycodes-107cd3e4.mjs';\n\n/**\n * This class manages keyboard events for selectable lists. If you pass it a query list\n * of items, it will set the active item correctly when arrow events occur.\n */\nclass ListKeyManager {\n _items;\n _activeItemIndex = -1;\n _activeItem = /*#__PURE__*/signal(null);\n _wrap = false;\n _typeaheadSubscription = Subscription.EMPTY;\n _itemChangesSubscription;\n _vertical = true;\n _horizontal;\n _allowedModifierKeys = [];\n _homeAndEnd = false;\n _pageUpAndDown = {\n enabled: false,\n delta: 10\n };\n _effectRef;\n _typeahead;\n /**\n * Predicate function that can be used to check whether an item should be skipped\n * by the key manager. By default, disabled items are skipped.\n */\n _skipPredicateFn = item => item.disabled;\n constructor(_items, injector) {\n this._items = _items;\n // We allow for the items to be an array because, in some cases, the consumer may\n // not have access to a QueryList of the items they want to manage (e.g. when the\n // items aren't being collected via `ViewChildren` or `ContentChildren`).\n if (_items instanceof QueryList) {\n this._itemChangesSubscription = _items.changes.subscribe(newItems => this._itemsChanged(newItems.toArray()));\n } else if (isSignal(_items)) {\n if (!injector && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw new Error('ListKeyManager constructed with a signal must receive an injector');\n }\n this._effectRef = effect(() => this._itemsChanged(_items()), {\n injector\n });\n }\n }\n /**\n * Stream that emits any time the TAB key is pressed, so components can react\n * when focus is shifted off of the list.\n */\n tabOut = /*#__PURE__*/new Subject();\n /** Stream that emits whenever the active item of the list manager changes. */\n change = /*#__PURE__*/new Subject();\n /**\n * Sets the predicate function that determines which items should be skipped by the\n * list key manager.\n * @param predicate Function that determines whether the given item should be skipped.\n */\n skipPredicate(predicate) {\n this._skipPredicateFn = predicate;\n return this;\n }\n /**\n * Configures wrapping mode, which determines whether the active item will wrap to\n * the other end of list when there are no more items in the given direction.\n * @param shouldWrap Whether the list should wrap when reaching the end.\n */\n withWrap(shouldWrap = true) {\n this._wrap = shouldWrap;\n return this;\n }\n /**\n * Configures whether the key manager should be able to move the selection vertically.\n * @param enabled Whether vertical selection should be enabled.\n */\n withVerticalOrientation(enabled = true) {\n this._vertical = enabled;\n return this;\n }\n /**\n * Configures the key manager to move the selection horizontally.\n * Passing in `null` will disable horizontal movement.\n * @param direction Direction in which the selection can be moved.\n */\n withHorizontalOrientation(direction) {\n this._horizontal = direction;\n return this;\n }\n /**\n * Modifier keys which are allowed to be held down and whose default actions will be prevented\n * as the user is pressing the arrow keys. Defaults to not allowing any modifier keys.\n */\n withAllowedModifierKeys(keys) {\n this._allowedModifierKeys = keys;\n return this;\n }\n /**\n * Turns on typeahead mode which allows users to set the active item by typing.\n * @param debounceInterval Time to wait after the last keystroke before setting the active item.\n */\n withTypeAhead(debounceInterval = 200) {\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n const items = this._getItemsArray();\n if (items.length > 0 && items.some(item => typeof item.getLabel !== 'function')) {\n throw Error('ListKeyManager items in typeahead mode must implement the `getLabel` method.');\n }\n }\n this._typeaheadSubscription.unsubscribe();\n const items = this._getItemsArray();\n this._typeahead = new Typeahead(items, {\n debounceInterval: typeof debounceInterval === 'number' ? debounceInterval : undefined,\n skipPredicate: item => this._skipPredicateFn(item)\n });\n this._typeaheadSubscription = this._typeahead.selectedItem.subscribe(item => {\n this.setActiveItem(item);\n });\n return this;\n }\n /** Cancels the current typeahead sequence. */\n cancelTypeahead() {\n this._typeahead?.reset();\n return this;\n }\n /**\n * Configures the key manager to activate the first and last items\n * respectively when the Home or End key is pressed.\n * @param enabled Whether pressing the Home or End key activates the first/last item.\n */\n withHomeAndEnd(enabled = true) {\n this._homeAndEnd = enabled;\n return this;\n }\n /**\n * Configures the key manager to activate every 10th, configured or first/last element in up/down direction\n * respectively when the Page-Up or Page-Down key is pressed.\n * @param enabled Whether pressing the Page-Up or Page-Down key activates the first/last item.\n * @param delta Whether pressing the Home or End key activates the first/last item.\n */\n withPageUpDown(enabled = true, delta = 10) {\n this._pageUpAndDown = {\n enabled,\n delta\n };\n return this;\n }\n setActiveItem(item) {\n const previousActiveItem = this._activeItem();\n this.updateActiveItem(item);\n if (this._activeItem() !== previousActiveItem) {\n this.change.next(this._activeItemIndex);\n }\n }\n /**\n * Sets the active item depending on the key event passed in.\n * @param event Keyboard event to be used for determining which element should be active.\n */\n onKeydown(event) {\n const keyCode = event.keyCode;\n const modifiers = ['altKey', 'ctrlKey', 'metaKey', 'shiftKey'];\n const isModifierAllowed = modifiers.every(modifier => {\n return !event[modifier] || this._allowedModifierKeys.indexOf(modifier) > -1;\n });\n switch (keyCode) {\n case TAB:\n this.tabOut.next();\n return;\n case DOWN_ARROW:\n if (this._vertical && isModifierAllowed) {\n this.setNextItemActive();\n break;\n } else {\n return;\n }\n case UP_ARROW:\n if (this._vertical && isModifierAllowed) {\n this.setPreviousItemActive();\n break;\n } else {\n return;\n }\n case RIGHT_ARROW:\n if (this._horizontal && isModifierAllowed) {\n this._horizontal === 'rtl' ? this.setPreviousItemActive() : this.setNextItemActive();\n break;\n } else {\n return;\n }\n case LEFT_ARROW:\n if (this._horizontal && isModifierAllowed) {\n this._horizontal === 'rtl' ? this.setNextItemActive() : this.setPreviousItemActive();\n break;\n } else {\n return;\n }\n case HOME:\n if (this._homeAndEnd && isModifierAllowed) {\n this.setFirstItemActive();\n break;\n } else {\n return;\n }\n case END:\n if (this._homeAndEnd && isModifierAllowed) {\n this.setLastItemActive();\n break;\n } else {\n return;\n }\n case PAGE_UP:\n if (this._pageUpAndDown.enabled && isModifierAllowed) {\n const targetIndex = this._activeItemIndex - this._pageUpAndDown.delta;\n this._setActiveItemByIndex(targetIndex > 0 ? targetIndex : 0, 1);\n break;\n } else {\n return;\n }\n case PAGE_DOWN:\n if (this._pageUpAndDown.enabled && isModifierAllowed) {\n const targetIndex = this._activeItemIndex + this._pageUpAndDown.delta;\n const itemsLength = this._getItemsArray().length;\n this._setActiveItemByIndex(targetIndex < itemsLength ? targetIndex : itemsLength - 1, -1);\n break;\n } else {\n return;\n }\n default:\n if (isModifierAllowed || hasModifierKey(event, 'shiftKey')) {\n this._typeahead?.handleKey(event);\n }\n // Note that we return here, in order to avoid preventing\n // the default action of non-navigational keys.\n return;\n }\n this._typeahead?.reset();\n event.preventDefault();\n }\n /** Index of the currently active item. */\n get activeItemIndex() {\n return this._activeItemIndex;\n }\n /** The active item. */\n get activeItem() {\n return this._activeItem();\n }\n /** Gets whether the user is currently typing into the manager using the typeahead feature. */\n isTyping() {\n return !!this._typeahead && this._typeahead.isTyping();\n }\n /** Sets the active item to the first enabled item in the list. */\n setFirstItemActive() {\n this._setActiveItemByIndex(0, 1);\n }\n /** Sets the active item to the last enabled item in the list. */\n setLastItemActive() {\n this._setActiveItemByIndex(this._getItemsArray().length - 1, -1);\n }\n /** Sets the active item to the next enabled item in the list. */\n setNextItemActive() {\n this._activeItemIndex < 0 ? this.setFirstItemActive() : this._setActiveItemByDelta(1);\n }\n /** Sets the active item to a previous enabled item in the list. */\n setPreviousItemActive() {\n this._activeItemIndex < 0 && this._wrap ? this.setLastItemActive() : this._setActiveItemByDelta(-1);\n }\n updateActiveItem(item) {\n const itemArray = this._getItemsArray();\n const index = typeof item === 'number' ? item : itemArray.indexOf(item);\n const activeItem = itemArray[index];\n // Explicitly check for `null` and `undefined` because other falsy values are valid.\n this._activeItem.set(activeItem == null ? null : activeItem);\n this._activeItemIndex = index;\n this._typeahead?.setCurrentSelectedItemIndex(index);\n }\n /** Cleans up the key manager. */\n destroy() {\n this._typeaheadSubscription.unsubscribe();\n this._itemChangesSubscription?.unsubscribe();\n this._effectRef?.destroy();\n this._typeahead?.destroy();\n this.tabOut.complete();\n this.change.complete();\n }\n /**\n * This method sets the active item, given a list of items and the delta between the\n * currently active item and the new active item. It will calculate differently\n * depending on whether wrap mode is turned on.\n */\n _setActiveItemByDelta(delta) {\n this._wrap ? this._setActiveInWrapMode(delta) : this._setActiveInDefaultMode(delta);\n }\n /**\n * Sets the active item properly given \"wrap\" mode. In other words, it will continue to move\n * down the list until it finds an item that is not disabled, and it will wrap if it\n * encounters either end of the list.\n */\n _setActiveInWrapMode(delta) {\n const items = this._getItemsArray();\n for (let i = 1; i <= items.length; i++) {\n const index = (this._activeItemIndex + delta * i + items.length) % items.length;\n const item = items[index];\n if (!this._skipPredicateFn(item)) {\n this.setActiveItem(index);\n return;\n }\n }\n }\n /**\n * Sets the active item properly given the default mode. In other words, it will\n * continue to move down the list until it finds an item that is not disabled. If\n * it encounters either end of the list, it will stop and not wrap.\n */\n _setActiveInDefaultMode(delta) {\n this._setActiveItemByIndex(this._activeItemIndex + delta, delta);\n }\n /**\n * Sets the active item to the first enabled item starting at the index specified. If the\n * item is disabled, it will move in the fallbackDelta direction until it either\n * finds an enabled item or encounters the end of the list.\n */\n _setActiveItemByIndex(index, fallbackDelta) {\n const items = this._getItemsArray();\n if (!items[index]) {\n return;\n }\n while (this._skipPredicateFn(items[index])) {\n index += fallbackDelta;\n if (!items[index]) {\n return;\n }\n }\n this.setActiveItem(index);\n }\n /** Returns the items as an array. */\n _getItemsArray() {\n if (isSignal(this._items)) {\n return this._items();\n }\n return this._items instanceof QueryList ? this._items.toArray() : this._items;\n }\n /** Callback for when the items have changed. */\n _itemsChanged(newItems) {\n this._typeahead?.setItems(newItems);\n const activeItem = this._activeItem();\n if (activeItem) {\n const newIndex = newItems.indexOf(activeItem);\n if (newIndex > -1 && newIndex !== this._activeItemIndex) {\n this._activeItemIndex = newIndex;\n this._typeahead?.setCurrentSelectedItemIndex(newIndex);\n }\n }\n }\n}\nexport { ListKeyManager as L };\n","import { L as ListKeyManager } from './list-key-manager-c7b5cefb.mjs';\nclass ActiveDescendantKeyManager extends ListKeyManager {\n setActiveItem(index) {\n if (this.activeItem) {\n this.activeItem.setInactiveStyles();\n }\n super.setActiveItem(index);\n if (this.activeItem) {\n this.activeItem.setActiveStyles();\n }\n }\n}\nexport { ActiveDescendantKeyManager as A };\n","import { L as ListKeyManager } from './list-key-manager-c7b5cefb.mjs';\nclass FocusKeyManager extends ListKeyManager {\n _origin = 'program';\n /**\n * Sets the focus origin that will be passed in to the items for any subsequent `focus` calls.\n * @param origin Focus origin to be used when focusing items.\n */\n setFocusOrigin(origin) {\n this._origin = origin;\n return this;\n }\n setActiveItem(item) {\n super.setActiveItem(item);\n if (this.activeItem) {\n this.activeItem.focus(this._origin);\n }\n }\n}\nexport { FocusKeyManager as F };\n","export { C as CdkMonitorFocus, c as FOCUS_MONITOR_DEFAULT_OPTIONS, d as FocusMonitor, F as FocusMonitorDetectionMode, a as INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS, b as INPUT_MODALITY_DETECTOR_OPTIONS, I as InputModalityDetector } from './focus-monitor-fc0bdee7.mjs';\nimport { F as FocusTrap, I as InteractivityChecker } from './a11y-module-1746e350.mjs';\nexport { A as A11yModule, d as CdkAriaLive, C as CdkTrapFocus, F as FocusTrap, b as FocusTrapFactory, a as HighContrastMode, H as HighContrastModeDetector, I as InteractivityChecker, c as IsFocusableConfig, g as LIVE_ANNOUNCER_DEFAULT_OPTIONS, e as LIVE_ANNOUNCER_ELEMENT_TOKEN, f as LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY, L as LiveAnnouncer } from './a11y-module-1746e350.mjs';\nexport { _ as _IdGenerator } from './id-generator-1959b006.mjs';\nimport { DOCUMENT } from '@angular/common';\nimport * as i0 from '@angular/core';\nimport { inject, APP_ID, Injectable, InjectionToken, NgZone, Injector } from '@angular/core';\nimport { P as Platform } from './platform-610a08ae.mjs';\nimport { _ as _CdkPrivateStyleLoader } from './style-loader-51b80670.mjs';\nimport { _ as _VisuallyHiddenLoader } from './visually-hidden-7e8689f8.mjs';\nexport { A as ActiveDescendantKeyManager } from './activedescendant-key-manager-1351a9d3.mjs';\nexport { F as FocusKeyManager } from './focus-key-manager-58d29acd.mjs';\nexport { L as ListKeyManager } from './list-key-manager-c7b5cefb.mjs';\nimport { Subject } from 'rxjs';\nimport { T as TREE_KEY_MANAGER } from './tree-key-manager-2f20c79c.mjs';\nexport { T as TREE_KEY_MANAGER, b as TREE_KEY_MANAGER_FACTORY, c as TREE_KEY_MANAGER_FACTORY_PROVIDER, a as TreeKeyManager } from './tree-key-manager-2f20c79c.mjs';\nexport { i as isFakeMousedownFromScreenReader, a as isFakeTouchstartFromScreenReader } from './fake-event-detection-7055b1bd.mjs';\nimport 'rxjs/operators';\nimport './keycodes-107cd3e4.mjs';\nimport './shadow-dom-9f403d00.mjs';\nimport './backwards-compatibility-bcbe473e.mjs';\nimport './passive-listeners-c0bdc49f.mjs';\nimport './element-08c51fcd.mjs';\nimport './breakpoints-observer-75147d6a.mjs';\nimport './array-88e1bec3.mjs';\nimport './observe-content-a5002af1.mjs';\nimport './typeahead-11ae39bd.mjs';\nimport './modifiers-33a5859e.mjs';\nimport './observable-97c0792c.mjs';\n\n/** IDs are delimited by an empty space, as per the spec. */\nconst ID_DELIMITER = ' ';\n/**\n * Adds the given ID to the specified ARIA attribute on an element.\n * Used for attributes such as aria-labelledby, aria-owns, etc.\n */\nfunction addAriaReferencedId(el, attr, id) {\n const ids = getAriaReferenceIds(el, attr);\n id = id.trim();\n if (ids.some(existingId => existingId.trim() === id)) {\n return;\n }\n ids.push(id);\n el.setAttribute(attr, ids.join(ID_DELIMITER));\n}\n/**\n * Removes the given ID from the specified ARIA attribute on an element.\n * Used for attributes such as aria-labelledby, aria-owns, etc.\n */\nfunction removeAriaReferencedId(el, attr, id) {\n const ids = getAriaReferenceIds(el, attr);\n id = id.trim();\n const filteredIds = ids.filter(val => val !== id);\n if (filteredIds.length) {\n el.setAttribute(attr, filteredIds.join(ID_DELIMITER));\n } else {\n el.removeAttribute(attr);\n }\n}\n/**\n * Gets the list of IDs referenced by the given ARIA attribute on an element.\n * Used for attributes such as aria-labelledby, aria-owns, etc.\n */\nfunction getAriaReferenceIds(el, attr) {\n // Get string array of all individual ids (whitespace delimited) in the attribute value\n const attrValue = el.getAttribute(attr);\n return attrValue?.match(/\\S+/g) ?? [];\n}\n\n/**\n * ID used for the body container where all messages are appended.\n * @deprecated No longer being used. To be removed.\n * @breaking-change 14.0.0\n */\nconst MESSAGES_CONTAINER_ID = 'cdk-describedby-message-container';\n/**\n * ID prefix used for each created message element.\n * @deprecated To be turned into a private variable.\n * @breaking-change 14.0.0\n */\nconst CDK_DESCRIBEDBY_ID_PREFIX = 'cdk-describedby-message';\n/**\n * Attribute given to each host element that is described by a message element.\n * @deprecated To be turned into a private variable.\n * @breaking-change 14.0.0\n */\nconst CDK_DESCRIBEDBY_HOST_ATTRIBUTE = 'cdk-describedby-host';\n/** Global incremental identifier for each registered message element. */\nlet nextId = 0;\n/**\n * Utility that creates visually hidden elements with a message content. Useful for elements that\n * want to use aria-describedby to further describe themselves without adding additional visual\n * content.\n */\nlet AriaDescriber = /*#__PURE__*/(() => {\n class AriaDescriber {\n _platform = inject(Platform);\n _document = inject(DOCUMENT);\n /** Map of all registered message elements that have been placed into the document. */\n _messageRegistry = new Map();\n /** Container for all registered messages. */\n _messagesContainer = null;\n /** Unique ID for the service. */\n _id = `${nextId++}`;\n constructor() {\n inject(_CdkPrivateStyleLoader).load(_VisuallyHiddenLoader);\n this._id = inject(APP_ID) + '-' + nextId++;\n }\n describe(hostElement, message, role) {\n if (!this._canBeDescribed(hostElement, message)) {\n return;\n }\n const key = getKey(message, role);\n if (typeof message !== 'string') {\n // We need to ensure that the element has an ID.\n setMessageId(message, this._id);\n this._messageRegistry.set(key, {\n messageElement: message,\n referenceCount: 0\n });\n } else if (!this._messageRegistry.has(key)) {\n this._createMessageElement(message, role);\n }\n if (!this._isElementDescribedByMessage(hostElement, key)) {\n this._addMessageReference(hostElement, key);\n }\n }\n removeDescription(hostElement, message, role) {\n if (!message || !this._isElementNode(hostElement)) {\n return;\n }\n const key = getKey(message, role);\n if (this._isElementDescribedByMessage(hostElement, key)) {\n this._removeMessageReference(hostElement, key);\n }\n // If the message is a string, it means that it's one that we created for the\n // consumer so we can remove it safely, otherwise we should leave it in place.\n if (typeof message === 'string') {\n const registeredMessage = this._messageRegistry.get(key);\n if (registeredMessage && registeredMessage.referenceCount === 0) {\n this._deleteMessageElement(key);\n }\n }\n if (this._messagesContainer?.childNodes.length === 0) {\n this._messagesContainer.remove();\n this._messagesContainer = null;\n }\n }\n /** Unregisters all created message elements and removes the message container. */\n ngOnDestroy() {\n const describedElements = this._document.querySelectorAll(`[${CDK_DESCRIBEDBY_HOST_ATTRIBUTE}=\"${this._id}\"]`);\n for (let i = 0; i < describedElements.length; i++) {\n this._removeCdkDescribedByReferenceIds(describedElements[i]);\n describedElements[i].removeAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE);\n }\n this._messagesContainer?.remove();\n this._messagesContainer = null;\n this._messageRegistry.clear();\n }\n /**\n * Creates a new element in the visually hidden message container element with the message\n * as its content and adds it to the message registry.\n */\n _createMessageElement(message, role) {\n const messageElement = this._document.createElement('div');\n setMessageId(messageElement, this._id);\n messageElement.textContent = message;\n if (role) {\n messageElement.setAttribute('role', role);\n }\n this._createMessagesContainer();\n this._messagesContainer.appendChild(messageElement);\n this._messageRegistry.set(getKey(message, role), {\n messageElement,\n referenceCount: 0\n });\n }\n /** Deletes the message element from the global messages container. */\n _deleteMessageElement(key) {\n this._messageRegistry.get(key)?.messageElement?.remove();\n this._messageRegistry.delete(key);\n }\n /** Creates the global container for all aria-describedby messages. */\n _createMessagesContainer() {\n if (this._messagesContainer) {\n return;\n }\n const containerClassName = 'cdk-describedby-message-container';\n const serverContainers = this._document.querySelectorAll(`.${containerClassName}[platform=\"server\"]`);\n for (let i = 0; i < serverContainers.length; i++) {\n // When going from the server to the client, we may end up in a situation where there's\n // already a container on the page, but we don't have a reference to it. Clear the\n // old container so we don't get duplicates. Doing this, instead of emptying the previous\n // container, should be slightly faster.\n serverContainers[i].remove();\n }\n const messagesContainer = this._document.createElement('div');\n // We add `visibility: hidden` in order to prevent text in this container from\n // being searchable by the browser's Ctrl + F functionality.\n // Screen-readers will still read the description for elements with aria-describedby even\n // when the description element is not visible.\n messagesContainer.style.visibility = 'hidden';\n // Even though we use `visibility: hidden`, we still apply `cdk-visually-hidden` so that\n // the description element doesn't impact page layout.\n messagesContainer.classList.add(containerClassName);\n messagesContainer.classList.add('cdk-visually-hidden');\n if (!this._platform.isBrowser) {\n messagesContainer.setAttribute('platform', 'server');\n }\n this._document.body.appendChild(messagesContainer);\n this._messagesContainer = messagesContainer;\n }\n /** Removes all cdk-describedby messages that are hosted through the element. */\n _removeCdkDescribedByReferenceIds(element) {\n // Remove all aria-describedby reference IDs that are prefixed by CDK_DESCRIBEDBY_ID_PREFIX\n const originalReferenceIds = getAriaReferenceIds(element, 'aria-describedby').filter(id => id.indexOf(CDK_DESCRIBEDBY_ID_PREFIX) != 0);\n element.setAttribute('aria-describedby', originalReferenceIds.join(' '));\n }\n /**\n * Adds a message reference to the element using aria-describedby and increments the registered\n * message's reference count.\n */\n _addMessageReference(element, key) {\n const registeredMessage = this._messageRegistry.get(key);\n // Add the aria-describedby reference and set the\n // describedby_host attribute to mark the element.\n addAriaReferencedId(element, 'aria-describedby', registeredMessage.messageElement.id);\n element.setAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE, this._id);\n registeredMessage.referenceCount++;\n }\n /**\n * Removes a message reference from the element using aria-describedby\n * and decrements the registered message's reference count.\n */\n _removeMessageReference(element, key) {\n const registeredMessage = this._messageRegistry.get(key);\n registeredMessage.referenceCount--;\n removeAriaReferencedId(element, 'aria-describedby', registeredMessage.messageElement.id);\n element.removeAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE);\n }\n /** Returns true if the element has been described by the provided message ID. */\n _isElementDescribedByMessage(element, key) {\n const referenceIds = getAriaReferenceIds(element, 'aria-describedby');\n const registeredMessage = this._messageRegistry.get(key);\n const messageId = registeredMessage && registeredMessage.messageElement.id;\n return !!messageId && referenceIds.indexOf(messageId) != -1;\n }\n /** Determines whether a message can be described on a particular element. */\n _canBeDescribed(element, message) {\n if (!this._isElementNode(element)) {\n return false;\n }\n if (message && typeof message === 'object') {\n // We'd have to make some assumptions about the description element's text, if the consumer\n // passed in an element. Assume that if an element is passed in, the consumer has verified\n // that it can be used as a description.\n return true;\n }\n const trimmedMessage = message == null ? '' : `${message}`.trim();\n const ariaLabel = element.getAttribute('aria-label');\n // We shouldn't set descriptions if they're exactly the same as the `aria-label` of the\n // element, because screen readers will end up reading out the same text twice in a row.\n return trimmedMessage ? !ariaLabel || ariaLabel.trim() !== trimmedMessage : false;\n }\n /** Checks whether a node is an Element node. */\n _isElementNode(element) {\n return element.nodeType === this._document.ELEMENT_NODE;\n }\n static ɵfac = function AriaDescriber_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || AriaDescriber)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: AriaDescriber,\n factory: AriaDescriber.ɵfac,\n providedIn: 'root'\n });\n }\n return AriaDescriber;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** Gets a key that can be used to look messages up in the registry. */\nfunction getKey(message, role) {\n return typeof message === 'string' ? `${role || ''}/${message}` : message;\n}\n/** Assigns a unique ID to an element, if it doesn't have one already. */\nfunction setMessageId(element, serviceId) {\n if (!element.id) {\n element.id = `${CDK_DESCRIBEDBY_ID_PREFIX}-${serviceId}-${nextId++}`;\n }\n}\n\n// NoopTreeKeyManager is a \"noop\" implementation of TreeKeyMangerStrategy. Methods are noops. Does\n// not emit to streams.\n//\n// Used for applications built before TreeKeyManager to opt-out of TreeKeyManager and revert to\n// legacy behavior.\n/**\n * @docs-private\n *\n * Opt-out of Tree of key manager behavior.\n *\n * When provided, Tree has same focus management behavior as before TreeKeyManager was introduced.\n * - Tree does not respond to keyboard interaction\n * - Tree node allows tabindex to be set by Input binding\n * - Tree node allows tabindex to be set by attribute binding\n *\n * @deprecated NoopTreeKeyManager deprecated. Use TreeKeyManager or inject a\n * TreeKeyManagerStrategy instead. To be removed in a future version.\n *\n * @breaking-change 21.0.0\n */\nclass NoopTreeKeyManager {\n _isNoopTreeKeyManager = true;\n // Provide change as required by TreeKeyManagerStrategy. NoopTreeKeyManager is a \"noop\"\n // implementation that does not emit to streams.\n change = /*#__PURE__*/new Subject();\n destroy() {\n this.change.complete();\n }\n onKeydown() {\n // noop\n }\n getActiveItemIndex() {\n // Always return null. NoopTreeKeyManager is a \"noop\" implementation that does not maintain\n // the active item.\n return null;\n }\n getActiveItem() {\n // Always return null. NoopTreeKeyManager is a \"noop\" implementation that does not maintain\n // the active item.\n return null;\n }\n focusItem() {\n // noop\n }\n}\n/**\n * @docs-private\n *\n * Opt-out of Tree of key manager behavior.\n *\n * When provided, Tree has same focus management behavior as before TreeKeyManager was introduced.\n * - Tree does not respond to keyboard interaction\n * - Tree node allows tabindex to be set by Input binding\n * - Tree node allows tabindex to be set by attribute binding\n *\n * @deprecated NoopTreeKeyManager deprecated. Use TreeKeyManager or inject a\n * TreeKeyManagerStrategy instead. To be removed in a future version.\n *\n * @breaking-change 21.0.0\n */\nfunction NOOP_TREE_KEY_MANAGER_FACTORY() {\n return () => new NoopTreeKeyManager();\n}\n/**\n * @docs-private\n *\n * Opt-out of Tree of key manager behavior.\n *\n * When provided, Tree has same focus management behavior as before TreeKeyManager was introduced.\n * - Tree does not respond to keyboard interaction\n * - Tree node allows tabindex to be set by Input binding\n * - Tree node allows tabindex to be set by attribute binding\n *\n * @deprecated NoopTreeKeyManager deprecated. Use TreeKeyManager or inject a\n * TreeKeyManagerStrategy instead. To be removed in a future version.\n *\n * @breaking-change 21.0.0\n */\nconst NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER = {\n provide: TREE_KEY_MANAGER,\n useFactory: NOOP_TREE_KEY_MANAGER_FACTORY\n};\n\n/**\n * Class that allows for trapping focus within a DOM element.\n *\n * This class uses a strategy pattern that determines how it traps focus.\n * See FocusTrapInertStrategy.\n */\nclass ConfigurableFocusTrap extends FocusTrap {\n _focusTrapManager;\n _inertStrategy;\n /** Whether the FocusTrap is enabled. */\n get enabled() {\n return this._enabled;\n }\n set enabled(value) {\n this._enabled = value;\n if (this._enabled) {\n this._focusTrapManager.register(this);\n } else {\n this._focusTrapManager.deregister(this);\n }\n }\n constructor(_element, _checker, _ngZone, _document, _focusTrapManager, _inertStrategy, config, injector) {\n super(_element, _checker, _ngZone, _document, config.defer, injector);\n this._focusTrapManager = _focusTrapManager;\n this._inertStrategy = _inertStrategy;\n this._focusTrapManager.register(this);\n }\n /** Notifies the FocusTrapManager that this FocusTrap will be destroyed. */\n destroy() {\n this._focusTrapManager.deregister(this);\n super.destroy();\n }\n /** @docs-private Implemented as part of ManagedFocusTrap. */\n _enable() {\n this._inertStrategy.preventFocus(this);\n this.toggleAnchors(true);\n }\n /** @docs-private Implemented as part of ManagedFocusTrap. */\n _disable() {\n this._inertStrategy.allowFocus(this);\n this.toggleAnchors(false);\n }\n}\n\n/**\n * Lightweight FocusTrapInertStrategy that adds a document focus event\n * listener to redirect focus back inside the FocusTrap.\n */\nclass EventListenerFocusTrapInertStrategy {\n /** Focus event handler. */\n _listener = null;\n /** Adds a document event listener that keeps focus inside the FocusTrap. */\n preventFocus(focusTrap) {\n // Ensure there's only one listener per document\n if (this._listener) {\n focusTrap._document.removeEventListener('focus', this._listener, true);\n }\n this._listener = e => this._trapFocus(focusTrap, e);\n focusTrap._ngZone.runOutsideAngular(() => {\n focusTrap._document.addEventListener('focus', this._listener, true);\n });\n }\n /** Removes the event listener added in preventFocus. */\n allowFocus(focusTrap) {\n if (!this._listener) {\n return;\n }\n focusTrap._document.removeEventListener('focus', this._listener, true);\n this._listener = null;\n }\n /**\n * Refocuses the first element in the FocusTrap if the focus event target was outside\n * the FocusTrap.\n *\n * This is an event listener callback. The event listener is added in runOutsideAngular,\n * so all this code runs outside Angular as well.\n */\n _trapFocus(focusTrap, event) {\n const target = event.target;\n const focusTrapRoot = focusTrap._element;\n // Don't refocus if target was in an overlay, because the overlay might be associated\n // with an element inside the FocusTrap, ex. mat-select.\n if (target && !focusTrapRoot.contains(target) && !target.closest?.('div.cdk-overlay-pane')) {\n // Some legacy FocusTrap usages have logic that focuses some element on the page\n // just before FocusTrap is destroyed. For backwards compatibility, wait\n // to be sure FocusTrap is still enabled before refocusing.\n setTimeout(() => {\n // Check whether focus wasn't put back into the focus trap while the timeout was pending.\n if (focusTrap.enabled && !focusTrapRoot.contains(focusTrap._document.activeElement)) {\n focusTrap.focusFirstTabbableElement();\n }\n });\n }\n }\n}\n\n/** The injection token used to specify the inert strategy. */\nconst FOCUS_TRAP_INERT_STRATEGY = /*#__PURE__*/new InjectionToken('FOCUS_TRAP_INERT_STRATEGY');\n\n/** Injectable that ensures only the most recently enabled FocusTrap is active. */\nlet FocusTrapManager = /*#__PURE__*/(() => {\n class FocusTrapManager {\n // A stack of the FocusTraps on the page. Only the FocusTrap at the\n // top of the stack is active.\n _focusTrapStack = [];\n /**\n * Disables the FocusTrap at the top of the stack, and then pushes\n * the new FocusTrap onto the stack.\n */\n register(focusTrap) {\n // Dedupe focusTraps that register multiple times.\n this._focusTrapStack = this._focusTrapStack.filter(ft => ft !== focusTrap);\n let stack = this._focusTrapStack;\n if (stack.length) {\n stack[stack.length - 1]._disable();\n }\n stack.push(focusTrap);\n focusTrap._enable();\n }\n /**\n * Removes the FocusTrap from the stack, and activates the\n * FocusTrap that is the new top of the stack.\n */\n deregister(focusTrap) {\n focusTrap._disable();\n const stack = this._focusTrapStack;\n const i = stack.indexOf(focusTrap);\n if (i !== -1) {\n stack.splice(i, 1);\n if (stack.length) {\n stack[stack.length - 1]._enable();\n }\n }\n }\n static ɵfac = function FocusTrapManager_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || FocusTrapManager)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: FocusTrapManager,\n factory: FocusTrapManager.ɵfac,\n providedIn: 'root'\n });\n }\n return FocusTrapManager;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Factory that allows easy instantiation of configurable focus traps. */\nlet ConfigurableFocusTrapFactory = /*#__PURE__*/(() => {\n class ConfigurableFocusTrapFactory {\n _checker = inject(InteractivityChecker);\n _ngZone = inject(NgZone);\n _focusTrapManager = inject(FocusTrapManager);\n _document = inject(DOCUMENT);\n _inertStrategy;\n _injector = inject(Injector);\n constructor() {\n const inertStrategy = inject(FOCUS_TRAP_INERT_STRATEGY, {\n optional: true\n });\n // TODO split up the strategies into different modules, similar to DateAdapter.\n this._inertStrategy = inertStrategy || new EventListenerFocusTrapInertStrategy();\n }\n create(element, config = {\n defer: false\n }) {\n let configObject;\n if (typeof config === 'boolean') {\n configObject = {\n defer: config\n };\n } else {\n configObject = config;\n }\n return new ConfigurableFocusTrap(element, this._checker, this._ngZone, this._document, this._focusTrapManager, this._inertStrategy, configObject, this._injector);\n }\n static ɵfac = function ConfigurableFocusTrapFactory_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ConfigurableFocusTrapFactory)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ConfigurableFocusTrapFactory,\n factory: ConfigurableFocusTrapFactory.ɵfac,\n providedIn: 'root'\n });\n }\n return ConfigurableFocusTrapFactory;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { AriaDescriber, CDK_DESCRIBEDBY_HOST_ATTRIBUTE, CDK_DESCRIBEDBY_ID_PREFIX, ConfigurableFocusTrap, ConfigurableFocusTrapFactory, EventListenerFocusTrapInertStrategy, FOCUS_TRAP_INERT_STRATEGY, MESSAGES_CONTAINER_ID, NOOP_TREE_KEY_MANAGER_FACTORY, NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER, NoopTreeKeyManager, addAriaReferencedId, getAriaReferenceIds, removeAriaReferencedId };\n","import { HighContrastModeDetector } from '@angular/cdk/a11y';\nimport { BidiModule } from '@angular/cdk/bidi';\nimport * as i0 from '@angular/core';\nimport { InjectionToken, inject, NgModule } from '@angular/core';\n\n/**\n * Injection token that configures whether the Material sanity checks are enabled.\n * @deprecated No longer used and will be removed.\n * @breaking-change 21.0.0\n */\nconst MATERIAL_SANITY_CHECKS = /*#__PURE__*/new InjectionToken('mat-sanity-checks', {\n providedIn: 'root',\n factory: () => true\n});\n/**\n * Module that captures anything that should be loaded and/or run for *all* Angular Material\n * components. This includes Bidi, etc.\n *\n * This module should be imported to each top-level component module (e.g., MatTabsModule).\n * @deprecated No longer used and will be removed.\n * @breaking-change 21.0.0\n */\nlet MatCommonModule = /*#__PURE__*/(() => {\n class MatCommonModule {\n constructor() {\n // While A11yModule also does this, we repeat it here to avoid importing A11yModule\n // in MatCommonModule.\n inject(HighContrastModeDetector)._applyBodyHighContrastModeCssClasses();\n }\n static ɵfac = function MatCommonModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatCommonModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatCommonModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [BidiModule, BidiModule]\n });\n }\n return MatCommonModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { MatCommonModule as M, MATERIAL_SANITY_CHECKS as a };\n","import { CdkDialogContainer, Dialog, DialogConfig, DialogModule } from '@angular/cdk/dialog';\nimport { Overlay, OverlayModule } from '@angular/cdk/overlay';\nimport { CdkPortalOutlet, PortalModule } from '@angular/cdk/portal';\nimport * as i0 from '@angular/core';\nimport { inject, ANIMATION_MODULE_TYPE, EventEmitter, Component, ViewEncapsulation, ChangeDetectionStrategy, InjectionToken, Injectable, ElementRef, Directive, Input, NgModule } from '@angular/core';\nimport { coerceNumberProperty } from '@angular/cdk/coercion';\nimport { Subject, merge, defer } from 'rxjs';\nimport { filter, take, startWith } from 'rxjs/operators';\nimport { ESCAPE, hasModifierKey } from '@angular/cdk/keycodes';\nimport { _IdGenerator } from '@angular/cdk/a11y';\nimport * as i1 from '@angular/cdk/scrolling';\nimport { CdkScrollable } from '@angular/cdk/scrolling';\nimport { M as MatCommonModule } from './common-module-a39ee957.mjs';\n\n/**\n * Configuration for opening a modal dialog with the MatDialog service.\n */\nfunction MatDialogContainer_ng_template_2_Template(rf, ctx) {}\nclass MatDialogConfig {\n /**\n * Where the attached component should live in Angular's *logical* component tree.\n * This affects what is available for injection and the change detection order for the\n * component instantiated inside of the dialog. This does not affect where the dialog\n * content will be rendered.\n */\n viewContainerRef;\n /**\n * Injector used for the instantiation of the component to be attached. If provided,\n * takes precedence over the injector indirectly provided by `ViewContainerRef`.\n */\n injector;\n /** ID for the dialog. If omitted, a unique one will be generated. */\n id;\n /** The ARIA role of the dialog element. */\n role = 'dialog';\n /** Custom class for the overlay pane. */\n panelClass = '';\n /** Whether the dialog has a backdrop. */\n hasBackdrop = true;\n /** Custom class for the backdrop. */\n backdropClass = '';\n /** Whether the user can use escape or clicking on the backdrop to close the modal. */\n disableClose = false;\n /** Width of the dialog. */\n width = '';\n /** Height of the dialog. */\n height = '';\n /** Min-width of the dialog. If a number is provided, assumes pixel units. */\n minWidth;\n /** Min-height of the dialog. If a number is provided, assumes pixel units. */\n minHeight;\n /** Max-width of the dialog. If a number is provided, assumes pixel units. Defaults to 80vw. */\n maxWidth;\n /** Max-height of the dialog. If a number is provided, assumes pixel units. */\n maxHeight;\n /** Position overrides. */\n position;\n /** Data being injected into the child component. */\n data = null;\n /** Layout direction for the dialog's content. */\n direction;\n /** ID of the element that describes the dialog. */\n ariaDescribedBy = null;\n /** ID of the element that labels the dialog. */\n ariaLabelledBy = null;\n /** Aria label to assign to the dialog element. */\n ariaLabel = null;\n /**\n * Whether this is a modal dialog. Used to set the `aria-modal` attribute. Off by default,\n * because it can interfere with other overlay-based components (e.g. `mat-select`) and because\n * it is redundant since the dialog marks all outside content as `aria-hidden` anyway.\n */\n ariaModal = false;\n /**\n * Where the dialog should focus on open.\n * @breaking-change 14.0.0 Remove boolean option from autoFocus. Use string or\n * AutoFocusTarget instead.\n */\n autoFocus = 'first-tabbable';\n /**\n * Whether the dialog should restore focus to the\n * previously-focused element, after it's closed.\n */\n restoreFocus = true;\n /** Whether to wait for the opening animation to finish before trapping focus. */\n delayFocusTrap = true;\n /** Scroll strategy to be used for the dialog. */\n scrollStrategy;\n /**\n * Whether the dialog should close when the user goes backwards/forwards in history.\n * Note that this usually doesn't include clicking on links (unless the user is using\n * the `HashLocationStrategy`).\n */\n closeOnNavigation = true;\n /**\n * Alternate `ComponentFactoryResolver` to use when resolving the associated component.\n * @deprecated No longer used. Will be removed.\n * @breaking-change 20.0.0\n */\n componentFactoryResolver;\n /**\n * Duration of the enter animation in ms.\n * Should be a number, string type is deprecated.\n * @breaking-change 17.0.0 Remove string signature.\n */\n enterAnimationDuration;\n /**\n * Duration of the exit animation in ms.\n * Should be a number, string type is deprecated.\n * @breaking-change 17.0.0 Remove string signature.\n */\n exitAnimationDuration;\n}\n\n/** Class added when the dialog is open. */\nconst OPEN_CLASS = 'mdc-dialog--open';\n/** Class added while the dialog is opening. */\nconst OPENING_CLASS = 'mdc-dialog--opening';\n/** Class added while the dialog is closing. */\nconst CLOSING_CLASS = 'mdc-dialog--closing';\n/** Duration of the opening animation in milliseconds. */\nconst OPEN_ANIMATION_DURATION = 150;\n/** Duration of the closing animation in milliseconds. */\nconst CLOSE_ANIMATION_DURATION = 75;\nlet MatDialogContainer = /*#__PURE__*/(() => {\n class MatDialogContainer extends CdkDialogContainer {\n _animationMode = inject(ANIMATION_MODULE_TYPE, {\n optional: true\n });\n /** Emits when an animation state changes. */\n _animationStateChanged = new EventEmitter();\n /** Whether animations are enabled. */\n _animationsEnabled = this._animationMode !== 'NoopAnimations';\n /** Number of actions projected in the dialog. */\n _actionSectionCount = 0;\n /** Host element of the dialog container component. */\n _hostElement = this._elementRef.nativeElement;\n /** Duration of the dialog open animation. */\n _enterAnimationDuration = this._animationsEnabled ? parseCssTime(this._config.enterAnimationDuration) ?? OPEN_ANIMATION_DURATION : 0;\n /** Duration of the dialog close animation. */\n _exitAnimationDuration = this._animationsEnabled ? parseCssTime(this._config.exitAnimationDuration) ?? CLOSE_ANIMATION_DURATION : 0;\n /** Current timer for dialog animations. */\n _animationTimer = null;\n _contentAttached() {\n // Delegate to the original dialog-container initialization (i.e. saving the\n // previous element, setting up the focus trap and moving focus to the container).\n super._contentAttached();\n // Note: Usually we would be able to use the MDC dialog foundation here to handle\n // the dialog animation for us, but there are a few reasons why we just leverage\n // their styles and not use the runtime foundation code:\n // 1. Foundation does not allow us to disable animations.\n // 2. Foundation contains unnecessary features we don't need and aren't\n // tree-shakeable. e.g. background scrim, keyboard event handlers for ESC button.\n this._startOpenAnimation();\n }\n /** Starts the dialog open animation if enabled. */\n _startOpenAnimation() {\n this._animationStateChanged.emit({\n state: 'opening',\n totalTime: this._enterAnimationDuration\n });\n if (this._animationsEnabled) {\n this._hostElement.style.setProperty(TRANSITION_DURATION_PROPERTY, `${this._enterAnimationDuration}ms`);\n // We need to give the `setProperty` call from above some time to be applied.\n // One would expect that the open class is added once the animation finished, but MDC\n // uses the open class in combination with the opening class to start the animation.\n this._requestAnimationFrame(() => this._hostElement.classList.add(OPENING_CLASS, OPEN_CLASS));\n this._waitForAnimationToComplete(this._enterAnimationDuration, this._finishDialogOpen);\n } else {\n this._hostElement.classList.add(OPEN_CLASS);\n // Note: We could immediately finish the dialog opening here with noop animations,\n // but we defer until next tick so that consumers can subscribe to `afterOpened`.\n // Executing this immediately would mean that `afterOpened` emits synchronously\n // on `dialog.open` before the consumer had a change to subscribe to `afterOpened`.\n Promise.resolve().then(() => this._finishDialogOpen());\n }\n }\n /**\n * Starts the exit animation of the dialog if enabled. This method is\n * called by the dialog ref.\n */\n _startExitAnimation() {\n this._animationStateChanged.emit({\n state: 'closing',\n totalTime: this._exitAnimationDuration\n });\n this._hostElement.classList.remove(OPEN_CLASS);\n if (this._animationsEnabled) {\n this._hostElement.style.setProperty(TRANSITION_DURATION_PROPERTY, `${this._exitAnimationDuration}ms`);\n // We need to give the `setProperty` call from above some time to be applied.\n this._requestAnimationFrame(() => this._hostElement.classList.add(CLOSING_CLASS));\n this._waitForAnimationToComplete(this._exitAnimationDuration, this._finishDialogClose);\n } else {\n // This subscription to the `OverlayRef#backdropClick` observable in the `DialogRef` is\n // set up before any user can subscribe to the backdrop click. The subscription triggers\n // the dialog close and this method synchronously. If we'd synchronously emit the `CLOSED`\n // animation state event if animations are disabled, the overlay would be disposed\n // immediately and all other subscriptions to `DialogRef#backdropClick` would be silently\n // skipped. We work around this by waiting with the dialog close until the next tick when\n // all subscriptions have been fired as expected. This is not an ideal solution, but\n // there doesn't seem to be any other good way. Alternatives that have been considered:\n // 1. Deferring `DialogRef.close`. This could be a breaking change due to a new microtask.\n // Also this issue is specific to the MDC implementation where the dialog could\n // technically be closed synchronously. In the non-MDC one, Angular animations are used\n // and closing always takes at least a tick.\n // 2. Ensuring that user subscriptions to `backdropClick`, `keydownEvents` in the dialog\n // ref are first. This would solve the issue, but has the risk of memory leaks and also\n // doesn't solve the case where consumers call `DialogRef.close` in their subscriptions.\n // Based on the fact that this is specific to the MDC-based implementation of the dialog\n // animations, the defer is applied here.\n Promise.resolve().then(() => this._finishDialogClose());\n }\n }\n /**\n * Updates the number action sections.\n * @param delta Increase/decrease in the number of sections.\n */\n _updateActionSectionCount(delta) {\n this._actionSectionCount += delta;\n this._changeDetectorRef.markForCheck();\n }\n /**\n * Completes the dialog open by clearing potential animation classes, trapping\n * focus and emitting an opened event.\n */\n _finishDialogOpen = () => {\n this._clearAnimationClasses();\n this._openAnimationDone(this._enterAnimationDuration);\n };\n /**\n * Completes the dialog close by clearing potential animation classes, restoring\n * focus and emitting a closed event.\n */\n _finishDialogClose = () => {\n this._clearAnimationClasses();\n this._animationStateChanged.emit({\n state: 'closed',\n totalTime: this._exitAnimationDuration\n });\n };\n /** Clears all dialog animation classes. */\n _clearAnimationClasses() {\n this._hostElement.classList.remove(OPENING_CLASS, CLOSING_CLASS);\n }\n _waitForAnimationToComplete(duration, callback) {\n if (this._animationTimer !== null) {\n clearTimeout(this._animationTimer);\n }\n // Note that we want this timer to run inside the NgZone, because we want\n // the related events like `afterClosed` to be inside the zone as well.\n this._animationTimer = setTimeout(callback, duration);\n }\n /** Runs a callback in `requestAnimationFrame`, if available. */\n _requestAnimationFrame(callback) {\n this._ngZone.runOutsideAngular(() => {\n if (typeof requestAnimationFrame === 'function') {\n requestAnimationFrame(callback);\n } else {\n callback();\n }\n });\n }\n _captureInitialFocus() {\n if (!this._config.delayFocusTrap) {\n this._trapFocus();\n }\n }\n /**\n * Callback for when the open dialog animation has finished. Intended to\n * be called by sub-classes that use different animation implementations.\n */\n _openAnimationDone(totalTime) {\n if (this._config.delayFocusTrap) {\n this._trapFocus();\n }\n this._animationStateChanged.next({\n state: 'opened',\n totalTime\n });\n }\n ngOnDestroy() {\n super.ngOnDestroy();\n if (this._animationTimer !== null) {\n clearTimeout(this._animationTimer);\n }\n }\n attachComponentPortal(portal) {\n // When a component is passed into the dialog, the host element interrupts\n // the `display:flex` from affecting the dialog title, content, and\n // actions. To fix this, we make the component host `display: contents` by\n // marking its host with the `mat-mdc-dialog-component-host` class.\n //\n // Note that this problem does not exist when a template ref is used since\n // the title, contents, and actions are then nested directly under the\n // dialog surface.\n const ref = super.attachComponentPortal(portal);\n ref.location.nativeElement.classList.add('mat-mdc-dialog-component-host');\n return ref;\n }\n static ɵfac = /* @__PURE__ */(() => {\n let ɵMatDialogContainer_BaseFactory;\n return function MatDialogContainer_Factory(__ngFactoryType__) {\n return (ɵMatDialogContainer_BaseFactory || (ɵMatDialogContainer_BaseFactory = i0.ɵɵgetInheritedFactory(MatDialogContainer)))(__ngFactoryType__ || MatDialogContainer);\n };\n })();\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: MatDialogContainer,\n selectors: [[\"mat-dialog-container\"]],\n hostAttrs: [\"tabindex\", \"-1\", 1, \"mat-mdc-dialog-container\", \"mdc-dialog\"],\n hostVars: 10,\n hostBindings: function MatDialogContainer_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵhostProperty(\"id\", ctx._config.id);\n i0.ɵɵattribute(\"aria-modal\", ctx._config.ariaModal)(\"role\", ctx._config.role)(\"aria-labelledby\", ctx._config.ariaLabel ? null : ctx._ariaLabelledByQueue[0])(\"aria-label\", ctx._config.ariaLabel)(\"aria-describedby\", ctx._config.ariaDescribedBy || null);\n i0.ɵɵclassProp(\"_mat-animation-noopable\", !ctx._animationsEnabled)(\"mat-mdc-dialog-container-with-actions\", ctx._actionSectionCount > 0);\n }\n },\n features: [i0.ɵɵInheritDefinitionFeature],\n decls: 3,\n vars: 0,\n consts: [[1, \"mat-mdc-dialog-inner-container\", \"mdc-dialog__container\"], [1, \"mat-mdc-dialog-surface\", \"mdc-dialog__surface\"], [\"cdkPortalOutlet\", \"\"]],\n template: function MatDialogContainer_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"div\", 1);\n i0.ɵɵtemplate(2, MatDialogContainer_ng_template_2_Template, 0, 0, \"ng-template\", 2);\n i0.ɵɵelementEnd()();\n }\n },\n dependencies: [CdkPortalOutlet],\n styles: [\".mat-mdc-dialog-container{width:100%;height:100%;display:block;box-sizing:border-box;max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;outline:0}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 560px);min-width:var(--mat-dialog-container-min-width, 280px)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, calc(100vw - 32px))}}.mat-mdc-dialog-inner-container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;transition:opacity linear var(--mat-dialog-transition-duration, 0ms);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mdc-dialog--closing .mat-mdc-dialog-inner-container{transition:opacity 75ms linear;transform:none}.mdc-dialog--open .mat-mdc-dialog-inner-container{opacity:1}._mat-animation-noopable .mat-mdc-dialog-inner-container{transition:none}.mat-mdc-dialog-surface{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;width:100%;height:100%;position:relative;overflow-y:auto;outline:0;transform:scale(0.8);transition:transform var(--mat-dialog-transition-duration, 0ms) cubic-bezier(0, 0, 0.2, 1);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;box-shadow:var(--mat-dialog-container-elevation-shadow, none);border-radius:var(--mdc-dialog-container-shape, var(--mat-sys-corner-extra-large, 4px));background-color:var(--mdc-dialog-container-color, var(--mat-sys-surface, white))}[dir=rtl] .mat-mdc-dialog-surface{text-align:right}.mdc-dialog--open .mat-mdc-dialog-surface,.mdc-dialog--closing .mat-mdc-dialog-surface{transform:none}._mat-animation-noopable .mat-mdc-dialog-surface{transition:none}.mat-mdc-dialog-surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:\\\"\\\";pointer-events:none}.mat-mdc-dialog-title{display:block;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:var(--mat-dialog-headline-padding, 6px 24px 13px)}.mat-mdc-dialog-title::before{display:inline-block;width:0;height:40px;content:\\\"\\\";vertical-align:0}[dir=rtl] .mat-mdc-dialog-title{text-align:right}.mat-mdc-dialog-container .mat-mdc-dialog-title{color:var(--mdc-dialog-subhead-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mdc-dialog-subhead-font, var(--mat-sys-headline-small-font, inherit));line-height:var(--mdc-dialog-subhead-line-height, var(--mat-sys-headline-small-line-height, 1.5rem));font-size:var(--mdc-dialog-subhead-size, var(--mat-sys-headline-small-size, 1rem));font-weight:var(--mdc-dialog-subhead-weight, var(--mat-sys-headline-small-weight, 400));letter-spacing:var(--mdc-dialog-subhead-tracking, var(--mat-sys-headline-small-tracking, 0.03125em))}.mat-mdc-dialog-content{display:block;flex-grow:1;box-sizing:border-box;margin:0;overflow:auto;max-height:65vh}.mat-mdc-dialog-content>:first-child{margin-top:0}.mat-mdc-dialog-content>:last-child{margin-bottom:0}.mat-mdc-dialog-container .mat-mdc-dialog-content{color:var(--mdc-dialog-supporting-text-color, var(--mat-sys-on-surface-variant, rgba(0, 0, 0, 0.6)));font-family:var(--mdc-dialog-supporting-text-font, var(--mat-sys-body-medium-font, inherit));line-height:var(--mdc-dialog-supporting-text-line-height, var(--mat-sys-body-medium-line-height, 1.5rem));font-size:var(--mdc-dialog-supporting-text-size, var(--mat-sys-body-medium-size, 1rem));font-weight:var(--mdc-dialog-supporting-text-weight, var(--mat-sys-body-medium-weight, 400));letter-spacing:var(--mdc-dialog-supporting-text-tracking, var(--mat-sys-body-medium-tracking, 0.03125em))}.mat-mdc-dialog-container .mat-mdc-dialog-content{padding:var(--mat-dialog-content-padding, 20px 24px)}.mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content{padding:var(--mat-dialog-with-actions-content-padding, 20px 24px 0)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;box-sizing:border-box;min-height:52px;margin:0;padding:8px;border-top:1px solid rgba(0,0,0,0);padding:var(--mat-dialog-actions-padding, 16px 24px);justify-content:var(--mat-dialog-actions-alignment, flex-end)}@media(forced-colors: active){.mat-mdc-dialog-actions{border-top-color:CanvasText}}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-start,.mat-mdc-dialog-actions[align=start]{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}.mat-mdc-dialog-component-host{display:contents}\"],\n encapsulation: 2\n });\n }\n return MatDialogContainer;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst TRANSITION_DURATION_PROPERTY = '--mat-dialog-transition-duration';\n// TODO(mmalerba): Remove this function after animation durations are required\n// to be numbers.\n/**\n * Converts a CSS time string to a number in ms. If the given time is already a\n * number, it is assumed to be in ms.\n */\nfunction parseCssTime(time) {\n if (time == null) {\n return null;\n }\n if (typeof time === 'number') {\n return time;\n }\n if (time.endsWith('ms')) {\n return coerceNumberProperty(time.substring(0, time.length - 2));\n }\n if (time.endsWith('s')) {\n return coerceNumberProperty(time.substring(0, time.length - 1)) * 1000;\n }\n if (time === '0') {\n return 0;\n }\n return null; // anything else is invalid.\n}\nvar MatDialogState = /*#__PURE__*/function (MatDialogState) {\n MatDialogState[MatDialogState[\"OPEN\"] = 0] = \"OPEN\";\n MatDialogState[MatDialogState[\"CLOSING\"] = 1] = \"CLOSING\";\n MatDialogState[MatDialogState[\"CLOSED\"] = 2] = \"CLOSED\";\n return MatDialogState;\n}(MatDialogState || {});\n/**\n * Reference to a dialog opened via the MatDialog service.\n */\nclass MatDialogRef {\n _ref;\n _containerInstance;\n /** The instance of component opened into the dialog. */\n componentInstance;\n /**\n * `ComponentRef` of the component opened into the dialog. Will be\n * null when the dialog is opened using a `TemplateRef`.\n */\n componentRef;\n /** Whether the user is allowed to close the dialog. */\n disableClose;\n /** Unique ID for the dialog. */\n id;\n /** Subject for notifying the user that the dialog has finished opening. */\n _afterOpened = /*#__PURE__*/new Subject();\n /** Subject for notifying the user that the dialog has started closing. */\n _beforeClosed = /*#__PURE__*/new Subject();\n /** Result to be passed to afterClosed. */\n _result;\n /** Handle to the timeout that's running as a fallback in case the exit animation doesn't fire. */\n _closeFallbackTimeout;\n /** Current state of the dialog. */\n _state = MatDialogState.OPEN;\n // TODO(crisbeto): we shouldn't have to declare this property, because `DialogRef.close`\n // already has a second `options` parameter that we can use. The problem is that internal tests\n // have assertions like `expect(MatDialogRef.close).toHaveBeenCalledWith(foo)` which will break,\n // because it'll be called with two arguments by things like `MatDialogClose`.\n /** Interaction that caused the dialog to close. */\n _closeInteractionType;\n constructor(_ref, config, _containerInstance) {\n this._ref = _ref;\n this._containerInstance = _containerInstance;\n this.disableClose = config.disableClose;\n this.id = _ref.id;\n // Used to target panels specifically tied to dialogs.\n _ref.addPanelClass('mat-mdc-dialog-panel');\n // Emit when opening animation completes\n _containerInstance._animationStateChanged.pipe(filter(event => event.state === 'opened'), take(1)).subscribe(() => {\n this._afterOpened.next();\n this._afterOpened.complete();\n });\n // Dispose overlay when closing animation is complete\n _containerInstance._animationStateChanged.pipe(filter(event => event.state === 'closed'), take(1)).subscribe(() => {\n clearTimeout(this._closeFallbackTimeout);\n this._finishDialogClose();\n });\n _ref.overlayRef.detachments().subscribe(() => {\n this._beforeClosed.next(this._result);\n this._beforeClosed.complete();\n this._finishDialogClose();\n });\n merge(this.backdropClick(), this.keydownEvents().pipe(filter(event => event.keyCode === ESCAPE && !this.disableClose && !hasModifierKey(event)))).subscribe(event => {\n if (!this.disableClose) {\n event.preventDefault();\n _closeDialogVia(this, event.type === 'keydown' ? 'keyboard' : 'mouse');\n }\n });\n }\n /**\n * Close the dialog.\n * @param dialogResult Optional result to return to the dialog opener.\n */\n close(dialogResult) {\n this._result = dialogResult;\n // Transition the backdrop in parallel to the dialog.\n this._containerInstance._animationStateChanged.pipe(filter(event => event.state === 'closing'), take(1)).subscribe(event => {\n this._beforeClosed.next(dialogResult);\n this._beforeClosed.complete();\n this._ref.overlayRef.detachBackdrop();\n // The logic that disposes of the overlay depends on the exit animation completing, however\n // it isn't guaranteed if the parent view is destroyed while it's running. Add a fallback\n // timeout which will clean everything up if the animation hasn't fired within the specified\n // amount of time plus 100ms. We don't need to run this outside the NgZone, because for the\n // vast majority of cases the timeout will have been cleared before it has the chance to fire.\n this._closeFallbackTimeout = setTimeout(() => this._finishDialogClose(), event.totalTime + 100);\n });\n this._state = MatDialogState.CLOSING;\n this._containerInstance._startExitAnimation();\n }\n /**\n * Gets an observable that is notified when the dialog is finished opening.\n */\n afterOpened() {\n return this._afterOpened;\n }\n /**\n * Gets an observable that is notified when the dialog is finished closing.\n */\n afterClosed() {\n return this._ref.closed;\n }\n /**\n * Gets an observable that is notified when the dialog has started closing.\n */\n beforeClosed() {\n return this._beforeClosed;\n }\n /**\n * Gets an observable that emits when the overlay's backdrop has been clicked.\n */\n backdropClick() {\n return this._ref.backdropClick;\n }\n /**\n * Gets an observable that emits when keydown events are targeted on the overlay.\n */\n keydownEvents() {\n return this._ref.keydownEvents;\n }\n /**\n * Updates the dialog's position.\n * @param position New dialog position.\n */\n updatePosition(position) {\n let strategy = this._ref.config.positionStrategy;\n if (position && (position.left || position.right)) {\n position.left ? strategy.left(position.left) : strategy.right(position.right);\n } else {\n strategy.centerHorizontally();\n }\n if (position && (position.top || position.bottom)) {\n position.top ? strategy.top(position.top) : strategy.bottom(position.bottom);\n } else {\n strategy.centerVertically();\n }\n this._ref.updatePosition();\n return this;\n }\n /**\n * Updates the dialog's width and height.\n * @param width New width of the dialog.\n * @param height New height of the dialog.\n */\n updateSize(width = '', height = '') {\n this._ref.updateSize(width, height);\n return this;\n }\n /** Add a CSS class or an array of classes to the overlay pane. */\n addPanelClass(classes) {\n this._ref.addPanelClass(classes);\n return this;\n }\n /** Remove a CSS class or an array of classes from the overlay pane. */\n removePanelClass(classes) {\n this._ref.removePanelClass(classes);\n return this;\n }\n /** Gets the current state of the dialog's lifecycle. */\n getState() {\n return this._state;\n }\n /**\n * Finishes the dialog close by updating the state of the dialog\n * and disposing the overlay.\n */\n _finishDialogClose() {\n this._state = MatDialogState.CLOSED;\n this._ref.close(this._result, {\n focusOrigin: this._closeInteractionType\n });\n this.componentInstance = null;\n }\n}\n/**\n * Closes the dialog with the specified interaction type. This is currently not part of\n * `MatDialogRef` as that would conflict with custom dialog ref mocks provided in tests.\n * More details. See: https://github.com/angular/components/pull/9257#issuecomment-651342226.\n */\n// TODO: Move this back into `MatDialogRef` when we provide an official mock dialog ref.\nfunction _closeDialogVia(ref, interactionType, result) {\n ref._closeInteractionType = interactionType;\n return ref.close(result);\n}\n\n/** Injection token that can be used to access the data that was passed in to a dialog. */\nconst MAT_DIALOG_DATA = /*#__PURE__*/new InjectionToken('MatMdcDialogData');\n/** Injection token that can be used to specify default dialog options. */\nconst MAT_DIALOG_DEFAULT_OPTIONS = /*#__PURE__*/new InjectionToken('mat-mdc-dialog-default-options');\n/** Injection token that determines the scroll handling while the dialog is open. */\nconst MAT_DIALOG_SCROLL_STRATEGY = /*#__PURE__*/new InjectionToken('mat-mdc-dialog-scroll-strategy', {\n providedIn: 'root',\n factory: () => {\n const overlay = inject(Overlay);\n return () => overlay.scrollStrategies.block();\n }\n});\n/**\n * @docs-private\n * @deprecated No longer used. To be removed.\n * @breaking-change 19.0.0\n */\nfunction MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay) {\n return () => overlay.scrollStrategies.block();\n}\n/**\n * @docs-private\n * @deprecated No longer used. To be removed.\n * @breaking-change 19.0.0\n */\nconst MAT_DIALOG_SCROLL_STRATEGY_PROVIDER = {\n provide: MAT_DIALOG_SCROLL_STRATEGY,\n deps: [Overlay],\n useFactory: MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY\n};\n/**\n * Service to open Material Design modal dialogs.\n */\nlet MatDialog = /*#__PURE__*/(() => {\n class MatDialog {\n _overlay = inject(Overlay);\n _defaultOptions = inject(MAT_DIALOG_DEFAULT_OPTIONS, {\n optional: true\n });\n _scrollStrategy = inject(MAT_DIALOG_SCROLL_STRATEGY);\n _parentDialog = inject(MatDialog, {\n optional: true,\n skipSelf: true\n });\n _idGenerator = inject(_IdGenerator);\n _dialog = inject(Dialog);\n _openDialogsAtThisLevel = [];\n _afterAllClosedAtThisLevel = new Subject();\n _afterOpenedAtThisLevel = new Subject();\n dialogConfigClass = MatDialogConfig;\n _dialogRefConstructor;\n _dialogContainerType;\n _dialogDataToken;\n /** Keeps track of the currently-open dialogs. */\n get openDialogs() {\n return this._parentDialog ? this._parentDialog.openDialogs : this._openDialogsAtThisLevel;\n }\n /** Stream that emits when a dialog has been opened. */\n get afterOpened() {\n return this._parentDialog ? this._parentDialog.afterOpened : this._afterOpenedAtThisLevel;\n }\n _getAfterAllClosed() {\n const parent = this._parentDialog;\n return parent ? parent._getAfterAllClosed() : this._afterAllClosedAtThisLevel;\n }\n /**\n * Stream that emits when all open dialog have finished closing.\n * Will emit on subscribe if there are no open dialogs to begin with.\n */\n afterAllClosed = defer(() => this.openDialogs.length ? this._getAfterAllClosed() : this._getAfterAllClosed().pipe(startWith(undefined)));\n constructor() {\n this._dialogRefConstructor = MatDialogRef;\n this._dialogContainerType = MatDialogContainer;\n this._dialogDataToken = MAT_DIALOG_DATA;\n }\n open(componentOrTemplateRef, config) {\n let dialogRef;\n config = {\n ...(this._defaultOptions || new MatDialogConfig()),\n ...config\n };\n config.id = config.id || this._idGenerator.getId('mat-mdc-dialog-');\n config.scrollStrategy = config.scrollStrategy || this._scrollStrategy();\n const cdkRef = this._dialog.open(componentOrTemplateRef, {\n ...config,\n positionStrategy: this._overlay.position().global().centerHorizontally().centerVertically(),\n // Disable closing since we need to sync it up to the animation ourselves.\n disableClose: true,\n // Disable closing on destroy, because this service cleans up its open dialogs as well.\n // We want to do the cleanup here, rather than the CDK service, because the CDK destroys\n // the dialogs immediately whereas we want it to wait for the animations to finish.\n closeOnDestroy: false,\n // Disable closing on detachments so that we can sync up the animation.\n // The Material dialog ref handles this manually.\n closeOnOverlayDetachments: false,\n container: {\n type: this._dialogContainerType,\n providers: () => [\n // Provide our config as the CDK config as well since it has the same interface as the\n // CDK one, but it contains the actual values passed in by the user for things like\n // `disableClose` which we disable for the CDK dialog since we handle it ourselves.\n {\n provide: this.dialogConfigClass,\n useValue: config\n }, {\n provide: DialogConfig,\n useValue: config\n }]\n },\n templateContext: () => ({\n dialogRef\n }),\n providers: (ref, cdkConfig, dialogContainer) => {\n dialogRef = new this._dialogRefConstructor(ref, config, dialogContainer);\n dialogRef.updatePosition(config?.position);\n return [{\n provide: this._dialogContainerType,\n useValue: dialogContainer\n }, {\n provide: this._dialogDataToken,\n useValue: cdkConfig.data\n }, {\n provide: this._dialogRefConstructor,\n useValue: dialogRef\n }];\n }\n });\n // This can't be assigned in the `providers` callback, because\n // the instance hasn't been assigned to the CDK ref yet.\n dialogRef.componentRef = cdkRef.componentRef;\n dialogRef.componentInstance = cdkRef.componentInstance;\n this.openDialogs.push(dialogRef);\n this.afterOpened.next(dialogRef);\n dialogRef.afterClosed().subscribe(() => {\n const index = this.openDialogs.indexOf(dialogRef);\n if (index > -1) {\n this.openDialogs.splice(index, 1);\n if (!this.openDialogs.length) {\n this._getAfterAllClosed().next();\n }\n }\n });\n return dialogRef;\n }\n /**\n * Closes all of the currently-open dialogs.\n */\n closeAll() {\n this._closeDialogs(this.openDialogs);\n }\n /**\n * Finds an open dialog by its id.\n * @param id ID to use when looking up the dialog.\n */\n getDialogById(id) {\n return this.openDialogs.find(dialog => dialog.id === id);\n }\n ngOnDestroy() {\n // Only close the dialogs at this level on destroy\n // since the parent service may still be active.\n this._closeDialogs(this._openDialogsAtThisLevel);\n this._afterAllClosedAtThisLevel.complete();\n this._afterOpenedAtThisLevel.complete();\n }\n _closeDialogs(dialogs) {\n let i = dialogs.length;\n while (i--) {\n dialogs[i].close();\n }\n }\n static ɵfac = function MatDialog_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatDialog)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: MatDialog,\n factory: MatDialog.ɵfac,\n providedIn: 'root'\n });\n }\n return MatDialog;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Button that will close the current dialog.\n */\nlet MatDialogClose = /*#__PURE__*/(() => {\n class MatDialogClose {\n dialogRef = inject(MatDialogRef, {\n optional: true\n });\n _elementRef = inject(ElementRef);\n _dialog = inject(MatDialog);\n /** Screen-reader label for the button. */\n ariaLabel;\n /** Default to \"button\" to prevents accidental form submits. */\n type = 'button';\n /** Dialog close input. */\n dialogResult;\n _matDialogClose;\n constructor() {}\n ngOnInit() {\n if (!this.dialogRef) {\n // When this directive is included in a dialog via TemplateRef (rather than being\n // in a Component), the DialogRef isn't available via injection because embedded\n // views cannot be given a custom injector. Instead, we look up the DialogRef by\n // ID. This must occur in `onInit`, as the ID binding for the dialog container won't\n // be resolved at constructor time.\n this.dialogRef = getClosestDialog(this._elementRef, this._dialog.openDialogs);\n }\n }\n ngOnChanges(changes) {\n const proxiedChange = changes['_matDialogClose'] || changes['_matDialogCloseResult'];\n if (proxiedChange) {\n this.dialogResult = proxiedChange.currentValue;\n }\n }\n _onButtonClick(event) {\n // Determinate the focus origin using the click event, because using the FocusMonitor will\n // result in incorrect origins. Most of the time, close buttons will be auto focused in the\n // dialog, and therefore clicking the button won't result in a focus change. This means that\n // the FocusMonitor won't detect any origin change, and will always output `program`.\n _closeDialogVia(this.dialogRef, event.screenX === 0 && event.screenY === 0 ? 'keyboard' : 'mouse', this.dialogResult);\n }\n static ɵfac = function MatDialogClose_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatDialogClose)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatDialogClose,\n selectors: [[\"\", \"mat-dialog-close\", \"\"], [\"\", \"matDialogClose\", \"\"]],\n hostVars: 2,\n hostBindings: function MatDialogClose_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"click\", function MatDialogClose_click_HostBindingHandler($event) {\n return ctx._onButtonClick($event);\n });\n }\n if (rf & 2) {\n i0.ɵɵattribute(\"aria-label\", ctx.ariaLabel || null)(\"type\", ctx.type);\n }\n },\n inputs: {\n ariaLabel: [0, \"aria-label\", \"ariaLabel\"],\n type: \"type\",\n dialogResult: [0, \"mat-dialog-close\", \"dialogResult\"],\n _matDialogClose: [0, \"matDialogClose\", \"_matDialogClose\"]\n },\n exportAs: [\"matDialogClose\"],\n features: [i0.ɵɵNgOnChangesFeature]\n });\n }\n return MatDialogClose;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MatDialogLayoutSection = /*#__PURE__*/(() => {\n class MatDialogLayoutSection {\n _dialogRef = inject(MatDialogRef, {\n optional: true\n });\n _elementRef = inject(ElementRef);\n _dialog = inject(MatDialog);\n constructor() {}\n ngOnInit() {\n if (!this._dialogRef) {\n this._dialogRef = getClosestDialog(this._elementRef, this._dialog.openDialogs);\n }\n if (this._dialogRef) {\n Promise.resolve().then(() => {\n this._onAdd();\n });\n }\n }\n ngOnDestroy() {\n // Note: we null check because there are some internal\n // tests that are mocking out `MatDialogRef` incorrectly.\n const instance = this._dialogRef?._containerInstance;\n if (instance) {\n Promise.resolve().then(() => {\n this._onRemove();\n });\n }\n }\n static ɵfac = function MatDialogLayoutSection_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatDialogLayoutSection)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatDialogLayoutSection\n });\n }\n return MatDialogLayoutSection;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Title of a dialog element. Stays fixed to the top of the dialog when scrolling.\n */\nlet MatDialogTitle = /*#__PURE__*/(() => {\n class MatDialogTitle extends MatDialogLayoutSection {\n id = inject(_IdGenerator).getId('mat-mdc-dialog-title-');\n _onAdd() {\n // Note: we null check the queue, because there are some internal\n // tests that are mocking out `MatDialogRef` incorrectly.\n this._dialogRef._containerInstance?._addAriaLabelledBy?.(this.id);\n }\n _onRemove() {\n this._dialogRef?._containerInstance?._removeAriaLabelledBy?.(this.id);\n }\n static ɵfac = /* @__PURE__ */(() => {\n let ɵMatDialogTitle_BaseFactory;\n return function MatDialogTitle_Factory(__ngFactoryType__) {\n return (ɵMatDialogTitle_BaseFactory || (ɵMatDialogTitle_BaseFactory = i0.ɵɵgetInheritedFactory(MatDialogTitle)))(__ngFactoryType__ || MatDialogTitle);\n };\n })();\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatDialogTitle,\n selectors: [[\"\", \"mat-dialog-title\", \"\"], [\"\", \"matDialogTitle\", \"\"]],\n hostAttrs: [1, \"mat-mdc-dialog-title\", \"mdc-dialog__title\"],\n hostVars: 1,\n hostBindings: function MatDialogTitle_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵhostProperty(\"id\", ctx.id);\n }\n },\n inputs: {\n id: \"id\"\n },\n exportAs: [\"matDialogTitle\"],\n features: [i0.ɵɵInheritDefinitionFeature]\n });\n }\n return MatDialogTitle;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Scrollable content container of a dialog.\n */\nlet MatDialogContent = /*#__PURE__*/(() => {\n class MatDialogContent {\n static ɵfac = function MatDialogContent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatDialogContent)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatDialogContent,\n selectors: [[\"\", \"mat-dialog-content\", \"\"], [\"mat-dialog-content\"], [\"\", \"matDialogContent\", \"\"]],\n hostAttrs: [1, \"mat-mdc-dialog-content\", \"mdc-dialog__content\"],\n features: [i0.ɵɵHostDirectivesFeature([i1.CdkScrollable])]\n });\n }\n return MatDialogContent;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Container for the bottom action buttons in a dialog.\n * Stays fixed to the bottom when scrolling.\n */\nlet MatDialogActions = /*#__PURE__*/(() => {\n class MatDialogActions extends MatDialogLayoutSection {\n /**\n * Horizontal alignment of action buttons.\n */\n align;\n _onAdd() {\n this._dialogRef._containerInstance?._updateActionSectionCount?.(1);\n }\n _onRemove() {\n this._dialogRef._containerInstance?._updateActionSectionCount?.(-1);\n }\n static ɵfac = /* @__PURE__ */(() => {\n let ɵMatDialogActions_BaseFactory;\n return function MatDialogActions_Factory(__ngFactoryType__) {\n return (ɵMatDialogActions_BaseFactory || (ɵMatDialogActions_BaseFactory = i0.ɵɵgetInheritedFactory(MatDialogActions)))(__ngFactoryType__ || MatDialogActions);\n };\n })();\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatDialogActions,\n selectors: [[\"\", \"mat-dialog-actions\", \"\"], [\"mat-dialog-actions\"], [\"\", \"matDialogActions\", \"\"]],\n hostAttrs: [1, \"mat-mdc-dialog-actions\", \"mdc-dialog__actions\"],\n hostVars: 6,\n hostBindings: function MatDialogActions_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵclassProp(\"mat-mdc-dialog-actions-align-start\", ctx.align === \"start\")(\"mat-mdc-dialog-actions-align-center\", ctx.align === \"center\")(\"mat-mdc-dialog-actions-align-end\", ctx.align === \"end\");\n }\n },\n inputs: {\n align: \"align\"\n },\n features: [i0.ɵɵInheritDefinitionFeature]\n });\n }\n return MatDialogActions;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Finds the closest MatDialogRef to an element by looking at the DOM.\n * @param element Element relative to which to look for a dialog.\n * @param openDialogs References to the currently-open dialogs.\n */\nfunction getClosestDialog(element, openDialogs) {\n let parent = element.nativeElement.parentElement;\n while (parent && !parent.classList.contains('mat-mdc-dialog-container')) {\n parent = parent.parentElement;\n }\n return parent ? openDialogs.find(dialog => dialog.id === parent.id) : null;\n}\nconst DIRECTIVES = [MatDialogContainer, MatDialogClose, MatDialogTitle, MatDialogActions, MatDialogContent];\nlet MatDialogModule = /*#__PURE__*/(() => {\n class MatDialogModule {\n static ɵfac = function MatDialogModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatDialogModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatDialogModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [MatDialog],\n imports: [DialogModule, OverlayModule, PortalModule, MatCommonModule, MatCommonModule]\n });\n }\n return MatDialogModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { MatDialogActions as M, _closeDialogVia as _, MatDialogClose as a, MatDialogTitle as b, MatDialogContent as c, MatDialogContainer as d, MAT_DIALOG_DATA as e, MAT_DIALOG_DEFAULT_OPTIONS as f, MAT_DIALOG_SCROLL_STRATEGY as g, MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY as h, MAT_DIALOG_SCROLL_STRATEGY_PROVIDER as i, MatDialog as j, MatDialogConfig as k, MatDialogState as l, MatDialogRef as m, MatDialogModule as n };\n","import { Injectable } from '@angular/core';\r\nimport { UserInfoService } from '../user/user-info.service';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport * as Rx from 'rxjs';\r\nimport { map } from 'rxjs/operators';\r\n\r\nexport interface ICacheItem {\r\n\turl: string,\r\n\tpersonGuid: string,\r\n\tcache: any\r\n}\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class CacheService {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) { }\r\n\r\n\tprivate cachedItems: ICacheItem[] = [];\r\n\r\n\tget
(anonymous: boolean, url: string): Rx.Observable {\r\n\t\tlet found = this.cachedItems.find(x => x.url === url);\r\n\t\t// return cache only if the login is same person\r\n\t\tif (found != undefined) {\r\n\t\t\tif (anonymous && found.personGuid === \"\") {\r\n\t\t\t\treturn Rx.of(JSON.parse(JSON.stringify(found.cache)) as T);\r\n\t\t\t}\r\n\t\t\telse if (!anonymous && found.personGuid === this.userInfo.getProfile().PersonGuid) {\r\n\t\t\t\treturn Rx.of(JSON.parse(JSON.stringify(found.cache)) as T);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tif (anonymous) {\r\n\t\t\treturn this.http.get(url)\r\n\t\t\t\t.pipe(map(\r\n\t\t\t\t\t(item: T) => {\r\n\t\t\t\t\t\tthis.cachedItems.push({\r\n\t\t\t\t\t\t\turl: url,\r\n\t\t\t\t\t\t\tpersonGuid: \"\",\r\n\t\t\t\t\t\t\tcache: item\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t\treturn JSON.parse(JSON.stringify(item));\r\n\t\t\t\t\t}\r\n\t\t\t\t));\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\turl,\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t).pipe(map(\r\n\t\t\t\t(item: T) => {\r\n\t\t\t\t\tthis.cachedItems.push({\r\n\t\t\t\t\t\turl: url,\r\n\t\t\t\t\t\tpersonGuid: this.userInfo.getProfile().PersonGuid,\r\n\t\t\t\t\t\tcache: item\r\n\t\t\t\t\t});\r\n\t\t\t\t\treturn JSON.parse(JSON.stringify(item));\r\n\t\t\t\t}\r\n\t\t\t));\r\n\t\t}\r\n\t}\r\n\r\n\tremove(url: string): void {\r\n\t\tthis.cachedItems = this.cachedItems.filter(x => x.url !== url);\r\n\t}\r\n\r\n\tclear(): void {\r\n\t\tthis.cachedItems = [];\r\n\t}\r\n}\r\n","import { Injectable } from '@angular/core';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport * as Rx from 'rxjs';\r\nimport { tap, map} from 'rxjs/operators';\r\nimport { AppSettingService } from '../app.service';\r\nimport { CacheService } from '../utility/cache.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\n\r\n//this should be 1:1 with MAP API's .net SaveMapType\r\ninterface ISaveMapType {\r\n\t\tCareerVersion: string,\r\n\t\tCertificationVersion: string,\r\n\t\tCTEVersion: string,\r\n\t\tMilitaryVersion: string,\r\n\t\tCollegeVersion: string,\r\n\t\tK12Version: string,\r\n\t\tPreKVersion: string\r\n}\r\n\r\nexport interface ISaveUserMapOption {\r\n\tMapOptionId: string,\r\n\tTerritories: any\r\n}\r\n\r\nexport interface ITerritoryIPED {\r\n\tCatalogueLabel: string,\r\n\tIpedsUnitId: string,\r\n\tIsUsed: boolean,\r\n\tName: string,\r\n\tNonIpedsInstitutionId: string,\r\n\tSelectedCollegeBaseName: string,\r\n\tVersion: string,\r\n\tXLoc: number,\r\n\tYLoc: number\r\n}\r\n\r\nexport interface IMapOptionCollege {\r\n\tCollegeId: string,\r\n\tName: string\r\n}\r\n\r\nexport interface IMapOptionIPEDTrritories {\r\n\tCTEVersion: ITerritoryIPED,\r\n\tCTEVersions: ITerritoryIPED[],\r\n\tCareerVersion: ITerritoryIPED,\r\n\tCareerVersions: ITerritoryIPED[]\r\n\tCertificationVersion: ITerritoryIPED,\r\n\tCertificationVersions: ITerritoryIPED[],\r\n\tCollegeVersion: ITerritoryIPED,\r\n\tCollegeVersions: ITerritoryIPED[],\r\n\tK12Version: ITerritoryIPED,\r\n\tK12Versions: ITerritoryIPED[],\r\n\tMilitaryVersion: ITerritoryIPED,\r\n\tMilitaryVersions: ITerritoryIPED[],\r\n\tPreKVersion: ITerritoryIPED,\r\n\tPreKVersions: ITerritoryIPED[]\r\n}\r\n\r\nexport interface IMapOptionIPED {\r\n\tMapOptionId: string,\r\n\tMapOptionName: string,\r\n\tMapShapeId: string,\r\n\tPolygonTotal: number,\r\n\tIsDefault: boolean,\r\n\tHide: boolean,\r\n\tInProcess: boolean,\r\n\tTerritories: IMapOptionIPEDTrritories,\r\n\tCollegeDistinctVersions: IMapOptionCollege[]\r\n}\r\n\r\nexport interface IMapOptionTerritory {\r\n\tTerritoryId: number,\r\n\tName: string, //catalog name\r\n\tVersion: string\r\n\tIsAvailable: boolean,\r\n\tIsDefault: boolean,\r\n\tIsUsed: boolean\r\n\tPolygonPosition: number,\r\n\tMapName: string,\r\n\tK8Name: string,\r\n\tHSName: string,\r\n}\r\n\r\nexport interface IMapOption {\r\n\tMapOptionId: string,\r\n\tMapOptionName: string,\r\n\tMapShapeId: string,\r\n\tUnlockPolygon: boolean,\r\n\tPolygonTotal: number,\r\n\tIsDefault: boolean,\r\n\tIsUsed: boolean,\r\n\tHide: boolean,\r\n\tInProcess: boolean,\r\n\tCareerVersions: IMapOptionTerritory[],\r\n\tCertificationVersions: IMapOptionTerritory[],\r\n\tCTEVersions: IMapOptionTerritory[],\r\n\tMilitaryVersions: IMapOptionTerritory[],\t\r\n\tCollegeVersions: IMapOptionTerritory[],\r\n\tK12Versions: IMapOptionTerritory[],\r\n\tPreKVersions: IMapOptionTerritory[]\r\n}\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class MapAPIService {\r\n\tconstructor(\r\n\t\tprivate cacheSrv: CacheService,\r\n\t\tprivate http: HttpClient,\r\n\t\tprivate userInfo: UserInfoService\t\t\r\n\t) { }\r\n\r\n\t//used for alternative map demo\r\n\talternativeMapDemoId: any = \"isAlternativeMapDemoId\";\r\n\r\n\t//private url = AppSettingService.appConfig.informAPIUrl + \"MAP\";\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"Map\"; //API2\r\n\r\n\tprivate getBlankSaveMapType(): ISaveMapType {\r\n\t\treturn {\r\n\t\t\tCareerVersion: null,\r\n\t\t\tCertificationVersion: null,\r\n\t\t\tCTEVersion: null,\r\n\t\t\tMilitaryVersion: null,\r\n\t\t\tCollegeVersion: null,\r\n\t\t\tK12Version: null,\r\n\t\t\tPreKVersion: null\r\n\t\t}\r\n\t}\r\n\t\r\n\tcommaDelimitedUserMapVersions: string = \"\";\r\n\t\r\n\tgetFilledInSaveMapType(userMapResponseObject: any): ISaveMapType {\r\n\t\tlet saveMapTypeObj: any = this.getBlankSaveMapType();\r\n\t\tlet saveMapTypeKeys: any = Object.keys(saveMapTypeObj);\r\n\r\n\t\tfor (var i: any = 0; i < saveMapTypeKeys.length; i++) {\r\n\t\t\t//this works because userMapResponse object has same keys as saveMapType\r\n\t\t\t//so we \"fill in\" the value for each saveMapType key with the corresponding userMapResponse object key's value\r\n\t\t\tsaveMapTypeObj[saveMapTypeKeys[i]] = userMapResponseObject[saveMapTypeKeys[i]]['Version'];\r\n\t\t}\r\n\r\n\t\treturn saveMapTypeObj;\r\n\t}\r\n\t\r\n\tgetUserMapSavePostData(getUserMapResponse: any): ISaveUserMapOption {\r\n\t\tlet postData: any = {\r\n\t\t\tMapOptionId: null,\r\n\t\t\tTerritories: {\r\n\t\t\t}\r\n\t\t};\r\n\t\tpostData.MapOptionId = getUserMapResponse.MapOptionId;\r\n\t\tif (getUserMapResponse.PreKVersion) { postData.Territories.PreKVersion = getUserMapResponse.PreKVersion.Version; }\r\n\t\tif (getUserMapResponse.K12Version) { postData.Territories.K12Version = getUserMapResponse.K12Version.Version; }\r\n\t\tif (getUserMapResponse.CollegeVersion) { postData.Territories.CollegeVersion = getUserMapResponse.CollegeVersion.Version; }\r\n\t\tif (getUserMapResponse.CareerVersion) { postData.Territories.CareerVersion = getUserMapResponse.CareerVersion.Version; }\r\n\t\tif (getUserMapResponse.MilitaryVersion) { postData.Territories.MilitaryVersion = getUserMapResponse.MilitaryVersion.Version; }\r\n\t\tif (getUserMapResponse.CTEVersion) { postData.Territories.CTEVersion = getUserMapResponse.CTEVersion.Version; }\r\n\t\tif (getUserMapResponse.CertificationVersion) { postData.Territories.CertificationVersion = getUserMapResponse.CertificationVersion.Version; }\r\n\t\treturn postData;\r\n\t}\r\n\r\n\tviewMap(minX: number, maxX: number, minY: number, maxY: number, zoom: number, versions: string, selectedObjectId: string, mapOptionId: string = 'default', clipMinX: number = null, clipMinY: number = null, clipMaxX: number = null, clipMaxY: number = null): Rx.Observable {\t\t\r\n\t\tif (clipMinX == null || clipMinY == null || clipMaxX == null || clipMaxY == null) {\r\n\t\t\tclipMinX = -1;\r\n\t\t\tclipMinY = -1;\r\n\t\t\tclipMaxX = -1;\r\n\t\t\tclipMaxY = -1;\r\n\t\t}\r\n\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Option/View/\" + mapOptionId + \"?minX=\" + minX.toFixed(4) + \"&maxX=\" + maxX.toFixed(4) + \"&minY=\" + minY.toFixed(4) + \"&maxY=\" + maxY.toFixed(4) + \"&zoom=\" + zoom.toFixed(4) + \"&mvs=\" + encodeURIComponent(versions) + \"&so=\" + encodeURIComponent(selectedObjectId) + \"&clipMinX=\" + encodeURIComponent(clipMinX) + \"&clipMinY=\" + encodeURIComponent(clipMinY) + \"&clipMaxX=\" + encodeURIComponent(clipMaxX) + \"&clipMaxY=\" + encodeURIComponent(clipMaxY),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetMapObject(objectId: string, mapOptionId: string = 'default'): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Object/\" + encodeURIComponent(objectId) + \"?mapOptionId=\" + mapOptionId,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetMapObjectAncestory(objectId: string): Rx.Observable {\r\n\t\tlet l = this.url + \"/Ancestory/\" + encodeURIComponent(objectId);\r\n\t\treturn this.cacheSrv.get(true, l);\r\n\t}\r\n\t\r\n\tgetSolrMapSearch(mapOptionId: string = 'default', keyword: string, limit: number, offset: number, searchOnlyMapVersion: string, myCareerfilterObject: any): Rx.Observable {\r\n\t\tconst myCareerfilterObjectStringified = Object.keys(myCareerfilterObject).map((key: any) => key + '=' + myCareerfilterObject[key+'']).join('&');\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/MapSearch/' + mapOptionId + '?keyword=' + encodeURIComponent(keyword) + '&limit=' + limit + '&offset=' + offset + '&searchOnlyTerritory=' + searchOnlyMapVersion + '&' + myCareerfilterObjectStringified,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\t\t\r\n\t}\r\n\r\n\tgetMapObjectStatus(id: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Search/Status/\" + id,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetClientMap(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Client\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetDemoPermission(userGuid: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/DemoPermission/\" + encodeURIComponent(userGuid),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t)\r\n\t}\r\n\r\n\r\n\tprivate userMapCache:any = null;\r\n\r\n\tclearMapCache(): void {\r\n\t\tthis.userMapCache = null;\r\n\t}\r\n\r\n\tgetUserMap(reload: boolean = false, mapOptionId: string = 'default'): Rx.Observable {\t\t\r\n\t\t/*\r\n\t\treload = reload == null ? false : reload;\r\n\t\t\r\n\t\tif (reload) {\r\n\t\t\tthis.clearMapCache();\r\n\t\t}\r\n\t\t*/\r\n\t\treload = true; //need to make cache work with get all map versions (when mapOptionId is null)\r\n\t\tif (!reload && this.userMapCache != null) {\r\n\t\t\treturn Rx.of(this.userMapCache);\r\n\t\t}\r\n\t\telse {\r\n\t\t\t//null value for _default returns available map options: \r\n\t\t\t//'default' returns default map for user, \r\n\t\t\t//other values return maps for given value.\r\n\t\t\tlet restOfUrl = \"/Option/User/\" + mapOptionId;\r\n\t\t\tif (mapOptionId === null) {\r\n\t\t\t\trestOfUrl = \"/Option/User\";\r\n\t\t\t}\r\n\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + restOfUrl,\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t).pipe(\r\n\t\t\t\ttap(\r\n\t\t\t\t\tresponse => {\r\n\t\t\t\t\t\tthis.userMapCache = response;\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\t\r\n\tconvertToList(getUserMapResponse: any): string {\r\n\t\tlet vls: string[] = [];\r\n\t\tObject.keys(getUserMapResponse).forEach((key) => {\r\n\t\t\t// collect the data in Version not in Versions\r\n\t\t\tif (key.split(\"\").reverse().join(\"\").indexOf(\"s\") > 0) {\r\n\t\t\t\tif (getUserMapResponse[key]) {\r\n\t\t\t\t\tvls.push(getUserMapResponse[key][\"Version\"]);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t\t// sort and join the version to a list by territory id , such 1-1,2,1,3-1...\r\n\t\tlet retStr = vls.sort().join(\",\");\r\n\r\n\t\t//remove trailing comma if exist\r\n\t\tif (retStr.length > 0 && retStr[retStr.length - 1] === ',') {\r\n\t\t\tretStr = retStr.slice(0, retStr.length - 1)\r\n\t\t}\r\n\r\n\t\treturn retStr;\r\n\t};\r\n\t \r\n\tgetUserMapVersionList(reload: boolean = false, mapOptionId: string='default'): Rx.Observable { // reutn selected map versions in comma list\r\n\t\treload = reload == null ? false : reload;\r\n\t\tif (reload) {\r\n\t\t\tthis.clearMapCache();\r\n\t\t}\r\n\r\n\t\tif (!reload && this.userMapCache != null) {\r\n\t\t\treturn Rx.of(this.convertToList(this.userMapCache));\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + '/Option/User/'+mapOptionId,\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t).pipe(\r\n\t\t\t\tmap(\r\n\t\t\t\t\tresponse => {\r\n\t\t\t\t\t\tthis.userMapCache = response;\r\n\t\t\t\t\t\treturn this.convertToList(response);\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\tsaveUserMap(mapSelection: ISaveUserMapOption): Rx.Observable { \r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Option/User\",\r\n\t\t\tmapSelection,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t).pipe(\r\n\t\t\ttap(\r\n\t\t\t\tresponse => {\r\n\t\t\t\t\tthis.clearMapCache();\r\n\t\t\t\t}\r\n\t\t\t)\r\n\t\t);\r\n\t}\r\n\t\r\n\tgetCorrespondingMapObject(fromOccupationId: string): Rx.Observable { \r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/GetCorrespondingMapObject/\"+ fromOccupationId,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetUserCollegesByCip(cip:string, mappObjectId: string) : Rx.Observable { \r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/GetUserCollegesByCip/\" + encodeURIComponent(cip) + \"/\" + encodeURIComponent(mappObjectId),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tGetUserCollegesByOccupation(mapObjectId:string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/GetUserCollegesByOccupation/\" + encodeURIComponent(mapObjectId),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tsetCommaDelimitedUserMapVersions() {\r\n\t\tthis.getUserMapVersionList().subscribe(\r\n\t\t\t(commaDelimitedUserMapVersions) => {\r\n\t\t\t\tthis.commaDelimitedUserMapVersions = commaDelimitedUserMapVersions;\r\n\t\t\t});\r\n\t}\r\n\r\n\t//#region map option\r\n\tgetUserMapOptions(limit: number, offset: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Option/User?limit=\" + limit.toString() + \"&offset=\" + offset.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\t// when mapOptionId is not provided, get the default\r\n\tgetUserMapOption(reload: boolean = false, mapOptionId: string = null): Rx.Observable {\r\n\t\treload = reload == null ? false : reload;\r\n\t\tif (reload) {\r\n\t\t\tthis.clearMapCache();\r\n\t\t}\r\n\r\n\t\tif (!reload && this.userMapCache != null) {\r\n\t\t\treturn Rx.of(this.userMapCache);\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/Option/User/\" + encodeURIComponent(mapOptionId==null?\"default\":mapOptionId),\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t).pipe(\r\n\t\t\t\tmap(\r\n\t\t\t\t\tresponse => {\r\n\t\t\t\t\t\tthis.userMapCache = response.Territories;\r\n\t\t\t\t\t\treturn response.Territories;\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\tgetZoneMapOptions(limit: number, offset: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Option/Zone?limit=\" + limit.toString() + \"&offset=\" + offset.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetZoneMapOption(mapOptionId: string, forNew: boolean, mapShapeId: number): Rx.Observable {\r\n\t\tif (forNew) {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/Option/Zone/New/\" + encodeURIComponent(mapShapeId),\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t);\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/Option/Zone/\" + encodeURIComponent(mapOptionId == null ? \"default\" : mapOptionId),\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\r\n\ttoggleMapOptionHidden(mapOptionId: string, hide: boolean): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Option/Zone/\" + encodeURIComponent(mapOptionId) + \"/Hide/\" + hide.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\ttoggleMapOptionDefault(mapOptionId: string, isDefault: boolean): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Option/Zone/\" + encodeURIComponent(mapOptionId) + \"/Default/\" + isDefault.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tsaveZoneMapOption(option: IMapOption): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Option/Zone\",\r\n\t\t\toption,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tdeleteZoneMapOption(mapOptionId: string): Rx.Observable {\r\n\t\treturn this.http.delete(\r\n\t\t\tthis.url + \"/Option/Zone/\" + encodeURIComponent(mapOptionId),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetVersion(version: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Version/\" + encodeURIComponent(version),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tupdateVersion(version: string, name: string, hs: string, k8: string): Rx.Observable {\r\n\t\treturn this.http.put(\r\n\t\t\tthis.url + \"/Version/\" + version + \"?mapName=\" + encodeURIComponent(name) + \"&hsName=\" + encodeURIComponent(hs) + \"&k8Name=\" + encodeURIComponent(k8),\r\n\t\t\tnull,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\t//#endregion map option\r\n\tgetBlankMapTerritoryVersionObj(): {\r\n\t\tCTEVersion: null | string;\r\n\t\tCareerVersion: null | string;\r\n\t\tCertificationVersion: null | string;\r\n\t\tCollegeVersion: null | string;\r\n\t\tK12Version: null | string;\r\n\t\tMilitaryVersion: null | string;\r\n\t\tPreKVersion: null | string;\r\n\t} {\r\n\t\treturn {\r\n\t\t\tCTEVersion: null,\r\n\t\t\tCareerVersion: null,\r\n\t\t\tCertificationVersion: null,\r\n\t\t\tCollegeVersion: null,\r\n\t\t\tK12Version: null,\r\n\t\t\tMilitaryVersion: null,\r\n\t\t\tPreKVersion: null\r\n\t\t};\r\n\t}\r\n\r\n\tgetMapTerritoryVersionObjFromGetUserMapResponse(getUserMapResponse: any): any {\r\n\t\tlet returnObj = this.getBlankMapTerritoryVersionObj();\r\n\r\n\t\treturnObj.CTEVersion = (getUserMapResponse.CTEVersion) ? getUserMapResponse.CTEVersion.Version : null;\r\n\t\treturnObj.CareerVersion = (getUserMapResponse.CareerVersion) ? getUserMapResponse.CareerVersion.Version : null;\r\n\t\treturnObj.CertificationVersion = (getUserMapResponse.CertificationVersion) ? getUserMapResponse.CertificationVersion.Version : null;\r\n\t\treturnObj.CollegeVersion = (getUserMapResponse.CollegeVersion) ? getUserMapResponse.CollegeVersion.Version : null;\r\n\t\treturnObj.K12Version = (getUserMapResponse.K12Version) ? getUserMapResponse.K12Version.Version : null;\r\n\t\treturnObj.MilitaryVersion = (getUserMapResponse.MilitaryVersion) ? getUserMapResponse.MilitaryVersion.Version : null;\r\n\t\treturnObj.PreKVersion = (getUserMapResponse.PreKVersion) ? getUserMapResponse.PreKVersion.Version : null;\r\n\r\n\t\treturn returnObj;\r\n\t}\r\n\r\n\tgetMapSavePostDataFromTerritoryVersionsObj(territoryVersionsObj: any, mapOptionId: string): any {\r\n\t\tvar postObj: any = {\r\n\t\t\tMapOptionId: mapOptionId,\r\n\t\t\tTerritories: {\r\n\t\t\t\tCTEVersion: null,\r\n\t\t\t\tCareerVersion: null,\r\n\t\t\t\tCertificationVersion: null,\r\n\t\t\t\tCollegeVersion: null,\r\n\t\t\t\tK12Version: null,\r\n\t\t\t\tMilitaryVersion: null,\r\n\t\t\t\tPreKVersion: null\r\n\t\t\t}\r\n\t\t};\r\n\r\n\t\tpostObj.Territories.CTEVersion = (territoryVersionsObj.CTEVersion) ? territoryVersionsObj.CTEVersion : null;\r\n\t\tpostObj.Territories.CareerVersion = (territoryVersionsObj.CareerVersion) ? territoryVersionsObj.CareerVersion : null;\r\n\t\tpostObj.Territories.CertificationVersion = (territoryVersionsObj.CertificationVersion) ? territoryVersionsObj.CertificationVersion : null;\r\n\t\tpostObj.Territories.CollegeVersion = (territoryVersionsObj.CollegeVersion) ? territoryVersionsObj.CollegeVersion : null;\r\n\t\tpostObj.Territories.K12Version = (territoryVersionsObj.K12Version) ? territoryVersionsObj.K12Version : null;\r\n\t\tpostObj.Territories.MilitaryVersion = (territoryVersionsObj.MilitaryVersion) ? territoryVersionsObj.MilitaryVersion : null;\r\n\t\tpostObj.Territories.PreKVersion = (territoryVersionsObj.PreKVersion) ? territoryVersionsObj.PreKVersion : null;\r\n\r\n\t\treturn postObj;\r\n\t}\r\n\r\n\tgetMapSavePostDataFromGetUserMapTerritoryVersionsObj(territoryVersionsObj: any, mapOptionId: string): any {\r\n\t\tvar postObj: any = {\r\n\t\t\tMapOptionId: mapOptionId,\r\n\t\t\tTerritories: {\r\n\t\t\t\tCTEVersion: null,\r\n\t\t\t\tCareerVersion: null,\r\n\t\t\t\tCertificationVersion: null,\r\n\t\t\t\tCollegeVersion: null,\r\n\t\t\t\tK12Version: null,\r\n\t\t\t\tMilitaryVersion: null,\r\n\t\t\t\tPreKVersion: null\r\n\t\t\t}\r\n\t\t};\r\n\r\n\t\tpostObj.Territories.CTEVersion = (territoryVersionsObj.CTEVersion) ? territoryVersionsObj.CTEVersion.Version : null;\r\n\t\tpostObj.Territories.CareerVersion = (territoryVersionsObj.CareerVersion) ? territoryVersionsObj.CareerVersion.Version : null;\r\n\t\tpostObj.Territories.CertificationVersion = (territoryVersionsObj.CertificationVersion) ? territoryVersionsObj.CertificationVersion.Version : null;\r\n\t\tpostObj.Territories.CollegeVersion = (territoryVersionsObj.CollegeVersion) ? territoryVersionsObj.CollegeVersion.Version : null;\r\n\t\tpostObj.Territories.K12Version = (territoryVersionsObj.K12Version) ? territoryVersionsObj.K12Version.Version : null;\r\n\t\tpostObj.Territories.MilitaryVersion = (territoryVersionsObj.MilitaryVersion) ? territoryVersionsObj.MilitaryVersion.Version : null;\r\n\t\tpostObj.Territories.PreKVersion = (territoryVersionsObj.PreKVersion) ? territoryVersionsObj.PreKVersion.Version : null;\r\n\r\n\t\treturn postObj;\r\n\t}\r\n\r\n\r\n\tgetMapSavePostDataFromGetUserMapResponse(getUserMapResponse: any): any {\r\n\t\tvar postObj: any = {\r\n\t\t\tMapOptionId: getUserMapResponse.MapOptionId,\r\n\t\t\tTerritories: {\r\n\t\t\t\tCTEVersion: null,\r\n\t\t\t\tCareerVersion: null,\r\n\t\t\t\tCertificationVersion: null,\r\n\t\t\t\tCollegeVersion: null,\r\n\t\t\t\tK12Version: null,\r\n\t\t\t\tMilitaryVersion: null,\r\n\t\t\t\tPreKVersion: null\r\n\t\t\t}\r\n\t\t};\r\n\r\n\t\tpostObj.Territories.CTEVersion = (getUserMapResponse.CTEVersion) ? getUserMapResponse.CTEVersion.Version : null;\r\n\t\tpostObj.Territories.CareerVersion = (getUserMapResponse.CareerVersion) ? getUserMapResponse.CareerVersion.Version : null;\r\n\t\tpostObj.Territories.CertificationVersion = (getUserMapResponse.CertificationVersion) ? getUserMapResponse.CertificationVersion.Version : null;\r\n\t\tpostObj.Territories.CollegeVersion = (getUserMapResponse.CollegeVersion) ? getUserMapResponse.CollegeVersion.Version : null;\r\n\t\tpostObj.Territories.K12Version = (getUserMapResponse.K12Version) ? getUserMapResponse.K12Version.Version : null;\r\n\t\tpostObj.Territories.MilitaryVersion = (getUserMapResponse.MilitaryVersion) ? getUserMapResponse.MilitaryVersion.Version : null;\r\n\t\tpostObj.Territories.PreKVersion = (getUserMapResponse.PreKVersion) ? getUserMapResponse.PreKVersion.Version : null;\r\n\r\n\t\treturn postObj;\r\n\t}\r\n\r\n\tngOnInit() {}\r\n}\r\n","import { Injectable } from '@angular/core';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport * as Rx from 'rxjs';\r\nimport { tap, map, switchMap } from 'rxjs/operators';\r\nimport { AppSettingService } from '../app.service';\r\nimport { UserInfoService} from './user-info.service';\r\nimport { MapAPIService } from '../map/map-api.service';\r\n\r\ninterface ISaveUser {\r\n\tRole: string;\r\n\tPersonId?: number;\r\n\tFirstName: string;\r\n\tLastName: string;\r\n\tEmail?: string;\r\n\tBirthDate?: string;\r\n\tUserName?: string;\r\n\tPassword?: string;\r\n\tSelectedSchool: any;\r\n\tSchools: { SchoolId: number, SchoolName: string, City: string }[]\r\n};\r\n\r\nexport class AddTeacher implements ISaveUser {\r\n\tRole = \"Teacher\";\r\n\tconstructor(\r\n\t\tpublic FirstName: string,\r\n\t\tpublic LastName: string,\r\n\t\tpublic Email: string,\r\n\t\tpublic SelectedSchool: any,\r\n\t\tpublic Schools: { SchoolId: number, SchoolName: string, City: string }[]\r\n\t) {\r\n\t\tthis.Role = \"Teacher\";\r\n\t}\r\n\tpublic reset() {\r\n\t\tthis.FirstName = \"\";\r\n\t\tthis.LastName = \"\";\r\n\t\tthis.Email = \"\";\r\n\t\tthis.SelectedSchool = null;\r\n\t\tthis.Schools = null;\r\n\t}\r\n}\r\n\r\nexport class EditTeacher implements ISaveUser {\r\n\tRole = \"Teacher\";\r\n\tconstructor(\r\n\t\tpublic PersonId: number,\r\n\t\tpublic FirstName: string,\r\n\t\tpublic LastName: string,\r\n\t\tpublic Email: string,\r\n\t\tpublic SelectedSchool: any,\r\n\t\tpublic Schools: { SchoolId: number, SchoolName: string, City: string }[]\r\n\t) { }\r\n\r\n\tpublic reset() {\r\n\t\tthis.PersonId = null;\r\n\t\tthis.FirstName = \"\";\r\n\t\tthis.LastName = \"\";\r\n\t\tthis.Email = \"\";\r\n\t\tthis.SelectedSchool = null;\r\n\t\tthis.Schools = null;\r\n\t}\r\n}\r\n\r\nexport class AddStudent implements ISaveUser {\r\n\tRole = \"Student\";\r\n\tconstructor(\r\n\t\tpublic FirstName: string,\r\n\t\tpublic LastName: string,\r\n\t\tpublic BirthDate: string,\r\n\t\tpublic UserName: string,\r\n\t\tpublic Password: string,\r\n\t\tpublic SelectedSchool: any,\r\n\t\tpublic Schools: { SchoolId: number, SchoolName: string, City: string }[]\r\n\t) { }\r\n\r\n\tpublic reset() {\r\n\t\tthis.FirstName = \"\";\r\n\t\tthis.LastName = \"\";\r\n\t\tthis.BirthDate = \"\",\r\n\t\tthis.UserName = \"\",\r\n\t\tthis.Password = \"\",\r\n\t\tthis.SelectedSchool = null;\r\n\t\tthis.Schools = null;\r\n\t}\r\n}\r\n\r\nexport class EditStudent implements ISaveUser {\r\n\tRole = \"Student\";\r\n\tconstructor(\r\n\t\tpublic PersonId: number,\r\n\t\tpublic FirstName: string,\r\n\t\tpublic LastName: string,\r\n\t\tpublic BirthDate: string,\r\n\t\tpublic UserName: string,\r\n\t\tpublic Password: string,\r\n\t\tpublic SelectedSchool: any,\r\n\t\tpublic Schools: { SchoolId: number, SchoolName: string, City: string }[]\r\n\t) { }\r\n\r\n\tpublic reset() {\r\n\t\tthis.PersonId = null;\r\n\t\tthis.FirstName = \"\";\r\n\t\tthis.LastName = \"\";\r\n\t\tthis.BirthDate = \"\",\r\n\t\tthis.UserName = \"\",\r\n\t\tthis.Password = \"\",\r\n\t\tthis.SelectedSchool = null;\r\n\t\tthis.Schools = null;\r\n\t}\r\n}\r\n\r\nexport interface IAnonymousUser {\r\n\tEmail: string,\r\n\tEmailStatus?: boolean,\r\n\tInstitutionCode: string\r\n};\r\n\r\nexport class NewAnonymousUser implements IAnonymousUser {\r\n\tconstructor() { }\r\n\tEmail = \"\";\r\n\tEmailStatus = null as any;\r\n\tInstitutionCode = \"\";\r\n}\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class UserAPIService {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) { }\r\n\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"User\";\r\n\r\n\tadminSearch(role:string, schoolId:number, kw: string, limit: number, offset: number): Rx.Observable {\r\n\t\tkw = kw.trim();\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/Admin?role=' + role + '&schoolId=' + (schoolId==null?'':encodeURIComponent(schoolId)) + '&kw=' + encodeURIComponent(kw) + '&limit=' + limit.toString() + '&offset=' + offset.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tadminGet(personId: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Admin/\" + personId.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tadminSave(user: ISaveUser): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Admin\",\r\n\t\t\tuser,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tregister(reg:any): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Signup\",\r\n\t\t\treg\r\n\t\t);\r\n\t}\r\n\r\n\tglobalRegister(reg: any): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/GlobalSignup\",\r\n\t\t\treg\r\n\t\t);\r\n\t}\r\n\r\n\tupdateGlobalAccountReqiretCount(): Rx.Observable {\r\n\t\treturn this.http.put(\r\n\t\t\tthis.url + \"/GlobalSignup/Require\",\r\n\t\t\tnull,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t)\r\n\t}\r\n\r\n\tgetGlobalAccountReqiretCount(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/GlobalSignup/Require\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t)\r\n\t}\r\n\r\n\tsendEmailVerification(email: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/VerifyEmail/Send?email=\" + encodeURIComponent(email),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tconfirmEmailVerification(email: string, code:string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/VerifyEmail/Confirm?email=\" + encodeURIComponent(email) + \"&code=\" + encodeURIComponent(code),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tcheckUserNameExist(username: string, zoneName: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/CheckUserNameExist?username=\" + encodeURIComponent(username) + \"&zone=\" + encodeURIComponent(zoneName)\r\n\t\t);\r\n\t}\r\n\r\n\tcheckValidationCodeExist(code:string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/CheckValidationCodeExist?code=' + encodeURIComponent(code)\r\n\t\t);\r\n\t}\r\n\r\n\tresetPassword(req:any): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/ResetPassword\",\r\n\t\t\treq\r\n\t\t);\r\n\t}\r\n\r\n\t// Anonymous\r\n\tsaveAnonymousUser(data: IAnonymousUser): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/AnonymousUser\",\r\n\t\t\tdata,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t};\r\n\r\n\tgetAnonymousUser(id: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/AnonymousUser/\" + encodeURIComponent(id),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\ttransferAnonymousUserData (anonymousUserLink: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/AnonymousUser/' + encodeURIComponent(anonymousUserLink) + '/TransferData',\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tcopyAnonymousSessionData(sessionId: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/AnonymousUser/' + encodeURIComponent(sessionId) + '/CopySessionData',\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\t//admin\r\n\tgetUserProfile(userId: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/UserProfile\" + (userId != null && userId.length > 0 ? \"?UserId=\" + userId : \"\"),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n}\r\n\r\n\r\nimport { IClassStudentPicker } from '../class/enrollment.service';\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class ActivityAPIService {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient,\r\n\t\tprivate mapAPI: MapAPIService\r\n\t) { }\r\n\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"Activity\";\r\n\r\n\tuserInstitutionsVisited(userId: string, offset: number, limit: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/Institution?userId=' + encodeURIComponent(userId) + '&offset= ' + offset.toString() + '&limit=' + limit.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetActivityTotal(userId: string, activityType: number, objectType: number, depth: number): Rx.Observable {\r\n\t\tvar link = \"\";\r\n\t\tif (depth == null) {\r\n\t\t\tlink = this.url + '/TotalCount?userId=' + encodeURIComponent(userId) + '&activityType= ' + encodeURIComponent(activityType) + '&objectType=' + encodeURIComponent(objectType);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tlink = this.url + '/TotalCount?userId=' + encodeURIComponent(userId) + '&activityType= ' + encodeURIComponent(activityType) + '&objectType=' + encodeURIComponent(objectType) + '&depth=' + encodeURIComponent(depth);\r\n\t\t}\r\n\t\treturn this.http.get(\r\n\t\t\tlink,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetSummary(filter: IClassStudentPicker): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Summary\",\r\n\t\t\tfilter,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetStats(filter: IClassStudentPicker): Rx.Observable {\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Stats\",\r\n\t\t\tfilter,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tuserOccupationMetrics(userId:string): Rx.Observable {\r\n\t\treturn this.mapAPI.getUserMap().pipe(switchMap(\r\n\t\t\t(response) => {\r\n\t\t\t\treturn this.http.get(\r\n\t\t\t\t\tthis.url + '/Career/Metrics?userGuid=' + encodeURIComponent(userId) + '&careerVersion=' + encodeURIComponent(response.CareerVersion.Version),\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t\t}\r\n\t\t\t\t);\r\n\t\t\t}\r\n\t\t));\r\n\t}\r\n\r\n\tuserOccupationVisited(userId: string, offset:number, limit:number): Rx.Observable {\r\n\t\treturn this.mapAPI.getUserMap().pipe(switchMap(\r\n\t\t\tresponse => {\r\n\t\t\t\treturn this.http.get(\r\n\t\t\t\t\tthis.url + '/Career/Visited?userGuid=' + encodeURIComponent(userId) + '&careerVersion=' + encodeURIComponent(response.CareerVersion.Version) + '&offset=' + offset + '&limit=' + limit,\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t\t}\r\n\t\t\t\t);\r\n\t\t\t}\r\n\t\t));\r\n\t}\r\n\r\n\tlog(objectType: string, activitytype: string, objectId: string, note: string, associatedObjectId: string): Rx.Observable {\r\n\t\tvar data = {\r\n\t\t\t\"ActivityType\": activitytype,\r\n\t\t\t\"AssociatedObjectId\": associatedObjectId,\r\n\t\t\t\"Note\": note,\r\n\t\t\t\"ObjectId\": objectId,\r\n\t\t\t\"ObjectType\": objectType,\r\n\t\t\t\"InstitutionCode\": this.userInfo.getInstitutionCode()\r\n\t\t};\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + '/Log',\r\n\t\t\tdata,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetUserActivityStats(userGuid: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/UserActivityStats/' + encodeURIComponent(userGuid),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n}\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class SessionAPIService {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) { }\r\n\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"Session\";\r\n\r\n\tgetSessionId(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tAppSettingService.appConfig.JourneyAPIUrl + \"Session/SessionId\"\r\n\t\t).pipe(map(\r\n\t\t\tresponse => {\r\n\t\t\t\treturn response.Detail;\r\n\t\t\t}\r\n\t\t));\r\n\t}\r\n\r\n\tsignOn(username: string, password: string, zone: string): Rx.Observable {\r\n\t\tzone = (zone ?? \"\").trim();\r\n\t\tthis.userInfo.clearStorage();\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/SignOn?UserName=\" + encodeURIComponent(username) + \"&Password=\" + encodeURIComponent(password) + \"&zone=\" + encodeURIComponent(zone)\r\n\t\t);\r\n\t}\r\n\r\n\tsignOnAsOther(otherPersonId: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/SignOnAsOther/\" + encodeURIComponent(otherPersonId),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tglobalLogin(username: string, password: string): Rx.Observable {\r\n\t\tthis.userInfo.clearStorage();\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/GlobalSignOn?UserName=\" + encodeURIComponent(username) + \"&Password=\" + encodeURIComponent(password),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tapiKeyLogin(apiKey: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/APIKeySignOn?Key=\" + encodeURIComponent(apiKey)\r\n\t\t);\r\n\t}\r\n\t// get the cookie for anonymous user. We need to delay to let browser has chance to set the cookie\r\n\tanonymous(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + '/Anonymous'\r\n\t\t);\r\n\t}\r\n\r\n\tgetSessionInfo(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tloginReport = {\r\n\t\tlastLogin: (userId: string): Rx.Observable => {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/LoginReport/LastLogin?userGuid=\" + userId,\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t);\r\n\t\t},\r\n\t\tmonth: (userId: string, month: number, year: number): Rx.Observable => {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/LoginReport/Month?userGuid=\" + userId + \"&month=\" + month.toString() + \"&year=\" + year.toString(),\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t);\r\n\t\t},\r\n\t\tday: (userId: string, month: number, year: number): Rx.Observable => {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/LoginReport/Day?userGuid=\" + userId + \"&month=\" + month.toString() + \"&year=\" + year.toString(),\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t);\r\n\t\t},\r\n\t\thour: (userId: string, month: number, day: number, year: number): Rx.Observable => {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/LoginReport/Hour?userGuid=\" + userId + \"&month=\" + month.toString() + \"&year=\" + year.toString() + \"&dayNum=\" + day,\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class WebAPIService {\r\n\tconstructor(\r\n\t\tprivate http: HttpClient,\r\n\t\tprivate userInfo: UserInfoService\r\n\t) { }\r\n\r\n\tprivate url = AppSettingService.appConfig.WebAPIUrl;\r\n\r\n\tsignOn(username: string, password: string, zone: string): Rx.Observable {\r\n\t\tzone = (zone ?? \"\").trim();\r\n\t\tthis.userInfo.clearStorage();\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"Session/SignOn?UserName=\" + encodeURIComponent(username) + \"&Password=\" + encodeURIComponent(password) + \"&zone=\" + encodeURIComponent(zone)\r\n\t\t);\r\n\t}\r\n\r\n\tsignOff(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"Session/SignOff\"\r\n\t\t);\r\n\t}\r\n}\r\n\r\n","import { Injectable } from '@angular/core';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport * as Rx from 'rxjs';\r\nimport { tap, map } from 'rxjs/operators';\r\nimport { AppSettingService } from '../app.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class ZoneAPIService {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) { }\r\n\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"Zone\";\r\n\r\n\tgetUserZone(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/UserZone\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tallowCreateConnection(): Rx.Observable {\r\n\t\treturn this.http.get (\r\n\t\t\tthis.url + \"/AllowCreateConection\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetZone(zoneName: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Name/\" + encodeURIComponent(zoneName)\r\n\t\t);\r\n\t}\r\n\r\n\tsearchZone(zoneName: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Search?kw=\" + encodeURIComponent(zoneName)\r\n\t\t);\r\n\t}\r\n\r\n\tgetStatus(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Status\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetPublicZone(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/PublicZone\"\r\n\t\t);\r\n\t}\r\n}\r\n","import { Injectable } from '@angular/core';\r\nimport { MatDialog } from '@angular/material/dialog';\r\nimport moment from 'moment';\r\nimport * as Rx from 'rxjs';\r\nimport { AppSettingService } from '../app.service';\r\nimport { FeatureNotAvailableDialog, ReadMoreDialog, FeatureNotAvailable2BDialog, ImageCropperDialog, CropperType } from './utility.component';\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class UtilityService {\r\n\tconstructor(\r\n\t\tprivate dialog: MatDialog\r\n\t) { }\r\n\r\n\topenNewFeatureDialog() {\r\n\t\tthis.dialog.open(\r\n\t\t\tFeatureNotAvailableDialog,\r\n\t\t\t{\r\n\t\t\t\tmaxWidth: '850px',\r\n\t\t\t\tdisableClose: false,\r\n\t\t\t\tautoFocus: true,\r\n\t\t\t\tpanelClass: 'jmDialog'\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\topenReadMoreDialog(title: string, desc: string, url: string) {\r\n\t\tthis.dialog.open(\r\n\t\t\tReadMoreDialog,\r\n\t\t\t{\r\n\t\t\t\tmaxWidth: '500px',\r\n\t\t\t\tdisableClose: false,\r\n\t\t\t\tautoFocus: true,\r\n\t\t\t\tpanelClass: 'jmDialog',\r\n\t\t\t\tdata: {\r\n\t\t\t\t\t'title': title.trim(),\r\n\t\t\t\t\t'description': desc.trim(),\r\n\t\t\t\t\t'objectURL': url.trim()\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\topenNewFeatureDialog2B(img: string) {\r\n\t\timg = img ?? \"assets/images/connections-followers-favorites-lg.png\";\r\n\t\tthis.dialog.open(\r\n\t\t\tFeatureNotAvailable2BDialog,\r\n\t\t\t{\r\n\t\t\t\tmaxWidth: '850px',\r\n\t\t\t\twidth:'95%',\r\n\t\t\t\tdisableClose: false,\r\n\t\t\t\tautoFocus: true,\r\n\t\t\t\tpanelClass: 'jmDialog',\r\n\t\t\t\tdata: {\r\n\t\t\t\t\t'img': img\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\topenImageCropper(imgType: CropperType, img: string): Rx.Observable {\r\n\t\tlet maxWidth: string = AppSettingService.widgetMobile() ? \"99%\" : \"850px\";\r\n\t\tlet popup = this.dialog.open(\r\n\t\t\tImageCropperDialog,\r\n\t\t\t{\r\n\t\t\t\tdisableClose: true,\r\n\t\t\t\tmaxWidth: maxWidth,\r\n\t\t\t\tpanelClass: 'jmDialogNoScroll',\r\n\t\t\t\tdata: {\r\n\t\t\t\t\timgType: imgType,\r\n\t\t\t\t\tselectedImage: img\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t);\r\n\t\treturn popup.afterClosed();\r\n\t}\r\n}\r\n\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class ValidateDateService {\r\n\tminMonth = 1;\r\n\tmaxMonth = 12;\r\n\tminDay = 1;\r\n\tmaxDay = 31;\r\n\tminYear = 1900;\r\n\tmaxYear = 1900;\r\n\tprivate dateError = '';\r\n\r\n\tconstructor() {\r\n\t\tthis.maxYear = parseInt(moment().format('YYYY'));\r\n\t}\r\n\r\n\tget DateError(): string {\r\n\t\treturn this.dateError;\r\n\t}\r\n\tset DateError(msg: string) {\r\n\t\tthis.dateError = msg;\r\n\t}\r\n\r\n\tvalidateMonth(month: any): any {\r\n\t\tif (typeof month !== 'undefined' && month.length > 0) {\r\n\t\t\tif (this.validateFormat(this.minMonth, this.maxMonth, month) === false) {\r\n\t\t\t\tthis.DateError = 'Month format is MM (01-12)';\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t\treturn true;\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.DateError = 'Month is empty';\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\r\n\tvalidateDay(day: any): any {\r\n\t\tif (typeof day !== 'undefined' && day.length > 0) {\r\n\t\t\tif (this.validateFormat(this.minDay, this.maxDay, day) === false) {\r\n\t\t\t\tthis.DateError = 'Day format is DD (01-31)';\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t\treturn true;\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.DateError = 'Day is empty';\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\r\n\tvalidateYear(year: any): any {\r\n\t\tif (typeof year !== 'undefined' && year.length > 0) {\r\n\t\t\tif (this.validateFormat(this.minYear, this.maxYear, year) === false) {\r\n\t\t\t\t//console.log('year format');\r\n\t\t\t\tthis.DateError = 'Year format is YYYY (1900-' + this.maxYear + ')';\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t\treturn true;\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.DateError = 'Year is empty';\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\r\n\tvalidateDateString(date: any): any {\r\n\t\treturn moment(date).isValid();\r\n\t}\r\n\r\n\tcreateDateString(month: any, day: any, year: any): any {\r\n\t\treturn moment(year + '-' + month + '-' + day).format('YYYY-MM-DD');\r\n\t}\r\n\r\n\tvalidateDate(month: any, day: any, year: any): any {\r\n\t\tif (this.validateMonth(month) && this.validateDay(day) && this.validateYear(year)) {\r\n\t\t\tvar date = this.createDateString(month, day, year);\r\n\t\t\treturn moment(date).isValid();\r\n\t\t}\r\n\t\treturn false;\r\n\t}\r\n\r\n\tvalidateFormat(min: any, max: any, val: any): any {\r\n\t\tvar tempFormat = '';\r\n\t\tfor (var i = min; i <= max; i++) {\r\n\t\t\ttempFormat = i;\r\n\t\t\tif (i / 10 < 1) {\r\n\t\t\t\ttempFormat = '0' + i.toString();\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\ttempFormat = i.toString();\r\n\t\t\t}\r\n\t\t\tif (tempFormat === val) {\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn false;\r\n\t}\r\n}\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class DOBService {\r\n\tconstructor(private vDate: ValidateDateService) {\r\n\t}\r\n\r\n\tprivate _month: string;\r\n\tprivate _day: string;\r\n\tprivate _year: string;\r\n\tprivate _dob: string = \"\";\r\n\tprivate _age?: number = null;\r\n\tprivate _minAge: number = 13;\r\n\tprivate _dateError: string = \"\";\r\n\r\n\tset Month(v: string) { this._month = v; }\r\n\tget Month(): string { return this._month; }\r\n\r\n\tset Day(day: string) { this._day = day; }\r\n\tget Day(): string { return this._day; }\r\n\r\n\tset Year(year: string) { this._year = year; }\r\n\tget Year(): string { return this._year; }\r\n\r\n\tset Dob(dob: string) { this._dob = dob; };\r\n\tget Dob(): string { return this._dob; }\r\n\r\n\tset Age(age: number) { this._age = age; }\r\n\tget Age(): number { return this._age; };\r\n\r\n\tvalidate(format: string, val: string): any {\r\n\t\tlet res = { 'result': false, 'dateresult': false };\r\n\t\tif (format === 'month') {\r\n\t\t\tif (this.vDate.validateMonth(val) === true) {\r\n\t\t\t\tthis.Month = val;\r\n\t\t\t\tres.result = true;\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.Month = \"\";\r\n\t\t\t}\r\n\t\t}\r\n\t\telse if (format === 'day') {\r\n\t\t\t//console.log(attrs.nextElement);\r\n\t\t\tif (this.vDate.validateDay(val) === true) {\r\n\t\t\t\tthis.Day = val;\r\n\t\t\t\tres.result = true;\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.Day = \"\";\r\n\t\t\t}\r\n\t\t}\r\n\t\telse if (format === 'year') {\r\n\t\t\t//console.log(attrs.nextElement);\r\n\t\t\tif (this.vDate.validateYear(val) === true) {\r\n\t\t\t\tthis.Year = val;\r\n\t\t\t\tres.result = true;\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.Year = \"\";\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t//when all the values are set, validate date\r\n\t\tif (format === 'year' && this._year.length > 0 && this.vDate.validateDate(this._month, this._day, this._year) === true) {\r\n\t\t\tres.dateresult = true;\r\n\t\t\tthis.Dob = this.vDate.createDateString(this._month, this._day, this._year);\r\n\t\t\tthis.Age = moment().diff(this.Dob, 'y', true);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis._dateError = this.vDate.DateError;\r\n\t\t}\r\n\r\n\t\treturn res;\r\n\t}\r\n\r\n\tgetDateError(): any {\r\n\t\treturn this._dateError;\r\n\t}\r\n\r\n\tvalidateDate(month: string, day: string, year: string): any {\r\n\t\t//console.log('validateDate');\r\n\t\tvar res = this.validate('month', month);\r\n\t\tif (res.result === true) {\r\n\t\t\tres = this.validate('day', day);\r\n\t\t\tif (res.result === true) {\r\n\t\t\t\tres = this.validate('year', year);\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn res.dateresult;\r\n\t}\r\n\r\n\tvalidateAge(): boolean {\r\n\t\tif (this._age != null) {\r\n\t\t\tif (this._age >= this._minAge) {\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn null;\r\n\t\t}\r\n\t}\r\n}\r\n","import { Pipe, PipeTransform } from '@angular/core';\r\nimport { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';\r\n\r\n@Pipe({\r\n\tname: 'safe',\r\n\tstandalone: false\r\n})\r\nexport class SafePipe {\r\n\tconstructor(protected _sanitizer: DomSanitizer) {\r\n\t}\r\n\r\n\tpublic transform(value: string, type: string = 'html'): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl {\r\n\t\tswitch (type) {\r\n\t\t\tcase 'html': return this._sanitizer.bypassSecurityTrustHtml(value);\r\n\t\t\tcase 'style': return this._sanitizer.bypassSecurityTrustStyle(value);\r\n\t\t\tcase 'script': return this._sanitizer.bypassSecurityTrustScript(value);\r\n\t\t\tcase 'url': return this._sanitizer.bypassSecurityTrustUrl(value);\r\n\t\t\tcase 'resourceUrl': return this._sanitizer.bypassSecurityTrustResourceUrl(value);\r\n\t\t\tdefault: throw new Error(`Invalid safe type specified: ${type}`);\r\n\t\t}\r\n\t}\r\n}\r\n\r\n/* ex 2/14/24, 09:49 AM */\r\n@Pipe({\r\n\tname: 'formatDateTime',\r\n\tpure: true,\r\n\tstandalone: false\r\n})\r\nexport class FormatDateTimePipe implements PipeTransform {\r\n\ttransform(value: string): any {\r\n\t\treturn this.getDateTime(value);\r\n\t}\r\n\tgetDateTime(date: string): string {\r\n\t\ttry {\r\n\t\t\tvar t = new Date(date);\r\n\t\t\treturn t.toLocaleTimeString([], { year: '2-digit', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit' });\r\n\t\t}\r\n\t\tcatch (ex) {\r\n\t\t\treturn \"\";\r\n\t\t}\r\n\t}\r\n}\r\n\r\n/* ex December 19, 2012 */\r\n@Pipe({\r\n\tname: 'formatDate',\r\n\tpure: true,\r\n\tstandalone: false\r\n})\r\nexport class FormatDatePipe implements PipeTransform {\r\n\ttransform(value: string): any {\r\n\t\treturn this.getDateTime(value);\r\n\t}\r\n\tgetDateTime(date: string): string {\r\n\t\ttry {\r\n\t\t\tvar t = new Date(date);\r\n\t\t\treturn t.toLocaleDateString([], { year: '2-digit', month: 'short', day: 'numeric' });\r\n\t\t}\r\n\t\tcatch (ex) {\r\n\t\t\treturn \"\";\r\n\t\t}\r\n\t}\r\n}\r\n","import { Component, Inject, ElementRef, HostListener, ViewChild } from '@angular/core';\r\nimport { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';\r\nimport { ImageCropperComponent, ImageCroppedEvent } from 'ngx-image-cropper';\r\nimport { DomSanitizer } from '@angular/platform-browser';\r\n\r\n@Component({\r\n\tselector: \"app-feature-not-available-dialog\",\r\n\ttemplateUrl: \"./feature-not-available.dialog.html\",\r\n\tstandalone: false\r\n})\r\nexport class FeatureNotAvailableDialog {\r\n\tclose(e: any): void {\r\n\t\tthis.dialogRef.close();\r\n\t}\r\n\r\n\tconstructor(\r\n\t\tpublic dialogRef: MatDialogRef) {\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: \"app-read-more-dialog\",\r\n\ttemplateUrl: \"./read-more.dialog.html\",\r\n\tstandalone: false\r\n})\r\nexport class ReadMoreDialog {\r\n\ttitle: string;\r\n\tdescription: string;\r\n\tobjectURL: string;\r\n\r\n\tconstructor(\r\n\t\tpublic dialogRef: MatDialogRef,\r\n\t\t@Inject(MAT_DIALOG_DATA) public data: any\r\n\t) {\r\n\t\tthis.title = data?.title ?? \"\";\r\n\t\tthis.description = data?.description ?? \"\";\r\n\t\tthis.objectURL = data?.objectURL ?? \"\";\r\n\t}\r\n\r\n\tclose(e: any): void {\r\n\t\tthis.dialogRef.close();\r\n\t}\r\n\r\n\tgo(url: any) {\r\n\t\twindow.open(url);\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: \"app-feature-not-available-2b-dialog\",\r\n\ttemplateUrl: \"./feature-not-available-2b.dialog.html\",\r\n\tstandalone: false\r\n})\r\nexport class FeatureNotAvailable2BDialog {\r\n\timg: string;\r\n\r\n\tconstructor(\r\n\t\tpublic dialogRef: MatDialogRef,\r\n\t\t@Inject(MAT_DIALOG_DATA) public data: any\r\n\t) {\r\n\t\tthis.img = data.img;\r\n\t\tthis.img = this.img ?? \"assets/images/connections-followers-favorites-lg.png\";\r\n\t}\r\n\r\n\tclose(e: any): void {\r\n\t\tthis.dialogRef.close();\r\n\t}\r\n}\r\n\r\n\r\n//https://www.bennadel.com/blog/3831-hiding-overflow-scrollbars-until-hover-ala-gmail-labels-in-angular-9-1-7.htm\r\n@Component({\r\n\tselector: \"app-scroll-on-hover\",\r\n\thost: {\r\n\t\t\"[class.is-scrollable]\": \"isScrollable\",\r\n\t\t\"(mouseenter)\": \"enable()\",\r\n\t\t\"(mouseleave)\": \"disable()\"\r\n\t},\r\n\tstyles: [\r\n\t\t`\r\n\t\t\t:host {display: block;\toverflow: hidden;}\r\n\t\t\t:host( .is-scrollable ) {overflow: auto; overscroll-behavior: contain;}\r\n\t\t\t.wrapper {width: calc( 100% - 16px );}\r\n\t\t`\r\n\t],\r\n\ttemplate:\r\n\t\t`\r\n\t\t\r\n\t\t\t\r\n\t\t
\r\n\t`,\r\n\tstandalone: false\r\n})\r\nexport class ScrollOnHoverComponent {\r\n\tpublic isScrollable: boolean;\r\n\tpublic wrapperWidth: number | null;\r\n\tprivate elementRef: ElementRef;\r\n\r\n\t// I initialize the scroll-on-mouseenter component.\r\n\tconstructor(elementRef: ElementRef) {\r\n\t\tthis.elementRef = elementRef;\r\n\t\tthis.isScrollable = false;\r\n\t\tthis.wrapperWidth = null;\r\n\t}\r\n\r\n\t// I disable scrolling on the host component.\r\n\tpublic disable(): void {\r\n\t\tthis.isScrollable = false;\r\n\t\tthis.wrapperWidth = null;\r\n\t}\r\n\r\n\t// I enable scrolling on the host component.\r\n\tpublic enable(): void {\r\n\t\tthis.isScrollable = true;\r\n\t\tthis.wrapperWidth = this.elementRef.nativeElement.childNodes[0].clientWidth;\r\n\t}\r\n}\r\n\r\n\r\nexport type CropperType = \"circle\" | \"rectangle\";\r\n@Component({\r\n\tselector: \"app-image-cropper\",\r\n\ttemplateUrl: \"./image-cropper.dialog.html\",\r\n\tstyles: [`\r\n\t\t.crop-option-col {\r\n\t\t\ttext-align: right;\r\n\t\t\tmargin-top: 20px;\r\n\t\t\tmargin-right: 30px;\r\n\t\t\tmargin-left: -30px;\r\n\t\t}\r\n\t\t.crop-option-col img {\r\n\t\t\twidth: 20px;\r\n\t\t\theight: auto;\r\n\t\t\tmargin-top: -5px;\r\n\t\t}\r\n\t\t.crop-option-col img:nth-child(2) {\r\n\t\t\twidth: 16px;\r\n\t\t}\r\n\t`],\r\n\tstandalone: false\r\n})\r\nexport class ImageCropperDialog {\r\n\timgType: CropperType;\r\n\timageChangedEvent: any = null;\r\n\tselectedImage: any = \"\";\r\n\timageWidth: number = 0;\r\n\timageHeight: number = 0;\r\n\tclientWidth: number = 0;\r\n\tclientHeight: number = 0;\r\n\r\n\t@ViewChild(\"imageCropper\") imageCropper: ImageCropperComponent;\r\n\tmodalSize = { width: 600, height: 450 };\r\n\tcanvasSize = { width: 600, height: 300 };\r\n\taspectRatio: number = 1;\r\n\troundCropper: boolean = false;\r\n\tresizeToWidth: number = 0;\r\n\tresizeToHeight: number = 0;\r\n\tcroppedImage: any = null;\r\n\r\n\tconstructor(\r\n\t\tprivate dialogRef: MatDialogRef,\r\n\t\t@Inject(MAT_DIALOG_DATA) private data: any,\r\n\t\tprivate sanitizer: DomSanitizer\r\n\t) {\r\n\t\tthis.imgType = data.imgType;\r\n\t\tthis.selectedImage = data.selectedImage;\r\n\r\n\t\tif (this.imgType === \"circle\") {\r\n\t\t\tthis.modalSize = { width: 600, height: 450 };\r\n\t\t\tthis.canvasSize = { width: 300, height: 300 };\r\n\t\t\tthis.aspectRatio = 1;\r\n\t\t\tthis.roundCropper = true;\r\n\t\t\tthis.resizeToWidth = 230;\r\n\t\t\tthis.resizeToHeight = 230;\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.modalSize = { width: 600, height: 450 };\r\n\t\t\tthis.canvasSize = { width: 520, height: 260 };\r\n\t\t\tthis.aspectRatio = 2;\r\n\t\t\tthis.roundCropper = false;\r\n\t\t\tthis.resizeToWidth = 1200;\r\n\t\t\tthis.resizeToHeight = 600;\r\n\t\t}\r\n\t}\r\n\r\n\tprivate getImageSize(): Promise {\r\n\t\treturn new Promise((resolve, reject) => {\r\n\t\t\tlet image = new Image() as HTMLImageElement;\r\n\t\t\timage.src = this.selectedImage.toString();\r\n\t\t\timage.onload = ($event) => {\r\n\t\t\t\tthis.imageHeight = ($event.currentTarget as HTMLImageElement).height;\r\n\t\t\t\tthis.imageWidth = ($event.currentTarget as HTMLImageElement).width;\r\n\t\t\t\tresolve({\r\n\t\t\t\t\theight: this.imageHeight,\r\n\t\t\t\t\twidth: this.imageWidth\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tprivate setDisplay(): void {\r\n\t\tif (window.innerWidth <= this.modalSize.width) {\r\n\t\t\tthis.modalSize.width = window.innerWidth - 20;\r\n\t\t\tthis.canvasSize.width = this.modalSize.width;\r\n\t\t}\r\n\t\tif (window.innerHeight <= this.modalSize.height) {\r\n\t\t\tthis.modalSize.height = window.innerHeight - 10;\r\n\t\t\tthis.canvasSize.height = this.modalSize.height;\r\n\t\t}\r\n\t}\r\n\r\n\timageCropped(event: ImageCroppedEvent) {\r\n\t\tthis.croppedImage = event.base64;\r\n\t}\r\n\r\n\timageLoaded() {\r\n\t\t// show cropper\r\n\t\tthis.clientHeight = this.imageCropper.sourceImage.nativeElement.clientHeight;\r\n\t\tthis.clientWidth = this.imageCropper.sourceImage.nativeElement.clientWidth;\r\n\t\tif (window.innerHeight + 150 <= this.clientHeight) {\r\n\t\t\tthis.modalSize.height = window.innerHeight - 20;\r\n\t\t\tthis.canvasSize.height = window.innerHeight - 170;\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.modalSize.height = this.clientHeight + 150;\r\n\t\t\tthis.canvasSize.height = this.clientHeight;\r\n\t\t}\r\n\t}\r\n\r\n\tcropperReady() {\r\n\t\t// cropper ready\r\n\t}\r\n\r\n\tloadImageFailed() {\r\n\t\tthis.dialogRef.close(null);\r\n\t}\r\n\r\n\tsave() {\r\n\t\tthis.dialogRef.close(this.croppedImage);\r\n\t}\r\n\r\n\tcancel() {\r\n\t\tthis.dialogRef.close(null);\r\n\t}\r\n\r\n\tisRotating: boolean = false;\r\n\trotate(isClockwise: any) {\r\n\t\tif (!this.selectedImage) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.isRotating = true;\r\n\t\tthis.rotateBase64Image(\r\n\t\t\tthis.selectedImage,\r\n\t\t\tisClockwise,\r\n\t\t\t(result: any) => {\r\n\t\t\t\tthis.selectedImage = result;\r\n\t\t\t\tthis.getImageSize();\r\n\t\t\t\tthis.isRotating = false;\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tprivate rotateBase64Image(base64data: any, isClockwise: any, callback: any): void {\r\n\t\tvar image = new Image();\r\n\t\timage.src = base64data;\r\n\t\timage.onload = function () {\r\n\t\t\tlet canvas = document.createElement('canvas');\r\n\t\t\tcanvas.width = image.height;\r\n\t\t\tcanvas.height = image.width;\r\n\t\t\tlet ctx = canvas.getContext(\"2d\");\r\n\t\t\tlet deg = isClockwise ? Math.PI / 2 : Math.PI / -2;\r\n\t\t\tctx.translate(canvas.width / 2, canvas.height / 2);\r\n\t\t\tctx.rotate(deg);\r\n\t\t\tctx.drawImage(image, -image.width / 2, -image.height / 2);\r\n\t\t\tctx.rotate(-deg);\r\n\t\t\tctx.translate(-canvas.width / 2, -canvas.height / 2);\r\n\t\t\tcallback(canvas.toDataURL());\r\n\t\t};\r\n\t}\r\n\r\n\r\n\t@HostListener('window:resize', ['$event'])\r\n\tonResize(e: any): void {\r\n\t\tthis.setDisplay();\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\tthis.getImageSize();\r\n\t\tthis.setDisplay();\r\n\t}\r\n}\r\n\r\n","\r\n\t
\r\n\t\t
\r\n\t\t
w:{{imageWidth}}, h:{{imageHeight}}, Client=>w:{{clientWidth}},h:{{clientHeight}}\">Crop Image
\r\n\t\t
\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t
\r\n\t
\r\n\t
\r\n\t\t
\r\n\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t
\r\n\t
\r\n\t
\r\n\t\t
\r\n\t\t
\r\n\t\t\t\r\n\t\t
\r\n\t\t
\r\n\t
\r\n
\r\n","\r\n\t
\r\n\t\t\r\n\t
\r\n\t\r\n\t
\r\n\t\t
This feature is on its way!
\r\n\t
\r\n\r\n\t\r\n\t
\r\n\t\t
\r\n\t\t\t
Love Journeys? Then you'll love what is coming next.
\r\n\t\t
\r\n\t\t
\r\n\t\t
\r\n\t\t\t
\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t
\r\n\t
\r\n\r\n\t\r\n\t
\r\n\t\t

\r\n\t
\r\n
\r\n","\r\n\t
\r\n\t\t\r\n\t
\r\n\t
\r\n\t\t
\r\n\t\t
\r\n\t\t
\r\n\t
\r\n
\r\n","\r\n\r\n\t
\r\n\t\t\r\n\t
\r\n\t
\r\n\t\r\n\t
\r\n\t\t
\r\n\t\t\t
![]()
\r\n\t\t
\r\n\r\n\t\t
\r\n\t\t\t
\r\n\t\t\t\t
This feature is on its way!
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t
Love Journeys? Then you'll love what is coming next.
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t
\r\n\t
\r\n\t\r\n\t
\r\n\t\t

\r\n\t
\r\n
\r\n","import { Injectable } from '@angular/core';\r\nimport { ActivatedRoute } from '@angular/router';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport { Observable, of } from 'rxjs';\r\nimport { AppSettingService } from '../app.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class InstitutionAPIService {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) { }\r\n\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"Institution\";\r\n\r\n\tgetInstitution(institutionCode: string): Observable {\r\n\t\tinstitutionCode = (institutionCode ?? \"\").trim();\r\n\t\tif (institutionCode === '') {\r\n\t\t\tthrow 'please provide institution';\r\n\t\t}\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/\" + encodeURIComponent(institutionCode),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tsearch(type: \"SCHOOL\" | \"NCES\" | \"IPEDS\", kw: string, limit: number, offset: number): Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Search/\" + type + \"?keyword=\" + encodeURIComponent(kw) + \"&limit=\" + limit.toString() + \"&offset=\" + offset.toString(),\r\n\t\t);\r\n\t};\r\n\r\n\tsubscribe(institutionCode: string): Observable {\r\n\t\tinstitutionCode = (institutionCode??\"\").trim();\r\n\t\tif (institutionCode === '') {\r\n\t\t\tthrow 'please provide institution';\r\n\t\t}\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/\" + institutionCode + \"/Subscribe\",\r\n\t\t\tnull,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tunsubscribe(subscribeId: string): Observable {\r\n\t\tsubscribeId = (subscribeId??\"\").trim();\r\n\t\tif (subscribeId === '') {\r\n\t\t\tthrow 'please provide subscribe Id';\r\n\t\t}\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Unsubscribe/\" + subscribeId,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetSubscription(institutionCode: string): Observable {\r\n\t\tinstitutionCode = (institutionCode??\"\").trim();\r\n\t\tif (institutionCode === '') {\r\n\t\t\tthrow 'please provide institution';\r\n\t\t}\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/\" + institutionCode + \"/Subscription\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n}\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class InstitutionWelcomeService {\r\n\tget welcomeTourStatus(): boolean {\r\n\t\treturn sessionStorage.getItem('institutionWelcome') === \"false\" ? false : true;\r\n\t}\r\n\tset welcomeTourStatus(v: boolean) {\r\n\t\tif (v == null) {\r\n\t\t\tsessionStorage.removeItem(\"institutionWelcome\");\r\n\t\t}\r\n\t\telse {\r\n\t\t\tsessionStorage.setItem('institutionWelcome', v.toString());\r\n\t\t}\r\n\t}\r\n\r\n\tconstructor(\r\n\t\tprivate route: ActivatedRoute\r\n\t) {\r\n\t\t// default to false if Unsubscribe is provided in the url\r\n\t\tif (this.route.snapshot.queryParams['UnsubscribeMetricReport']) {\r\n\t\t\tthis.welcomeTourStatus = false;\r\n\t\t}\r\n\t}\r\n}\r\n","import { Injectable, Component, Inject, HostListener, Input, Output, EventEmitter, ViewChild, ElementRef } from '@angular/core';\r\nimport { DOCUMENT, Location } from '@angular/common';\r\nimport { ActivatedRoute, Event } from '@angular/router';\r\nimport { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';\r\nimport * as Rx from 'rxjs';\r\nimport { debounceTime, distinctUntilChanged } from 'rxjs/operators';\r\nimport { AppService, AppSettingService, AppUtilityService } from '../../app.service';\r\nimport { UserInfoService } from '../user-info.service';\r\nimport { UserAPIService, SessionAPIService } from '../user-api.service';\r\nimport { ZoneAPIService } from '../../zone/zone-api.service';\r\nimport { DOBService } from '../../utility/utility.service';\r\nimport { InstitutionAPIService } from '../../institution/institution-api.service';\r\n\r\nexport type TSignupLoginType = \"signup\" | \"login\" | \"reset\" | \"globallogin\" | \"globalsignup\" ;\r\nexport type TSignupLoginResult = \"cancel\" | \"signup\" | \"login\" | \"reset\" | \"globallogin\" | \"globalsignup\" | \"showLogin\" | \"showSignup\" | \"showReset\";\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class SignupLoginService {\r\n\tget askedGlobalAccount(): boolean {\r\n\t\treturn (sessionStorage.getItem('askedGlobalAccount') ?? \"\").toLowerCase() === \"true\" ? true : false;\r\n\t}\r\n\r\n\tset askedGlobalAccount(v: boolean) {\r\n\t\tif (v == null) {\r\n\t\t\tsessionStorage.removeItem(\"askedGlobalAccount\");\r\n\t\t}\r\n\t\telse {\r\n\t\t\tsessionStorage.setItem('askedGlobalAccount', String(v));\r\n\t\t}\r\n\t}\r\n\r\n\tget userDefaultZone(): string {\r\n\t\treturn localStorage.getItem('userDefaultZone') ?? \"\";\r\n\t}\r\n\r\n\tset userDefaultZone(v: string) {\r\n\t\tlocalStorage.setItem('userDefaultZone', String(v));\r\n\t}\r\n\r\n\tget promptGlobalAccountIntro(): \"login\" | \"signup\" | null {\r\n\t\tlet xx: string = localStorage.getItem('promptGlobalAccountIntro');\r\n\t\treturn xx== null? null: xx === \"login\"? \"login\": \"signup\";\r\n\t}\r\n\r\n\tset promptGlobalAccountIntro(v: \"login\"|\"signup\") {\r\n\t\tif (v == null) {\r\n\t\t\tlocalStorage.removeItem(\"promptGlobalAccountIntro\");\r\n\t\t}\r\n\t\telse {\r\n\t\t\tlocalStorage.setItem('promptGlobalAccountIntro', String(v));\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n/* Login standalone Page */\r\n@Component({\r\n\ttemplate: ``,\r\n\tstandalone: false\r\n})\r\nexport class LoginControl {\r\n\tisReady: boolean = false;\r\n\tdisplay: TSignupLoginType = \"login\";\r\n\tallowCancel:boolean = false;\r\n\tprefillUsername: string = \"\";\r\n\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate sessionAPI: SessionAPIService,\r\n\t\tprivate location: Location,\r\n\t\tprivate route: ActivatedRoute\r\n\t) {}\r\n\r\n\tcloseSL(action: TSignupLoginResult): void {\r\n\t\t//put any that need to be after close\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\t//hide prefillUsername\r\n\t\tthis.prefillUsername = (this.route.snapshot.paramMap.get(\"prefillUsername\")??\"\").trim();\r\n\t\tif (this.prefillUsername !== \"\") {\r\n\t\t\tthis.location.replaceState(\"/User/Login\");\r\n\t\t}\r\n\t\tif (this.userInfo.isLogin() && !this.userInfo.isAnonymous()) {\r\n\t\t\tthis.sessionAPI.anonymous().subscribe({\r\n\t\t\t\tnext: () => {\r\n\t\t\t\t\tthis.isReady = true;\r\n\t\t\t\t},\r\n\t\t\t\terror: (err: any) => {\r\n\t\t\t\t\tconsole.log(err);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.isReady = true;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n/* Reset password standalone Page */\r\n@Component({\r\n\ttemplate: ``,\r\n\tstandalone: false\r\n})\r\nexport class ResetPasswordControl {\r\n\tisReady: boolean = false;\r\n\tdisplay: TSignupLoginType = \"reset\";\r\n\tallowCancel: boolean = false;\r\n\tresetCode: string = \"\";\r\n\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate sessionAPI: SessionAPIService,\r\n\t\tprivate location: Location,\r\n\t\tprivate route: ActivatedRoute\r\n\t) { }\r\n\r\n\tcloseSL(action: TSignupLoginResult): void {\r\n\t\t//put any that need to be after close\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\t//if user pass anonymousUserLink, hide it from url and not reload the page\r\n\t\tthis.resetCode = (this.route.snapshot.paramMap.get(\"resetCode\") ?? \"\").trim();\r\n\t\tif (this.resetCode !== '') {\r\n\t\t\tthis.location.replaceState(\"/User/ResetPassword\");\r\n\t\t}\r\n\t\tif (this.userInfo.isLogin() && !this.userInfo.isAnonymous()) {\r\n\t\t\tthis.sessionAPI.anonymous().subscribe({\r\n\t\t\t\tnext: () => {\r\n\t\t\t\t\tthis.isReady = true;\r\n\t\t\t\t},\r\n\t\t\t\terror: (err: any) => {\r\n\t\t\t\t\tconsole.log(err);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.isReady = true;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n/* Sign up standalone Page */\r\n@Component({\r\n\ttemplate: ``,\r\n\tstandalone: false\r\n})\r\nexport class SignupControl {\r\n\tisReady: boolean = false;\r\n\tdisplay: TSignupLoginType = \"signup\";\r\n\tallowCancel: boolean = false;\r\n\tanonymousUserLink: string = \"\";\r\n\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate sessionAPI: SessionAPIService,\r\n\t\tprivate location: Location,\r\n\t\tprivate route: ActivatedRoute\r\n\t) { }\r\n\r\n\tcloseSL(action: TSignupLoginResult): void {\r\n\t\t//put any that need to be after close\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\t//if user pass anonymousUserLink, hide it from url and not reload the page\r\n\t\tthis.anonymousUserLink = (this.route.snapshot.paramMap.get(\"anonymousUserLink\") ?? \"\").trim();\r\n\t\tif (this.anonymousUserLink !== '') {\r\n\t\t\tthis.location.replaceState(\"/User/Signup\");\r\n\t\t}\r\n\t\tif (this.userInfo.isLogin() && !this.userInfo.isAnonymous()) {\r\n\t\t\tthis.sessionAPI.anonymous().subscribe({\r\n\t\t\t\tnext: () => {\r\n\t\t\t\t\tthis.isReady = true;\r\n\t\t\t\t},\r\n\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.isReady = true;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\ttemplate: `\r\n\t\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t
`,\r\n\tstandalone: false\r\n})\r\nexport class SignupLoginDialog {\r\n\tisReady: boolean = false;\r\n\tallowCancel: boolean = true;\r\n\tdisplay: TSignupLoginType = 'login';\r\n\tprefillUsername: string = \"\";\r\n\tglobalAccount: boolean = false;\r\n\tgoHome: boolean = true; // send user to the home page or not\r\n\t\r\n\tconstructor(\r\n\t\tprivate dialogRef: MatDialogRef,\r\n\t\t@Inject(MAT_DIALOG_DATA) private data: any\r\n\t) {\r\n\t\tthis.allowCancel = data.allowCancel ?? true;\r\n\t\tthis.display = data.display ?? \"login\";\r\n\t\tthis.prefillUsername = data.prefillUsername ?? \"\";\r\n\t\tthis.globalAccount = data.globalAccount ?? false;\r\n\t\tthis.goHome = data.goHome ?? true;\r\n\t}\r\n\r\n\tcloseSL(action: TSignupLoginResult): void {\r\n\t\tthis.dialogRef.close(action);\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\tthis.prefillUsername = (this.prefillUsername ?? \"\").trim();\r\n\t\tthis.isReady = true;\r\n\t}\r\n}\r\n\r\n\r\n/* sign up, login, reset password components */\r\n@Component({\r\n\tselector: 'app-signup-login',\r\n\ttemplateUrl: './signup-login.component.html',\r\n\tstyleUrls: [\"./login.scss\"],\r\n\tstandalone: false\r\n})\r\nexport class SignupLoginComponent {\r\n\t@Input() display: TSignupLoginType = \"login\";\r\n\t@Input() allowCancel: boolean = true;\r\n\t@Input() resetCode: string = \"\"\r\n\t@Input() prefillUsername: string = \"\";\r\n\t@Input() globalAccount: boolean = false;\r\n\t@Input() anonymousUserLink: string = \"\";\r\n\t@Input() goHome: boolean = true;\r\n\t@Output() onCloseSL: EventEmitter = new EventEmitter();\r\n\r\n\t@ViewChild(\"SignupComponent\") signupComponent: SignupComponent;\r\n\t@ViewChild(\"ResetPasswordComponent\") resetPasswordComponent: ResetPasswordComponent;\r\n\r\n\tconstructor(\r\n\t\tprivate appSrv: AppService,\r\n\t\tprivate location: Location,\r\n\t\tprivate signupLoginSrv: SignupLoginService,\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate zoneAPI: ZoneAPIService\r\n\t) {}\r\n\r\n\tloadType: TSignupLoginType = this.display;\r\n\tuserZone: any = null;\r\n\tisPublic: boolean = true;\r\n\tloadingWidget: boolean = true;\r\n\r\n\tshowMinimize = AppSettingService.widgetMobile();\r\n\r\n\twindowInnerHeight: string = window.innerHeight - 1 + 'px'; //-1 because scroll bar otherwise\r\n\r\n\t@HostListener('window:resize', ['$event']) onResize(e: Event) {\r\n\t\tthis.showMinimize = AppSettingService.widgetMobile();\r\n\t}\r\n\r\n\t// change path if it is login, signup, resetpassword\r\n\tprivate changePath: boolean = false;\r\n\r\n\t// signup, resetpassword use changePathNotReload in controller \r\n\t// this function is used to call back, so either use bind to force \"this\" is itself or use \"=>\"\r\n\tcloseSL = (action: TSignupLoginResult) => {\r\n\t\tif (action === 'showReset') {\r\n\t\t\tif (this.changePath) {\r\n\t\t\t\tthis.appSrv.redirectReload(\"/User/ResetPassword\");\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.loadType = 'reset';\r\n\t\t\t}\r\n\t\t}\r\n\t\telse if (action === 'showLogin') {\r\n\t\t\tif (this.changePath) {\r\n\t\t\t\tthis.appSrv.redirectReload(\"/User/Login\");\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.loadType = this.globalAccount ? 'globallogin' : 'login';\r\n\t\t\t}\r\n\t\t}\r\n\t\telse if (action === 'showSignup') {\r\n\t\t\tif (this.changePath) {\r\n\t\t\t\tthis.appSrv.redirectReload(\"/User/Signup\");\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.loadType = this.globalAccount ? 'globalsignup' : 'signup';\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\tif (this.goHome) {\r\n\t\t\t\tif (action === \"signup\" || action === \"login\") {\r\n\t\t\t\t\tthis.signupLoginSrv.askedGlobalAccount = null;\r\n\t\t\t\t\tif (this.globalAccount) {\r\n\t\t\t\t\t\t// need to prompt users \"You have successfully created your Journeys Map Global Account. ...\"\r\n\t\t\t\t\t\tthis.signupLoginSrv.promptGlobalAccountIntro = action;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tif (this.userInfo.isJAZone() && this.userInfo.getProfile().HighestRole.toLowerCase() === 'student') {\r\n\t\t\t\t\t\twindow.location.href = AppSettingService.baseUrl + \"/JaStudentDashboard?tm=\" + AppUtilityService.newId();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (!this.userInfo.isJAZone() && this.userInfo.getProfile().HighestRole.toLowerCase() === 'student' || this.userInfo.getProfile().HighestRole.toLowerCase() === 'other') {\r\n\t\t\t\t\t\twindow.location.href = AppSettingService.baseUrl + \"/User/CheckMyProgress?tm=\" + AppUtilityService.newId();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\twindow.location.href = this.userInfo.getHomePage() + ((this.userInfo.getHomePage().indexOf(\"?\") > 0) ? \"&\" : \"?\") + \"tm=\" + AppUtilityService.newId();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tthis.onCloseSL.emit(action);\r\n\t\t}\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\tif (this.globalAccount && this.display === \"reset\") {\r\n\t\t\tconsole.debug(\"Cannot Rreset Password for global account link\");\r\n\t\t\tthis.closeSL(\"cancel\");\r\n\t\t}\r\n\r\n\t\tthis.prefillUsername = (this.prefillUsername ?? \"\").trim();\r\n\t\tthis.anonymousUserLink = (this.anonymousUserLink ?? \"\").trim();\r\n\t\tthis.resetCode = (this.resetCode ?? \"\").trim();\r\n\r\n\t\tif (this.userInfo.isAnonymous() === false && this.display === 'signup') {\r\n\t\t\tthis.display = 'login';\r\n\t\t}\r\n\r\n\t\tlet currentPath = this.location.path().toLowerCase();\r\n\t\tif (currentPath.indexOf('/user/login') === 0 || currentPath.indexOf('/user/signup') === 0 || currentPath.indexOf('/user/resetpassword') === 0) {\r\n\t\t\tthis.changePath = true;\r\n\t\t}\r\n\r\n\t\tthis.zoneAPI.getUserZone().subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.loadingWidget = false;\r\n\t\t\t\tthis.userZone = response;\r\n\t\t\t\tthis.isPublic = this.userZone.IsPublic;\r\n\t\t\t\t// if the zone not allow to sign up, force user to login instead\r\n\t\t\t\tif (this.userZone.AllowSignup == false && this.display === 'signup') {\r\n\t\t\t\t\tthis.display = 'login';\r\n\t\t\t\t}\r\n\t\t\t\tthis.loadType = this.display;\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t\tthis.loadingWidget = false;\r\n\t\t\t\tthis.loadType = 'login';\r\n\t\t\t}\r\n\t\t});\t\t\r\n\t}\r\n}\r\n\r\nexport type UserZone = {\r\n\tClient: string,\r\n\tDisplayName: string\r\n};\r\n\r\n@Component({\r\n\tselector: \"app-login\",\r\n\ttemplateUrl: \"./login.component.html\",\r\n\tstyleUrls: [\"./login.scss\"],\r\n\tstandalone: false\r\n})\r\nexport class LoginComponent {\r\n\t@Input() allowCancel: boolean = false;\r\n\t@Input() prefillUsername: string = \"\";\r\n\t@Input() onClose: Function = null;\r\n\r\n\tconstructor(\r\n\t\tprivate sessionAPI: SessionAPIService,\r\n\t\tprivate signupLoginSrv: SignupLoginService,\r\n\t\tprivate userAPI: UserAPIService\r\n\t) { }\r\n\r\n\tfrmLogin: {\r\n\t\tusername: string,\r\n\t\tusernameStatus?: boolean,\r\n\t\tpassword: string,\r\n\t\tpasswordStatus?: boolean,\r\n\t\tmyZone: string,\r\n\t\tzonesUpdating: boolean,\r\n\t\tzones?: UserZone[]\r\n\t} = {\r\n\t\tusername: \"\",\r\n\t\tusernameStatus: null,\r\n\t\tpassword: \"\",\r\n\t\tpasswordStatus: null,\r\n\t\tmyZone: \"\",\r\n\t\tzonesUpdating: false,\r\n\t\tzones: []\r\n\t};\r\n\r\n\tmsg: string = \"\";\r\n\tisLogging: boolean = false;\r\n\tshowMinimize = AppSettingService.widgetMobile();\r\n\r\n\t@HostListener('window:resize', ['$event']) onResize(e: Event) {\r\n\t\tthis.showMinimize = AppSettingService.widgetMobile();\r\n\t}\r\n\r\n\t//#region username\r\n\t@ViewChild('txtU') txtUsername: ElementRef;\r\n\t@ViewChild('selZ') selZone: ElementRef;\r\n\r\n\tprivate searchZone$ = new Rx.Subject();\r\n\tlookupZone(e: any): void {\r\n\t\tthis.searchZone$.next(this.frmLogin.username);\r\n\t}\r\n\r\n\tprivate searchZones() {\r\n\t\tthis.frmLogin.zonesUpdating = true;\r\n\t\tthis.frmLogin.zones = [];\r\n\t\tif (this.frmLogin.username.length < 1) {\r\n\t\t\tthis.frmLogin.zonesUpdating = false;\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.userAPI.checkUserNameExist(this.frmLogin.username, \"\").subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tif (response.Zones.length > 0) {\r\n\t\t\t\t\tlet defaultZone: UserZone = response.Zones.find((x: any) => this.signupLoginSrv.userDefaultZone !== \"\" && x.Client === this.signupLoginSrv.userDefaultZone);\r\n\t\t\t\t\tif (defaultZone !== undefined && defaultZone !== null) {\r\n\t\t\t\t\t\tthis.frmLogin.myZone = this.signupLoginSrv.userDefaultZone;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\tthis.frmLogin.myZone = response.Zones[0].Client;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tthis.frmLogin.usernameStatus = true;\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.frmLogin.myZone = \"\";\r\n\t\t\t\t\tthis.frmLogin.usernameStatus = false;\r\n\t\t\t\t}\r\n\t\t\t\tthis.frmLogin.zones = response.Zones;\r\n\t\t\t\tthis.frmLogin.zonesUpdating = false;\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t\tthis.frmLogin.zonesUpdating = false;\r\n\t\t\t\tthis.frmLogin.myZone = \"\";\r\n\t\t\t\tthis.frmLogin.usernameStatus = null;\r\n\t\t\t\tthis.frmLogin.zones = [];\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tchangeZone(e: any) {\r\n\t\tif (this.frmLogin.zones.length === 0) {\r\n\t\t\tthis.frmLogin.myZone = \"\";\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.frmLogin.myZone = this.selZone.nativeElement.value;\r\n\t\t}\r\n\t}\r\n\t//#endregion username\r\n\r\n\t//#region password\r\n\t@ViewChild('txtP') txtPassword: ElementRef;\r\n\r\n\ttxtPwType: string = 'password';\t\r\n\tshowPassword(enforce: string) {\r\n\t\tthis.txtPassword.nativeElement.type = this.txtPassword.nativeElement.type === 'password' ? 'text' : 'password';\r\n\t\tif (enforce != null) {\r\n\t\t\tthis.txtPassword.nativeElement.type = enforce;\r\n\t\t\tthis.txtPwType = enforce;\r\n\t\t}\r\n\t}\r\n\t//#endregion password\r\n\r\n\t//#region perform login\r\n\tprivate doLogin() {\r\n\t\tthis.isLogging = true;\r\n\t\tif (this.canLogin()) {\r\n\t\t\tthis.sessionAPI.signOn(this.frmLogin.username, this.frmLogin.password, this.frmLogin.myZone).subscribe({\r\n\t\t\t\tnext: () => {\r\n\t\t\t\t\tthis.signupLoginSrv.userDefaultZone = this.frmLogin.myZone;\r\n\t\t\t\t\tthis.onClose('login');\r\n\t\t\t\t},\r\n\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t\tlet err = error.error;\r\n\t\t\t\t\tthis.isLogging = false;\r\n\t\t\t\t\tthis.frmLogin.passwordStatus = false;\r\n\t\t\t\t\tif (err != null && err.Code != null && err.Code === '70000') {\r\n\t\t\t\t\t\tthis.msg = 'Unable to verify account, please contact help@journeysmap.com.';\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\tthis.msg = 'Uh oh. Something isn\\'t quite right. Please try again.';\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.isLogging = false;\r\n\t\t\tthis.msg = 'Uh oh. All fields are required.';\r\n\t\t}\r\n\t}\r\n\r\n\tcanLogin() {\r\n\t\tif (!this.frmLogin.zonesUpdating && this.frmLogin.username.trim() !== '' && this.frmLogin.password.trim() !== '' && this.frmLogin.myZone.trim() !== \"\") {\r\n\t\t\treturn true;\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\r\n\tsubmitLogin(e: any, nextStep: boolean) {\r\n\t\tif (e == null) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tif (e.type === 'keydown' && e.keyCode !== 13 && e.keyCode !== 9) {\r\n\t\t\tthis.msg = '';\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tif (this.canLogin() && (e.keyCode === 13 || nextStep != null)) {\r\n\t\t\tthis.doLogin();\r\n\t\t}\r\n\t}\r\n\t//#endregion perform login\r\n\r\n\t//#region UI switch\r\n\tresetPassword(e: any) {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('showReset');\r\n\t}\r\n\r\n\tcreateAccount(e: any) {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('showSignup');\r\n\t}\r\n\r\n\tcancel(e: any): void {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('cancel');\r\n\t}\r\n\t//#endregion UI switch\r\n\r\n\tngOnDestroy() {\r\n\t\tthis.searchZone$.unsubscribe();\r\n\t}\r\n\r\n\tngAfterViewInit(): void {\r\n\t\tthis.frmLogin.username = this.prefillUsername = (this.prefillUsername ?? \"\").trim();\r\n\t\tsetTimeout(() => {\r\n\t\t\ttry { this.txtUsername.nativeElement.focus(); }\r\n\t\t\tcatch (ex) { ; }\r\n\t\t}, 500);\r\n\t}\r\n\r\n\tngOnInit() {\r\n\t\tthis.searchZone$.pipe(\r\n\t\t\tdebounceTime(300),\r\n\t\t\tdistinctUntilChanged()\r\n\t\t).subscribe((kw: string) => {\r\n\t\t\tif (kw.trim().length < 1) {\r\n\t\t\t\tthis.frmLogin.zones = [];\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.searchZones();\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: \"app-reset-password\",\r\n\ttemplateUrl: \"./reset-password.component.html\",\r\n\tstyleUrls: [\"./login.scss\"],\r\n\tstandalone: false\r\n})\r\nexport class ResetPasswordComponent {\r\n\t@Input() allowCancel: boolean = false;\r\n\t@Input() resetCode: string = \"\";\r\n\t@Input() onClose: Function = null;\r\n\r\n\tconstructor(\r\n\t\t@Inject(DOCUMENT) private doc: any,\r\n\t\tprivate userAPI: UserAPIService,\r\n\t\tprivate sessionAPI: SessionAPIService\r\n\t) { }\r\n\r\n\tprocessing:boolean = false;\r\n\tcurrentStep?: number = null;\r\n\tresetPWResponse:any = null;\r\n\r\n\tsteps = [\r\n\t\t'username',\r\n\t\t'resetOption',\r\n\t\t'securityQuestion',\r\n\t\t'newPassword',\r\n\t\t'emailSent',\r\n\t\t'error',\r\n\t\t'resetCode'\r\n\t];\r\n\r\n\tfrmReset: {\r\n\t\tUsernameOrEmail: string,\r\n\t\tUsernameOrEmailStatus?: boolean,\r\n\t\tRecoveryOption: string,\r\n\t\tSecurityQuestion: string,\r\n\t\tSecurityAnswer: string,\r\n\t\tSecurityStatus?: boolean,\r\n\t\tNewPassword: string,\r\n\t\tNewPasswordStatus?: boolean,\r\n\t\tNewPassword2: string,\r\n\t\tNewPassword2Status?: boolean,\r\n\t\tResetCode: string,\r\n\t\tResetCodeStatus?: boolean,\r\n\t\tZone: string,\r\n\t\tzonesUpdating: boolean,\r\n\t\tzones?: UserZone[]\r\n\t} = {\r\n\t\tUsernameOrEmail: '',\r\n\t\tUsernameOrEmailStatus: null,\r\n\t\tRecoveryOption: '',\r\n\t\tSecurityQuestion: '',\r\n\t\tSecurityAnswer: '',\r\n\t\tSecurityStatus: null,\r\n\t\tNewPassword: '',\r\n\t\tNewPasswordStatus: null,\r\n\t\tNewPassword2: '',\r\n\t\tNewPassword2Status: null,\r\n\t\tResetCode: '',\r\n\t\tResetCodeStatus: null,\r\n\t\tZone: \"\",\r\n\t\tzonesUpdating: false,\r\n\t\tzones: []\r\n\t};\r\n\r\n\t//#region username\r\n\t@ViewChild('txtUsername') txtUsername: ElementRef;\r\n\t@ViewChild('selZone') selZone: ElementRef;\r\n\t@ViewChild('btnUsernameNext') btnUsernameNext: ElementRef;\r\n\r\n\tshowMinimize = AppSettingService.widgetMobile();\r\n\r\n\t@HostListener('window:resize', ['$event']) onResize(e: Event) {\r\n\t\tthis.showMinimize = AppSettingService.widgetMobile();\r\n\t}\r\n\r\n\thasUsername(): boolean {\r\n\t\tif (!this.frmReset.zonesUpdating && this.frmReset.UsernameOrEmail.trim() !== '' && this.frmReset.Zone.trim() !== \"\") {\r\n\t\t\treturn true;\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\r\n\tprivate populateZones() {\r\n\t\tthis.frmReset.zonesUpdating = true;\r\n\t\tthis.userAPI.checkUserNameExist(this.frmReset.UsernameOrEmail, \"\").subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.frmReset.zonesUpdating = false;\r\n\t\t\t\tif (response.Zones.length > 0) {\r\n\t\t\t\t\tthis.frmReset.Zone = response.Zones[0].Client;\r\n\t\t\t\t\tthis.frmReset.UsernameOrEmailStatus = true;\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.frmReset.Zone = \"\";\r\n\t\t\t\t\tthis.frmReset.UsernameOrEmailStatus = false;\r\n\t\t\t\t}\r\n\t\t\t\tthis.frmReset.zones = response.Zones;\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t\tthis.frmReset.zonesUpdating = false;\r\n\t\t\t\tthis.frmReset.Zone = \"\";\r\n\t\t\t\tthis.frmReset.UsernameOrEmailStatus = null;\r\n\t\t\t\tthis.frmReset.zones = [];\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tchangeZone(e: any) {\r\n\t\tif (this.frmReset.zones.length === 0) {\r\n\t\t\tthis.frmReset.Zone = \"\";\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.frmReset.Zone = this.selZone.nativeElement.value;\r\n\t\t}\r\n\t}\r\n\r\n\tcheckUsername(e: any): void {\r\n\t\tif (e == null) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tif (e.type === 'keydown' && e.keyCode !== 13 && e.keyCode !== 9) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tif (this.frmReset.UsernameOrEmail.trim().length > 0) {\r\n\t\t\tif (\t(e.type === 'keydown' && (e.keyCode === 13 || e.keyCode === 9)) ||\r\n\t\t\t\t\t(e.type == 'blur' && e.currentTarget.id === this.txtUsername.nativeElement.id)\r\n\t\t\t)\r\n\t\t\t{\r\n\t\t\t\tthis.selZone.nativeElement.focus();\r\n\t\t\t\tthis.populateZones();\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tif (e.currentTarget.id === this.btnUsernameNext.nativeElement.id) {\r\n\t\t\tif (this.hasUsername()) {\r\n\t\t\t\tthis.checkOption();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t//#endregion username\r\n\r\n\t//#region resetOption\r\n\tdoOption(e: any, option: string) {\r\n\t\tif (option === 'email') {\r\n\t\t\tthis.sendEmail();\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.askSecurityQuestion();\r\n\t\t}\r\n\t}\r\n\r\n\tprivate askOption(): void {\r\n\t\tthis.currentStep = 1;\r\n\t\tthis.processing = false;\r\n\t}\r\n\r\n\tprivate checkOption(): void {\r\n\t\tthis.processing = true;\r\n\t\tthis.resetPWResponse = null;\r\n\t\tthis.userAPI.resetPassword(this.frmReset).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.resetPWResponse = response;\r\n\t\t\t\tif (this.resetPWResponse.RecoveryStatusCode === '10') {\r\n\t\t\t\t\tif (this.resetPWResponse.IsEmail && this.resetPWResponse.SecurityQuestion !== '') {\r\n\t\t\t\t\t\tthis.askOption();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (this.resetPWResponse.SecurityQuestion !== '') {\r\n\t\t\t\t\t\tthis.askSecurityQuestion();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (this.resetPWResponse.IsEmail) {\r\n\t\t\t\t\t\tthis.sendEmail();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\tthis.displayError();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.displayError();\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t\tthis.displayError();\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\t//#endregion resetOption\r\n\r\n\t//#region securityQuestion\r\n\tcheckSecurityAnswer(e: any): void {\r\n\t\tif (this.processing === true || e == null || (e.type !== 'click' && e.keyCode !== 13) || this.frmReset.SecurityAnswer === '') {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.processing = true;\r\n\t\tthis.resetPWResponse = null;\r\n\t\tthis.userAPI.resetPassword(this.frmReset).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.resetPWResponse = response;\r\n\t\t\t\tif (this.resetPWResponse.RecoveryStatusCode === '11') {\r\n\t\t\t\t\tthis.frmReset.SecurityStatus = true;\r\n\t\t\t\t\tthis.askNewPassword();\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.processing = false;\r\n\t\t\t\t\tthis.frmReset.SecurityStatus = false;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t\tthis.processing = false;\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tprivate askSecurityQuestion(): void {\r\n\t\tthis.currentStep = 2;\r\n\t\tthis.processing = false;\r\n\t\tthis.frmReset.RecoveryOption = 'question';\r\n\t\tthis.frmReset.SecurityQuestion = this.resetPWResponse.SecurityQuestion;\r\n\t}\r\n\t//#endregion securityQuestion\r\n\r\n\t//#region newPassword\r\n\ttxtNewPasswordIsFocused: boolean = false;\r\n\tcheckNewPassword(e: any): void {\r\n\t\tif (!this.processing && e.type === 'focus' && e.target.id === 'txtNewPassword') {\r\n\t\t\tthis.txtNewPasswordIsFocused = true;\r\n\t\t}\r\n\t\tif (!this.processing && e.type === 'blur' && e.target.id === 'txtNewPassword') {\r\n\t\t\tthis.txtNewPasswordIsFocused = false;\r\n\t\t}\r\n\r\n\t\tif (this.processing === true || e == null || (e.type !== 'click' && e.keyCode !== 13)) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar pw = AppUtilityService.validatePassword(this.frmReset.NewPassword);\r\n\t\tthis.frmReset.NewPasswordStatus = pw.strength < 100 ? false : true;\r\n\t\tpw = AppUtilityService.validatePassword(this.frmReset.NewPassword2);\r\n\t\tthis.frmReset.NewPassword2Status = pw.strength < 100 ? false : true;\r\n\r\n\t\tif (this.frmReset.NewPassword === '' || this.frmReset.NewPasswordStatus === false || (this.frmReset.NewPassword !== this.frmReset.NewPassword2)) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tthis.processing = true;\r\n\t\tthis.resetPWResponse = null\r\n\t\tthis.userAPI.resetPassword(this.frmReset).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.resetPWResponse = response;\r\n\t\t\t\tif (this.resetPWResponse.RecoveryStatusCode === '0') {\r\n\t\t\t\t\t//perform login\r\n\t\t\t\t\tthis.sessionAPI.signOn(this.resetPWResponse.Username, this.frmReset.NewPassword, this.frmReset.Zone).subscribe({\r\n\t\t\t\t\t\tnext: () => {\r\n\t\t\t\t\t\t\tthis.processing = false;\r\n\t\t\t\t\t\t\tthis.onClose('login');\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t\t\t\tthis.processing = false;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t});\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.processing = false;\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t\tthis.displayError();\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\ttxtPw1Type: string = 'password';\r\n\ttxtPw2Type: string = 'password';\t\r\n\tshowPassword(id: any): void {\r\n\t\tvar pw = this.doc.getElementById(id);\r\n\t\tif (pw != null) {\r\n\t\t\tpw.type = pw.type === 'password' ? 'text' : 'password';\r\n\t\t\tif (id === 'txtNewPassword') {\r\n\t\t\t\tthis.txtPw1Type = pw.type;\r\n\t\t\t}\r\n\t\t\tif (id === 'txtNewPassword2') {\r\n\t\t\t\tthis.txtPw2Type = pw.type;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\tprivate askNewPassword(): void {\r\n\t\tthis.currentStep = 3;\r\n\t\tthis.processing = false;\r\n\t}\r\n\t//#endregion newPassword\r\n\r\n\t//#region emailSent\r\n\tprivate sendEmail(): void {\r\n\t\tthis.resetPWResponse = null;\r\n\t\tthis.processing = true;\r\n\t\tthis.frmReset.RecoveryOption = 'email';\r\n\t\tthis.userAPI.resetPassword(this.frmReset).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.resetPWResponse = response;\r\n\t\t\t\tif (this.resetPWResponse.RecoveryStatusCode === '9') {\r\n\t\t\t\t\tthis.currentStep = 4;\r\n\t\t\t\t\tthis.processing = false;\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.currentStep = 5;\r\n\t\t\t\t\tthis.processing = false;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t\tthis.currentStep = 5;\r\n\t\t\t\tthis.processing = false;\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\t//#endregion emailSent\r\n\r\n\t//#region resetCode\r\n\tprivate checkResetCode() {\r\n\t\tthis.currentStep = 6;\r\n\t\tthis.processing = true;\r\n\t\tthis.resetPWResponse = null;\r\n\t\tthis.frmReset.ResetCode = this.resetCode;\r\n\t\tthis.userAPI.resetPassword(this.frmReset).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.resetPWResponse = response;\r\n\t\t\t\tif (this.resetPWResponse.RecoveryStatusCode === '11') {\r\n\t\t\t\t\tthis.frmReset.ResetCodeStatus = true;\r\n\t\t\t\t\tthis.askNewPassword();\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.processing = false;\r\n\t\t\t\t\tthis.frmReset.ResetCodeStatus = false;\r\n\t\t\t\t}\r\n\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\t//#endregion resetCode\r\n\r\n\t//#region error\r\n\tprivate displayError(): void {\r\n\t\tthis.currentStep = 5;\r\n\t\tthis.processing = false;\r\n\t}\r\n\t//#endregion error\r\n\r\n\t//#region UI switch\r\n\tcancel(e: any) {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('showLogin');\r\n\t}\r\n\r\n\tbackToLogin(e: any): void {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('showLogin');\r\n\t}\r\n\r\n\tbackToSignup(e: any): void {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('showSignup');\r\n\t}\r\n\r\n\tbackToReset(e: any): void {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('showReset');\r\n\t}\r\n\t//#endregion UI switch\r\n\r\n\tngOnDestroy() {\r\n\t}\r\n\r\n\tngAfterViewInit(): void {\r\n\t\tsetTimeout(() => {\r\n\t\t\ttry { this.txtUsername.nativeElement.focus(); }\r\n\t\t\tcatch (ex) { ; }\r\n\t\t}, 500);\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\t// if resetcode is provided?\r\n\t\tif (this.resetCode !== '') {\r\n\t\t\tthis.checkResetCode();\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.currentStep = 0;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: \"app-signup\",\r\n\ttemplateUrl: \"./signup.component.html\",\r\n\tstyleUrls: [\"./login.scss\"],\r\n\tstandalone: false\r\n})\r\nexport class SignupComponent {\r\n\t@Input() isPublic: boolean = true;\r\n\t@Input() allowCancel: boolean = false;\r\n\t@Input() anonymousUserLink: string = \"\";\r\n\t@Input() onClose: Function = null;\r\n\r\n\tconstructor(\r\n\t\t@Inject(DOCUMENT) private doc: any,\r\n\t\tprivate sessionAPI: SessionAPIService,\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate userAPI: UserAPIService,\r\n\t\tprivate dobSrv: DOBService,\r\n\t\tprivate institutionAPI: InstitutionAPIService\r\n\t) { }\r\n\r\n\tminAge: number = 13;\r\n\tprivate nameMinLen: number = 2;\r\n\tprivate usernameMinLen: number = 4;\r\n\tmaxYear: number = (new Date()).getFullYear();\r\n\tminYear: number = this.maxYear - 100;\r\n\tprivate institution: any = null;\r\n\tprivate anonymousUser: any = null;\r\n\tiStepHighestReached: number = 0;\r\n\tisWaiting: boolean = false;\r\n\tsignupMsg: string = '';\r\n\tdoneSignup: boolean = false;\r\n\talreadySignup: boolean = false;\r\n\tcurrentStep: number = 5;\r\n\tusernameTaken: boolean = false;\r\n\r\n\tsteps = [\r\n\t\t{ name: \"name\" },\r\n\t\t{ name: \"username\" },\r\n\t\t{ name: \"password\" },\r\n\t\t{ name: \"dob\" },\r\n\t\t{ name: \"connection\" },\r\n\t\t{ name: \"final\" }\r\n\t];\r\n\r\n\tfrmSignup: {\r\n\t\tfirstName: string,\r\n\t\tfirstNameStatus?: boolean,\r\n\t\tlastName: string,\r\n\t\tlastNameStatus?: boolean,\r\n\t\tnameMsg: string,\r\n\t\tbyEmail: boolean,\r\n\t\temail: string,\r\n\t\temailStatus?: boolean,\r\n\t\tusername: string,\r\n\t\tusernameStatus?: boolean,\r\n\t\tusernameMsg: string,\r\n\t\tpw1: string,\r\n\t\tpw1Status?: boolean,\r\n\t\tpw2: string,\r\n\t\tpw2Status?: boolean,\r\n\t\tpwMsg: string,\r\n\t\tdobMonth: string,\r\n\t\tdobMonthStatus?: boolean,\r\n\t\tdobDate: string,\r\n\t\tdobDateStatus?: boolean,\r\n\t\tdobYear: string,\r\n\t\tdobYearStatus?: boolean,\r\n\t\tdob: string,\r\n\t\tdobStatus?: boolean,\r\n\t\tdobAge: number,\r\n\t\tdobAgree: false,\r\n\t\tdobMsg: string,\r\n\t\tconnectionSkip: boolean,\r\n\t\tconnection: string,\r\n\t\tconnectionStatus?: boolean,\r\n\t\tconnectionMsg: string,\r\n\t\trole: string\r\n\t} = {\r\n\t\tfirstName: '',\r\n\t\tfirstNameStatus: null,\r\n\t\tlastName: '',\r\n\t\tlastNameStatus: null,\r\n\t\tnameMsg: '',\r\n\t\tbyEmail: true,\r\n\t\temail: '',\r\n\t\temailStatus: null,\r\n\t\tusername: '',\r\n\t\tusernameStatus: null,\r\n\t\tusernameMsg: '',\r\n\t\tpw1: '',\r\n\t\tpw1Status: null,\r\n\t\tpw2: '',\r\n\t\tpw2Status: null,\r\n\t\tpwMsg: '',\r\n\t\tdobMonth: '',\r\n\t\tdobMonthStatus: null,\r\n\t\tdobDate: '',\r\n\t\tdobDateStatus: null,\r\n\t\tdobYear: '',\r\n\t\tdobYearStatus: null,\r\n\t\tdob: '',\r\n\t\tdobStatus: null,\r\n\t\tdobAge: 100,\r\n\t\tdobAgree: false,\r\n\t\tdobMsg: '',\r\n\t\tconnectionSkip: true,\r\n\t\tconnection: '',\r\n\t\tconnectionStatus: null,\r\n\t\tconnectionMsg: '',\r\n\t\trole: 'other'\r\n\t};\r\n\r\n\t@ViewChild('txtFirstName') txtFirstName: ElementRef;\r\n\t@ViewChild('btnUsername') btnUsername: ElementRef;\r\n\t@ViewChild('txtEmail') txtEmail: ElementRef;\r\n\t@ViewChild('txtUsername') txtUsername: ElementRef;\r\n\t@ViewChild('txtPw1') txtPw1: ElementRef;\r\n\t@ViewChild('txtPw2') txtPw2: ElementRef;\r\n\t@ViewChild('txtDobMonth') txtDobMonth: ElementRef;\r\n\t@ViewChild('txtDobDate') txtDobDate: ElementRef;\r\n\t@ViewChild('txtDobYear') txtDobYear: ElementRef;\r\n\t@ViewChild('txtConnection') txtConnection: ElementRef;\r\n\t@ViewChild('btnPwNext') btnPwNext: ElementRef;\r\n\r\n\tshowMinimize = AppSettingService.widgetMobile();\r\n\r\n\t@HostListener('window:resize', ['$event']) onResize(e: Event) {\r\n\t\tthis.showMinimize = AppSettingService.widgetMobile();\r\n\t}\r\n\r\n\tprivate changeStep(toStep:number) {\r\n\t\tif (toStep > this.currentStep) {\r\n\t\t\tif (this.currentStep - 1 === this.iStepHighestReached) {\r\n\t\t\t\tthis.iStepHighestReached++;\r\n\t\t\t}\r\n\t\t}\r\n\t\tthis.currentStep = toStep\r\n\t\tswitch (this.currentStep) {\r\n\t\t\tcase 0:\r\n\t\t\t\tsetTimeout(() => { this.txtFirstName.nativeElement.focus(); }, 250);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 1:\r\n\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\tif (this.anonymousUserLink !== '') {\r\n\t\t\t\t\t\tthis.btnUsername.nativeElement.focus();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (this.frmSignup.byEmail) {\r\n\t\t\t\t\t\tthis.txtEmail.nativeElement.focus();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\tthis.txtUsername.nativeElement.focus();\r\n\t\t\t\t\t}\r\n\t\t\t\t}, 250);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 2:\r\n\t\t\t\tsetTimeout(() => { this.txtPw1.nativeElement.focus(); }, 250);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 3:\r\n\t\t\t\tsetTimeout(() => { this.txtDobMonth.nativeElement.focus(); }, 250);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 4:\r\n\t\t\t\tsetTimeout(() => { this.txtConnection.nativeElement.focus(); }, 250);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 5:\r\n\t\t\t\t//final, do nothing\r\n\t\t\t\tbreak;\r\n\t\t\tdefault:\r\n\t\t\t\tthis.currentStep = 0;\r\n\t\t\t\tsetTimeout(() => { this.txtFirstName.nativeElement.focus(); }, 250);\r\n\t\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\r\n\tprgIndicatorJumpTo(e: any, toStep: number) {\r\n\t\tswitch (this.currentStep) {\r\n\t\t\tcase 0:\r\n\t\t\t\tthis.checkName(e, toStep);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 1:\r\n\t\t\t\tthis.checkUsername(e, toStep);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 2:\r\n\t\t\t\tthis.checkPassword(e, toStep);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 3:\r\n\t\t\t\tthis.checkDOB(e, toStep);\r\n\t\t\t\tbreak;\r\n\t\t\tcase 4:\r\n\t\t\t\tif (!this.frmSignup.connectionSkip) {\r\n\t\t\t\t\tthis.checkConnection(e, toStep);\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.changeStep(toStep);\r\n\t\t\t\t}\r\n\t\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\r\n\t//#region name\r\n\tcheckName(e: any, nextStep?: number) {\r\n\t\tif (e.type === 'keyup' && e.keyCode === 9) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.frmSignup.firstName = this.frmSignup.firstName.trim();\r\n\t\tthis.frmSignup.lastName = this.frmSignup.lastName.trim();\r\n\r\n\t\tif (e.type === 'focus' || (e.type === 'keyDown' && e.keyCode !== 9 && e.keyCode !== 13 && e.keyCode !== undefined)) {\r\n\t\t\tif (e.currentTarget.id === 'txtFirstName' && this.frmSignup.firstNameStatus !== null) {\r\n\t\t\t\tthis.frmSignup.firstNameStatus = null;\r\n\t\t\t\tthis.frmSignup.nameMsg = \"\";\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\tif (e.currentTarget.id === 'txtLastName' && this.frmSignup.lastNameStatus !== null) {\r\n\t\t\t\tthis.frmSignup.lastNameStatus = null;\r\n\t\t\t\tthis.frmSignup.nameMsg = \"\";\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t//only do validations if enter, tab, or next button\r\n\t\tif (e.keyCode === 13 || nextStep != null || e.keyCode === 9 && e.type !== focus) {\r\n\t\t\tif ((e.keyCode === 13) || nextStep != null || (e.keyCode === 9 && e.currentTarget.id === 'txtFirstName')) {\r\n\t\t\t\tthis.frmSignup.firstNameStatus = this.frmSignup.firstName.length < this.nameMinLen ? false : true;\r\n\t\t\t\tif (e.keyCode === 13 && this.frmSignup.firstNameStatus) {\r\n\t\t\t\t\te.currentTarget.blur();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tif ((e.keyCode === 13 && e.currentTarget.id === 'txtLastName') || nextStep != null || (e.keyCode === 9 && e.currentTarget.id === 'txtLastName')) {\r\n\t\t\t\tthis.frmSignup.lastNameStatus = this.frmSignup.lastName.length < this.nameMinLen ? false : true;\r\n\t\t\t\tif (e.keyCode === 13 && this.frmSignup.lastNameStatus) {\r\n\t\t\t\t\te.currentTarget.blur();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\tif (this.frmSignup.firstNameStatus === false || this.frmSignup.lastNameStatus === false) {\r\n\t\t\t\tthis.frmSignup.nameMsg = \"Oops! The minimum length is \" + this.nameMinLen + \" characters.\";\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tif ((e.keyCode === 13 && e.currentTarget.id === 'txtLastName') || nextStep != null) {\r\n\t\t\t\t\tif (this.frmSignup.firstNameStatus && this.frmSignup.lastNameStatus) {\r\n\t\t\t\t\t\tthis.changeStep(nextStep == null ? this.currentStep + 1 : nextStep);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\tif (e.keyCode !== 9 && e.keyCode !== undefined) {\r\n\t\t\t\tthis.frmSignup.nameMsg = \"\";\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t//#endregion name\r\n\r\n\t//#region username\r\n\ttoggleUsernameEmail() {\r\n\t\tthis.frmSignup.byEmail = !this.frmSignup.byEmail;\r\n\t\tif (this.frmSignup.byEmail) {\r\n\t\t\tthis.frmSignup.username = '';\r\n\t\t\tthis.frmSignup.usernameStatus = null;\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.frmSignup.email = '';\r\n\t\t\tthis.frmSignup.emailStatus = null;\r\n\t\t}\r\n\t}\r\n\r\n\tcheckUsername(e: any, nextStep?:number) {\r\n\t\tif (e.keyCode !== 9 && e.type === 'keydown') {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tthis.frmSignup.emailStatus = null;\r\n\t\tthis.frmSignup.usernameStatus = null;\r\n\t\tthis.frmSignup.email = this.frmSignup.email.trim();\r\n\t\tthis.frmSignup.username = this.frmSignup.username.trim();\r\n\t\tlet loginName = this.frmSignup.byEmail ? this.frmSignup.email : this.frmSignup.username;\r\n\r\n\t\tif (e.keyCode === 13 || nextStep != null || e.keyCode === 9) {\r\n\t\t\tif (this.frmSignup.byEmail) {\r\n\t\t\t\tthis.frmSignup.usernameStatus = null;\r\n\t\t\t\tif (loginName.length < this.usernameMinLen || !AppUtilityService.isEmail(loginName)) {\r\n\t\t\t\t\tthis.frmSignup.emailStatus = false;\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.frmSignup.emailStatus = true;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.frmSignup.emailStatus = null;\r\n\t\t\t\tif (loginName.length < this.usernameMinLen) {\r\n\t\t\t\t\tthis.frmSignup.usernameStatus = false;\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.frmSignup.usernameStatus = true;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\tif (this.frmSignup.emailStatus === false || this.frmSignup.usernameStatus === false) {\r\n\t\t\t\tthis.frmSignup.usernameMsg = this.frmSignup.byEmail ? 'Oops! Something is funky. Please enter a valid email address.' : 'Oops! Please enter a valid username.';\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\t//username is unique per zone. Zone is unknown until users decide having access code or not. \r\n\t\t\t\t// so no point to check username here\r\n\t\t\t\tif (e.keyCode !== 9) {\r\n\t\t\t\t\tthis.changeStep(nextStep == null ? this.currentStep + 1 : nextStep);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.frmSignup.usernameMsg = \"\";\r\n\t\t}\r\n\t}\r\n\t//#endregion username\r\n\r\n\t//#region password\r\n\ttxtPw1Type: string = 'password';\r\n\ttxtPw2Type: string = 'password';\r\n\tshowPassword(id: string) {\t\t\r\n\t\tvar input = this.doc.getElementById(id);\r\n\t\tif (input != null) {\r\n\t\t\tinput.type = (input.type === 'password') ? 'text' : 'password';\r\n\t\t\tif (id === 'txtPw1') {\r\n\t\t\t\tthis.txtPw1Type = input.type;\r\n\t\t\t}\r\n\t\t\tif (id === 'txtPw2') {\r\n\t\t\t\tthis.txtPw2Type = input.type;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\tpw1isFocused: boolean = false;\r\n\tcheckPassword(e: any, nextStep?: number) {\r\n\t\tif (e != null && e.currentTarget != null && e.currentTarget.value != null) {\r\n\t\t\te.currentTarget.value = e.currentTarget.value.trim();\r\n\t\t}\r\n\r\n\t\tif (e.type === 'blur' && e.target.id === 'txtPw1') {\r\n\t\t\tthis.pw1isFocused = false;\r\n\t\t}\r\n\r\n\t\tif (e.type === 'focus') {\r\n\t\t\tif (e.target.id === 'txtPw1') {\r\n\t\t\t\tthis.pw1isFocused = true;\r\n\t\t\t} else {\r\n\t\t\t\tthis.pw1isFocused = false;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif (this.frmSignup.pw1Status === false) {\r\n\t\t\t\tthis.frmSignup.pw1Status = null;\r\n\t\t\t}\r\n\t\t\tif (this.frmSignup.pw2Status === false) {\r\n\t\t\t\tthis.frmSignup.pw2Status = null;\r\n\t\t\t}\r\n\t\t\tthis.frmSignup.pwMsg = \"\";\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tif (e.type === 'keyup' && e.keyCode !== 9 && e.keyCode !== 13) {\r\n\t\t\tif (e.target.id === 'txtPw1') {\r\n\t\t\t\tthis.frmSignup.pw1Status = null;\r\n\t\t\t}\r\n\t\t\tif (e.target.id === 'txtPw2') {\r\n\t\t\t\tthis.frmSignup.pw2Status = null;\r\n\t\t\t}\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tif ((e.currentTarget.id === 'txtPw1' && (e.keyCode === 9 || e.keyCode === 13)) || nextStep != null) {\r\n\t\t\tif (this.frmSignup.pw2Status === false) {\r\n\t\t\t\tthis.frmSignup.pw2Status === null;\r\n\t\t\t}\r\n\t\t\tvar pw = AppUtilityService.validatePassword(this.txtPw1.nativeElement.value);\r\n\t\t\tthis.frmSignup.pw1Status = pw.strength < 100 ? false : true;\r\n\r\n\t\t\tif (this.frmSignup.pw1Status === true) {\r\n\t\t\t\tthis.frmSignup.pwMsg =\"\";\r\n\t\t\t\tif (nextStep == null) {\r\n\t\t\t\t\tsetTimeout(() => { this.txtPw2.nativeElement.focus(); }, 100);\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\tthis.frmSignup.pw1Status = false;\r\n\t\t\t\tthis.txtPw1.nativeElement.blur();\r\n\t\t\t\tthis.frmSignup.pwMsg = pw.message;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tif ((e.currentTarget.id === 'txtPw2' && (e.keyCode === 13 || e.keyCode === 9)) || nextStep != null) {\r\n\t\t\t//bc some sort of timing thing happens that sends us back in here on keyup after tabbing or entering out of pw1 field\r\n\t\t\tif (e.type === 'keyup') {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\tif (this.frmSignup.pw1Status === false) {\r\n\t\t\t\tthis.frmSignup.pw1Status === null;\r\n\t\t\t}\r\n\t\t\tlet pw = AppUtilityService.validatePassword(this.txtPw2.nativeElement.value);\r\n\t\t\tthis.frmSignup.pw2Status = pw.strength < 100 ? false : true;\r\n\r\n\t\t\tif (this.frmSignup.pw2Status === true) {\r\n\t\t\t\tthis.frmSignup.pwMsg = \"\";\r\n\t\t\t\tif (this.frmSignup.pw1 === this.frmSignup.pw2) {\r\n\t\t\t\t\tthis.frmSignup.pw1Status === true;\r\n\t\t\t\t\tthis.frmSignup.pw2Status === true;\r\n\t\t\t\t\tthis.frmSignup.pwMsg = \"\";\r\n\t\t\t\t\t//only go to next screen if user hit enter or next button (tab should just provide validation feedback)\r\n\t\t\t\t\tif (e.keyCode === 13 || nextStep != null) {\r\n\t\t\t\t\t\tthis.changeStep(nextStep == null ? this.currentStep + 1 : nextStep);\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tif (e.keyCode === 9) {\r\n\t\t\t\t\t\t\tsetTimeout(() => {this.btnPwNext.nativeElement.focus();}, 100);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\tthis.frmSignup.pw1Status = false;\r\n\t\t\t\t\tthis.frmSignup.pw2Status = false;\r\n\t\t\t\t\tthis.txtPw2.nativeElement.blur();\r\n\t\t\t\t\tthis.frmSignup.pwMsg = 'Oops! Please make sure both passwords are the same.';\r\n\t\t\t\t\tif (e.keyCode === 9) {\r\n\t\t\t\t\t\tsetTimeout(() => {this.btnPwNext.nativeElement.focus();}, 100);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.frmSignup.pw2Status = false;\r\n\t\t\t\tthis.txtPw2.nativeElement.blur();\r\n\t\t\t\tthis.frmSignup.pwMsg = pw.message;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t//#endregion password\r\n\r\n\t//#region dob\r\n\tdobMonthDisplay:string = '';\r\n\tdobDateDisplay: string = '';\r\n\tdobYearDisplay: string = '';\r\n\tprivate valMonth() {\r\n\t\tif (this.dobMonthDisplay.length >= 1 && this.dobMonthDisplay.length <= 2) {\r\n\t\t\tthis.frmSignup.dobMonthStatus = (parseInt(this.dobMonthDisplay) < 1 || parseInt(this.dobMonthDisplay) > 12) ? false : true;\r\n\t\t} else {\r\n\t\t\tthis.frmSignup.dobMonthStatus = false;\r\n\t\t}\r\n\t}\r\n\r\n\tprivate valDate() {\r\n\t\tthis.frmSignup.dobDateStatus = ((this.dobDateDisplay.length > 2 || this.dobDateDisplay.length === 0) || parseInt(this.dobDateDisplay) < 1 || parseInt(this.dobDateDisplay) > 31) ? false : true;\r\n\t}\r\n\r\n\tprivate valYear() {\r\n\t\tthis.frmSignup.dobYearStatus = (this.dobYearDisplay.length !== 4 || parseInt(this.dobYearDisplay) < this.minYear || parseInt(this.dobYearDisplay) > this.maxYear) ? false : true;\r\n\t}\r\n\r\n\tcheckDOB(e: any, nextStep?:number) {\r\n\t\t//trim out not number\r\n\t\tthis.dobMonthDisplay = this.dobMonthDisplay.replace(/\\D/g, '').trim();\r\n\t\tthis.dobDateDisplay = this.dobDateDisplay.replace(/\\D/g, '').trim();\r\n\t\tthis.dobYearDisplay = this.dobYearDisplay.replace(/\\D/g, '').trim();\r\n\r\n\t\t//month status\r\n\t\tif (e.keyCode === 13 || e.currentTarget.id === 'txtDobMonth') {\r\n\t\t\tthis.valMonth();\r\n\t\t}\r\n\t\t//auto forward on 2 digit input\r\n\t\tif (this.frmSignup.dobMonthStatus && e.keyCode != null && e.keyCode !== 9 && e.keyCode !== 8) {\r\n\t\t\tif (e.target.id === 'txtDobMonth' && e.currentTarget.value.length === 2) {\r\n\t\t\t\tthis.txtDobDate.nativeElement.focus();\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t}\r\n\t\t//date status\r\n\t\tif (e.keyCode === 13 || e.currentTarget.id === 'txtDobDate') {\r\n\t\t\tthis.valDate();\r\n\t\t}\r\n\t\t//auto forward on 2 digit input\r\n\t\tif (this.frmSignup.dobDateStatus && e.keyCode != null && e.keyCode !== 9 && e.keyCode !== 8) {\r\n\t\t\tif (e.target.id === 'txtDobDate' && e.currentTarget.value.length === 2) {\r\n\t\t\t\tthis.txtDobYear.nativeElement.focus();\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t}\r\n\t\t//year status \r\n\t\tif (e.keyCode === 13 || e.currentTarget.id === 'txtDobYear') {\r\n\t\t\tthis.valYear();\r\n\t\t}\r\n\t\tif (e.keyCode === 13 || nextStep != null || (e.type === 'keyup' && this.dobMonthDisplay !== '' && this.dobDateDisplay !== '' && this.dobYearDisplay !== '')) {\r\n\t\t\t//re-validate fields incase user left fields populated without tabbing or entering out of them after editing dob\r\n\t\t\tthis.valMonth();\r\n\t\t\tthis.valDate();\r\n\t\t\tthis.valYear();\r\n\r\n\t\t\t//format saved date as double date \r\n\t\t\tif (this.dobMonthDisplay.length === 1) {\r\n\t\t\t\tthis.frmSignup.dobMonth = '0' + this.dobMonthDisplay;\r\n\t\t\t} else {\r\n\t\t\t\tthis.frmSignup.dobMonth = this.dobMonthDisplay;\r\n\t\t\t}\r\n\t\t\tif (this.dobDateDisplay.length === 1) {\r\n\t\t\t\tthis.frmSignup.dobDate = '0' + this.dobDateDisplay;\r\n\t\t\t} else {\r\n\t\t\t\tthis.frmSignup.dobDate = this.dobDateDisplay;\r\n\t\t\t}\r\n\r\n\t\t\tif (this.dobYearDisplay.length === 1) {\r\n\t\t\t\tthis.frmSignup.dobYear = '0' + this.dobYearDisplay;\r\n\t\t\t} else {\r\n\t\t\t\tthis.frmSignup.dobYear = this.dobYearDisplay;\r\n\t\t\t}\r\n\t\t\t// check if it is a valid date\r\n\t\t\tif (this.frmSignup.dobMonthStatus === true && this.frmSignup.dobDateStatus === true && this.frmSignup.dobYearStatus === true && this.dobSrv.validateDate(this.frmSignup.dobMonth, this.frmSignup.dobDate, this.frmSignup.dobYear)) {\r\n\t\t\t\tthis.frmSignup.dob = this.dobSrv.Dob;\r\n\t\t\t\tthis.frmSignup.dobAge = this.dobSrv.Age;\r\n\t\t\t\tthis.frmSignup.dobStatus = true;\r\n\t\t\t\tif (((e.keyCode === 13 || e.type === 'click') && this.frmSignup.dobAge >= 13) || (e != null && e.type === 'click' && e.currentTarget.id === 'btnGotPermission')) {\r\n\t\t\t\t\tthis.frmSignup.dobMsg = \"\";\r\n\t\t\t\t\tthis.changeStep(nextStep == null ? this.currentStep + 1 : nextStep);\r\n\t\t\t\t} else if (this.frmSignup.dobAge < 13) {\r\n\t\t\t\t\tthis.frmSignup.dobMsg = 'Looks like you\\'re younger than 13. Get your guardian\\'s permission before moving ahead!';\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.frmSignup.dobMsg = \"\";\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.frmSignup.dobMsg = 'Please check that date is formatted as MM-DD-YYYY';\r\n\t\t\t\tthis.frmSignup.dobStatus = false;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t//if user hit enter or next we should blur from all fields\r\n\t\tif (e.keyCode === 13) {\r\n\t\t\tthis.txtDobMonth.nativeElement.blur();\r\n\t\t\tthis.txtDobDate.nativeElement.blur();\r\n\t\t\tthis.txtDobYear.nativeElement.blur();\r\n\t\t}\r\n\t}\r\n\t//#endregion dob\r\n\r\n\t//#region connection\r\n\ttoggleConnect(hasCode:boolean) {\r\n\t\tthis.frmSignup.connectionSkip = !hasCode;\r\n\t\tif (!hasCode) {\r\n\t\t\tthis.frmSignup.connection = '';\r\n\t\t\tthis.frmSignup.connectionStatus = true;\r\n\t\t\tthis.frmSignup.role = 'Other';\r\n\t\t\tthis.submitSignup();\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.frmSignup.connectionStatus = null;\r\n\t\t}\r\n\t}\r\n\r\n\tprivate checkCode() {\r\n\t\tthis.frmSignup.connectionStatus = false;\r\n\t\t//validate connection code\r\n\t\tthis.userAPI.checkValidationCodeExist(this.frmSignup.connection).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tif (response.Detail === 'true') {\r\n\t\t\t\t\tthis.frmSignup.role = response.Note;\r\n\t\t\t\t\tthis.frmSignup.connectionStatus = true;\r\n\t\t\t\t\tthis.submitSignup();\r\n\t\t\t\t} else {\r\n\t\t\t\t\tthis.frmSignup.connectionMsg = 'Hmmm we don\\'t recognize your code, please try again. Please contact help@journeysmap.com.';\r\n\t\t\t\t\tthis.frmSignup.connectionStatus = false;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tlet error = err.error;\r\n\t\t\t\tif (error && error.Detail) {\r\n\t\t\t\t\tif (error.Detail.toLowerCase() === 'expired') {\r\n\t\t\t\t\t\tthis.frmSignup.connectionMsg = 'Hmmm this code has expired, please verify the code and try again or contact your teacher.';\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\tthis.frmSignup.connectionMsg = 'Hmmm we don\\'t recognize your code, please try again. Please contact help@journeysmap.com.';\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.frmSignup.connectionMsg = 'Oops! Something went wrong. Please try again later.';\r\n\t\t\t\t}\r\n\t\t\t\tthis.frmSignup.connectionStatus = false;\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tcheckConnection(e: any, nextStep?:number) {\r\n\t\tthis.frmSignup.connectionMsg = \"\";\r\n\t\tif (e.keyCode === 13 || nextStep != null) {\r\n\t\t\tthis.checkCode();\r\n\t\t}\r\n\t\tif (e.keyCode === 9) {\r\n\t\t\tthis.checkCode();\r\n\t\t}\r\n\t\tif (this.frmSignup.connectionStatus === false) {\r\n\t\t\tthis.frmSignup.connectionStatus = null;\r\n\t\t}\r\n\t}\r\n\t//#endregion connection\r\n\r\n\tprivate signupErrorCode = '';\r\n\treviewRetry() {\r\n\t\tif (this.signupErrorCode === '50004') {\r\n\t\t\tthis.changeStep(1);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.changeStep(0);\r\n\t\t}\r\n\t}\r\n\r\n\tprivate submitSignup() {\r\n\t\tthis.currentStep = this.steps.length - 1;\r\n\t\tthis.signupErrorCode = '';\r\n\t\tthis.doneSignup = false;\r\n\t\tthis.isWaiting = true;\r\n\t\tthis.usernameTaken = false;\r\n\r\n\t\tlet username = this.anonymousUser != null ? this.anonymousUser.Email : this.frmSignup.byEmail ? this.frmSignup.email.trim() : this.frmSignup.username.trim();\r\n\t\t// if username is like email, copy it to email field\r\n\t\tlet email = AppUtilityService.isEmail(username) ? username : '';\r\n\r\n\t\tlet institutionCode = '';\r\n\t\tif (this.institution != null && this.isPublic === true) {\r\n\t\t\tinstitutionCode = this.institution.InstitutionCode;\r\n\t\t}\r\n\r\n\t\tlet apiKey = this.anonymousUser != null ? this.anonymousUser.APIKey : this.userInfo.getProfile().APIKey.trim();\r\n\r\n\t\tlet reg = {\r\n\t\t\tBirthDate: this.frmSignup.dob,\r\n\t\t\tEmail: email,\r\n\t\t\tFirstName: this.frmSignup.firstName.trim(),\r\n\t\t\tLastName: this.frmSignup.lastName.trim(),\r\n\t\t\tPassword: this.frmSignup.pw1,\r\n\t\t\tPersonRoles: [{ Role: this.frmSignup.role }],\r\n\t\t\tUserName: username,\r\n\t\t\tValidationCode: this.frmSignup.connection.trim(),\r\n\t\t\tInstitutionCode: this.anonymousUser != null ? this.anonymousUser.InstitutionCode : institutionCode.trim(),\r\n\t\t\tAPIKey: apiKey,\r\n\t\t\tAnonymousUserLink: this.anonymousUser != null ? this.anonymousUser.AnonymousUserLink : ''\r\n\t\t};\r\n\r\n\t\tthis.signupMsg = 'Submit sign up info ...';\r\n\t\tlet sessionId: string = \"\";\r\n\t\tthis.sessionAPI.getSessionId().subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tsessionId = response;\r\n\t\t\t\tthis.userAPI.register(reg).subscribe({\r\n\t\t\t\t\tnext: (success: any) => {\r\n\t\t\t\t\t\tif (success !== null && success.UserName !== null && success.Password !== null) {\r\n\t\t\t\t\t\t\tthis.signupMsg = 'Login...';\r\n\t\t\t\t\t\t\t// try to login with new user/pw\r\n\t\t\t\t\t\t\tthis.sessionAPI.signOn(success.UserName, success.Password, success.ZoneClient).subscribe({\r\n\t\t\t\t\t\t\t\tnext: () => {\r\n\t\t\t\t\t\t\t\t\tthis.doneSignup = true;\r\n\t\t\t\t\t\t\t\t\tif (reg.AnonymousUserLink.length > 0) {\r\n\t\t\t\t\t\t\t\t\t\tthis.signupMsg = 'Transfer anonymous user by email...';\r\n\t\t\t\t\t\t\t\t\t\tthis.userAPI.transferAnonymousUserData(this.anonymousUser.AnonymousUserLink).subscribe({\r\n\t\t\t\t\t\t\t\t\t\t\tnext: () => {\r\n\t\t\t\t\t\t\t\t\t\t\t\tthis.closeSignup();\r\n\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\t\t\t\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t\t\t\t\t\t\t\t\tthis.closeSignup();\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\telse if (sessionId.length > 0) {\r\n\t\t\t\t\t\t\t\t\t\tthis.signupMsg = 'Transfer anonymous session data...';\r\n\t\t\t\t\t\t\t\t\t\tthis.userAPI.copyAnonymousSessionData(sessionId).subscribe({\r\n\t\t\t\t\t\t\t\t\t\t\tnext: () => {\r\n\t\t\t\t\t\t\t\t\t\t\t\tthis.closeSignup();\r\n\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\t\t\t\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t\t\t\t\t\t\t\t\tthis.closeSignup();\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t\t\t\telse {\r\n\t\t\t\t\t\t\t\t\t\tthis.closeSignup();\r\n\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t\t\t\t\t\terror = error.error;\r\n\t\t\t\t\t\t\t\t\tthis.signupMsg = error.Detail != null ? error.Detail : \"\";\r\n\t\t\t\t\t\t\t\t\tthis.isWaiting = false;\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse {\r\n\t\t\t\t\t\t\tthis.signupMsg = 'Fail to login automatically. Please try to login manually.';\r\n\t\t\t\t\t\t\tthis.isWaiting = false;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t},\r\n\t\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t\t\terror = error.error;\r\n\t\t\t\t\t\tthis.signupErrorCode = (error.Code ?? \"\");\r\n\t\t\t\t\t\tif (error.Code === '50004') {\r\n\t\t\t\t\t\t\tthis.usernameTaken = true;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse {\r\n\t\t\t\t\t\t\tthis.signupMsg = error.Detail;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tthis.isWaiting = false;\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t\tthis.signupMsg = 'Fail to sign up. Please retry.';\r\n\t\t\t\tthis.isWaiting = false;\r\n\t\t\t}\r\n\t\t})\r\n\t\t\t\r\n\t}\r\n\r\n\tprivate closeSignup() {\r\n\t\tthis.onClose('signup');\r\n\t}\r\n\r\n\tgoLogin() {\r\n\t\tthis.onClose('showLogin');\r\n\t}\r\n\r\n\tcancel(e: any) {\r\n\t\tthis.onClose('cancel');\r\n\t}\r\n\r\n\tlogin(e: any) : void {\r\n\t\te.preventDefault();\r\n\t\tthis.onClose('showLogin');\r\n\t}\r\n\r\n\tprivate getInstitution() {\r\n\t\t// see if this user is from NCES, Cyber... learn more\r\n\t\tif (this.userInfo.getInstitutionCode() !== '') {\r\n\t\t\tthis.institutionAPI.getInstitution(this.userInfo.getInstitutionCode()).subscribe({\r\n\t\t\t\tnext: (result: any) => {\r\n\t\t\t\t\tif (result) {\r\n\t\t\t\t\t\tthis.institution = result;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tthis.isWaiting = false;\r\n\t\t\t\t},\r\n\t\t\t\terror: (error: any) => {\r\n\t\t\t\t\tconsole.log(error);\r\n\t\t\t\t\tthis.isWaiting = false;\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.isWaiting = false;\r\n\t\t}\r\n\r\n\t\t// go to first step\r\n\t\tthis.currentStep = 0;\r\n\t\tsetTimeout(() =>{this.txtFirstName.nativeElement.focus();}, 1000);\r\n\t}\r\n\r\n\tngAfterViewInit(): void {\r\n\t\t// get anonymous user info if anonymousUserLink is provided\r\n\t\tthis.anonymousUser = null;\r\n\t\tif (this.anonymousUserLink === '') {\r\n\t\t\tthis.getInstitution();\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.userAPI.getAnonymousUser(this.anonymousUserLink).subscribe({\r\n\t\t\t\tnext: (response: any) => {\r\n\t\t\t\t\tif (response.Email !== '') {\r\n\t\t\t\t\t\tthis.anonymousUser = response;\r\n\t\t\t\t\t\tthis.frmSignup.byEmail = true;\r\n\t\t\t\t\t\tthis.frmSignup.email = this.anonymousUser.Email;\r\n\t\t\t\t\t\tthis.frmSignup.emailStatus = true;\r\n\t\t\t\t\t\tthis.frmSignup.username = '';\r\n\t\t\t\t\t\tthis.frmSignup.usernameStatus = null;\r\n\t\t\t\t\t\t// already sign up?\r\n\t\t\t\t\t\tif (this.anonymousUser.SignUpTime != null && this.anonymousUser.SignUpTime !== '') {\r\n\t\t\t\t\t\t\tthis.alreadySignup = true;\r\n\t\t\t\t\t\t\tthis.isWaiting = false;\r\n\t\t\t\t\t\t\treturn;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\tthis.anonymousUserLink = '';\r\n\t\t\t\t\t}\r\n\t\t\t\t\tthis.getInstitution();\r\n\t\t\t\t},\r\n\t\t\t\terror: () => {\r\n\t\t\t\t\tthis.anonymousUserLink = '';\r\n\t\t\t\t\tthis.getInstitution();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\tthis.anonymousUserLink = (this.anonymousUserLink??\"\").trim();\r\n\t\tthis.isWaiting = true;\r\n\t\tthis.signupMsg = '';\r\n\t\tthis.doneSignup = false;\r\n\t\tthis.alreadySignup = false;\r\n\t\tthis.currentStep = this.steps.length - 1;\r\n\r\n\t\t// if user already login and somehow this is called, then do not show signup, show login instead\r\n\t\tif (this.userInfo.isAnonymous() === false || !this.userInfo.allowSignup()) {\r\n\t\t\tthis.onClose('showSignup');\r\n\t\t\treturn;\r\n\t\t}\r\n\t}\r\n}\r\n","\r\n\r\n\r\n\r\n\r\n\t\r\n\t
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t
\r\n\t\t\t

\r\n\t\t
\r\n\t\t\r\n\t\t
\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t
\r\n\t\t\r\n\t\t
\r\n\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t

\t\t\t\r\n\t\t
\r\n\t
\r\n\t\r\n\t
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t
\r\n\t
\r\n\t
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t
\r\n\t\t
\r\n\t\t
\r\n\t\t
\r\n\t\t
\r\n\t\t
\r\n\t
\r\n\t
\r\n\t\t\r\n\t\t

\r\n\r\n\t\t\r\n\t\t
![]()
\r\n\t\t
![]()
\r\n\t\t
![]()
\r\n\t\t
![]()
\r\n\t\t
![]()
\r\n\t\t
![]()
\r\n\t\t
![]()
\r\n\t
\r\n\t\r\n\t
\r\n\r\n\t\t
\r\n\t\t\t\r\n\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t
\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t
=0)?'progressIndicatorCenterCurrent':'progressIndicatorCenterDefault'\">\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t
=1)?'progressIndicatorCenterCurrent':'progressIndicatorCenterDefault'\">\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t
=2)?'progressIndicatorCenterCurrent':'progressIndicatorCenterDefault'\">\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t
=3)?'progressIndicatorCenterCurrent':'progressIndicatorCenterDefault'\">\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t
=4)?'progressIndicatorCenterCurrent':'progressIndicatorCenterDefault'\">\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\tAlready have an account? Please
login!\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
=1)?'disableEvents':'disableEvents'\" (click)=\"signupComponent.prgIndicatorJumpTo($event, 0)\">\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t
=0)?'progressIndicatorCenterCurrent':'progressIndicatorCenterDefault'\">\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
=1)?'disableEvents':'disableEvents'\" (click)=\"signupComponent.prgIndicatorJumpTo($event, 1)\">\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t
=1)?'progressIndicatorCenterCurrent':'progressIndicatorCenterDefault'\">\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\tAlready have an account?
Login\r\n\t\t\t\t
\r\n\r\n\t\t\t
\r\n\t\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t
If you remember your account now, please Login!
\t\t\t\t\r\n\t\t\t
\r\n\t\t\r\n\t
\r\n
\r\n\r\n","\r\n\r\n\r\n","\r\n\r\n\r\n\r\n","\r\n\r\n\r\n","import { Injectable } from '@angular/core';\r\nimport { MatDialog } from '@angular/material/dialog';\r\nimport { AppService } from '../../app.service';\r\nimport { SignupLoginDialog } from '../signupLogin/signup-login.component';\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class AnonymousUserService {\r\n\tconstructor(\r\n\t\tprivate dialog: MatDialog,\r\n\t\tprivate appSrv: AppService\r\n\t) { }\r\n\r\n\topenSignupLogin(display: \"signup\"|\"login\", goPath: string, doRefresh: boolean, prefillUsername: string, callback: () => void) {\r\n\t\tgoPath = (goPath ?? \"\").trim();\r\n\t\tprefillUsername = (prefillUsername ?? \"\").trim();\r\n\r\n\t\tlet popup = this.dialog.open(\r\n\t\t\tSignupLoginDialog,\r\n\t\t\t{\r\n\t\t\t\twidth: \"100%\",\r\n\t\t\t\theight:\"100%\",\r\n\t\t\t\tdisableClose: true,\r\n\t\t\t\tautoFocus: true,\r\n\t\t\t\tpanelClass: 'jmSignupLogin',\r\n\t\t\t\tdata: {\r\n\t\t\t\t\tdisplay: display,\r\n\t\t\t\t\tprefillUsername: prefillUsername,\r\n\t\t\t\t\tglobalAccount: false\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t);\r\n\t\t// close\r\n\t\tpopup.afterClosed().subscribe(\r\n\t\t\tresult => {\r\n\t\t\t\tif (callback != null) {\r\n\t\t\t\t\tcallback();\r\n\t\t\t\t}\r\n\t\t\t\telse if (result !== 'cancel') {\r\n\t\t\t\t\tif (goPath !== '') {\r\n\t\t\t\t\t\tthis.appSrv.goTo(goPath);\r\n\t\t\t\t\t}\r\n\t\t\t\t\tif (doRefresh) {\r\n\t\t\t\t\t\tlocation.reload();\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t);\r\n\t\t// dismiss\r\n\t\tpopup.backdropClick().subscribe(\r\n\t\t\tredult => {\r\n\t\t\t\t// do nonting if dismiss\r\n\t\t\t\tif (callback != null) {\r\n\t\t\t\t\tcallback();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n}\r\n","import { Injectable } from '@angular/core';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport * as Rx from 'rxjs';\r\nimport { tap, map } from 'rxjs/operators';\r\nimport { AppSettingService } from '../app.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\n\r\n\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class CommentAPIService {\r\n\tCommentGroupchanged: any = null;\r\n\tcommentPostIDsToHighlight: any = []; //needed by comments page for highlighting unread comments: navigation.component is only place responsbile for setting/clearing this value.\r\n\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) {\r\n\t\tthis.CommentGroupchanged = new Rx.BehaviorSubject(1);\r\n\t}\r\n\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"Comment\";\r\n\r\n\tgetCommentTopic(commentKey: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tcheckCommentLikeExist(commentKey: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey + \"/Like/exist\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t).pipe(map(\r\n\t\t\tresponse => {\r\n\t\t\t\treturn (response.Detail.toLowerCase() === \"true\") ? true : false\r\n\t\t\t}\r\n\t\t));\r\n\t}\r\n\r\n\tupdateCommentLike(commentKey: string, action: \"add\" | \"delete\"): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey + \"/Like/\" + action,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tcheckCommentPersonExist(commentKey: string): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey + \"/Group/exist\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t).pipe(map(\r\n\t\t\tresponse => {\r\n\t\t\t\treturn (response.Detail.toLowerCase() === \"true\") ? true : false\r\n\t\t\t}\r\n\t\t));\r\n\t}\r\n\r\n\tupdateCommentPerson(commentKey: string, action: \"add\" | \"delete\"): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey + \"/Group/\" + action,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t).pipe(tap(x => {\r\n\t\t\tthis.CommentGroupchanged.next(this.CommentGroupchanged.getValue() + 1);\r\n\t\t}));\r\n\t}\r\n\r\n\tsaveCommentPost(commentKey: string, comment: string, forCommentPostId?: number): Rx.Observable {\r\n\t\tlet data = {\r\n\t\t\t\"Comment\": comment,\r\n\t\t\t\"ForCommentPostId\": forCommentPostId\r\n\t\t}\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey + \"/Post\",\r\n\t\t\tdata,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tsearchCommentPosts(commentKey: string, startCommentPostId: string,limit: number): Rx.Observable {\t\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey + \"/Post?startCommentPostId=\" + startCommentPostId + \"&limit=\" + limit.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tgetCommentPost(commentKey: string, commentPostId: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Topic/\" + commentKey + \"/Post/\" + commentPostId.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tcheckCommentPostLikeExist(commentPostId: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Post/\" + commentPostId.toString() + \"/Like/exist\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t).pipe(map(\r\n\t\t\tresponse => {\r\n\t\t\t\treturn (response.Detail.toLowerCase() === \"true\") ? true : false\r\n\t\t\t}\r\n\t\t));\r\n\t}\r\n\r\n\tupdateCommentPostLike(commentPostId: number, like: \"add\" | \"delete\"): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Post/\" + commentPostId.toString() + \"/Like/\" + like,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n}\r\n","import { Injectable } from '@angular/core';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport * as Rx from 'rxjs';\r\nimport { tap, map } from 'rxjs/operators';\r\nimport { AnonymousUserService } from '../user/anonymousUser/anonymous-user.service';\r\nimport { AppSettingService, AppUtilityService } from '../app.service';\r\nimport { CacheService } from '../utility/cache.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\n\r\nexport enum ESocialSourceType {\r\n\tMap = 1,\r\n\tResource = 2,\r\n\tCollegeScorecard = 3,\r\n\tNCES = 4,\r\n\tCyber = 5,\r\n\tCareerOneStopTraining = 6,\r\n\tCareerOneStopOrg = 7\r\n}\r\n\r\nexport enum ESocialType {\r\n\tUnknown = 0,\r\n\tCSCCollege = 1,\r\n\tCSCProgram = 2,\r\n\t// Career\r\n\tCareerCluster = 4,\r\n\tCareerPathway = 5,\r\n\tOccupation = 6,\r\n\t// K12\r\n\tK12Grade = 12,\r\n\tK12Subject = 13,\r\n\tK12Strand = 14,\r\n\tK12Standard = 15,\r\n\tK12Benchmark = 16,\r\n\tK12SubBenchmark = 17,\r\n\tK12Resource = 18,\r\n\t// College\r\n\tCollegeCluster = 22,\r\n\tCollegeProgram = 23,\r\n\tCollegeCourse = 24,\r\n\t// CTE\r\n\tCTECluster = 32,\r\n\tCTEPathway = 33,\r\n\tCTEStrand = 34,\r\n\tCTEStandard = 35,\r\n\tCTEPerformanceIndicator = 36,\r\n\t//Certification \r\n\tCertificationCluster = 42,\r\n\tCertificationPathway = 43,\r\n\tCertificate = 45,\r\n\tCertificateTraining = 47,\r\n\tCertificateOrg = 46,\r\n\t//Military\r\n\tMilitary = 54,\r\n\t// Cyber\r\n\tCyberPodcast = 247,\r\n\tCyberPodcastEpisode = 248,\r\n\tCyberEvent = 249,\r\n\tCyberArticle = 250,\r\n\t// others\r\n\tResource = 255\r\n}\r\n\r\nexport enum ESocialIconType {\r\n\tFollow = 1,\r\n\tSave = 2, // use for Resource\r\n\tFavorite = 3 // Favorite is used by podcast, but we save as follow\r\n}\r\n\r\nexport enum ESocialIconStyle {\r\n\tIcon = 1,\r\n\tButton = 2\r\n}\r\n\r\nexport type TMyFollowingSort = \"AToZ\" | \"ZToA\" | \"Chronological\";\r\n\r\nexport interface ISocialSearch {\r\n\tTypeIds: number[],\r\n\tKeyword?: string,\r\n\tSortBy: TMyFollowingSort,\r\n\tUserId?: string,\r\n\tLimit: number,\r\n\tPreviousTime?: Date,\r\n\tPreviousName?: string\r\n}\r\n\r\nexport interface IOccupation {\r\n\tOccupationCode: string,\r\n\tOccupationName: string,\r\n\tMapObjectId: string,\r\n\tPathwayName: string,\r\n\tClusterName: string,\r\n\tIsBrightOutlook: boolean,\r\n\tIsGreen: boolean,\r\n\tIsHot: boolean,\r\n\tEducation: {\r\n\t\tUnderHighSchoolPercent: number,\r\n\t\tHighSchoolDiplomaPercent: number,\r\n\t\tAssociateDegreePercent: number,\r\n\t\tBachelorDegreePercent: number,\r\n\t\tMasterDegreePercent: number,\r\n\t\tDoctoralDegreePercent: number,\r\n\t\tPostBaccalaureateCertificatePercent: number,\r\n\t\tPostSecondaryCertificatePercent: number,\r\n\t\tSomeCollegeNoDegreePercent: number,\r\n\t\tPostDoctoralTrainingPercent: number,\r\n\t\tPostMasterCertificatePercent: number,\r\n\t\tProfessionalDegreePercent: number\r\n\t},\r\n\tCurrentEmployment: string,\r\n\tProjectedEmploymentGrowthPercent: string,\r\n\tProjectedEmploymentGrowthAverage: string,\r\n\tProjectedJobOpenings: string,\r\n\tAverageAnnualSalary: string,\r\n\tHeroImage: string,\r\n\tMapInstances: [\r\n\t\t{\r\n\t\t\tClusterId: string,\r\n\t\t\tClusterHeroImage: string,\r\n\t\t\tClusterName: string,\r\n\t\t\tMapObjectId: string,\r\n\t\t\tPathwayId: string,\r\n\t\t\tPathwayHeroImage: string,\r\n\t\t\tPathwayName: string,\r\n\t\t\tClusterIcon: string\r\n\t\t}\r\n\t],\r\n\tLevelIconClusters: string [],\r\n\tJourneyable: boolean,\r\n\tHasLearnMore: boolean,\r\n\tCanSocial: boolean,\r\n\tDepthLevel: number,\r\n\tTerritoryId: number,\r\n\tDescription: string,\r\n\tIsAvailable: boolean,\r\n\tObjectKey: string,\r\n\tObjectName: string\r\n}\r\n\r\n/* SocialObjectAPIService migrated from informAPI.js -v129 */\r\n@Injectable({\r\n\tprovidedIn: 'root'\r\n})\r\nexport class SocialObjectAPIService {\r\n\tsocialStatushanged: any = null;\r\n\r\n\tconstructor(\r\n\t\tprivate anonymousSrv: AnonymousUserService,\r\n\t\tprivate cacheSrv: CacheService,\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate http: HttpClient\r\n\t) {\r\n\t\t//this.getUserAllSocialObjects().subscribe();\r\n\t\tthis.socialStatushanged = new Rx.BehaviorSubject(1);\r\n\t}\r\n\r\n\tprivate userSOCache: any = null;\r\n\tprivate url = AppSettingService.appConfig.JourneyAPIUrl + \"SocialObject\";\r\n\r\n\tinitUserSocialObjects(): Promise {\r\n\t\tif (this.userInfo == null || this.userInfo.isAnonymous()) {\r\n\t\t\treturn new Promise((resolve) => {\r\n\t\t\t\tresolve([]);\r\n\t\t\t});\r\n\t\t}\r\n\t\telse {\r\n\t\t\t// ensure we do not throw error\r\n\t\t\treturn Rx.firstValueFrom(this.getUserAllSocialObjects())\r\n\t\t\t\t.catch((error: any) => {\r\n\t\t\t\t\tconsole.log(\"initUserSocialObjects error: \", error);\r\n\t\t\t\t}).then(() => { });\r\n\t\t}\r\n\t}\r\n\r\n\tgetUserAllSocialObjects(): Rx.Observable {\r\n\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\treturn Rx.of([]);\r\n\t\t}\r\n\t\telse if (this.userSOCache != null) {\r\n\t\t\treturn Rx.of(this.userSOCache);\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + \"/\",\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t).pipe(\r\n\t\t\t\ttap(\r\n\t\t\t\t\tresponse => {\r\n\t\t\t\t\t\tthis.userSOCache = response;\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\tgetSocialObjectType(): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/Type\",\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tisFollowing(sourceId: string, typeId: string, objectKey: string): Rx.Observable {\r\n\t\tsourceId == null ? '' : sourceId.trim();\r\n\t\ttypeId == null ? '' : typeId.trim();\r\n\t\tobjectKey == null ? '' : objectKey.trim();\r\n\r\n\t\tif (sourceId === '' && typeId === '') {\r\n\t\t\treturn Rx.throwError(() => { 'please provide either sourceId or typeId' });\r\n\t\t}\r\n\t\telse if (objectKey === '') {\r\n\t\t\treturn Rx.of(false);\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.getUserAllSocialObjects().pipe(\r\n\t\t\t\tmap(\r\n\t\t\t\t\tresponse => {\r\n\t\t\t\t\t\tlet o = null;\r\n\t\t\t\t\t\tif (typeId !== '' && typeId !== '0') {\r\n\t\t\t\t\t\t\to = response.filter((x: any) => { return x.TypeId === typeId && x.ObjectKey === objectKey; });\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse {\r\n\t\t\t\t\t\t\to = response.filter((x: any) => { return x.SourceId === sourceId && x.ObjectKey === objectKey; });\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tif (o != null && o.length > 0) {\r\n\t\t\t\t\t\t\treturn true;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse {\r\n\t\t\t\t\t\t\treturn false;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t)\r\n\t\t}\r\n\t}\r\n\r\n\tsaveUserSocialObject(socialObject: any): Rx.Observable {\r\n\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\tthis.anonymousSrv.openSignupLogin(\"login\", \"\", true, \"\", null);\r\n\t\t\treturn Rx.throwError(() => \"Need login\");\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.http.post(\r\n\t\t\t\tthis.url + \"/Save\",\r\n\t\t\t\tsocialObject,\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(true) }\r\n\t\t\t\t}\r\n\t\t\t).pipe(\r\n\t\t\t\tmap(\r\n\t\t\t\t\tresponse => {\r\n\t\t\t\t\t\tthis.userSOCache = response;\r\n\t\t\t\t\t\tthis.socialStatushanged.next(this.socialStatushanged.getValue() + 1);\r\n\t\t\t\t\t\treturn { data: \"done\" };\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\tsaveUserSocialObjectById(sourceId: string, objectTypeId: string, objectKey: string, follow: boolean): Rx.Observable {\r\n\t\tsourceId = sourceId == null ? \"\" : sourceId.toString().trim();\r\n\t\tobjectTypeId = objectTypeId == null ? \"\" : objectTypeId.toString().trim();\r\n\t\tobjectKey = objectKey == null ? \"\" : objectKey.toString().trim();\r\n\r\n\t\tif (sourceId === '' || objectTypeId === '' || objectKey === '') {\r\n\t\t\treturn Rx.throwError(() => { \"source, type, and object key are required\" });\r\n\t\t}\r\n\r\n\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\tthis.anonymousSrv.openSignupLogin(\"login\", \"\", true, \"\", null);\r\n\t\t\treturn Rx.throwError(() => { \"Need login\" });\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn this.http.get(\r\n\t\t\t\tthis.url + '/Save/' + encodeURIComponent(sourceId) + '/' + encodeURIComponent(objectTypeId) + '/' + encodeURIComponent(objectKey) + '/' + follow.toString(),\r\n\t\t\t\t{\r\n\t\t\t\t\twithCredentials: true,\r\n\t\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t\t}\r\n\t\t\t).pipe(\r\n\t\t\t\tmap(\r\n\t\t\t\t\tresponse => {\r\n\t\t\t\t\t\tthis.userSOCache = response;\r\n\t\t\t\t\t\tthis.socialStatushanged.next(this.socialStatushanged.getValue() + 1);\r\n\t\t\t\t\t\treturn { data: \"done\" };\r\n\t\t\t\t\t}\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t}\r\n\t}\r\n\r\n\tsearchUserObjects(filter: ISocialSearch): Rx.Observable {\r\n\t\tlet formData: FormData = new FormData();\r\n\t\tAppUtilityService.objectToFormData(filter, formData, null);\r\n\t\treturn this.http.post(\r\n\t\t\tthis.url + \"/Search\",\r\n\t\t\tformData,\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tcountSocialObjectFollow(sourceId: string, objectTypeId: string, objectKey: string, reload: boolean): Rx.Observable {\r\n\t\tlet l: string = this.url + \"/Count/Follow/\" + encodeURIComponent(sourceId) + \"/\" + encodeURIComponent(objectTypeId) + \"/\" + encodeURIComponent(objectKey);\r\n\t\tif (reload) {\r\n\t\t\tthis.cacheSrv.remove(l);\r\n\t\t}\r\n\t\treturn this.cacheSrv.get(false, l);\r\n\t}\r\n\r\n\t//get social status by person\r\n\tgetActivityObjectList(userId: string, objectType: number): Rx.Observable {\r\n\t\treturn this.http.get(\r\n\t\t\tthis.url + \"/ObjectList?UserId=\" + userId + \"&ObjectType=\" + objectType.toString(),\r\n\t\t\t{\r\n\t\t\t\twithCredentials: true,\r\n\t\t\t\theaders: { 'Authorization': this.userInfo.authHeader(false) }\r\n\t\t\t}\r\n\t\t);\r\n\t}\r\n\r\n\tcountMyFollowing(): Rx.Observable {\r\n\t\treturn this.getUserAllSocialObjects().pipe(\r\n\t\t\tmap(\r\n\t\t\t\tresponse => {\r\n\t\t\t\t\tif (response != null && response.length > 0) {\r\n\t\t\t\t\t\treturn response.filter((x: any) => { return x.IsCard === true; }).length;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\treturn 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t)\r\n\t\t)\r\n\t}\r\n}\r\n"],"mappings":"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","names":["require_moment","__commonJSMin","exports","module","global","factory","hookCallback","hooks","setHookCallback","callback","isArray","input","isObject","hasOwnProp","a","b","isObjectEmpty","obj","k","isUndefined","isNumber","isDate","map","arr","fn","res","i","arrLen","extend","createUTC","format","locale","strict","createLocalOrUTC","defaultParsingFlags","getParsingFlags","m","some","fun","t","len","isValid","flags","parsedParts","isNowValid","createInvalid","momentProperties","updateInProgress","copyConfig","to","from","prop","val","momentPropertiesLen","Moment","config","isMoment","warn","msg","deprecate","firstTime","args","arg","key","argLen","deprecations","deprecateSimple","name","isFunction","set","mergeConfigs","parentConfig","childConfig","Locale","keys","defaultCalendar","calendar","mom","now","output","zeroFill","number","targetLength","forceSign","absNumber","zerosToFill","sign","formattingTokens","localFormattingTokens","formatFunctions","formatTokenFunctions","addFormatToken","token","padded","ordinal","func","removeFormattingTokens","makeFormatFunction","array","length","formatMoment","expandFormat","replaceLongDateFormatTokens","defaultLongDateFormat","longDateFormat","formatUpper","tok","defaultInvalidDate","invalidDate","defaultOrdinal","defaultDayOfMonthOrdinalParse","defaultRelativeTime","relativeTime","withoutSuffix","string","isFuture","pastFuture","diff","aliases","normalizeUnits","units","normalizeObjectUnits","inputObject","normalizedInput","normalizedProp","priorities","getPrioritizedUnits","unitsObj","match1","match2","match3","match4","match6","match1to2","match3to4","match5to6","match1to3","match1to4","match1to6","matchUnsigned","matchSigned","matchOffset","matchShortOffset","matchTimestamp","matchWord","match1to2NoLeadingZero","match1to2HasZero","regexes","addRegexToken","regex","strictRegex","isStrict","localeData","getParseRegexForToken","unescapeFormat","regexEscape","matched","p1","p2","p3","p4","absFloor","toInt","argumentForCoercion","coercedNumber","value","tokens","addParseToken","tokenLen","addWeekParseToken","addTimeToArrayFromToken","isLeapYear","year","YEAR","MONTH","DATE","HOUR","MINUTE","SECOND","MILLISECOND","WEEK","WEEKDAY","y","daysInYear","getSetYear","makeGetSet","getIsLeapYear","unit","keepTime","set$1","get","d","isUTC","month","date","stringGet","stringSet","prioritized","prioritizedLen","mod","n","x","indexOf","o","daysInMonth","modMonth","defaultLocaleMonths","defaultLocaleMonthsShort","MONTHS_IN_FORMAT","defaultMonthsShortRegex","defaultMonthsRegex","localeMonths","localeMonthsShort","handleStrictParse","monthName","ii","llc","localeMonthsParse","setMonth","getSetMonth","getDaysInMonth","monthsShortRegex","computeMonthsParse","monthsRegex","cmpLenRev","shortPieces","longPieces","mixedPieces","shortP","longP","createDate","M","s","ms","createUTCDate","firstWeekOffset","dow","doy","fwd","fwdlw","dayOfYearFromWeeks","week","weekday","localWeekday","weekOffset","dayOfYear","resYear","resDayOfYear","weekOfYear","resWeek","weeksInYear","weekOffsetNext","localeWeek","defaultLocaleWeek","localeFirstDayOfWeek","localeFirstDayOfYear","getSetWeek","getSetISOWeek","parseWeekday","parseIsoWeekday","shiftWeekdays","ws","defaultLocaleWeekdays","defaultLocaleWeekdaysShort","defaultLocaleWeekdaysMin","defaultWeekdaysRegex","defaultWeekdaysShortRegex","defaultWeekdaysMinRegex","localeWeekdays","weekdays","localeWeekdaysShort","localeWeekdaysMin","handleStrictParse$1","weekdayName","localeWeekdaysParse","getSetDayOfWeek","day","getSetLocaleDayOfWeek","getSetISODayOfWeek","weekdaysRegex","computeWeekdaysParse","weekdaysShortRegex","weekdaysMinRegex","minPieces","minp","shortp","longp","hFormat","kFormat","meridiem","lowercase","matchMeridiem","kInput","pos","pos1","pos2","localeIsPM","defaultLocaleMeridiemParse","getSetHour","localeMeridiem","hours","minutes","isLower","baseConfig","locales","localeFamilies","globalLocale","commonPrefix","arr1","arr2","minl","normalizeLocale","chooseLocale","names","j","next","split","loadLocale","isLocaleNameSane","oldLocale","aliasedRequire","__require","getSetGlobalLocale","values","data","getLocale","defineLocale","updateLocale","tmpLocale","listLocales","checkOverflow","overflow","extendedIsoRegex","basicIsoRegex","tzRegex","isoDates","isoTimes","aspNetJsonRegex","rfc2822","obsOffsets","configFromISO","l","match","allowTime","dateFormat","timeFormat","tzFormat","isoDatesLen","isoTimesLen","configFromStringAndFormat","extractFromRFC2822Strings","yearStr","monthStr","dayStr","hourStr","minuteStr","secondStr","result","untruncateYear","preprocessRFC2822","checkWeekday","weekdayStr","parsedInput","weekdayProvided","weekdayActual","calculateOffset","obsOffset","militaryOffset","numOffset","hm","h","configFromRFC2822","parsedArray","configFromString","defaults","c","currentDateArray","nowValue","configFromArray","currentDate","expectedWeekday","yearToUse","dayOfYearFromWeekInfo","w","weekYear","temp","weekdayOverflow","curWeek","createLocal","skipped","stringLength","totalParsedInputLength","era","meridiemFixWrap","hour","isPm","configFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","validFormatFound","bestFormatIsValid","configfLen","configFromObject","dayOrDate","createFromConfig","prepareConfig","configFromInput","prototypeMin","other","prototypeMax","pickBy","moments","min","max","ordering","isDurationValid","unitHasDecimal","orderLen","isValid$1","createInvalid$1","createDuration","Duration","duration","years","quarters","months","weeks","days","seconds","milliseconds","isDuration","absRound","compareArrays","array1","array2","dontConvert","lengthDiff","diffs","offset","separator","offsetFromString","chunkOffset","matcher","matches","chunk","parts","cloneWithOffset","model","getDateOffset","getSetOffset","keepLocalTime","keepMinutes","localAdjust","addSubtract","getSetZone","setOffsetToUTC","setOffsetToLocal","setOffsetToParsedOffset","tZone","hasAlignedHourOffset","isDaylightSavingTime","isDaylightSavingTimeShifted","isLocal","isUtcOffset","isUtc","aspNetRegex","isoRegex","ret","diffRes","parseIso","momentsDifference","inp","positiveMomentsDifference","base","createAdder","direction","period","dur","tmp","isAdding","updateOffset","add","subtract","isString","isMomentInput","isNumberOrStringArray","isMomentInputObject","objectTest","propertyTest","properties","property","propertyLen","arrayTest","dataTypeTest","item","isCalendarSpec","getCalendarFormat","myMoment","calendar$1","time","formats","sod","clone","isAfter","localInput","isBefore","isBetween","inclusivity","localFrom","localTo","isSame","inputMs","isSameOrAfter","isSameOrBefore","asFloat","that","zoneDelta","monthDiff","wholeMonthDiff","anchor","anchor2","adjust","toString","toISOString","keepOffset","utc","inspect","zone","prefix","datetime","suffix","inputString","fromNow","toNow","newLocaleData","lang","MS_PER_SECOND","MS_PER_MINUTE","MS_PER_HOUR","MS_PER_400_YEARS","mod$1","dividend","divisor","localStartOfDate","utcStartOfDate","startOf","startOfDate","endOf","valueOf","unix","toDate","toArray","toObject","toJSON","isValid$2","parsingFlags","invalidAt","creationData","matchEraAbbr","matchEraName","matchEraNarrow","matchEraYearOrdinal","localeEras","eras","localeErasParse","eraName","abbr","narrow","localeErasConvertYear","dir","getEraName","getEraNarrow","getEraAbbr","getEraYear","erasNameRegex","computeErasParse","erasAbbrRegex","erasNarrowRegex","abbrPieces","namePieces","narrowPieces","erasName","erasAbbr","erasNarrow","addWeekYearFormatToken","getter","getSetWeekYear","getSetWeekYearHelper","getSetISOWeekYear","getISOWeeksInYear","getISOWeeksInISOWeekYear","getWeeksInYear","weekInfo","getWeeksInWeekYear","weeksTarget","setWeekAll","dayOfYearData","getSetQuarter","getSetDayOfMonth","getSetDayOfYear","getSetMinute","getSetSecond","getSetMillisecond","parseMs","getZoneAbbr","getZoneName","proto","createUnix","createInZone","preParsePostFormat","proto$1","get$1","index","field","setter","listMonthsImpl","out","listWeekdaysImpl","localeSorted","shift","listMonths","listMonthsShort","listWeekdays","listWeekdaysShort","listWeekdaysMin","mathAbs","abs","addSubtract$1","add$1","subtract$1","absCeil","bubble","monthsFromDays","monthsToDays","daysToMonths","as","makeAs","alias","asMilliseconds","asSeconds","asMinutes","asHours","asDays","asWeeks","asMonths","asQuarters","asYears","valueOf$1","clone$1","get$2","makeGetter","round","thresholds","substituteTimeAgo","relativeTime$1","posNegDuration","getSetRelativeTimeRounding","roundingFunction","getSetRelativeTimeThreshold","threshold","limit","humanize","argWithSuffix","argThresholds","withSuffix","th","abs$1","toISOString$1","total","totalSign","ymSign","daysSign","hmsSign","proto$2","require_sweetalert2_all","__commonJSMin","exports","module","global","factory","_assertClassBrand","e","t","n","_checkPrivateRedeclaration","_classPrivateFieldGet2","s","a","_classPrivateFieldInitSpec","_classPrivateFieldSet2","r","RESTORE_FOCUS_TIMEOUT","globalState","focusPreviousActiveElement","restoreActiveElement","returnFocus","resolve","x","swalPrefix","swalClasses","acc","className","iconTypes","icon","consolePrefix","capitalizeFirstLetter","str","warn","message","error","previousWarnOnceMessages","warnOnce","warnAboutDeprecation","deprecatedParam","useInstead","callIfFunction","arg","hasToPromiseFn","asPromise","isPromise","getContainer","elementBySelector","selectorString","container","elementByClass","getPopup","getIcon","getIconContent","getTitle","getHtmlContainer","getImage","getProgressSteps","getValidationMessage","getConfirmButton","getCancelButton","getDenyButton","getInputLabel","getLoader","getActions","getFooter","getTimerProgressBar","getCloseButton","focusable","getFocusableElements","popup","focusableElementsWithTabindex","focusableElementsWithTabindexSorted","b","tabindexA","tabindexB","otherFocusableElements","otherFocusableElementsFiltered","el","isVisible$1","isModal","hasClass","isToast","isLoading","setInnerHtml","elem","html","parsed","head","child","body","classList","i","removeCustomClasses","params","applyCustomClass","customClass","addClass","getInput$1","inputClass","focusInput","input","val","toggleClass","target","condition","removeClass","getDirectChildByClass","children","applyNumericalStyle","property","value","show","display","hide","showWhenInnerHtmlPresent","toggle","setStyle","parent","selector","allButtonsAreHidden","isScrollable","hasCssAnimation","style","animDuration","transDuration","animateTimerProgressBar","timer","reset","timerProgressBar","stopTimerProgressBar","timerProgressBarWidth","timerProgressBarFullWidth","timerProgressBarPercent","isNodeEnv","sweetHTML","resetOldContainer","oldContainer","resetValidationMessage$1","addInputChangeListeners","file","range","rangeOutput","select","checkbox","textarea","getTarget","setupAccessibility","setupRTL","targetElement","init","oldContainerExisted","parseHtmlToContainer","param","handleObject","handleJqueryElem","renderActions","instance","actions","loader","renderButtons","confirmButton","denyButton","cancelButton","renderButton","handleButtonsStyling","button","buttonType","buttonName","renderCloseButton","closeButton","renderContainer","handleBackdropParam","handlePositionParam","handleGrowParam","backdrop","position","grow","privateProps","inputClasses","renderInput","innerParams","rerender","inputContainer","setAttributes","showInput","setCustomClass","renderInputType","getInputContainer","removeAttributes","attrName","inputAttributes","attr","setInputPlaceholder","setInputLabel","prependTo","label","labelClass","inputType","checkAndSetInputValue","inputValue","rangeInput","placeholder","radio","checkboxContainer","getMargin","initialPopupWidth","textareaResizeHandler","textareaWidth","renderContent","htmlContainer","renderFooter","footer","renderIcon","setContent","applyStyles","adjustSuccessIconBackgroundColor","iconType","iconClassName","setColor","popupBackgroundColor","successIconParts","successIconHtml","errorIconHtml","oldContent","newContent","iconContent","sel","content","renderImage","image","dragging","mousedownX","mousedownY","initialX","initialY","addDraggableListeners","down","move","up","removeDraggableListeners","event","clientXY","getClientXY","clientX","clientY","renderPopup","addClasses$1","showClass","renderProgressSteps","progressStepsContainer","progressSteps","currentProgressStep","step","index","stepEl","createStepElement","lineEl","createLineElement","renderTitle","title","render","isVisible","clickConfirm","_dom$getConfirmButton","clickDeny","_dom$getDenyButton","clickCancel","_dom$getCancelButton","DismissReason","removeKeydownHandler","addKeydownHandler","dismissWith","keydownHandler","setFocus","increment","_dom$getPopup","focusableElements","arrowKeysNextButton","arrowKeysPreviousButton","handleEnter","handleTab","handleArrows","handleEsc","btnIndex","key","buttons","sibling","buttonToFocus","privateMethods","setAriaHidden","unsetAriaHidden","isSafariOrIOS","iOSfix","offset","lockBodyScroll","preventTouchMove","shouldPreventTouchMove","isStylus","isZoom","undoIOSfix","measureScrollbar","scrollDiv","scrollbarWidth","previousBodyPadding","replaceScrollbarWithPadding","initialBodyOverflow","undoReplaceScrollbarWithPadding","removePopupAndResetState","didClose","triggerDidCloseAndDispose","removeBodyClasses","close","resolveValue","prepareResolveValue","swalPromiseResolve","triggerClosePopup","handleAwaitingPromise","handlePopupAnimation","rejectPromise","_globalState$eventEmi","animationIsSupported","animatePopup","swalCloseAnimationFinished","_globalState$swalClos","_globalState$eventEmi2","showLoading","buttonToReplace","Swal","replaceButton","handleInputOptionsAndValue","handleInputOptions","handleInputValue","getInputValue","getCheckboxValue","getRadioValue","getFileValue","processInputOptions","inputOptions","populateSelectOptions","formatInputOptions","populateRadioOptions","err","renderOption","optionLabel","optionValue","option","isSelected","inputOption","optgroup","o","radioValue","radioLabel","radioInput","radioLabelElement","radios","result","valueFormatted","handleConfirmButtonClick","handleConfirmOrDenyWithInput","confirm","handleDenyButtonClick","deny","handleCancelButtonClick","type","handleInputValidator","validationMessage","preDenyValue","rejectWith","succeedWith","preConfirmValue","hideLoading","domCache","showRelatedButton","getInput","setButtonsDisabled","disabled","setInputDisabled","enableButtons","disableButtons","enableInput","disableInput","showValidationMessage","resetValidationMessage","defaultParams","updatableParams","deprecatedParams","toastIncompatibleParams","isValidParameter","paramName","isUpdatableParameter","isDeprecatedParameter","checkIfParamIsValid","checkIfToastParamIsValid","checkIfParamIsDeprecated","isDeprecated","showWarningsForParams","update","validUpdatableParams","filterValidParams","updatedParams","_destroy","disposeWeakMaps","disposeSwal","unsetWeakMaps","obj","instanceMethods","handlePopupClick","handleToastClick","handleModalMousedown","handleContainerMousedown","handleModalClick","isAnyButtonShown","ignoreOutsideClick","isJqueryElement","isElement","argsToParams","args","name","fire","_len","_key","mixin","mixinParams","MixinSwal","priorityMixinParams","getTimerLeft","stopTimer","resumeTimer","remaining","toggleTimer","increaseTimer","ms","isTimerRunning","bodyClickListenerAdded","clickHandlers","bindClickHandler","bodyClickListener","template","EventEmitter","eventName","eventHandler","currentHandlers","_this","onceFn","_len2","_key2","staticMethods","Timer","callback","delay","running","swalStringParams","getTemplateParams","templateContent","showWarningsForElements","getSwalParams","getSwalFunctionParams","getSwalButtons","getSwalImage","getSwalIcon","getSwalInput","getSwalStringParams","showWarningsForAttributes","optionName","paramNames","tag","allowedElements","tagName","allowedAttributes","attribute","SHOW_CLASS_TIMEOUT","openPopup","addClasses","setScrollingVisibility","fixScrollContainer","swalOpenAnimationFinished","scrollbarPadding","defaultInputValidators","string","setDefaultInputValidators","validateCustomTargetElement","setParameters","currentInstance","_promise","SweetAlert","outerParams","userParams","isAwaitingPromise","prepareParams","populateDomCache","swalPromise","onFulfilled","onFinally","reject","dismiss","setupTimer","initFocus","templateParams","blurActiveElement","focusAutofocus","focusButton","autofocusElements","autofocusElement","now","initiationDate","ukrainianAnthem","takeUntilDestroyed","destroyRef","assertInInjectionContext","inject","DestroyRef","destroyed$","Observable","observer","source","takeUntil","top","bottom","right","left","auto","basePlacements","start","end","clippingParents","viewport","popper","reference","variationPlacements","acc","placement","placements","beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite","modifierPhases","getNodeName","element","getWindow","node","ownerDocument","isElement","node","OwnElement","getWindow","isHTMLElement","isShadowRoot","applyStyles","_ref","state","name","style","attributes","element","isHTMLElement","getNodeName","value","effect","_ref2","initialStyles","styleProperties","property","attribute","applyStyles_default","getBasePlacement","placement","max","min","round","getUAString","uaData","item","isLayoutViewport","getUAString","getBoundingClientRect","element","includeScale","isFixedStrategy","clientRect","scaleX","scaleY","isHTMLElement","round","_ref","isElement","getWindow","visualViewport","addVisualOffsets","isLayoutViewport","x","y","width","height","getLayoutRect","element","clientRect","getBoundingClientRect","width","height","contains","parent","child","rootNode","isShadowRoot","next","getComputedStyle","element","getWindow","isTableElement","element","getNodeName","getDocumentElement","element","isElement","getParentNode","element","getNodeName","isShadowRoot","getDocumentElement","getTrueOffsetParent","element","isHTMLElement","getComputedStyle","getContainingBlock","isFirefox","getUAString","isIE","elementCss","currentNode","getParentNode","isShadowRoot","getNodeName","css","getOffsetParent","window","getWindow","offsetParent","isTableElement","getMainAxisFromPlacement","placement","within","min","value","max","withinMaxClamp","v","getFreshSideObject","mergePaddingObject","paddingObject","getFreshSideObject","expandToHashMap","value","keys","hashMap","key","toPaddingObject","padding","state","mergePaddingObject","expandToHashMap","basePlacements","arrow","_ref","_state$modifiersData$","name","options","arrowElement","popperOffsets","basePlacement","getBasePlacement","axis","getMainAxisFromPlacement","isVertical","left","right","len","paddingObject","arrowRect","getLayoutRect","minProp","top","maxProp","bottom","endDiff","startDiff","arrowOffsetParent","getOffsetParent","clientSize","centerToReference","min","max","center","offset","within","axisProp","effect","_ref2","_options$element","contains","arrow_default","getVariation","placement","unsetSides","roundOffsetsByDPR","_ref","win","x","y","dpr","round","mapToStyles","_ref2","_Object$assign2","popper","popperRect","placement","variation","offsets","position","gpuAcceleration","adaptive","roundOffsets","isFixed","_offsets$x","_offsets$y","_ref3","hasX","hasY","sideX","left","sideY","top","offsetParent","getOffsetParent","heightProp","widthProp","getWindow","getDocumentElement","getComputedStyle","right","end","bottom","offsetY","offsetX","commonStyles","_ref4","_Object$assign","computeStyles","_ref5","state","options","_options$gpuAccelerat","_options$adaptive","_options$roundOffsets","getBasePlacement","getVariation","computeStyles_default","passive","effect","_ref","state","instance","options","_options$scroll","scroll","_options$resize","resize","window","getWindow","scrollParents","scrollParent","eventListeners_default","hash","getOppositePlacement","placement","matched","hash","getOppositeVariationPlacement","placement","matched","getWindowScroll","node","win","getWindow","scrollLeft","scrollTop","getWindowScrollBarX","element","getBoundingClientRect","getDocumentElement","getWindowScroll","getViewportRect","element","strategy","win","getWindow","html","getDocumentElement","visualViewport","width","height","x","y","layoutViewport","isLayoutViewport","getWindowScrollBarX","getDocumentRect","element","_element$ownerDocumen","html","getDocumentElement","winScroll","getWindowScroll","body","width","max","height","x","getWindowScrollBarX","y","getComputedStyle","isScrollParent","element","_getComputedStyle","getComputedStyle","overflow","overflowX","overflowY","getScrollParent","node","getNodeName","isHTMLElement","isScrollParent","getParentNode","listScrollParents","element","list","_element$ownerDocumen","scrollParent","getScrollParent","isBody","win","getWindow","target","isScrollParent","updatedList","getParentNode","rectToClientRect","rect","getInnerBoundingClientRect","element","strategy","rect","getBoundingClientRect","getClientRectFromMixedType","clippingParent","viewport","rectToClientRect","getViewportRect","isElement","getDocumentRect","getDocumentElement","getClippingParents","clippingParents","listScrollParents","getParentNode","canEscapeClipping","getComputedStyle","clipperElement","isHTMLElement","getOffsetParent","contains","getNodeName","getClippingRect","boundary","rootBoundary","mainClippingParents","firstClippingParent","clippingRect","accRect","max","min","computeOffsets","_ref","reference","element","placement","basePlacement","getBasePlacement","variation","getVariation","commonX","commonY","offsets","top","bottom","right","left","mainAxis","getMainAxisFromPlacement","len","start","end","detectOverflow","state","options","_options","_options$placement","placement","_options$strategy","strategy","_options$boundary","boundary","clippingParents","_options$rootBoundary","rootBoundary","viewport","_options$elementConte","elementContext","popper","_options$altBoundary","altBoundary","_options$padding","padding","paddingObject","mergePaddingObject","expandToHashMap","basePlacements","altContext","reference","popperRect","element","clippingClientRect","getClippingRect","isElement","getDocumentElement","referenceClientRect","getBoundingClientRect","popperOffsets","computeOffsets","popperClientRect","rectToClientRect","elementClientRect","overflowOffsets","offsetData","offset","key","multiply","right","bottom","axis","top","computeAutoPlacement","state","options","_options","placement","boundary","rootBoundary","padding","flipVariations","_options$allowedAutoP","allowedAutoPlacements","placements","variation","getVariation","variationPlacements","basePlacements","allowedPlacements","overflows","acc","detectOverflow","getBasePlacement","a","b","getExpandedFallbackPlacements","placement","getBasePlacement","auto","oppositePlacement","getOppositePlacement","getOppositeVariationPlacement","flip","_ref","state","options","name","_options$mainAxis","checkMainAxis","_options$altAxis","checkAltAxis","specifiedFallbackPlacements","padding","boundary","rootBoundary","altBoundary","_options$flipVariatio","flipVariations","allowedAutoPlacements","preferredPlacement","basePlacement","isBasePlacement","fallbackPlacements","placements","acc","computeAutoPlacement","referenceRect","popperRect","checksMap","makeFallbackChecks","firstFittingPlacement","i","_basePlacement","isStartVariation","getVariation","start","isVertical","top","bottom","len","overflow","detectOverflow","mainVariationSide","right","left","altVariationSide","checks","check","numberOfChecks","_loop","_i","fittingPlacement","_ret","flip_default","distanceAndSkiddingToXY","placement","rects","offset","basePlacement","getBasePlacement","invertDistance","left","top","_ref","skidding","distance","right","_ref2","state","options","name","_options$offset","data","placements","acc","_data$state$placement","x","y","offset_default","popperOffsets","_ref","state","name","computeOffsets","popperOffsets_default","getAltAxis","axis","preventOverflow","_ref","state","options","name","_options$mainAxis","checkMainAxis","_options$altAxis","checkAltAxis","boundary","rootBoundary","altBoundary","padding","_options$tether","tether","_options$tetherOffset","tetherOffset","overflow","detectOverflow","basePlacement","getBasePlacement","variation","getVariation","isBasePlacement","mainAxis","getMainAxisFromPlacement","altAxis","getAltAxis","popperOffsets","referenceRect","popperRect","tetherOffsetValue","normalizedTetherOffsetValue","offsetModifierState","data","_offsetModifierState$","mainSide","top","left","altSide","bottom","right","len","offset","min","max","additive","minLen","start","maxLen","arrowElement","arrowRect","getLayoutRect","arrowPaddingObject","getFreshSideObject","arrowPaddingMin","arrowPaddingMax","arrowLen","within","minOffset","maxOffset","arrowOffsetParent","getOffsetParent","clientOffset","offsetModifierValue","tetherMin","tetherMax","preventedOffset","_offsetModifierState$2","_mainSide","_altSide","_offset","_len","_min","_max","isOriginSide","_offsetModifierValue","_tetherMin","_tetherMax","_preventedOffset","withinMaxClamp","preventOverflow_default","getHTMLElementScroll","element","getNodeScroll","node","getWindow","isHTMLElement","getWindowScroll","getHTMLElementScroll","isElementScaled","element","rect","scaleX","round","scaleY","getCompositeRect","elementOrVirtualElement","offsetParent","isFixed","isOffsetParentAnElement","isHTMLElement","offsetParentIsScaled","documentElement","getDocumentElement","getBoundingClientRect","scroll","offsets","getNodeName","isScrollParent","getNodeScroll","getWindowScrollBarX","order","modifiers","map","visited","result","modifier","sort","requires","dep","depModifier","orderModifiers","orderedModifiers","modifierPhases","acc","phase","debounce","fn","pending","resolve","mergeByName","modifiers","merged","current","existing","key","DEFAULT_OPTIONS","areValidElements","_len","args","_key","element","popperGenerator","generatorOptions","_generatorOptions","_generatorOptions$def","defaultModifiers","_generatorOptions$def2","defaultOptions","reference","popper","options","state","effectCleanupFns","isDestroyed","instance","setOptionsAction","cleanupModifierEffects","isElement","listScrollParents","orderedModifiers","orderModifiers","mergeByName","m","runModifierEffects","_state$elements","getCompositeRect","getOffsetParent","getLayoutRect","modifier","index","_state$orderedModifie","fn","_state$orderedModifie2","_options","name","debounce","resolve","_ref","_ref$options","effect","cleanupFn","noopFn","defaultModifiers","eventListeners_default","popperOffsets_default","computeStyles_default","applyStyles_default","createPopper","popperGenerator","_c2","NgbCarousel_For_2_Template","rf","ctx","_r1","ɵɵgetCurrentView","ɵɵelementStart","ɵɵlistener","slide_r2","ɵɵrestoreView","ctx_r2","ɵɵnextContext","ɵɵresetView","ɵɵelementEnd","ɵɵclassProp","ɵɵattribute","NgbCarousel_For_5_ng_template_3_Template","NgbCarousel_For_5_Template","ɵɵi18n","ɵɵtemplate","slide_r4","ɵ$index_8_r5","ɵ$count_8_r6","ɵɵproperty","ɵɵadvance","ɵɵi18nExp","ɵɵi18nApply","NgbCarousel_Conditional_6_Template","_r7","ɵɵelement","_c9","_c11","a0","a1","a2","_c12","_c13","_c14","_c15","NgbPagination_ng_template_0_Template","rf","ctx","ɵɵelementStart","ɵɵi18n","ɵɵelementEnd","NgbPagination_ng_template_2_Template","NgbPagination_ng_template_4_Template","NgbPagination_ng_template_6_Template","NgbPagination_ng_template_8_Template","ɵɵtext","NgbPagination_ng_template_10_Template","page_r1","ɵɵtextInterpolate","NgbPagination_ng_template_12_For_1_Conditional_1_ng_template_1_Template","NgbPagination_ng_template_12_For_1_Conditional_1_Template","ɵɵtemplate","page_r2","ɵɵnextContext","ctx_r2","ellipsis_r4","ɵɵreference","ɵɵadvance","ɵɵproperty","ɵɵpureFunction1","NgbPagination_ng_template_12_For_1_Conditional_2_ng_template_1_Template","NgbPagination_ng_template_12_For_1_Conditional_2_Template","_r5","ɵɵgetCurrentView","ɵɵlistener","$event","ɵɵrestoreView","pageNumber_r6","ɵɵresetView","ctx_r6","disabled_r8","defaultNumber_r9","ɵɵattribute","ɵɵpureFunction3","NgbPagination_ng_template_12_For_1_Template","ɵɵclassProp","ɵɵconditional","NgbPagination_ng_template_12_Template","ɵɵrepeaterCreate","ɵɵrepeaterTrackByIndex","pages_r10","ɵɵrepeater","NgbPagination_Conditional_15_ng_template_2_Template","NgbPagination_Conditional_15_Template","_r11","first_r12","ɵɵpureFunction2","NgbPagination_Conditional_16_ng_template_2_Template","NgbPagination_Conditional_16_Template","_r13","previous_r14","NgbPagination_ng_template_17_Template","NgbPagination_Conditional_18_ng_template_2_Template","NgbPagination_Conditional_18_Template","_r15","next_r16","NgbPagination_Conditional_19_ng_template_2_Template","NgbPagination_Conditional_19_Template","_r17","last_r18","NgbHighlight_For_1_Conditional_0_Template","rf","ctx","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","part_r1","ɵɵnextContext","ctx_r1","ɵɵclassMap","ɵɵadvance","ɵɵtextInterpolate","NgbHighlight_For_1_Conditional_1_Template","ɵɵelementContainerStart","ɵɵelementContainerEnd","NgbHighlight_For_1_Template","ɵɵtemplate","ɵ$index_1_r3","ɵɵconditional","_c16","a0","a1","a2","NgbTypeaheadWindow_ng_template_0_Template","ɵɵelement","result_r1","term_r2","formatter_r3","ɵɵproperty","NgbTypeaheadWindow_For_3_ng_template_1_Template","NgbTypeaheadWindow_For_3_Template","_r4","ɵɵgetCurrentView","ɵɵlistener","$index_r5","ɵɵrestoreView","ctx_r5","ɵɵresetView","result_r7","rt_r8","ɵɵreference","ɵɵclassProp","ɵɵpureFunction3","environment","NgbConfig","__ngFactoryType__","ɵɵdefineInjectable","getTransitionDurationMs","element","transitionDelay","transitionDuration","transitionDelaySec","transitionDurationSec","toInteger","value","toString","getValueInRange","max","min","isString","isNumber","isDefined","value","isPromise","v","regExpEscape","text","closest","element","selector","reflow","runInZone","zone","source","Observable","observer","next","value","error","e","complete","removeAccents","str","getActiveElement","root","activeEl","noopFn","transitionTimerDelayMs","environment","runningTransitions","ngbRunTransition","startFn","options","context","running","EMPTY","endFn","of","transition$","Subject","finishTransition$","stop$","endWith","transitionDurationMs","getTransitionDurationMs","transitionEnd$","fromEvent","takeUntil","filter","target","timer$","timer","race","ngbCompleteTransition","measureCollapsingElementDimensionPx","dimension","classList","hasShownClass","dimensionSize","ngbCollapsingTransition","animation","direction","maxSize","setInitialClasses","NgbCollapseConfig","inject","NgbConfig","__ngFactoryType__","ɵɵdefineInjectable","NgbCollapse","ElementRef","NgZone","EventEmitter","isCollapsed","open","collapsed","ɵɵdefineDirective","rf","ctx","ɵɵclassProp","NgbAccordionModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbAlertModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbCarouselConfig","inject","NgbConfig","animation","ɵɵdefineInjectable","NgbSlideEventDirection","isBeingAnimated","classList","removeDirectionClasses","removeClasses","ngbCarouselTransitionIn","element","direction","reflow","ngbCarouselTransitionOut","nextId$2","carouselId","NgbSlide","TemplateRef","EventEmitter","ɵɵdefineDirective","NgbCarousel","NgbSlideEventSource","PLATFORM_ID","NgZone","ChangeDetectorRef","ElementRef","DestroyRef","Injector","BehaviorSubject","value","isPlatformBrowser","hasNextSlide$","combineLatest","map","slideEvent","startWith","currentSlideId","wrap","slideArr","currentSlideIdx","distinctUntilChanged","pause","pauseOnHover","mouseHover","pauseOnFocus","focused","interval","hasNextSlide","switchMap","timer","NEVER","takeUntilDestroyed","id","ngbCompleteTransition","afterNextRender","activeSlide","slideId","source","slideIdx","transitionIds","selectedSlide","options","transitions","activeSlideTransition","ngbRunTransition","previousId","nextSlide","transition","zip","take","currentActiveSlideId","nextActiveSlideId","currentActiveSlideIdx","nextActiveSlideIdx","slide","ɵɵdefineComponent","rf","ctx","dirIndex","ɵɵcontentQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵlistener","ɵɵattribute","ɵɵstyleProp","i18n_1","i18n_2","i18n_3","ɵɵelementStart","ɵɵrepeaterCreate","NgbCarousel_For_2_Template","ɵɵrepeaterTrackByIdentity","ɵɵelementEnd","NgbCarousel_For_5_Template","ɵɵtemplate","NgbCarousel_Conditional_6_Template","ɵɵclassProp","ɵɵadvance","ɵɵrepeater","ɵɵconditional","NgTemplateOutlet","NgbCarouselModule","NgbCollapseModule","isContainedIn","element","array","item","matchesSelectorIfAny","selector","closest","isMobile","isIOS","isAndroid","wrapAsyncForMobile","fn","ngbAutoClose","zone","document","type","close","closed$","insideElements","ignoreElements","insideSelector","shouldCloseOnClick","event","escapes$","fromEvent","takeUntil","filter","e","tap","mouseDowns$","map","closeableClicks$","withLatestFrom","_","shouldClose","delay","race","source","FOCUSABLE_ELEMENTS_SELECTOR","getFocusableBoundaryElements","list","el","ngbFocusTrap","stopFocusTrap$","refocusOnClick","lastFocusedElement$","tabEvent","focusedElement","first","last","arr","lastFocusedElement","NgbRTL","inject","DOCUMENT","__ngFactoryType__","ɵɵdefineInjectable","placementSeparator","spacesRegExp","bootstrapPopperMatches","getPopperClassPlacement","placement","isRTL","leftClass","rightClass","popperStartPrimaryPlacement","popperEndPrimaryPlacement","popperStartSecondaryPlacement","popperEndSecondaryPlacement","getBootstrapBaseClassPlacement","baseClass","primary","secondary","newPrimary","classnames","newSecondary","classname","getPopperOptions","rtl","placementVals","allowedPlacements","hasAuto","val","obj","popperPlacements","_placement","state","bsClassRegExp","popperElement","popperPlacement","className","flip_default","preventOverflow_default","arrow_default","noop","arg","ngbPositioning","popperInstance","positioningOption","popperOptions","createPopper","addPopperOffset","offset$1","options","offset_default","GREGORIAN_FIRST_DATE","GREGORIAN_LAST_DATE","ONE_DAY","PARTS_PER_HOUR","PARTS_PER_DAY","PARTS_FRACTIONAL_MONTH","PARTS_PER_MONTH","BAHARAD","NgbDatepickerModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbDropdownConfig","options","ɵɵdefineInjectable","NgbDropdownItem","inject","ElementRef","value","ɵɵdefineDirective","rf","ctx","ɵɵhostProperty","ɵɵclassProp","NgbDropdownMenu","inject","NgbDropdown","ElementRef","__ngFactoryType__","ɵɵdefineDirective","rf","ctx","dirIndex","ɵɵcontentQuery","NgbDropdownItem","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵlistener","$event","ɵɵclassProp","NgbDropdownAnchor","ɵɵattribute","NgbDropdownToggle","ɵNgbDropdownToggle_BaseFactory","ɵɵgetInheritedFactory","ɵɵProvidersFeature","forwardRef","ɵɵInheritDefinitionFeature","ChangeDetectorRef","NgbDropdownConfig","DOCUMENT","Injector","NgZone","Subject","ngbPositioning","EventEmitter","afterNextRender","changes","currentValue","previousValue","options","addPopperOffset","afterRender","ngbAutoClose","source","event","key","itemElements","position","itemElement","isEventFromToggle","item","index","getActiveElement","fromEvent","take","focusableElements","FOCUSABLE_ELEMENTS_SELECTOR","relatedTarget","disabled","nativeElement","menu","placement","container","dropdownMenuElement","bodyContainer","newClass","oldClass","targetElement","dropdownClass","ɵɵNgOnChangesFeature","NgbDropdownModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbModalConfig","inject","NgbConfig","animation","ɵɵdefineInjectable","ContentRef","nodes","viewRef","componentRef","PopupService","_componentType","DOCUMENT","ApplicationRef","Injector","ViewContainerRef","NgZone","content","templateContext","nativeElement","nextRenderSubject","Subject","afterNextRender","transition$","mergeMap","ngbRunTransition","classList","tap","of","TemplateRef","ScrollBar","scrollbarWidth","body","bodyStyle","overflow","paddingRight","actualPadding","NgbModalBackdrop","ElementRef","element","reflow","ɵɵdefineComponent","rf","ctx","ɵɵclassMap","ɵɵclassProp","NgbActiveModal","options","result","reason","WINDOW_ATTRIBUTES","BACKDROP_ATTRIBUTES","NgbModalRef","windowInstance","optionName","isDefined","backdropInstance","takeUntil","_windowCmptRef","_contentRef","_backdropCmptRef","_beforeDismiss","resolve","reject","dismiss","isPromise","windowTransition$","backdropTransition$","zip","ModalDismissReasons","NgbModalWindow","EventEmitter","isString","context","dialogTransition$","transitions$","fromEvent","filter","e","event","preventClose","switchMap","take","target","autoFocusable","firstFocusable","getFocusableBoundaryElements","elWithFocus","elementToFocus","ɵɵviewQuery","_c9","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵattribute","_c2","ɵɵprojectionDef","ɵɵelementStart","ɵɵprojection","ɵɵelementEnd","NgbModalStack","EnvironmentInjector","ngZone","activeWindowCmpt","ngbFocusTrap","scrollBarRestoreFn","contentInjector","containerEl","activeModal","environmentInjector","contentRef","backdropCmptRef","windowCmptRef","ngbModalRef","createComponent","projectableNodes","templateRef","component","componentType","elementInjector","componentNativeEl","parent","sibling","value","unregisterModalRef","index","ngbWindowCmpt","NgbModal","combinedOptions","__spreadValues","__spreadProps","NgbModalModule","NgbNavModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbPaginationConfig","ɵɵdefineInjectable","NgbPaginationEllipsis","inject","TemplateRef","ɵɵdefineDirective","NgbPaginationFirst","NgbPaginationLast","NgbPaginationNext","NgbPaginationNumber","NgbPaginationPrevious","NgbPaginationPages","NgbPagination","EventEmitter","pageNumber","changes","start","end","leftOffset","rightOffset","newPageNo","prevPageNo","getValueInRange","isNumber","newPage","i","ɵɵdefineComponent","rf","ctx","dirIndex","ɵɵcontentQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵNgOnChangesFeature","i18n_12","i18n_13","i18n_14","i18n_15","i18n_16","i18n_17","i18n_18","i18n_19","ɵɵtemplate","NgbPagination_ng_template_0_Template","ɵɵtemplateRefExtractor","NgbPagination_ng_template_2_Template","NgbPagination_ng_template_4_Template","NgbPagination_ng_template_6_Template","NgbPagination_ng_template_8_Template","NgbPagination_ng_template_10_Template","NgbPagination_ng_template_12_Template","ɵɵelementStart","NgbPagination_Conditional_15_Template","NgbPagination_Conditional_16_Template","NgbPagination_ng_template_17_Template","NgbPagination_Conditional_18_Template","NgbPagination_Conditional_19_Template","ɵɵelementEnd","defaultPages_r19","ɵɵreference","ɵɵadvance","ɵɵclassMap","ɵɵconditional","ɵɵproperty","ɵɵpureFunction3","_c11","NgTemplateOutlet","NgbPaginationModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","ALIASES","parseTriggers","triggers","trimmedTriggers","parsedTriggers","trigger","triggerPair","manualTriggers","listenToTriggers","element","isOpenedFn","openFn","closeFn","openDelayMs","closeDelayMs","activeOpenTriggers","cleanupFns","timeout","addEventListener","name","listener","withDelay","fn","delayMs","openTrigger","closeTrigger","cleanupFn","NgbPopoverModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbProgressbarModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbRatingModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbScrollSpyModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbTimepickerModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbToastModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NgbTooltipConfig","inject","NgbConfig","options","animation","ɵɵdefineInjectable","nextId","NgbTooltipWindow","ɵɵdefineComponent","rf","ctx","ɵɵhostProperty","ɵɵclassMap","ɵɵclassProp","_c2","ɵɵprojectionDef","ɵɵelement","ɵɵelementStart","ɵɵprojection","ɵɵelementEnd","NgbTooltip","EventEmitter","ElementRef","NgZone","DOCUMENT","ChangeDetectorRef","Injector","PopupService","ngbPositioning","value","context","windowRef","transition$","addPopperOffset","afterRender","ngbAutoClose","listenToTriggers","tooltipClass","isString","ɵɵdefineDirective","ɵɵNgOnChangesFeature","NgbTooltipModule","NgbHighlight","changes","result","toString","terms","prepareTerm","term","removeAccents","escapedTerms","regExpEscape","toSplit","parts","offset","part","ɵɵrepeaterCreate","NgbHighlight_For_1_Template","ɵɵrepeaterTrackByIndex","ɵɵrepeater","ARIA_LIVE_DELAY","InjectionToken","getLiveElement","document","lazyCreate","element","Live","message","delay","setText","NgbTypeaheadConfig","NgbTypeaheadWindow","activeIdx","item","ɵɵlistener","$event","ɵɵtemplate","NgbTypeaheadWindow_ng_template_0_Template","ɵɵtemplateRefExtractor","NgbTypeaheadWindow_For_3_Template","ɵɵadvance","NgTemplateOutlet","nextWindowId","NgbTypeahead","Subject","fromEvent","map","BehaviorSubject","_","ngbTypeahead","fn","isDisabled","event","isDefined","activeId","defaultPrevented","userInputLowerCase","formattedVal","results$","tap","of","switchMap","results","count","ɵɵattribute","ɵɵProvidersFeature","NG_VALUE_ACCESSOR","forwardRef","NgbTypeaheadModule","NgbOffcanvasModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","NGB_MODULES","NgbAccordionModule","NgbAlertModule","NgbCarouselModule","NgbCollapseModule","NgbDatepickerModule","NgbDropdownModule","NgbModalModule","NgbNavModule","NgbPaginationModule","NgbPopoverModule","NgbProgressbarModule","NgbRatingModule","NgbScrollSpyModule","NgbTimepickerModule","NgbToastModule","NgbTooltipModule","NgbTypeaheadModule","NgbModule","_c0","_c1","ImageCropperComponent_img_2_Template","rf","ctx","_r1","ɵɵgetCurrentView","ɵɵelementStart","ɵɵlistener","ɵɵrestoreView","ctx_r1","ɵɵnextContext","ɵɵresetView","$event","ɵɵelementEnd","ɵɵstyleProp","ɵɵclassProp","ɵɵproperty","ɵɵsanitizeUrl","ɵɵattribute","ImageCropperComponent_div_4_ng_container_2_Template","_r4","ɵɵelementContainerStart","ɵɵelement","ɵɵelementContainerEnd","ImageCropperComponent_div_4_Template","_r3","ɵɵtemplate","ɵɵadvance","CropperSettings","options","k","changes","MoveTypes","getPositionForKey","key","getInvertedPositionForKey","getEventForKey","stepSize","resizeCanvas","canvas","width","height","width_source","height_source","ratio_w","ratio_h","ratio_w_half","ratio_h_half","img","img2","data","data2","j","i","x2","center_y","weight","weights","weights_alpha","gx_r","gx_g","gx_b","gx_a","xx_start","yy_start","xx_stop","yy_stop","yy","dy","center_x","w0","xx","dx","w","pos_x","percentage","percent","totalValue","CropService","loadedImage","cropper","settings","output","maxSize","imagePosition","cropCanvas","scaleX","scaleY","translateH","translateV","transformedImage","result","__spreadValues","resizeRatio","__async","resolve","ratio","out","canvasRotation","offsetX","offsetY","ratioWidth","ratioHeight","ratios","__ngFactoryType__","ɵɵdefineInjectable","CropperPositionService","sourceImage","cropperPosition","cropperWidth","cropperHeight","cropperHeightWithAspectRatio","cropperWidthWithAspectRatio","event","moveStart","diffX","diffY","moveX","moveY","scale","newWidth","newHeight","position","overflowX","overflowY","overflowX1","overflowX2","overflowY1","overflowY2","testAutoOrientationImageURL","supportsAutomaticRotation","supported","getTransformationsFromExifData","exifRotationOrArrayBuffer","getExifRotation","arrayBuffer","view","length","offset","marker","little","tags","LoadImageService","file","cropperSettings","imageType","type","url","blob","buffer","imageBase64","binaryString","len","bytes","res","reject","objectUrl","originalImage","originalImageSize","e","svgElement","widthAttr","heightAttr","viewBoxAttr","viewBox","forceTransform","autoRotate","exifTransform","originalSize","transformedSize","image","minWidthToContain","minHeightToContain","ImageCropperComponent","cropService","cropperPositionService","loadImageService","sanitizer","cd","zone","hammerLoader","EventEmitter","err","translateUnit","error","oldMaxSize","Hammer","hammer","isDevMode","moveType","moveEvent","merge","fromEvent","takeUntil","first","__spreadProps","sourceImageStyle","maintainSize","ɵɵdirectiveInject","DomSanitizer","ChangeDetectorRef","NgZone","HAMMER_LOADER","ɵɵdefineComponent","ɵɵviewQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵresolveWindow","ɵɵNgOnChangesFeature","NgIf","ImageCropperModule","ɵɵdefineNgModule","ɵɵdefineInjector","CommonModule","Portal","host","ComponentPortal","component","viewContainerRef","injector","_componentFactoryResolver","projectableNodes","TemplatePortal","templateRef","context","DomPortal","element","ElementRef","BasePortalOutlet","portal","fn","DomPortalOutlet","BasePortalOutlet","outletElement","_unusedComponentFactoryResolver","_appRef","_defaultInjector","_document","portal","componentRef","injector","ngModuleRef","NgModuleRef$1","appRef","elementInjector","Injector","environmentInjector","EnvironmentInjector","createComponent","viewContainer","viewRef","rootNode","index","element","anchorNode","CdkPortal","TemplatePortal","templateRef","inject","TemplateRef","viewContainerRef","ViewContainerRef","__ngFactoryType__","ɵɵdefineDirective","ɵɵInheritDefinitionFeature","CdkPortalOutlet","BasePortalOutlet","inject","NgModuleRef$1","DOCUMENT","ViewContainerRef","portal","EventEmitter","viewContainerRef","ref","viewRef","element","anchorNode","nativeElement","__ngFactoryType__","ɵɵdefineDirective","ɵɵInheritDefinitionFeature","PortalModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","isFakeMousedownFromScreenReader","event","isFakeTouchstartFromScreenReader","touch","shadowDomIsSupported","_supportsShadowDom","head","_getShadowRoot","element","rootNode","_getFocusedElementPierceShadowDom","activeElement","newActiveElement","_getEventTarget","event","_bindEventWithOptions","renderer","target","eventName","callback","options","major","VERSION","minor","hasV8BreakIterator","Platform","inject","PLATFORM_ID","isPlatformBrowser","__ngFactoryType__","ɵɵdefineInjectable","supportsPassiveEvents","supportsPassiveEventListeners","normalizePassiveListenerOptions","options","coerceNumberProperty","value","fallbackValue","_isNumberValue","coerceElement","elementOrRef","ElementRef","INPUT_MODALITY_DETECTOR_OPTIONS","InjectionToken","INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS","TOUCH_BUFFER_MS","modalityEventListenerOptions","InputModalityDetector","inject","Platform","BehaviorSubject","event","keyCode","_getEventTarget","isFakeMousedownFromScreenReader","isFakeTouchstartFromScreenReader","ngZone","NgZone","document","DOCUMENT","options","__spreadValues","skip","distinctUntilChanged","renderer","RendererFactory2","_bindEventWithOptions","cleanup","__ngFactoryType__","ɵɵdefineInjectable","FocusMonitorDetectionMode","FOCUS_MONITOR_DEFAULT_OPTIONS","captureEventListenerOptions","normalizePassiveListenerOptions","FocusMonitor","Subject","target","element","checkChildren","nativeElement","coerceElement","of","rootNode","_getShadowRoot","cachedInfo","info","elementInfo","origin","focusedElement","currentElement","_info","focusEventTarget","isFromInteraction","ms","rootNodeFocusListeners","takeUntil","modality","results","mostRecentTarget","mostRecentModality","labels","i","CdkMonitorFocus","ElementRef","EventEmitter","ɵɵdefineDirective","appsWithLoaders","_CdkPrivateStyleLoader","inject","Injector","EnvironmentInjector","loader","appRef","ApplicationRef","data","ref","createComponent","__ngFactoryType__","ɵɵdefineInjectable","_VisuallyHiddenLoader","__ngFactoryType__","ɵɵdefineComponent","rf","ctx","coerceArray","value","mediaQueriesForWebkitCompatibility","mediaQueryStyleNode","MediaMatcher","inject","Platform","CSP_NONCE","noopMatchMedia","query","createEmptyStyleRule","__ngFactoryType__","ɵɵdefineInjectable","nonce","BreakpointObserver","NgZone","Subject","value","splitQueries","coerceArray","mediaQuery","observables","stateObservable","combineLatest","concat","take","skip","debounceTime","map","breakpointStates","response","matches","mql","output","Observable","observer","handler","e","startWith","takeUntil","queries","a1","a2","shouldIgnoreRecord","record","i","MutationObserverFactory","callback","__ngFactoryType__","ɵɵdefineInjectable","ContentObserver","inject","NgZone","_","element","elementOrRef","coerceElement","Observable","observer","subscription","map","records","filter","stream","Subject","mutations","CdkObserveContent","ElementRef","EventEmitter","value","coerceNumberProperty","debounceTime","ɵɵdefineDirective","booleanAttribute","ObserversModule","ɵɵdefineNgModule","ɵɵdefineInjector","InteractivityChecker","inject","Platform","element","hasGeometry","frameElement","getFrameElement","getWindow","getTabIndexValue","nodeName","tabIndexValue","isPotentiallyTabbableIOS","config","isPotentiallyFocusable","__ngFactoryType__","ɵɵdefineInjectable","window","isNativeFormElement","isHiddenInput","isInputElement","isAnchorWithHref","isAnchorElement","hasValidTabIndex","tabIndex","inputType","node","FocusTrap","value","_element","_checker","_ngZone","_document","deferAnchors","_injector","startAnchor","endAnchor","options","resolve","bound","markers","redirectToElement","focusableChild","root","children","i","tabbableChild","anchor","isEnabled","enabled","fn","afterNextRender","FocusTrapFactory","NgZone","DOCUMENT","Injector","_CdkPrivateStyleLoader","_VisuallyHiddenLoader","deferCaptureElements","CdkTrapFocus","ElementRef","changes","autoCaptureChange","_getFocusedElementPierceShadowDom","ɵɵdefineDirective","booleanAttribute","ɵɵNgOnChangesFeature","LIVE_ANNOUNCER_ELEMENT_TOKEN","InjectionToken","LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY","LIVE_ANNOUNCER_DEFAULT_OPTIONS","uniqueIds","LiveAnnouncer","elementToken","message","args","defaultOptions","politeness","duration","elementClass","previousElements","liveEl","id","modals","modal","ariaOwns","HighContrastMode","BLACK_ON_WHITE_CSS_CLASS","WHITE_ON_BLACK_CSS_CLASS","HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS","HighContrastModeDetector","inject","Platform","DOCUMENT","BreakpointObserver","testElement","documentWindow","computedStyle","computedColor","bodyClasses","mode","__ngFactoryType__","ɵɵdefineInjectable","A11yModule","ɵɵdefineNgModule","ɵɵdefineInjector","ObserversModule","_isTestEnvironment","coerceCssPixelValue","value","DIR_DOCUMENT","InjectionToken","DIR_DOCUMENT_FACTORY","inject","DOCUMENT","RTL_LOCALE_PATTERN","_resolveDirectionality","rawValue","value","Directionality","EventEmitter","_document","bodyDir","htmlDir","__ngFactoryType__","ɵɵdefineInjectable","RtlScrollAxisType","rtlScrollAxisType","scrollBehaviorSupported","supportsScrollBehavior","scrollToFunction","getRtlScrollAxisType","scrollContainer","containerStyle","content","contentStyle","BidiModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","DEFAULT_SCROLL_TIME","ScrollDispatcher","inject","NgZone","Platform","RendererFactory2","Subject","scrollable","scrollableReference","auditTimeInMs","Observable","observer","subscription","auditTime","of","_","container","elementOrElementRef","ancestors","filter","target","scrollingContainers","_subscription","element","coerceElement","scrollableElement","__ngFactoryType__","ɵɵdefineInjectable","CdkScrollable","ElementRef","Directionality","Renderer2","event","options","el","isRtl","getRtlScrollAxisType","RtlScrollAxisType","supportsScrollBehavior","from","LEFT","RIGHT","ɵɵdefineDirective","DEFAULT_RESIZE_TIME","ViewportRuler","DOCUMENT","ngZone","renderer","changeListener","cleanup","output","scrollPosition","width","height","document","window","documentElement","documentRect","top","left","throttleTime","CdkScrollableModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","ScrollingModule","BidiModule","counters","_IdGenerator","inject","APP_ID","prefix","__ngFactoryType__","ɵɵdefineInjectable","hasModifierKey","event","modifiers","modifier","scrollBehaviorSupported","supportsScrollBehavior","BlockScrollStrategy","_viewportRuler","document","root","coerceCssPixelValue","html","body","htmlStyle","bodyStyle","previousHtmlScrollBehavior","previousBodyScrollBehavior","viewport","CloseScrollStrategy","_scrollDispatcher","_ngZone","_viewportRuler","_config","overlayRef","stream","filter","scrollable","scrollPosition","NoopScrollStrategy","isElementScrolledOutsideView","element","scrollContainers","containerBounds","outsideAbove","outsideBelow","outsideLeft","outsideRight","isElementClippedByScrolling","scrollContainerRect","clippedAbove","clippedBelow","clippedLeft","clippedRight","RepositionScrollStrategy","throttle","overlayRect","width","height","ScrollStrategyOptions","inject","ScrollDispatcher","ViewportRuler","NgZone","DOCUMENT","config","BlockScrollStrategy","__ngFactoryType__","ɵɵdefineInjectable","OverlayConfig","configKeys","key","ConnectedOverlayPositionChange","connectionPair","scrollableViewProperties","BaseOverlayDispatcher","inject","DOCUMENT","overlayRef","index","__ngFactoryType__","ɵɵdefineInjectable","OverlayKeyboardDispatcher","NgZone","RendererFactory2","event","overlays","i","ɵOverlayKeyboardDispatcher_BaseFactory","ɵɵgetInheritedFactory","OverlayOutsideClickDispatcher","Platform","body","eventOptions","_bindEventWithOptions","cleanup","_getEventTarget","target","origin","containsPierceShadowDom","outsidePointerEvents","ɵOverlayOutsideClickDispatcher_BaseFactory","parent","child","supportsShadowRoot","current","_CdkOverlayStyleLoader","ɵɵdefineComponent","rf","ctx","OverlayContainer","_CdkPrivateStyleLoader","containerClass","_isTestEnvironment","oppositePlatformContainers","container","BackdropRef","document","_renderer","_ngZone","onClick","element","OverlayRef","Subject","Subscription","_portalOutlet","_host","_pane","_config","_keyboardDispatcher","_document","_location","_outsideClickDispatcher","_animationsDisabled","_injector","untracked","afterRender","portal","attachResult","afterNextRender","detachmentResult","isAttached","strategy","sizeConfig","__spreadValues","dir","__spreadProps","classes","direction","style","coerceCssPixelValue","enablePointer","showingClass","cssClasses","isAdd","coerceArray","c","subscription","takeUntil","merge","scrollStrategy","boundingBoxClass","cssUnitPattern","FlexibleConnectedPositionStrategy","connectedTo","_viewportRuler","_platform","_overlayContainer","originRect","overlayRect","viewportRect","containerRect","flexibleFits","fallback","pos","originPoint","overlayPoint","overlayFit","bestFit","bestScore","fit","score","extendStyles","lastPosition","scrollables","positions","margin","flexibleDimensions","growAfterOpen","canPush","isLocked","offset","selector","x","startX","endX","y","overlayStartX","overlayStartY","point","rawOverlayRect","viewport","position","overlay","getRoundedBoundingClientRect","offsetX","offsetY","leftOverflow","rightOverflow","topOverflow","bottomOverflow","visibleWidth","visibleHeight","visibleArea","availableHeight","availableWidth","minHeight","getPixelValue","minWidth","verticalFit","horizontalFit","start","scrollPosition","overflowRight","overflowBottom","overflowTop","overflowLeft","pushX","pushY","scrollVisibility","compareScrollVisibility","changeEvent","ConnectedOverlayPositionChange","elements","xOrigin","yOrigin","isRtl","height","top","bottom","smallestDistanceToViewportEdge","previousHeight","isBoundedByRightViewportEdge","isBoundedByLeftViewportEdge","width","left","right","previousWidth","boundingBoxRect","styles","maxHeight","maxWidth","hasExactPosition","hasFlexibleDimensions","config","transformString","documentHeight","horizontalStyleProperty","documentWidth","originBounds","overlayBounds","scrollContainerBounds","scrollable","isElementClippedByScrolling","isElementScrolledOutsideView","length","overflows","currentValue","currentOverflow","axis","cssClass","ElementRef","destination","source","key","input","value","units","clientRect","a","b","wrapperClass","GlobalPositionStrategy","overlayRef","config","value","offset","styles","parentStyles","width","height","maxWidth","maxHeight","shouldBeFlushHorizontally","shouldBeFlushVertically","xPosition","xOffset","isRtl","marginLeft","marginRight","justifyContent","parent","OverlayPositionBuilder","inject","ViewportRuler","DOCUMENT","Platform","OverlayContainer","origin","FlexibleConnectedPositionStrategy","__ngFactoryType__","ɵɵdefineInjectable","Overlay","ScrollStrategyOptions","OverlayKeyboardDispatcher","Injector","NgZone","Directionality","Location","OverlayOutsideClickDispatcher","ANIMATION_MODULE_TYPE","_IdGenerator","RendererFactory2","_CdkPrivateStyleLoader","_CdkOverlayStyleLoader","host","pane","portalOutlet","overlayConfig","OverlayConfig","OverlayRef","EnvironmentInjector","ApplicationRef","DomPortalOutlet","defaultPositionList","CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY","InjectionToken","overlay","CdkOverlayOrigin","ElementRef","ɵɵdefineDirective","CdkConnectedOverlay","Subscription","offsetX","offsetY","EventEmitter","templateRef","TemplateRef","viewContainerRef","ViewContainerRef","TemplatePortal","changes","event","hasModifierKey","target","_getEventTarget","positionStrategy","positions","currentPosition","strategy","takeWhile","position","booleanAttribute","ɵɵNgOnChangesFeature","CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER_FACTORY","CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER","OverlayModule","ɵɵdefineNgModule","ɵɵdefineInjector","BidiModule","PortalModule","ScrollingModule","CdkDialogContainer_ng_template_0_Template","rf","ctx","DialogConfig","CdkDialogContainer","BasePortalOutlet","inject","ElementRef","FocusTrapFactory","InteractivityChecker","NgZone","OverlayRef","FocusMonitor","Renderer2","Platform","DOCUMENT","ChangeDetectorRef","Injector","DialogConfig","id","index","portal","result","element","options","callback","deregisterBlur","deregisterMousedown","selector","elementToFocus","afterNextRender","focusConfig","focusTargetElement","activeElement","_getFocusedElementPierceShadowDom","__ngFactoryType__","ɵɵdefineComponent","rf","ctx","ɵɵviewQuery","CdkPortalOutlet","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵattribute","ɵɵInheritDefinitionFeature","ɵɵtemplate","CdkDialogContainer_ng_template_0_Template","DialogRef","Subject","overlayRef","config","event","hasModifierKey","closedSubject","width","height","classes","DIALOG_SCROLL_STRATEGY","InjectionToken","overlay","Overlay","DIALOG_DATA","DEFAULT_DIALOG_CONFIG","Dialog","inject","Overlay","Injector","DEFAULT_DIALOG_CONFIG","OverlayContainer","_IdGenerator","Subject","DIALOG_SCROLL_STRATEGY","defer","startWith","componentOrTemplateRef","config","defaults","DialogConfig","__spreadValues","overlayConfig","overlayRef","dialogRef","DialogRef","dialogContainer","reverseForEach","dialog","id","state","OverlayConfig","overlay","userInjector","providers","OverlayRef","containerType","CdkDialogContainer","containerPortal","ComponentPortal","TemplateRef","injector","context","TemplatePortal","contentRef","fallbackInjector","DIALOG_DATA","Directionality","of","emitEvent","index","previousValue","element","overlayContainer","siblings","i","sibling","parent","__ngFactoryType__","ɵɵdefineInjectable","items","callback","DialogModule","ɵɵdefineNgModule","ɵɵdefineInjector","OverlayModule","PortalModule","A11yModule","coerceBooleanProperty","value","coerceStringArray","separator","result","sourceValues","sourceValue","trimmedString","DEFAULT_TYPEAHEAD_DEBOUNCE_INTERVAL_MS","Typeahead","Subject","initialItems","config","typeAheadInterval","index","items","event","keyCode","tap","letter","debounceTime","filter","map","inputString","i","item","ListKeyManager","signal","Subscription","item","_items","injector","QueryList","newItems","isSignal","effect","Subject","predicate","shouldWrap","enabled","direction","keys","debounceInterval","items","Typeahead","delta","previousActiveItem","event","keyCode","isModifierAllowed","modifier","targetIndex","itemsLength","hasModifierKey","itemArray","index","activeItem","i","fallbackDelta","newIndex","ActiveDescendantKeyManager","ListKeyManager","index","FocusKeyManager","ListKeyManager","origin","item","ID_DELIMITER","addAriaReferencedId","el","attr","id","ids","getAriaReferenceIds","existingId","removeAriaReferencedId","filteredIds","val","CDK_DESCRIBEDBY_ID_PREFIX","CDK_DESCRIBEDBY_HOST_ATTRIBUTE","nextId","AriaDescriber","inject","Platform","DOCUMENT","_CdkPrivateStyleLoader","_VisuallyHiddenLoader","APP_ID","hostElement","message","role","key","getKey","setMessageId","registeredMessage","describedElements","i","messageElement","containerClassName","serverContainers","messagesContainer","element","originalReferenceIds","getAriaReferenceIds","id","addAriaReferencedId","removeAriaReferencedId","referenceIds","messageId","trimmedMessage","ariaLabel","__ngFactoryType__","ɵɵdefineInjectable","serviceId","MatCommonModule","inject","HighContrastModeDetector","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","BidiModule","MatDialogContainer_ng_template_2_Template","rf","ctx","MatDialogConfig","OPEN_CLASS","OPENING_CLASS","CLOSING_CLASS","OPEN_ANIMATION_DURATION","CLOSE_ANIMATION_DURATION","MatDialogContainer","CdkDialogContainer","inject","ANIMATION_MODULE_TYPE","EventEmitter","parseCssTime","TRANSITION_DURATION_PROPERTY","delta","duration","callback","totalTime","portal","ref","ɵMatDialogContainer_BaseFactory","__ngFactoryType__","ɵɵgetInheritedFactory","ɵɵdefineComponent","ɵɵhostProperty","ɵɵattribute","ɵɵclassProp","ɵɵInheritDefinitionFeature","ɵɵelementStart","ɵɵtemplate","ɵɵelementEnd","CdkPortalOutlet","time","coerceNumberProperty","MatDialogState","MatDialogRef","Subject","_ref","config","_containerInstance","filter","event","take","merge","hasModifierKey","_closeDialogVia","dialogResult","position","strategy","width","height","classes","interactionType","result","MAT_DIALOG_DATA","InjectionToken","MAT_DIALOG_DEFAULT_OPTIONS","MAT_DIALOG_SCROLL_STRATEGY","overlay","Overlay","MatDialog","inject","Overlay","MAT_DIALOG_DEFAULT_OPTIONS","MAT_DIALOG_SCROLL_STRATEGY","_IdGenerator","Dialog","Subject","MatDialogConfig","parent","defer","startWith","MatDialogRef","MatDialogContainer","MAT_DIALOG_DATA","componentOrTemplateRef","config","dialogRef","__spreadValues","cdkRef","__spreadProps","DialogConfig","ref","cdkConfig","dialogContainer","index","id","dialog","dialogs","i","__ngFactoryType__","ɵɵdefineInjectable","MatDialogContent","__ngFactoryType__","ɵɵdefineDirective","ɵɵHostDirectivesFeature","CdkScrollable","MatDialogModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","MatDialog","DialogModule","OverlayModule","PortalModule","MatCommonModule","CacheService","constructor","userInfo","http","cachedItems","get","anonymous","url","found","find","x","undefined","personGuid","of","JSON","parse","stringify","cache","getProfile","PersonGuid","pipe","map","item","push","withCredentials","headers","authHeader","remove","filter","clear","ɵɵinject","UserInfoService","HttpClient","factory","ɵfac","providedIn","MapAPIService","constructor","cacheSrv","http","userInfo","alternativeMapDemoId","url","AppSettingService","appConfig","JourneyAPIUrl","commaDelimitedUserMapVersions","userMapCache","getBlankSaveMapType","CareerVersion","CertificationVersion","CTEVersion","MilitaryVersion","CollegeVersion","K12Version","PreKVersion","getFilledInSaveMapType","userMapResponseObject","saveMapTypeObj","saveMapTypeKeys","Object","keys","i","length","getUserMapSavePostData","getUserMapResponse","postData","MapOptionId","Territories","Version","viewMap","minX","maxX","minY","maxY","zoom","versions","selectedObjectId","mapOptionId","clipMinX","clipMinY","clipMaxX","clipMaxY","get","toFixed","encodeURIComponent","withCredentials","headers","authHeader","getMapObject","objectId","getMapObjectAncestory","l","getSolrMapSearch","keyword","limit","offset","searchOnlyMapVersion","myCareerfilterObject","myCareerfilterObjectStringified","map","key","join","getMapObjectStatus","id","getClientMap","getDemoPermission","userGuid","clearMapCache","getUserMap","reload","of","restOfUrl","pipe","tap","response","convertToList","vls","forEach","split","reverse","indexOf","push","retStr","sort","slice","getUserMapVersionList","saveUserMap","mapSelection","post","getCorrespondingMapObject","fromOccupationId","getUserCollegesByCip","cip","mappObjectId","GetUserCollegesByOccupation","mapObjectId","setCommaDelimitedUserMapVersions","subscribe","getUserMapOptions","toString","getUserMapOption","getZoneMapOptions","getZoneMapOption","forNew","mapShapeId","toggleMapOptionHidden","hide","toggleMapOptionDefault","isDefault","saveZoneMapOption","option","deleteZoneMapOption","delete","getVersion","version","updateVersion","name","hs","k8","put","getBlankMapTerritoryVersionObj","getMapTerritoryVersionObjFromGetUserMapResponse","returnObj","getMapSavePostDataFromTerritoryVersionsObj","territoryVersionsObj","postObj","getMapSavePostDataFromGetUserMapTerritoryVersionsObj","getMapSavePostDataFromGetUserMapResponse","ngOnInit","ɵɵinject","CacheService","HttpClient","UserInfoService","factory","ɵfac","providedIn","AddTeacher","constructor","FirstName","LastName","Email","SelectedSchool","Schools","Role","reset","EditTeacher","PersonId","AddStudent","BirthDate","UserName","Password","EditStudent","NewAnonymousUser","EmailStatus","InstitutionCode","UserAPIService","userInfo","http","url","AppSettingService","appConfig","JourneyAPIUrl","adminSearch","role","schoolId","kw","limit","offset","trim","get","encodeURIComponent","toString","withCredentials","headers","authHeader","adminGet","personId","adminSave","user","post","register","reg","globalRegister","updateGlobalAccountReqiretCount","put","getGlobalAccountReqiretCount","sendEmailVerification","email","confirmEmailVerification","code","checkUserNameExist","username","zoneName","checkValidationCodeExist","resetPassword","req","saveAnonymousUser","data","getAnonymousUser","id","transferAnonymousUserData","anonymousUserLink","copyAnonymousSessionData","sessionId","getUserProfile","userId","length","ɵɵinject","UserInfoService","HttpClient","factory","ɵfac","providedIn","ActivityAPIService","mapAPI","userInstitutionsVisited","getActivityTotal","activityType","objectType","depth","link","getSummary","filter","getStats","userOccupationMetrics","getUserMap","pipe","switchMap","response","CareerVersion","Version","userOccupationVisited","log","activitytype","objectId","note","associatedObjectId","getInstitutionCode","getUserActivityStats","userGuid","MapAPIService","SessionAPIService","loginReport","lastLogin","month","year","day","hour","getSessionId","map","Detail","signOn","password","zone","clearStorage","signOnAsOther","otherPersonId","globalLogin","apiKeyLogin","apiKey","anonymous","getSessionInfo","WebAPIService","WebAPIUrl","signOff","ZoneAPIService","constructor","userInfo","http","url","AppSettingService","appConfig","JourneyAPIUrl","getUserZone","get","withCredentials","headers","authHeader","allowCreateConnection","getZone","zoneName","encodeURIComponent","searchZone","getStatus","getPublicZone","ɵɵinject","UserInfoService","HttpClient","factory","ɵfac","providedIn","import_moment","SafePipe","constructor","_sanitizer","transform","value","type","bypassSecurityTrustHtml","bypassSecurityTrustStyle","bypassSecurityTrustScript","bypassSecurityTrustUrl","bypassSecurityTrustResourceUrl","Error","ɵɵdirectiveInject","DomSanitizer","pure","standalone","FormatDateTimePipe","getDateTime","date","t","Date","toLocaleTimeString","year","month","day","hour","minute","FormatDatePipe","toLocaleDateString","ɵɵelementStart","ɵɵlistener","$event","ɵɵrestoreView","_r1","ctx_r1","ɵɵnextContext","ɵɵresetView","imageCropped","imageLoaded","cropperReady","loadImageFailed","ɵɵelementEnd","ɵɵproperty","imageChangedEvent","selectedImage","aspectRatio","roundCropper","resizeToWidth","resizeToHeight","FeatureNotAvailableDialog","close","e","dialogRef","constructor","ɵɵdirectiveInject","MatDialogRef","selectors","standalone","decls","vars","consts","template","rf","ctx","ɵɵtext","ɵɵelement","ReadMoreDialog","data","title","description","objectURL","go","url","window","open","MAT_DIALOG_DATA","ɵɵadvance","ɵɵpipeBind2","ɵɵsanitizeHtml","ɵɵtextInterpolate","FeatureNotAvailable2BDialog","img","ɵɵsanitizeUrl","ScrollOnHoverComponent","elementRef","isScrollable","wrapperWidth","disable","enable","nativeElement","childNodes","clientWidth","ElementRef","hostVars","hostBindings","ɵɵclassProp","ɵɵprojection","ɵɵstyleProp","ImageCropperDialog","sanitizer","imageWidth","imageHeight","clientHeight","modalSize","width","height","canvasSize","croppedImage","isRotating","imgType","getImageSize","Promise","resolve","reject","image","Image","src","toString","onload","currentTarget","setDisplay","innerWidth","innerHeight","event","base64","imageCropper","sourceImage","save","cancel","rotate","isClockwise","rotateBase64Image","result","base64data","callback","canvas","document","createElement","getContext","deg","Math","PI","translate","drawImage","toDataURL","onResize","ngOnInit","DomSanitizer","viewQuery","ɵɵresolveWindow","ɵɵtemplate","ImageCropperDialog_image_cropper_13_Template","ɵɵpureFunction3","_c2","ɵɵpropertyInterpolate4","ɵɵpureFunction2","_c3","UtilityService","constructor","dialog","openNewFeatureDialog","open","FeatureNotAvailableDialog","maxWidth","disableClose","autoFocus","panelClass","openReadMoreDialog","title","desc","url","ReadMoreDialog","data","trim","openNewFeatureDialog2B","img","FeatureNotAvailable2BDialog","width","openImageCropper","imgType","AppSettingService","widgetMobile","ImageCropperDialog","selectedImage","afterClosed","ɵɵinject","MatDialog","factory","ɵfac","providedIn","ValidateDateService","minMonth","maxMonth","minDay","maxDay","minYear","maxYear","dateError","parseInt","moment","format","DateError","msg","validateMonth","month","length","validateFormat","validateDay","day","validateYear","year","validateDateString","date","isValid","createDateString","validateDate","min","max","val","tempFormat","i","toString","DOBService","vDate","_dob","_age","_minAge","_dateError","Month","v","_month","Day","_day","Year","_year","Dob","dob","Age","age","validate","res","result","dateresult","diff","getDateError","validateAge","InstitutionAPIService","constructor","userInfo","http","url","AppSettingService","appConfig","JourneyAPIUrl","getInstitution","institutionCode","trim","get","encodeURIComponent","withCredentials","headers","authHeader","search","type","kw","limit","offset","toString","subscribe","post","unsubscribe","subscribeId","getSubscription","ɵɵinject","UserInfoService","HttpClient","factory","ɵfac","providedIn","InstitutionWelcomeService","welcomeTourStatus","sessionStorage","getItem","v","removeItem","setItem","route","snapshot","queryParams","ActivatedRoute","ɵɵelementStart","ɵɵlistener","$event","ɵɵrestoreView","_r1","ctx_r1","ɵɵnextContext","ɵɵresetView","closeSL","ɵɵelementEnd","ɵɵproperty","display","prefillUsername","allowCancel","resetCode","anonymousUserLink","ɵɵelement","globalAccount","goHome","ɵɵtemplate","SignupLoginComponent_div_2_div_3_img_1_Template","SignupLoginComponent_div_2_div_3_img_2_Template","SignupLoginComponent_div_2_div_3_img_3_Template","SignupLoginComponent_div_2_div_3_img_4_Template","SignupLoginComponent_div_2_div_3_img_5_Template","SignupLoginComponent_div_2_div_3_img_6_Template","ɵɵadvance","ctx_r0","signupComponent","steps","currentStep","name","SignupLoginComponent_div_2_div_4_img_1_Template","SignupLoginComponent_div_2_div_4_img_2_Template","SignupLoginComponent_div_2_div_4_img_3_Template","SignupLoginComponent_div_2_div_4_img_4_Template","SignupLoginComponent_div_2_div_4_img_5_Template","SignupLoginComponent_div_2_div_4_img_6_Template","SignupLoginComponent_div_2_div_4_img_7_Template","resetPasswordComponent","SignupLoginComponent_div_2_div_2_Template","SignupLoginComponent_div_2_div_3_Template","SignupLoginComponent_div_2_div_4_Template","showMinimize","loadType","undefined","loadingWidget","SignupLoginComponent_div_4_div_2_Template","SignupLoginComponent_div_4_div_3_Template","SignupLoginComponent_div_4_div_4_Template","SignupLoginComponent_div_4_div_5_Template","SignupLoginComponent_div_4_div_6_Template","SignupLoginComponent_div_4_div_7_Template","SignupLoginComponent_div_5_img_2_Template","SignupLoginComponent_div_5_img_3_Template","SignupLoginComponent_div_5_img_4_Template","SignupLoginComponent_div_5_img_5_Template","SignupLoginComponent_div_5_img_6_Template","SignupLoginComponent_div_5_img_7_Template","SignupLoginComponent_div_5_img_8_Template","isPublic","ɵɵelementContainerStart","ɵɵtext","_r2","login","ɵɵstyleProp","_r3","prgIndicatorJumpTo","_r4","backToLogin","ctx_r2","cancel","zone_r4","Client","frmLogin","myZone","ɵɵtextInterpolate","DisplayName","LoginComponent_ng_container_23_option_1_Template","zones","_r5","submitLogin","canLogin","frmReset","Zone","ResetPasswordComponent_ng_container_4_ng_container_20_option_1_Template","ɵɵtwoWayListener","i0","ɵɵtwoWayBindingSet","UsernameOrEmail","checkUsername","changeZone","ResetPasswordComponent_ng_container_4_option_19_Template","ResetPasswordComponent_ng_container_4_ng_container_20_Template","ResetPasswordComponent_ng_container_4_div_21_Template","ɵɵtwoWayProperty","zonesUpdating","UsernameOrEmailStatus","hasUsername","SecurityAnswer","checkSecurityAnswer","ɵɵtextInterpolate1","SecurityQuestion","processing","SecurityStatus","_r7","checkNewPassword","NewPassword","NewPassword2","_r6","showPassword","ResetPasswordComponent_ng_container_6_div_35_Template","ResetPasswordComponent_ng_container_6_div_36_Template","txtPw1Type","txtNewPasswordIsFocused","txtPw2Type","NewPasswordStatus","NewPassword2Status","_r8","ResetPasswordComponent_ng_container_7_div_12_Template","ResetPasswordComponent_ng_container_7_div_13_Template","_r9","backToReset","ResetPasswordComponent_ng_container_8_div_1_div_10_Template","ResetPasswordComponent_ng_container_8_div_1_div_11_Template","ResetPasswordComponent_ng_container_8_div_1_Template","ResetCodeStatus","_r10","doOption","ResetPasswordComponent_ng_container_9_div_9_Template","ResetPasswordComponent_ng_container_9_div_10_Template","ResetPasswordComponent_ng_container_10_div_9_div_3_Template","ResetPasswordComponent_ng_container_10_div_9_div_4_Template","ResetPasswordComponent_ng_container_10_div_9_div_5_Template","ResetPasswordComponent_ng_container_10_div_9_div_6_Template","ResetPasswordComponent_ng_container_10_div_9_div_7_Template","ResetPasswordComponent_ng_container_10_div_9_div_8_Template","resetPWResponse","RecoveryStatusCode","ResetPasswordComponent_ng_container_10_div_8_Template","ResetPasswordComponent_ng_container_10_div_9_Template","checkName","frmSignup","firstName","lastName","SignupComponent_ng_container_4_div_18_Template","SignupComponent_ng_container_4_div_19_Template","nameMsg","ɵɵsanitizeHtml","isWaiting","email","toggleUsernameEmail","username","SignupComponent_ng_container_5_input_10_Template","SignupComponent_ng_container_5_input_11_Template","SignupComponent_ng_container_5_div_12_Template","SignupComponent_ng_container_5_ng_container_15_Template","SignupComponent_ng_container_5_ng_container_16_Template","usernameMsg","SignupComponent_ng_container_6_ng_container_18_Template","SignupComponent_ng_container_6_ng_container_19_Template","_r12","checkPassword","pw1","length","pw2","_r11","SignupComponent_ng_container_7_ng_container_38_Template","SignupComponent_ng_container_7_ng_container_39_Template","pw1isFocused","pwMsg","_r14","checkDOB","_r15","dobMonthDisplay","dobDateDisplay","dobYearDisplay","SignupComponent_ng_container_8_div_31_div_1_Template","SignupComponent_ng_container_8_div_31_div_2_Template","dobAge","_r13","SignupComponent_ng_container_8_div_28_Template","SignupComponent_ng_container_8_div_31_Template","SignupComponent_ng_container_8_div_32_Template","ɵɵpropertyInterpolate","minYear","maxYear","dobStatus","dobMsg","_r16","toggleConnect","connection","checkConnection","connectionSkip","connectionMsg","_r17","goLogin","_r18","_r19","SignupComponent_ng_container_10_div_3_ng_container_3_ng_container_1_Template","SignupComponent_ng_container_10_div_3_ng_container_3_ng_container_2_Template","byEmail","signupMsg","_r20","reviewRetry","SignupComponent_ng_container_10_div_3_ng_container_3_Template","SignupComponent_ng_container_10_div_3_div_4_Template","SignupComponent_ng_container_10_div_3_button_5_Template","usernameTaken","doneSignup","SignupComponent_ng_container_10_div_1_Template","SignupComponent_ng_container_10_div_2_Template","SignupComponent_ng_container_10_div_3_Template","alreadySignup","SignupLoginService","askedGlobalAccount","sessionStorage","getItem","toLowerCase","v","removeItem","setItem","String","userDefaultZone","localStorage","promptGlobalAccountIntro","xx","factory","ɵfac","providedIn","LoginControl","constructor","userInfo","sessionAPI","location","route","isReady","action","ngOnInit","snapshot","paramMap","get","trim","replaceState","isLogin","isAnonymous","anonymous","subscribe","next","error","err","console","log","ɵɵdirectiveInject","UserInfoService","SessionAPIService","Location","ActivatedRoute","selectors","standalone","decls","vars","consts","template","rf","ctx","LoginControl_app_signup_login_0_Template","SignupLoginComponent","encapsulation","ResetPasswordControl","ResetPasswordControl_app_signup_login_0_Template","SignupControl","SignupControl_app_signup_login_0_Template","SignupLoginDialog","dialogRef","data","close","MatDialogRef","MAT_DIALOG_DATA","SignupLoginDialog_div_1_Template","SignupLoginDialog_app_signup_login_2_Template","appSrv","signupLoginSrv","zoneAPI","onCloseSL","EventEmitter","userZone","AppSettingService","widgetMobile","windowInnerHeight","window","innerHeight","changePath","redirectReload","isJAZone","getProfile","HighestRole","href","baseUrl","AppUtilityService","newId","getHomePage","indexOf","emit","onResize","e","debug","currentPath","path","getUserZone","response","IsPublic","AllowSignup","AppService","ZoneAPIService","viewQuery","ɵɵresolveWindow","SignupLoginComponent_div_0_Template","SignupLoginComponent_div_2_Template","SignupLoginComponent_div_3_Template","SignupLoginComponent_div_4_Template","SignupLoginComponent_div_5_Template","SignupLoginComponent_app_login_9_Template","SignupLoginComponent_app_global_login_10_Template","SignupLoginComponent_app_signup_11_Template","SignupLoginComponent_app_global_signup_12_Template","SignupLoginComponent_app_reset_password_13_Template","SignupLoginComponent_ng_container_14_Template","SignupLoginComponent_ng_container_15_Template","SignupLoginComponent_ng_container_16_Template","LoginComponent","userAPI","onClose","usernameStatus","password","passwordStatus","msg","isLogging","searchZone$","Subject","txtPwType","lookupZone","searchZones","checkUserNameExist","Zones","defaultZone","find","x","selZone","nativeElement","value","enforce","txtPassword","type","doLogin","signOn","Code","nextStep","keyCode","resetPassword","preventDefault","createAccount","ngOnDestroy","unsubscribe","ngAfterViewInit","setTimeout","txtUsername","focus","pipe","debounceTime","distinctUntilChanged","kw","UserAPIService","LoginComponent_span_2_Template","LoginComponent_option_22_Template","LoginComponent_ng_container_23_Template","LoginComponent_div_24_Template","LoginComponent_div_35_Template","LoginComponent_div_36_Template","ResetPasswordComponent","doc","RecoveryOption","ResetCode","populateZones","currentTarget","id","btnUsernameNext","checkOption","option","sendEmail","askSecurityQuestion","askOption","IsEmail","displayError","askNewPassword","target","pw","validatePassword","strength","Username","getElementById","checkResetCode","backToSignup","DOCUMENT","ResetPasswordComponent_span_2_Template","ResetPasswordComponent_ng_container_4_Template","ResetPasswordComponent_ng_container_5_Template","ResetPasswordComponent_ng_container_6_Template","ResetPasswordComponent_ng_container_7_Template","ResetPasswordComponent_ng_container_8_Template","ResetPasswordComponent_ng_container_9_Template","ResetPasswordComponent_ng_container_10_Template","SignupComponent","dobSrv","institutionAPI","minAge","nameMinLen","usernameMinLen","Date","getFullYear","institution","anonymousUser","iStepHighestReached","firstNameStatus","lastNameStatus","emailStatus","pw1Status","pw2Status","dobMonth","dobMonthStatus","dobDate","dobDateStatus","dobYear","dobYearStatus","dob","dobAgree","connectionStatus","role","signupErrorCode","changeStep","toStep","txtFirstName","btnUsername","txtEmail","txtPw1","txtDobMonth","txtConnection","blur","loginName","isEmail","input","txtPw2","message","btnPwNext","valMonth","parseInt","valDate","valYear","replace","txtDobDate","txtDobYear","validateDate","Dob","Age","hasCode","submitSignup","checkCode","checkValidationCodeExist","Detail","Note","Email","institutionCode","InstitutionCode","apiKey","APIKey","reg","BirthDate","FirstName","LastName","Password","PersonRoles","Role","UserName","ValidationCode","AnonymousUserLink","sessionId","getSessionId","register","success","ZoneClient","transferAnonymousUserData","closeSignup","copyAnonymousSessionData","getInstitution","getInstitutionCode","result","getAnonymousUser","SignUpTime","allowSignup","DOBService","InstitutionAPIService","SignupComponent_span_2_Template","SignupComponent_ng_container_4_Template","SignupComponent_ng_container_5_Template","SignupComponent_ng_container_6_Template","SignupComponent_ng_container_7_Template","SignupComponent_ng_container_8_Template","SignupComponent_ng_container_9_Template","SignupComponent_ng_container_10_Template","AnonymousUserService","constructor","dialog","appSrv","openSignupLogin","display","goPath","doRefresh","prefillUsername","callback","trim","popup","open","SignupLoginDialog","width","height","disableClose","autoFocus","panelClass","data","globalAccount","afterClosed","subscribe","result","goTo","location","reload","backdropClick","redult","ɵɵinject","MatDialog","AppService","factory","ɵfac","providedIn","CommentAPIService","constructor","userInfo","http","CommentGroupchanged","commentPostIDsToHighlight","url","AppSettingService","appConfig","JourneyAPIUrl","BehaviorSubject","getCommentTopic","commentKey","get","withCredentials","headers","authHeader","checkCommentLikeExist","pipe","map","response","Detail","toLowerCase","updateCommentLike","action","checkCommentPersonExist","updateCommentPerson","tap","x","next","getValue","saveCommentPost","comment","forCommentPostId","data","post","searchCommentPosts","startCommentPostId","limit","toString","getCommentPost","commentPostId","checkCommentPostLikeExist","updateCommentPostLike","like","ɵɵinject","UserInfoService","HttpClient","factory","ɵfac","providedIn","ESocialSourceType","ESocialType","ESocialIconType","ESocialIconStyle","SocialObjectAPIService","constructor","anonymousSrv","cacheSrv","userInfo","http","socialStatushanged","userSOCache","url","AppSettingService","appConfig","JourneyAPIUrl","BehaviorSubject","initUserSocialObjects","isAnonymous","Promise","resolve","firstValueFrom","getUserAllSocialObjects","catch","error","console","log","then","of","get","withCredentials","headers","authHeader","pipe","tap","response","getSocialObjectType","isFollowing","sourceId","typeId","objectKey","trim","throwError","map","o","filter","x","TypeId","ObjectKey","SourceId","length","saveUserSocialObject","socialObject","openSignupLogin","post","next","getValue","data","saveUserSocialObjectById","objectTypeId","follow","toString","encodeURIComponent","searchUserObjects","formData","FormData","AppUtilityService","objectToFormData","countSocialObjectFollow","reload","l","remove","getActivityObjectList","userId","objectType","countMyFollowing","IsCard","ɵɵinject","AnonymousUserService","CacheService","UserInfoService","HttpClient","factory","ɵfac","providedIn"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89]}