{"version":3,"sources":["src/app/app.component.ts","src/app/app.component.html","node_modules/@angular/material/fesm2022/radio.mjs","node_modules/@angular/platform-browser/fesm2022/animations.mjs","node_modules/@angular/platform-browser/fesm2022/animations/async.mjs","src/app/constants/legacy-tech.routing.ts","src/app/app.routing.ts","src/app/util/prefix-title-strategy.ts","node_modules/@angular/material-luxon-adapter/fesm2022/material-luxon-adapter.mjs","src/app/app.config.ts","src/main.ts"],"sourcesContent":["import { Component, OnInit, OnDestroy, inject } from '@angular/core';\nimport {\n RouterEvent,\n NavigationStart,\n NavigationEnd,\n NavigationCancel,\n NavigationError,\n Router,\n RouterOutlet,\n} from '@angular/router';\nimport {\n ContentFilterPipe,\n ContentService,\n ContentModelVm,\n getContentByPurpose,\n LoadingComponent,\n LoadingService,\n SafeMarkupPipe,\n GoogleTagManagerService,\n OneTrustService,\n DynatraceService,\n} from '@bfy/bfy-ui-shared';\nimport { Subscription } from 'rxjs';\n\n@Component({\n selector: 'br-root',\n templateUrl: './app.component.html',\n styleUrl: './app.component.scss',\n imports: [\n ContentFilterPipe,\n SafeMarkupPipe,\n RouterOutlet,\n LoadingComponent,\n ],\n})\nexport class AppComponent implements OnInit, OnDestroy {\n pageContent: ContentModelVm[] = [];\n globalContent: ContentModelVm[] = [];\n subHeaderMessage: string;\n headerTextExample: string;\n title!: string;\n isLoading = true;\n\n private routerEventsSubscription: Subscription;\n\n private loadingService = inject(LoadingService);\n private contentService = inject(ContentService);\n private router = inject(Router);\n private googleTagManagerService = inject(GoogleTagManagerService);\n private oneTrustService = inject(OneTrustService);\n private dynatraceService = inject(DynatraceService);\n\n ngOnInit(): void {\n this.oneTrustService.addToDom().then(() => {\n this.dynatraceService.addToDom();\n this.googleTagManagerService.addGtmToDom();\n });\n\n this.routerEventsSubscription = this.router.events.subscribe(\n (event: any): void => {\n this.navigationInterceptor(event);\n },\n );\n\n this.contentService.globalContent // XXX might need override page context option\n .subscribe({\n next: (result) => {\n this.globalContent = result;\n const spinnerContent: [number, string][] = [\n [0, ''],\n [\n 3,\n getContentByPurpose(\n this.globalContent,\n 'spinnerMessageAfter3Seconds',\n ),\n ],\n [\n 8,\n getContentByPurpose(\n this.globalContent,\n 'spinnerMessageAfter8Seconds',\n ),\n ],\n [\n 13,\n getContentByPurpose(\n this.globalContent,\n 'spinnerMessageAfter13Seconds',\n ),\n ],\n ];\n\n this.loadingService.messages = spinnerContent;\n },\n error: (err: unknown) => console.log(err),\n });\n }\n\n ngOnDestroy(): void {\n this.routerEventsSubscription.unsubscribe();\n }\n\n get hasInformationalMessage(): boolean {\n return (\n getContentByPurpose(this.globalContent, 'informationalMessage')\n ?.length > 0\n );\n }\n\n private navigationInterceptor(event: RouterEvent): void {\n if (event instanceof NavigationStart) {\n this.loadingService.start();\n } else if (event instanceof NavigationEnd) {\n // undoing the spinner needs to be very slightly delayed to allow the sub-components\n // time to turn the spinner on for themselves and avoid the content \"hidden\" flag\n // getting set to false too soon\n setTimeout(() => this.loadingService.stop());\n } else if (event instanceof NavigationCancel) {\n this.isLoading = false;\n this.loadingService.stop();\n } else if (event instanceof NavigationError) {\n this.isLoading = false;\n this.loadingService.stop();\n }\n }\n}\n","\n
\n @if (hasInformationalMessage) {\n \n \n \n }\n
\n
\n \n \n \n
\n
\n
\n \n \n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n\n","import { _IdGenerator, FocusMonitor } from '@angular/cdk/a11y';\nimport { UniqueSelectionDispatcher } from '@angular/cdk/collections';\nimport * as i0 from '@angular/core';\nimport { forwardRef, InjectionToken, inject, ChangeDetectorRef, EventEmitter, booleanAttribute, Directive, Output, ContentChildren, Input, ElementRef, NgZone, Renderer2, Injector, ANIMATION_MODULE_TYPE, HostAttributeToken, numberAttribute, afterNextRender, Component, ViewEncapsulation, ChangeDetectionStrategy, ViewChild, NgModule } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { _CdkPrivateStyleLoader } from '@angular/cdk/private';\nimport { _ as _StructuralStylesLoader } from './structural-styles-326dcb39.mjs';\nimport { M as MatRipple } from './ripple-5bdada85.mjs';\nimport { _ as _MatInternalFormField } from './internal-form-field-5960ea2e.mjs';\nimport { M as MatCommonModule } from './common-module-a39ee957.mjs';\nimport { M as MatRippleModule } from './index-a36e3c7c.mjs';\nimport '@angular/cdk/platform';\nimport '@angular/cdk/coercion';\nimport '@angular/cdk/bidi';\n\n/** Change event object emitted by radio button and radio group. */\nconst _c0 = [\"input\"];\nconst _c1 = [\"formField\"];\nconst _c2 = [\"*\"];\nclass MatRadioChange {\n source;\n value;\n constructor(/** The radio button that emits the change event. */\n source, /** The value of the radio button. */\n value) {\n this.source = source;\n this.value = value;\n }\n}\n/**\n * Provider Expression that allows mat-radio-group to register as a ControlValueAccessor. This\n * allows it to support [(ngModel)] and ngControl.\n * @docs-private\n */\nconst MAT_RADIO_GROUP_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: /*#__PURE__*/forwardRef(() => MatRadioGroup),\n multi: true\n};\n/**\n * Injection token that can be used to inject instances of `MatRadioGroup`. It serves as\n * alternative token to the actual `MatRadioGroup` class which could cause unnecessary\n * retention of the class and its component metadata.\n */\nconst MAT_RADIO_GROUP = /*#__PURE__*/new InjectionToken('MatRadioGroup');\nconst MAT_RADIO_DEFAULT_OPTIONS = /*#__PURE__*/new InjectionToken('mat-radio-default-options', {\n providedIn: 'root',\n factory: MAT_RADIO_DEFAULT_OPTIONS_FACTORY\n});\n/**\n * @docs-private\n * @deprecated No longer used, will be removed.\n * @breaking-change 21.0.0\n */\nfunction MAT_RADIO_DEFAULT_OPTIONS_FACTORY() {\n return {\n color: 'accent',\n disabledInteractive: false\n };\n}\n/**\n * A group of radio buttons. May contain one or more `` elements.\n */\nlet MatRadioGroup = /*#__PURE__*/(() => {\n class MatRadioGroup {\n _changeDetector = inject(ChangeDetectorRef);\n /** Selected value for the radio group. */\n _value = null;\n /** The HTML name attribute applied to radio buttons in this group. */\n _name = inject(_IdGenerator).getId('mat-radio-group-');\n /** The currently selected radio button. Should match value. */\n _selected = null;\n /** Whether the `value` has been set to its initial value. */\n _isInitialized = false;\n /** Whether the labels should appear after or before the radio-buttons. Defaults to 'after' */\n _labelPosition = 'after';\n /** Whether the radio group is disabled. */\n _disabled = false;\n /** Whether the radio group is required. */\n _required = false;\n /** Subscription to changes in amount of radio buttons. */\n _buttonChanges;\n /** The method to be called in order to update ngModel */\n _controlValueAccessorChangeFn = () => {};\n /**\n * onTouch function registered via registerOnTouch (ControlValueAccessor).\n * @docs-private\n */\n onTouched = () => {};\n /**\n * Event emitted when the group value changes.\n * Change events are only emitted when the value changes due to user interaction with\n * a radio button (the same behavior as ``).\n */\n change = new EventEmitter();\n /** Child radio buttons. */\n _radios;\n /**\n * Theme color of the radio buttons in the group. This API is supported in M2\n * themes only, it has no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/radio/styling.\n *\n * For information on applying color variants in M3, see\n * https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants\n */\n color;\n /** Name of the radio button group. All radio buttons inside this group will use this name. */\n get name() {\n return this._name;\n }\n set name(value) {\n this._name = value;\n this._updateRadioButtonNames();\n }\n /** Whether the labels should appear after or before the radio-buttons. Defaults to 'after' */\n get labelPosition() {\n return this._labelPosition;\n }\n set labelPosition(v) {\n this._labelPosition = v === 'before' ? 'before' : 'after';\n this._markRadiosForCheck();\n }\n /**\n * Value for the radio-group. Should equal the value of the selected radio button if there is\n * a corresponding radio button with a matching value. If there is not such a corresponding\n * radio button, this value persists to be applied in case a new radio button is added with a\n * matching value.\n */\n get value() {\n return this._value;\n }\n set value(newValue) {\n if (this._value !== newValue) {\n // Set this before proceeding to ensure no circular loop occurs with selection.\n this._value = newValue;\n this._updateSelectedRadioFromValue();\n this._checkSelectedRadioButton();\n }\n }\n _checkSelectedRadioButton() {\n if (this._selected && !this._selected.checked) {\n this._selected.checked = true;\n }\n }\n /**\n * The currently selected radio button. If set to a new radio button, the radio group value\n * will be updated to match the new selected button.\n */\n get selected() {\n return this._selected;\n }\n set selected(selected) {\n this._selected = selected;\n this.value = selected ? selected.value : null;\n this._checkSelectedRadioButton();\n }\n /** Whether the radio group is disabled */\n get disabled() {\n return this._disabled;\n }\n set disabled(value) {\n this._disabled = value;\n this._markRadiosForCheck();\n }\n /** Whether the radio group is required */\n get required() {\n return this._required;\n }\n set required(value) {\n this._required = value;\n this._markRadiosForCheck();\n }\n /** Whether buttons in the group should be interactive while they're disabled. */\n get disabledInteractive() {\n return this._disabledInteractive;\n }\n set disabledInteractive(value) {\n this._disabledInteractive = value;\n this._markRadiosForCheck();\n }\n _disabledInteractive = false;\n constructor() {}\n /**\n * Initialize properties once content children are available.\n * This allows us to propagate relevant attributes to associated buttons.\n */\n ngAfterContentInit() {\n // Mark this component as initialized in AfterContentInit because the initial value can\n // possibly be set by NgModel on MatRadioGroup, and it is possible that the OnInit of the\n // NgModel occurs *after* the OnInit of the MatRadioGroup.\n this._isInitialized = true;\n // Clear the `selected` button when it's destroyed since the tabindex of the rest of the\n // buttons depends on it. Note that we don't clear the `value`, because the radio button\n // may be swapped out with a similar one and there are some internal apps that depend on\n // that behavior.\n this._buttonChanges = this._radios.changes.subscribe(() => {\n if (this.selected && !this._radios.find(radio => radio === this.selected)) {\n this._selected = null;\n }\n });\n }\n ngOnDestroy() {\n this._buttonChanges?.unsubscribe();\n }\n /**\n * Mark this group as being \"touched\" (for ngModel). Meant to be called by the contained\n * radio buttons upon their blur.\n */\n _touch() {\n if (this.onTouched) {\n this.onTouched();\n }\n }\n _updateRadioButtonNames() {\n if (this._radios) {\n this._radios.forEach(radio => {\n radio.name = this.name;\n radio._markForCheck();\n });\n }\n }\n /** Updates the `selected` radio button from the internal _value state. */\n _updateSelectedRadioFromValue() {\n // If the value already matches the selected radio, do nothing.\n const isAlreadySelected = this._selected !== null && this._selected.value === this._value;\n if (this._radios && !isAlreadySelected) {\n this._selected = null;\n this._radios.forEach(radio => {\n radio.checked = this.value === radio.value;\n if (radio.checked) {\n this._selected = radio;\n }\n });\n }\n }\n /** Dispatch change event with current selection and group value. */\n _emitChangeEvent() {\n if (this._isInitialized) {\n this.change.emit(new MatRadioChange(this._selected, this._value));\n }\n }\n _markRadiosForCheck() {\n if (this._radios) {\n this._radios.forEach(radio => radio._markForCheck());\n }\n }\n /**\n * Sets the model value. Implemented as part of ControlValueAccessor.\n * @param value\n */\n writeValue(value) {\n this.value = value;\n this._changeDetector.markForCheck();\n }\n /**\n * Registers a callback to be triggered when the model value changes.\n * Implemented as part of ControlValueAccessor.\n * @param fn Callback to be registered.\n */\n registerOnChange(fn) {\n this._controlValueAccessorChangeFn = fn;\n }\n /**\n * Registers a callback to be triggered when the control is touched.\n * Implemented as part of ControlValueAccessor.\n * @param fn Callback to be registered.\n */\n registerOnTouched(fn) {\n this.onTouched = fn;\n }\n /**\n * Sets the disabled state of the control. Implemented as a part of ControlValueAccessor.\n * @param isDisabled Whether the control should be disabled.\n */\n setDisabledState(isDisabled) {\n this.disabled = isDisabled;\n this._changeDetector.markForCheck();\n }\n static ɵfac = function MatRadioGroup_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatRadioGroup)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatRadioGroup,\n selectors: [[\"mat-radio-group\"]],\n contentQueries: function MatRadioGroup_ContentQueries(rf, ctx, dirIndex) {\n if (rf & 1) {\n i0.ɵɵcontentQuery(dirIndex, MatRadioButton, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._radios = _t);\n }\n },\n hostAttrs: [\"role\", \"radiogroup\", 1, \"mat-mdc-radio-group\"],\n inputs: {\n color: \"color\",\n name: \"name\",\n labelPosition: \"labelPosition\",\n value: \"value\",\n selected: \"selected\",\n disabled: [2, \"disabled\", \"disabled\", booleanAttribute],\n required: [2, \"required\", \"required\", booleanAttribute],\n disabledInteractive: [2, \"disabledInteractive\", \"disabledInteractive\", booleanAttribute]\n },\n outputs: {\n change: \"change\"\n },\n exportAs: [\"matRadioGroup\"],\n features: [i0.ɵɵProvidersFeature([MAT_RADIO_GROUP_CONTROL_VALUE_ACCESSOR, {\n provide: MAT_RADIO_GROUP,\n useExisting: MatRadioGroup\n }])]\n });\n }\n return MatRadioGroup;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MatRadioButton = /*#__PURE__*/(() => {\n class MatRadioButton {\n _elementRef = inject(ElementRef);\n _changeDetector = inject(ChangeDetectorRef);\n _focusMonitor = inject(FocusMonitor);\n _radioDispatcher = inject(UniqueSelectionDispatcher);\n _defaultOptions = inject(MAT_RADIO_DEFAULT_OPTIONS, {\n optional: true\n });\n _ngZone = inject(NgZone);\n _renderer = inject(Renderer2);\n _uniqueId = inject(_IdGenerator).getId('mat-radio-');\n _cleanupClick;\n /** The unique ID for the radio button. */\n id = this._uniqueId;\n /** Analog to HTML 'name' attribute used to group radios for unique selection. */\n name;\n /** Used to set the 'aria-label' attribute on the underlying input element. */\n ariaLabel;\n /** The 'aria-labelledby' attribute takes precedence as the element's text alternative. */\n ariaLabelledby;\n /** The 'aria-describedby' attribute is read after the element's label and field type. */\n ariaDescribedby;\n /** Whether ripples are disabled inside the radio button */\n disableRipple = false;\n /** Tabindex of the radio button. */\n tabIndex = 0;\n /** Whether this radio button is checked. */\n get checked() {\n return this._checked;\n }\n set checked(value) {\n if (this._checked !== value) {\n this._checked = value;\n if (value && this.radioGroup && this.radioGroup.value !== this.value) {\n this.radioGroup.selected = this;\n } else if (!value && this.radioGroup && this.radioGroup.value === this.value) {\n // When unchecking the selected radio button, update the selected radio\n // property on the group.\n this.radioGroup.selected = null;\n }\n if (value) {\n // Notify all radio buttons with the same name to un-check.\n this._radioDispatcher.notify(this.id, this.name);\n }\n this._changeDetector.markForCheck();\n }\n }\n /** The value of this radio button. */\n get value() {\n return this._value;\n }\n set value(value) {\n if (this._value !== value) {\n this._value = value;\n if (this.radioGroup !== null) {\n if (!this.checked) {\n // Update checked when the value changed to match the radio group's value\n this.checked = this.radioGroup.value === value;\n }\n if (this.checked) {\n this.radioGroup.selected = this;\n }\n }\n }\n }\n /** Whether the label should appear after or before the radio button. Defaults to 'after' */\n get labelPosition() {\n return this._labelPosition || this.radioGroup && this.radioGroup.labelPosition || 'after';\n }\n set labelPosition(value) {\n this._labelPosition = value;\n }\n _labelPosition;\n /** Whether the radio button is disabled. */\n get disabled() {\n return this._disabled || this.radioGroup !== null && this.radioGroup.disabled;\n }\n set disabled(value) {\n this._setDisabled(value);\n }\n /** Whether the radio button is required. */\n get required() {\n return this._required || this.radioGroup && this.radioGroup.required;\n }\n set required(value) {\n this._required = value;\n }\n /**\n * Theme color of the radio button. This API is supported in M2 themes only, it\n * has no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/radio/styling.\n *\n * For information on applying color variants in M3, see\n * https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants\n */\n get color() {\n // As per M2 design specifications the selection control radio should use the accent color\n // palette by default. https://m2.material.io/components/radio-buttons#specs\n return this._color || this.radioGroup && this.radioGroup.color || this._defaultOptions && this._defaultOptions.color || 'accent';\n }\n set color(newValue) {\n this._color = newValue;\n }\n _color;\n /** Whether the radio button should remain interactive when it is disabled. */\n get disabledInteractive() {\n return this._disabledInteractive || this.radioGroup !== null && this.radioGroup.disabledInteractive;\n }\n set disabledInteractive(value) {\n this._disabledInteractive = value;\n }\n _disabledInteractive;\n /**\n * Event emitted when the checked state of this radio button changes.\n * Change events are only emitted when the value changes due to user interaction with\n * the radio button (the same behavior as ``).\n */\n change = new EventEmitter();\n /** The parent radio group. May or may not be present. */\n radioGroup;\n /** ID of the native input element inside `` */\n get inputId() {\n return `${this.id || this._uniqueId}-input`;\n }\n /** Whether this radio is checked. */\n _checked = false;\n /** Whether this radio is disabled. */\n _disabled;\n /** Whether this radio is required. */\n _required;\n /** Value assigned to this radio. */\n _value = null;\n /** Unregister function for _radioDispatcher */\n _removeUniqueSelectionListener = () => {};\n /** Previous value of the input's tabindex. */\n _previousTabIndex;\n /** The native `` element */\n _inputElement;\n /** Trigger elements for the ripple events. */\n _rippleTrigger;\n /** Whether animations are disabled. */\n _noopAnimations;\n _injector = inject(Injector);\n constructor() {\n inject(_CdkPrivateStyleLoader).load(_StructuralStylesLoader);\n const radioGroup = inject(MAT_RADIO_GROUP, {\n optional: true\n });\n const animationMode = inject(ANIMATION_MODULE_TYPE, {\n optional: true\n });\n const tabIndex = inject(new HostAttributeToken('tabindex'), {\n optional: true\n });\n // Assertions. Ideally these should be stripped out by the compiler.\n // TODO(jelbourn): Assert that there's no name binding AND a parent radio group.\n this.radioGroup = radioGroup;\n this._noopAnimations = animationMode === 'NoopAnimations';\n this._disabledInteractive = this._defaultOptions?.disabledInteractive ?? false;\n if (tabIndex) {\n this.tabIndex = numberAttribute(tabIndex, 0);\n }\n }\n /** Focuses the radio button. */\n focus(options, origin) {\n if (origin) {\n this._focusMonitor.focusVia(this._inputElement, origin, options);\n } else {\n this._inputElement.nativeElement.focus(options);\n }\n }\n /**\n * Marks the radio button as needing checking for change detection.\n * This method is exposed because the parent radio group will directly\n * update bound properties of the radio button.\n */\n _markForCheck() {\n // When group value changes, the button will not be notified. Use `markForCheck` to explicit\n // update radio button's status\n this._changeDetector.markForCheck();\n }\n ngOnInit() {\n if (this.radioGroup) {\n // If the radio is inside a radio group, determine if it should be checked\n this.checked = this.radioGroup.value === this._value;\n if (this.checked) {\n this.radioGroup.selected = this;\n }\n // Copy name from parent radio group\n this.name = this.radioGroup.name;\n }\n this._removeUniqueSelectionListener = this._radioDispatcher.listen((id, name) => {\n if (id !== this.id && name === this.name) {\n this.checked = false;\n }\n });\n }\n ngDoCheck() {\n this._updateTabIndex();\n }\n ngAfterViewInit() {\n this._updateTabIndex();\n this._focusMonitor.monitor(this._elementRef, true).subscribe(focusOrigin => {\n if (!focusOrigin && this.radioGroup) {\n this.radioGroup._touch();\n }\n });\n // We bind this outside of the zone, because:\n // 1. Its logic is completely DOM-related so we can avoid some change detections.\n // 2. There appear to be some internal tests that break when this triggers a change detection.\n this._ngZone.runOutsideAngular(() => {\n this._cleanupClick = this._renderer.listen(this._inputElement.nativeElement, 'click', this._onInputClick);\n });\n }\n ngOnDestroy() {\n this._cleanupClick?.();\n this._focusMonitor.stopMonitoring(this._elementRef);\n this._removeUniqueSelectionListener();\n }\n /** Dispatch change event with current value. */\n _emitChangeEvent() {\n this.change.emit(new MatRadioChange(this, this._value));\n }\n _isRippleDisabled() {\n return this.disableRipple || this.disabled;\n }\n /** Triggered when the radio button receives an interaction from the user. */\n _onInputInteraction(event) {\n // We always have to stop propagation on the change event.\n // Otherwise the change event, from the input element, will bubble up and\n // emit its event object to the `change` output.\n event.stopPropagation();\n if (!this.checked && !this.disabled) {\n const groupValueChanged = this.radioGroup && this.value !== this.radioGroup.value;\n this.checked = true;\n this._emitChangeEvent();\n if (this.radioGroup) {\n this.radioGroup._controlValueAccessorChangeFn(this.value);\n if (groupValueChanged) {\n this.radioGroup._emitChangeEvent();\n }\n }\n }\n }\n /** Triggered when the user clicks on the touch target. */\n _onTouchTargetClick(event) {\n this._onInputInteraction(event);\n if (!this.disabled || this.disabledInteractive) {\n // Normally the input should be focused already, but if the click\n // comes from the touch target, then we might have to focus it ourselves.\n this._inputElement?.nativeElement.focus();\n }\n }\n /** Sets the disabled state and marks for check if a change occurred. */\n _setDisabled(value) {\n if (this._disabled !== value) {\n this._disabled = value;\n this._changeDetector.markForCheck();\n }\n }\n /** Called when the input is clicked. */\n _onInputClick = event => {\n // If the input is disabled while interactive, we need to prevent the\n // selection from happening in this event handler. Note that even though\n // this happens on `click` events, the logic applies when the user is\n // navigating with the keyboard as well. An alternative way of doing\n // this is by resetting the `checked` state in the `change` callback but\n // it isn't optimal, because it can allow a pre-checked disabled button\n // to be un-checked. This approach seems to cover everything.\n if (this.disabled && this.disabledInteractive) {\n event.preventDefault();\n }\n };\n /** Gets the tabindex for the underlying input element. */\n _updateTabIndex() {\n const group = this.radioGroup;\n let value;\n // Implement a roving tabindex if the button is inside a group. For most cases this isn't\n // necessary, because the browser handles the tab order for inputs inside a group automatically,\n // but we need an explicitly higher tabindex for the selected button in order for things like\n // the focus trap to pick it up correctly.\n if (!group || !group.selected || this.disabled) {\n value = this.tabIndex;\n } else {\n value = group.selected === this ? this.tabIndex : -1;\n }\n if (value !== this._previousTabIndex) {\n // We have to set the tabindex directly on the DOM node, because it depends on\n // the selected state which is prone to \"changed after checked errors\".\n const input = this._inputElement?.nativeElement;\n if (input) {\n input.setAttribute('tabindex', value + '');\n this._previousTabIndex = value;\n // Wait for any pending tabindex changes to be applied\n afterNextRender(() => {\n queueMicrotask(() => {\n // The radio group uses a \"selection follows focus\" pattern for tab management, so if this\n // radio button is currently focused and another radio button in the group becomes\n // selected, we should move focus to the newly selected radio button to maintain\n // consistency between the focused and selected states.\n if (group && group.selected && group.selected !== this && document.activeElement === input) {\n group.selected?._inputElement.nativeElement.focus();\n // If this radio button still has focus, the selected one must be disabled. In this\n // case the radio group as a whole should lose focus.\n if (document.activeElement === input) {\n this._inputElement.nativeElement.blur();\n }\n }\n });\n }, {\n injector: this._injector\n });\n }\n }\n }\n static ɵfac = function MatRadioButton_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatRadioButton)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: MatRadioButton,\n selectors: [[\"mat-radio-button\"]],\n viewQuery: function MatRadioButton_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c0, 5);\n i0.ɵɵviewQuery(_c1, 7, ElementRef);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._inputElement = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._rippleTrigger = _t.first);\n }\n },\n hostAttrs: [1, \"mat-mdc-radio-button\"],\n hostVars: 19,\n hostBindings: function MatRadioButton_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"focus\", function MatRadioButton_focus_HostBindingHandler() {\n return ctx._inputElement.nativeElement.focus();\n });\n }\n if (rf & 2) {\n i0.ɵɵattribute(\"id\", ctx.id)(\"tabindex\", null)(\"aria-label\", null)(\"aria-labelledby\", null)(\"aria-describedby\", null);\n i0.ɵɵclassProp(\"mat-primary\", ctx.color === \"primary\")(\"mat-accent\", ctx.color === \"accent\")(\"mat-warn\", ctx.color === \"warn\")(\"mat-mdc-radio-checked\", ctx.checked)(\"mat-mdc-radio-disabled\", ctx.disabled)(\"mat-mdc-radio-disabled-interactive\", ctx.disabledInteractive)(\"_mat-animation-noopable\", ctx._noopAnimations);\n }\n },\n inputs: {\n id: \"id\",\n name: \"name\",\n ariaLabel: [0, \"aria-label\", \"ariaLabel\"],\n ariaLabelledby: [0, \"aria-labelledby\", \"ariaLabelledby\"],\n ariaDescribedby: [0, \"aria-describedby\", \"ariaDescribedby\"],\n disableRipple: [2, \"disableRipple\", \"disableRipple\", booleanAttribute],\n tabIndex: [2, \"tabIndex\", \"tabIndex\", value => value == null ? 0 : numberAttribute(value)],\n checked: [2, \"checked\", \"checked\", booleanAttribute],\n value: \"value\",\n labelPosition: \"labelPosition\",\n disabled: [2, \"disabled\", \"disabled\", booleanAttribute],\n required: [2, \"required\", \"required\", booleanAttribute],\n color: \"color\",\n disabledInteractive: [2, \"disabledInteractive\", \"disabledInteractive\", booleanAttribute]\n },\n outputs: {\n change: \"change\"\n },\n exportAs: [\"matRadioButton\"],\n ngContentSelectors: _c2,\n decls: 13,\n vars: 17,\n consts: [[\"formField\", \"\"], [\"input\", \"\"], [\"mat-internal-form-field\", \"\", 3, \"labelPosition\"], [1, \"mdc-radio\"], [1, \"mat-mdc-radio-touch-target\", 3, \"click\"], [\"type\", \"radio\", 1, \"mdc-radio__native-control\", 3, \"change\", \"id\", \"checked\", \"disabled\", \"required\"], [1, \"mdc-radio__background\"], [1, \"mdc-radio__outer-circle\"], [1, \"mdc-radio__inner-circle\"], [\"mat-ripple\", \"\", 1, \"mat-radio-ripple\", \"mat-focus-indicator\", 3, \"matRippleTrigger\", \"matRippleDisabled\", \"matRippleCentered\"], [1, \"mat-ripple-element\", \"mat-radio-persistent-ripple\"], [1, \"mdc-label\", 3, \"for\"]],\n template: function MatRadioButton_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵprojectionDef();\n i0.ɵɵelementStart(0, \"div\", 2, 0)(2, \"div\", 3)(3, \"div\", 4);\n i0.ɵɵlistener(\"click\", function MatRadioButton_Template_div_click_3_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx._onTouchTargetClick($event));\n });\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"input\", 5, 1);\n i0.ɵɵlistener(\"change\", function MatRadioButton_Template_input_change_4_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx._onInputInteraction($event));\n });\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(6, \"div\", 6);\n i0.ɵɵelement(7, \"div\", 7)(8, \"div\", 8);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(9, \"div\", 9);\n i0.ɵɵelement(10, \"div\", 10);\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(11, \"label\", 11);\n i0.ɵɵprojection(12);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"labelPosition\", ctx.labelPosition);\n i0.ɵɵadvance(2);\n i0.ɵɵclassProp(\"mdc-radio--disabled\", ctx.disabled);\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"id\", ctx.inputId)(\"checked\", ctx.checked)(\"disabled\", ctx.disabled && !ctx.disabledInteractive)(\"required\", ctx.required);\n i0.ɵɵattribute(\"name\", ctx.name)(\"value\", ctx.value)(\"aria-label\", ctx.ariaLabel)(\"aria-labelledby\", ctx.ariaLabelledby)(\"aria-describedby\", ctx.ariaDescribedby)(\"aria-disabled\", ctx.disabled && ctx.disabledInteractive ? \"true\" : null);\n i0.ɵɵadvance(5);\n i0.ɵɵproperty(\"matRippleTrigger\", ctx._rippleTrigger.nativeElement)(\"matRippleDisabled\", ctx._isRippleDisabled())(\"matRippleCentered\", true);\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"for\", ctx.inputId);\n }\n },\n dependencies: [MatRipple, _MatInternalFormField],\n styles: [\".mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color;padding:calc((var(--mdc-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled])~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-hover-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-hover-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-pressed-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-pressed-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mat-mdc-radio-button .mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:\\\"\\\";transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1);width:var(--mdc-radio-state-layer-size, 40px);height:var(--mdc-radio-state-layer-size, 40px);top:calc(-1*(var(--mdc-radio-state-layer-size, 40px) - 20px)/2);left:calc(-1*(var(--mdc-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-radio-button .mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0, 0);border-width:10px;border-style:solid;border-radius:50%;transition:transform 90ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-radio-button .mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;top:0;right:0;left:0;cursor:inherit;z-index:1;width:var(--mdc-radio-state-layer-size, 40px);height:var(--mdc-radio-state-layer-size, 40px)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{transition:border-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle{transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),border-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mdc-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{cursor:default}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mdc-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-focus-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle{transform:scale(0.5);transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),border-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled{pointer-events:auto}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mdc-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mdc-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color, var(--mat-sys-primary))}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mat-internal-form-field{color:var(--mat-radio-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-radio-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-radio-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-radio-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-radio-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-radio-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple>.mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button .mdc-radio>.mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-focus-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.cdk-focused .mat-focus-indicator::before{content:\\\"\\\"}.mat-mdc-radio-disabled{cursor:default;pointer-events:none}.mat-mdc-radio-disabled.mat-mdc-radio-disabled-interactive{pointer-events:auto}.mat-mdc-radio-touch-target{position:absolute;top:50%;left:50%;height:48px;width:48px;transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display, block)}[dir=rtl] .mat-mdc-radio-touch-target{left:auto;right:50%;transform:translate(50%, -50%)}\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n return MatRadioButton;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MatRadioModule = /*#__PURE__*/(() => {\n class MatRadioModule {\n static ɵfac = function MatRadioModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatRadioModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatRadioModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [MatCommonModule, MatRippleModule, MatRadioButton, MatCommonModule]\n });\n }\n return MatRadioModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nexport { MAT_RADIO_DEFAULT_OPTIONS, MAT_RADIO_DEFAULT_OPTIONS_FACTORY, MAT_RADIO_GROUP, MAT_RADIO_GROUP_CONTROL_VALUE_ACCESSOR, MatRadioButton, MatRadioChange, MatRadioGroup, MatRadioModule };\n","/**\n * @license Angular v19.2.3\n * (c) 2010-2025 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport * as i0 from '@angular/core';\nimport { ANIMATION_MODULE_TYPE, NgZone, RendererFactory2, Inject, Injectable, ɵperformanceMarkFeature as _performanceMarkFeature, NgModule } from '@angular/core';\nexport { ANIMATION_MODULE_TYPE } from '@angular/core';\nimport { ɵDomRendererFactory2 as _DomRendererFactory2, BrowserModule } from '@angular/platform-browser';\nimport * as i1 from '@angular/animations/browser';\nimport { NoopAnimationDriver, AnimationDriver, ɵAnimationStyleNormalizer as _AnimationStyleNormalizer, ɵAnimationEngine as _AnimationEngine, ɵWebAnimationsDriver as _WebAnimationsDriver, ɵWebAnimationsStyleNormalizer as _WebAnimationsStyleNormalizer, ɵAnimationRendererFactory as _AnimationRendererFactory } from '@angular/animations/browser';\nimport { DOCUMENT } from '@angular/common';\nlet InjectableAnimationEngine = /*#__PURE__*/(() => {\n class InjectableAnimationEngine extends _AnimationEngine {\n // The `ApplicationRef` is injected here explicitly to force the dependency ordering.\n // Since the `ApplicationRef` should be created earlier before the `AnimationEngine`, they\n // both have `ngOnDestroy` hooks and `flush()` must be called after all views are destroyed.\n constructor(doc, driver, normalizer) {\n super(doc, driver, normalizer);\n }\n ngOnDestroy() {\n this.flush();\n }\n static ɵfac = function InjectableAnimationEngine_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || InjectableAnimationEngine)(i0.ɵɵinject(DOCUMENT), i0.ɵɵinject(i1.AnimationDriver), i0.ɵɵinject(i1.ɵAnimationStyleNormalizer));\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: InjectableAnimationEngine,\n factory: InjectableAnimationEngine.ɵfac\n });\n }\n return InjectableAnimationEngine;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction instantiateDefaultStyleNormalizer() {\n return new _WebAnimationsStyleNormalizer();\n}\nfunction instantiateRendererFactory(renderer, engine, zone) {\n return new _AnimationRendererFactory(renderer, engine, zone);\n}\nconst SHARED_ANIMATION_PROVIDERS = [{\n provide: _AnimationStyleNormalizer,\n useFactory: instantiateDefaultStyleNormalizer\n}, {\n provide: _AnimationEngine,\n useClass: InjectableAnimationEngine\n}, {\n provide: RendererFactory2,\n useFactory: instantiateRendererFactory,\n deps: [_DomRendererFactory2, _AnimationEngine, NgZone]\n}];\n/**\n * Separate providers from the actual module so that we can do a local modification in Google3 to\n * include them in the BrowserTestingModule.\n */\nconst BROWSER_NOOP_ANIMATIONS_PROVIDERS = [{\n provide: AnimationDriver,\n useClass: NoopAnimationDriver\n}, {\n provide: ANIMATION_MODULE_TYPE,\n useValue: 'NoopAnimations'\n}, ...SHARED_ANIMATION_PROVIDERS];\n/**\n * Separate providers from the actual module so that we can do a local modification in Google3 to\n * include them in the BrowserModule.\n */\nconst BROWSER_ANIMATIONS_PROVIDERS = [\n// Note: the `ngServerMode` happen inside factories to give the variable time to initialize.\n{\n provide: AnimationDriver,\n useFactory: () => typeof ngServerMode !== 'undefined' && ngServerMode ? new NoopAnimationDriver() : new _WebAnimationsDriver()\n}, {\n provide: ANIMATION_MODULE_TYPE,\n useFactory: () => typeof ngServerMode !== 'undefined' && ngServerMode ? 'NoopAnimations' : 'BrowserAnimations'\n}, ...SHARED_ANIMATION_PROVIDERS];\n\n/**\n * Exports `BrowserModule` with additional dependency-injection providers\n * for use with animations. See [Animations](guide/animations).\n * @publicApi\n */\nlet BrowserAnimationsModule = /*#__PURE__*/(() => {\n class BrowserAnimationsModule {\n /**\n * Configures the module based on the specified object.\n *\n * @param config Object used to configure the behavior of the `BrowserAnimationsModule`.\n * @see {@link BrowserAnimationsModuleConfig}\n *\n * @usageNotes\n * When registering the `BrowserAnimationsModule`, you can use the `withConfig`\n * function as follows:\n * ```ts\n * @NgModule({\n * imports: [BrowserAnimationsModule.withConfig(config)]\n * })\n * class MyNgModule {}\n * ```\n */\n static withConfig(config) {\n return {\n ngModule: BrowserAnimationsModule,\n providers: config.disableAnimations ? BROWSER_NOOP_ANIMATIONS_PROVIDERS : BROWSER_ANIMATIONS_PROVIDERS\n };\n }\n static ɵfac = function BrowserAnimationsModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || BrowserAnimationsModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: BrowserAnimationsModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: BROWSER_ANIMATIONS_PROVIDERS,\n imports: [BrowserModule]\n });\n }\n return BrowserAnimationsModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Returns the set of dependency-injection providers\n * to enable animations in an application. See [animations guide](guide/animations)\n * to learn more about animations in Angular.\n *\n * @usageNotes\n *\n * The function is useful when you want to enable animations in an application\n * bootstrapped using the `bootstrapApplication` function. In this scenario there\n * is no need to import the `BrowserAnimationsModule` NgModule at all, just add\n * providers returned by this function to the `providers` list as show below.\n *\n * ```ts\n * bootstrapApplication(RootComponent, {\n * providers: [\n * provideAnimations()\n * ]\n * });\n * ```\n *\n * @publicApi\n */\nfunction provideAnimations() {\n _performanceMarkFeature('NgEagerAnimations');\n // Return a copy to prevent changes to the original array in case any in-place\n // alterations are performed to the `provideAnimations` call results in app code.\n return [...BROWSER_ANIMATIONS_PROVIDERS];\n}\n/**\n * A null player that must be imported to allow disabling of animations.\n * @publicApi\n */\nlet NoopAnimationsModule = /*#__PURE__*/(() => {\n class NoopAnimationsModule {\n static ɵfac = function NoopAnimationsModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NoopAnimationsModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: NoopAnimationsModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: BROWSER_NOOP_ANIMATIONS_PROVIDERS,\n imports: [BrowserModule]\n });\n }\n return NoopAnimationsModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Returns the set of dependency-injection providers\n * to disable animations in an application. See [animations guide](guide/animations)\n * to learn more about animations in Angular.\n *\n * @usageNotes\n *\n * The function is useful when you want to bootstrap an application using\n * the `bootstrapApplication` function, but you need to disable animations\n * (for example, when running tests).\n *\n * ```ts\n * bootstrapApplication(RootComponent, {\n * providers: [\n * provideNoopAnimations()\n * ]\n * });\n * ```\n *\n * @publicApi\n */\nfunction provideNoopAnimations() {\n // Return a copy to prevent changes to the original array in case any in-place\n // alterations are performed to the `provideNoopAnimations` call results in app code.\n return [...BROWSER_NOOP_ANIMATIONS_PROVIDERS];\n}\nexport { BrowserAnimationsModule, NoopAnimationsModule, provideAnimations, provideNoopAnimations, InjectableAnimationEngine as ɵInjectableAnimationEngine };\n","/**\n * @license Angular v19.2.3\n * (c) 2010-2025 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport { DOCUMENT } from '@angular/common';\nimport * as i0 from '@angular/core';\nimport { InjectionToken, inject, Injector, ɵRuntimeError as _RuntimeError, ɵChangeDetectionScheduler as _ChangeDetectionScheduler, Injectable, ɵperformanceMarkFeature as _performanceMarkFeature, makeEnvironmentProviders, NgZone, RendererFactory2, ANIMATION_MODULE_TYPE } from '@angular/core';\nimport { ɵDomRendererFactory2 as _DomRendererFactory2 } from '@angular/platform-browser';\nconst ANIMATION_PREFIX = '@';\nlet AsyncAnimationRendererFactory = /*#__PURE__*/(() => {\n class AsyncAnimationRendererFactory {\n doc;\n delegate;\n zone;\n animationType;\n moduleImpl;\n _rendererFactoryPromise = null;\n scheduler = null;\n injector = inject(Injector);\n loadingSchedulerFn = inject(ɵASYNC_ANIMATION_LOADING_SCHEDULER_FN, {\n optional: true\n });\n _engine;\n /**\n *\n * @param moduleImpl allows to provide a mock implmentation (or will load the animation module)\n */\n constructor(doc, delegate, zone, animationType, moduleImpl) {\n this.doc = doc;\n this.delegate = delegate;\n this.zone = zone;\n this.animationType = animationType;\n this.moduleImpl = moduleImpl;\n }\n /** @nodoc */\n ngOnDestroy() {\n // When the root view is removed, the renderer defers the actual work to the\n // `TransitionAnimationEngine` to do this, and the `TransitionAnimationEngine` doesn't actually\n // remove the DOM node, but just calls `markElementAsRemoved()`. The actual DOM node is not\n // removed until `TransitionAnimationEngine` \"flushes\".\n // Note: we already flush on destroy within the `InjectableAnimationEngine`. The injectable\n // engine is not provided when async animations are used.\n this._engine?.flush();\n }\n /**\n * @internal\n */\n loadImpl() {\n // Note on the `.then(m => m)` part below: Closure compiler optimizations in g3 require\n // `.then` to be present for a dynamic import (or an import should be `await`ed) to detect\n // the set of imported symbols.\n const loadFn = () => this.moduleImpl ?? import('@angular/animations/browser').then(m => m);\n let moduleImplPromise;\n if (this.loadingSchedulerFn) {\n moduleImplPromise = this.loadingSchedulerFn(loadFn);\n } else {\n moduleImplPromise = loadFn();\n }\n return moduleImplPromise.catch(e => {\n throw new _RuntimeError(5300 /* RuntimeErrorCode.ANIMATION_RENDERER_ASYNC_LOADING_FAILURE */, (typeof ngDevMode === 'undefined' || ngDevMode) && 'Async loading for animations package was ' + 'enabled, but loading failed. Angular falls back to using regular rendering. ' + \"No animations will be displayed and their styles won't be applied.\");\n }).then(({\n ɵcreateEngine,\n ɵAnimationRendererFactory\n }) => {\n // We can't create the renderer yet because we might need the hostElement and the type\n // Both are provided in createRenderer().\n this._engine = ɵcreateEngine(this.animationType, this.doc);\n const rendererFactory = new ɵAnimationRendererFactory(this.delegate, this._engine, this.zone);\n this.delegate = rendererFactory;\n return rendererFactory;\n });\n }\n /**\n * This method is delegating the renderer creation to the factories.\n * It uses default factory while the animation factory isn't loaded\n * and will rely on the animation factory once it is loaded.\n *\n * Calling this method will trigger as side effect the loading of the animation module\n * if the renderered component uses animations.\n */\n createRenderer(hostElement, rendererType) {\n const renderer = this.delegate.createRenderer(hostElement, rendererType);\n if (renderer.ɵtype === 0 /* AnimationRendererType.Regular */) {\n // The factory is already loaded, this is an animation renderer\n return renderer;\n }\n // We need to prevent the DomRenderer to throw an error because of synthetic properties\n if (typeof renderer.throwOnSyntheticProps === 'boolean') {\n renderer.throwOnSyntheticProps = false;\n }\n // Using a dynamic renderer to switch the renderer implementation once the module is loaded.\n const dynamicRenderer = new DynamicDelegationRenderer(renderer);\n // Kick off the module loading if the component uses animations but the module hasn't been\n // loaded yet.\n if (rendererType?.data?.['animation'] && !this._rendererFactoryPromise) {\n this._rendererFactoryPromise = this.loadImpl();\n }\n this._rendererFactoryPromise?.then(animationRendererFactory => {\n const animationRenderer = animationRendererFactory.createRenderer(hostElement, rendererType);\n dynamicRenderer.use(animationRenderer);\n this.scheduler ??= this.injector.get(_ChangeDetectionScheduler, null, {\n optional: true\n });\n this.scheduler?.notify(10 /* NotificationSource.AsyncAnimationsLoaded */);\n }).catch(e => {\n // Permanently use regular renderer when loading fails.\n dynamicRenderer.use(renderer);\n });\n return dynamicRenderer;\n }\n begin() {\n this.delegate.begin?.();\n }\n end() {\n this.delegate.end?.();\n }\n whenRenderingDone() {\n return this.delegate.whenRenderingDone?.() ?? Promise.resolve();\n }\n /**\n * Used during HMR to clear any cached data about a component.\n * @param componentId ID of the component that is being replaced.\n */\n componentReplaced(componentId) {\n // Flush the engine since the renderer destruction waits for animations to be done.\n this._engine?.flush();\n this.delegate.componentReplaced?.(componentId);\n }\n static ɵfac = function AsyncAnimationRendererFactory_Factory(__ngFactoryType__) {\n i0.ɵɵinvalidFactory();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: AsyncAnimationRendererFactory,\n factory: AsyncAnimationRendererFactory.ɵfac\n });\n }\n return AsyncAnimationRendererFactory;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * The class allows to dynamicly switch between different renderer implementations\n * by changing the delegate renderer.\n */\nclass DynamicDelegationRenderer {\n delegate;\n // List of callbacks that need to be replayed on the animation renderer once its loaded\n replay = [];\n ɵtype = 1 /* AnimationRendererType.Delegated */;\n constructor(delegate) {\n this.delegate = delegate;\n }\n use(impl) {\n this.delegate = impl;\n if (this.replay !== null) {\n // Replay queued actions using the animation renderer to apply\n // all events and properties collected while loading was in progress.\n for (const fn of this.replay) {\n fn(impl);\n }\n // Set to `null` to indicate that the queue was processed\n // and we no longer need to collect events and properties.\n this.replay = null;\n }\n }\n get data() {\n return this.delegate.data;\n }\n destroy() {\n this.replay = null;\n this.delegate.destroy();\n }\n createElement(name, namespace) {\n return this.delegate.createElement(name, namespace);\n }\n createComment(value) {\n return this.delegate.createComment(value);\n }\n createText(value) {\n return this.delegate.createText(value);\n }\n get destroyNode() {\n return this.delegate.destroyNode;\n }\n appendChild(parent, newChild) {\n this.delegate.appendChild(parent, newChild);\n }\n insertBefore(parent, newChild, refChild, isMove) {\n this.delegate.insertBefore(parent, newChild, refChild, isMove);\n }\n removeChild(parent, oldChild, isHostElement) {\n this.delegate.removeChild(parent, oldChild, isHostElement);\n }\n selectRootElement(selectorOrNode, preserveContent) {\n return this.delegate.selectRootElement(selectorOrNode, preserveContent);\n }\n parentNode(node) {\n return this.delegate.parentNode(node);\n }\n nextSibling(node) {\n return this.delegate.nextSibling(node);\n }\n setAttribute(el, name, value, namespace) {\n this.delegate.setAttribute(el, name, value, namespace);\n }\n removeAttribute(el, name, namespace) {\n this.delegate.removeAttribute(el, name, namespace);\n }\n addClass(el, name) {\n this.delegate.addClass(el, name);\n }\n removeClass(el, name) {\n this.delegate.removeClass(el, name);\n }\n setStyle(el, style, value, flags) {\n this.delegate.setStyle(el, style, value, flags);\n }\n removeStyle(el, style, flags) {\n this.delegate.removeStyle(el, style, flags);\n }\n setProperty(el, name, value) {\n // We need to keep track of animation properties set on default renderer\n // So we can also set them also on the animation renderer\n if (this.shouldReplay(name)) {\n this.replay.push(renderer => renderer.setProperty(el, name, value));\n }\n this.delegate.setProperty(el, name, value);\n }\n setValue(node, value) {\n this.delegate.setValue(node, value);\n }\n listen(target, eventName, callback, options) {\n // We need to keep track of animation events registred by the default renderer\n // So we can also register them against the animation renderer\n if (this.shouldReplay(eventName)) {\n this.replay.push(renderer => renderer.listen(target, eventName, callback, options));\n }\n return this.delegate.listen(target, eventName, callback, options);\n }\n shouldReplay(propOrEventName) {\n //`null` indicates that we no longer need to collect events and properties\n return this.replay !== null && propOrEventName.startsWith(ANIMATION_PREFIX);\n }\n}\n/**\n * Provides a custom scheduler function for the async loading of the animation package.\n *\n * Private token for investigation purposes\n */\nconst ɵASYNC_ANIMATION_LOADING_SCHEDULER_FN = /*#__PURE__*/new InjectionToken(ngDevMode ? 'async_animation_loading_scheduler_fn' : '');\n\n/**\n * Returns the set of dependency-injection providers\n * to enable animations in an application. See [animations guide](guide/animations)\n * to learn more about animations in Angular.\n *\n * When you use this function instead of the eager `provideAnimations()`, animations won't be\n * rendered until the renderer is loaded.\n *\n * @usageNotes\n *\n * The function is useful when you want to enable animations in an application\n * bootstrapped using the `bootstrapApplication` function. In this scenario there\n * is no need to import the `BrowserAnimationsModule` NgModule at all, just add\n * providers returned by this function to the `providers` list as show below.\n *\n * ```ts\n * bootstrapApplication(RootComponent, {\n * providers: [\n * provideAnimationsAsync()\n * ]\n * });\n * ```\n *\n * @param type pass `'noop'` as argument to disable animations.\n *\n * @publicApi\n */\nfunction provideAnimationsAsync(type = 'animations') {\n _performanceMarkFeature('NgAsyncAnimations');\n // Animations don't work on the server so we switch them over to no-op automatically.\n if (typeof ngServerMode !== 'undefined' && ngServerMode) {\n type = 'noop';\n }\n return makeEnvironmentProviders([{\n provide: RendererFactory2,\n useFactory: (doc, renderer, zone) => {\n return new AsyncAnimationRendererFactory(doc, renderer, zone, type);\n },\n deps: [DOCUMENT, _DomRendererFactory2, NgZone]\n }, {\n provide: ANIMATION_MODULE_TYPE,\n useValue: type === 'noop' ? 'NoopAnimations' : 'BrowserAnimations'\n }]);\n}\nexport { provideAnimationsAsync, ɵASYNC_ANIMATION_LOADING_SCHEDULER_FN, AsyncAnimationRendererFactory as ɵAsyncAnimationRendererFactory };\n","import { Route, Routes } from '@angular/router';\nimport { CONTACT_ROUTE_DATA } from '../contact/contact-routes';\nimport { GRANT_ROLES_ROUTE_DATA } from '../grant-roles/grant-roles-routes';\nimport { INVITED_ADMIN_ROUTE_DATA } from '../invited-admin/invited-admin-routes';\nimport { INVITED_PERSON_ROUTE_DATA } from '../invited-person/invited-person-routes';\nimport { PARTICIPANT_ROUTE_DATA } from '../participant/participant-routes';\nimport {\n ANGULARJS_ROUTE_DATA,\n PROCESS_EXISTING_ROUTE_DATA,\n} from './legacy-routes';\n\nconst getBackwardsCompatibilityRoutes = (\n paths: { old: string; new: string; noTrailingSlash?: boolean }[],\n): Route[] => {\n // now add the regular backwards-compatibility routes\n const routes: Route[] = paths.map((p) => ({\n path:\n (p.noTrailingSlash\n ? ANGULARJS_ROUTE_DATA.BASE_PATH_NO_SLASHES\n : ANGULARJS_ROUTE_DATA.BASE_PATH_NO_LEADING_SLASH) + p.old,\n redirectTo: p.new,\n }));\n\n return routes;\n};\n\nconst getProcessExistingRoutes = (\n paths: { old: string; new: string; noTrailingSlash?: boolean }[],\n): Route[] => {\n // now add the regular backwards-compatibility routes\n const routes: Route[] = paths.map((p) => ({\n path:\n PROCESS_EXISTING_ROUTE_DATA.BASE.PATH +\n (p.noTrailingSlash ? '' : '/') +\n p.old,\n redirectTo: p.new,\n }));\n\n return routes;\n};\n\n/**\n * This set of routes are for handling existing explicit AngularJS routes.\n */\nconst ANGULARJS_ROUTES: Routes = [\n /* Begin backwards compatibility support routes */\n ...getBackwardsCompatibilityRoutes([\n {\n old: ANGULARJS_ROUTE_DATA.PARTICIPANT_BASE.PATH,\n new: PARTICIPANT_ROUTE_DATA.GETTING_STARTED.PATH,\n noTrailingSlash: true,\n },\n {\n old: ANGULARJS_ROUTE_DATA.PARTICIPANT_BASE.PATH,\n new: PARTICIPANT_ROUTE_DATA.GETTING_STARTED.PATH,\n },\n {\n old: ANGULARJS_ROUTE_DATA.PARTICIPANT_IDENTITY_BASE.PATH,\n new: PARTICIPANT_ROUTE_DATA.IDENTITY_BASE.PATH,\n },\n {\n old: `${ANGULARJS_ROUTE_DATA.PARTICIPANT_IDENTITY_BASE.PATH}/${ANGULARJS_ROUTE_DATA.PARTICIPANT_ADD_ROLES.PATH}`,\n new: `${PARTICIPANT_ROUTE_DATA.IDENTITY_BASE.PATH}/${PARTICIPANT_ROUTE_DATA.ADD_ROLES.PATH}`,\n },\n {\n old:\n `${ANGULARJS_ROUTE_DATA.PARTICIPANT_IDENTITY_BASE.PATH}/${ANGULARJS_ROUTE_DATA.PARTICIPANT_ADD_ROLES.PATH}/` +\n ANGULARJS_ROUTE_DATA.PARTICIPANT_RISK_BASED.PATH,\n new:\n `${PARTICIPANT_ROUTE_DATA.IDENTITY_BASE.PATH}/${PARTICIPANT_ROUTE_DATA.ADD_ROLES.PATH}/` +\n PARTICIPANT_ROUTE_DATA.RISK_BASED.PATH,\n },\n {\n old: `${ANGULARJS_ROUTE_DATA.CONTACT.PATH}`,\n new: `${CONTACT_ROUTE_DATA.CONTACTS_BASE.PATH}/${CONTACT_ROUTE_DATA.GETTING_STARTED.PATH}`,\n },\n {\n old: `${ANGULARJS_ROUTE_DATA.INVITED_ADMIN.PATH}`,\n new: `${INVITED_ADMIN_ROUTE_DATA.INVITED_ADMIN_BASE.PATH}/${INVITED_ADMIN_ROUTE_DATA.GETTING_STARTED.PATH}`,\n },\n {\n old: `${ANGULARJS_ROUTE_DATA.INVITED_PERSON.PATH}`,\n new: `${INVITED_PERSON_ROUTE_DATA.INVITED_PERSON_BASE.PATH}/${INVITED_PERSON_ROUTE_DATA.CREATE_ACCOUNT.PATH}`,\n },\n {\n old: ANGULARJS_ROUTE_DATA.GRANT_ROLES.PATH,\n new: GRANT_ROLES_ROUTE_DATA.BASE.PATH,\n },\n ]),\n /* End backwards compatibility support routes */\n];\n\n/**\n * These routes are special, as they are not actually real entry routes, but exist for Ping to intercept the route\n * for user credential recognition; therefore, we will target the AngularJS route \"ProcessExisting\" with full page reloads\n * even inside the app, but we can redirect to a \"new-looking\" route immediately for consistency\n */\nconst PROCESS_EXISTING_ROUTES: Routes = [\n ...getProcessExistingRoutes([\n {\n old: '',\n new: PARTICIPANT_ROUTE_DATA.PROCESS_EXISTING.PATH,\n noTrailingSlash: true,\n },\n {\n old: PROCESS_EXISTING_ROUTE_DATA.CONTACT.PATH,\n new: `${CONTACT_ROUTE_DATA.CONTACTS_BASE.PATH}/${CONTACT_ROUTE_DATA.PROCESS_EXISTING.PATH}`,\n },\n {\n old: PROCESS_EXISTING_ROUTE_DATA.INVITED_ADMIN.PATH,\n new: `${INVITED_ADMIN_ROUTE_DATA.INVITED_ADMIN_BASE.PATH}/${INVITED_ADMIN_ROUTE_DATA.PROCESS_EXISTING.PATH}`,\n },\n {\n old: PROCESS_EXISTING_ROUTE_DATA.INVITED_PERSON.PATH,\n new: `${INVITED_PERSON_ROUTE_DATA.INVITED_PERSON_BASE.PATH}/${INVITED_PERSON_ROUTE_DATA.PROCESS_EXISTING.PATH}`,\n },\n {\n old: PROCESS_EXISTING_ROUTE_DATA.GRANT_ROLES.PATH,\n new: `${GRANT_ROLES_ROUTE_DATA.BASE.PATH}/${GRANT_ROLES_ROUTE_DATA.CONFIRM.PATH}`,\n },\n ]),\n];\n\nexport const LEGACY_TECHNOLOGY_ROUTES = [\n ...ANGULARJS_ROUTES,\n ...PROCESS_EXISTING_ROUTES,\n];\n","import { Routes } from '@angular/router';\nimport { LEGACY_TECHNOLOGY_ROUTES } from './constants/legacy-tech.routing';\nimport { CONTACT_ROUTE_DATA } from './contact/contact-routes';\nimport { INVITED_ADMIN_ROUTE_DATA } from './invited-admin/invited-admin-routes';\nimport { INVITED_PERSON_ROUTE_DATA } from './invited-person/invited-person-routes';\nimport { GRANT_ROLES_ROUTE_DATA } from './grant-roles/grant-roles-routes';\nimport { PARTICIPANT_ROUTE_DATA } from './participant/participant-routes';\n\nexport const appRoutes: Routes = [\n {\n path: CONTACT_ROUTE_DATA.CONTACTS_BASE.PATH,\n loadChildren: () => import('./contact/contact.routing'),\n data: { preload: false },\n },\n {\n path: INVITED_ADMIN_ROUTE_DATA.INVITED_ADMIN_BASE.PATH,\n loadChildren: () => import('./invited-admin/invited-admin.routing'),\n data: { preload: false },\n },\n {\n path: INVITED_PERSON_ROUTE_DATA.INVITED_PERSON_BASE.PATH,\n loadChildren: () => import('./invited-person/invited-person.routing'),\n data: { preload: false },\n },\n {\n path: GRANT_ROLES_ROUTE_DATA.BASE.PATH,\n loadChildren: () => import('./grant-roles/grant-roles.routing'),\n data: { preload: false },\n },\n ...LEGACY_TECHNOLOGY_ROUTES,\n // while Participant routing is our \"main\" entry point, the lack of a leading prefix in the routes\n // means the we want other more-specific routes to match first to avoid loading the module unnecessarily\n {\n path: PARTICIPANT_ROUTE_DATA.GETTING_STARTED.PATH,\n loadChildren: () => import('./participant/participant.routing'),\n data: { preload: false },\n },\n {\n path: '**',\n redirectTo: PARTICIPANT_ROUTE_DATA.GETTING_STARTED.PATH,\n },\n];\n","import { Injectable, inject } from '@angular/core';\nimport { Title } from '@angular/platform-browser';\nimport { RouterStateSnapshot, TitleStrategy } from '@angular/router';\n\n@Injectable()\nexport class PrefixTitleStrategy extends TitleStrategy {\n private readonly title = inject(Title);\n\n private static readonly titlePrefix = 'Benefits For You - ';\n\n override updateTitle(snapshot: RouterStateSnapshot): void {\n const title = this.buildTitle(snapshot);\n this.title.setTitle(`${PrefixTitleStrategy.titlePrefix}${title}`);\n }\n}\n","import * as i0 from '@angular/core';\nimport { InjectionToken, inject, Injectable, NgModule } from '@angular/core';\nimport { DateAdapter, MAT_DATE_LOCALE, MAT_DATE_FORMATS } from '@angular/material/core';\nimport { DateTime, Info } from 'luxon';\n\n/** InjectionToken for LuxonDateAdapter to configure options. */\nconst MAT_LUXON_DATE_ADAPTER_OPTIONS = /*#__PURE__*/new InjectionToken('MAT_LUXON_DATE_ADAPTER_OPTIONS', {\n providedIn: 'root',\n factory: MAT_LUXON_DATE_ADAPTER_OPTIONS_FACTORY\n});\n/**\n * @docs-private\n * @deprecated No longer used, will be removed.\n * @breaking-change 21.0.0\n */\nfunction MAT_LUXON_DATE_ADAPTER_OPTIONS_FACTORY() {\n return {\n useUtc: false,\n defaultOutputCalendar: 'gregory'\n };\n}\n/** Creates an array and fills it with values. */\nfunction range(length, valueFunction) {\n const valuesArray = Array(length);\n for (let i = 0; i < length; i++) {\n valuesArray[i] = valueFunction(i);\n }\n return valuesArray;\n}\n/** Adapts Luxon Dates for use with Angular Material. */\nlet LuxonDateAdapter = /*#__PURE__*/(() => {\n class LuxonDateAdapter extends DateAdapter {\n _useUTC;\n _firstDayOfWeek;\n _defaultOutputCalendar;\n constructor() {\n super();\n const dateLocale = inject(MAT_DATE_LOCALE, {\n optional: true\n });\n const options = inject(MAT_LUXON_DATE_ADAPTER_OPTIONS, {\n optional: true\n });\n this._useUTC = !!options?.useUtc;\n this._firstDayOfWeek = options?.firstDayOfWeek;\n this._defaultOutputCalendar = options?.defaultOutputCalendar || 'gregory';\n this.setLocale(dateLocale || DateTime.local().locale);\n }\n getYear(date) {\n return date.year;\n }\n getMonth(date) {\n // Luxon works with 1-indexed months whereas our code expects 0-indexed.\n return date.month - 1;\n }\n getDate(date) {\n return date.day;\n }\n getDayOfWeek(date) {\n return date.weekday;\n }\n getMonthNames(style) {\n // Adding outputCalendar option, because LuxonInfo doesn't get effected by LuxonSettings\n return Info.months(style, {\n locale: this.locale,\n outputCalendar: this._defaultOutputCalendar\n });\n }\n getDateNames() {\n // At the time of writing, Luxon doesn't offer similar\n // functionality so we have to fall back to the Intl API.\n const dtf = new Intl.DateTimeFormat(this.locale, {\n day: 'numeric',\n timeZone: 'utc'\n });\n // Format a UTC date in order to avoid DST issues.\n return range(31, i => dtf.format(DateTime.utc(2017, 1, i + 1).toJSDate()));\n }\n getDayOfWeekNames(style) {\n // Note that we shift the array once, because Luxon returns Monday as the\n // first day of the week, whereas our logic assumes that it's Sunday. See:\n // https://moment.github.io/luxon/api-docs/index.html#infoweekdays\n const days = Info.weekdays(style, {\n locale: this.locale\n });\n days.unshift(days.pop());\n return days;\n }\n getYearName(date) {\n return date.toFormat('yyyy', this._getOptions());\n }\n getFirstDayOfWeek() {\n return this._firstDayOfWeek ?? Info.getStartOfWeek({\n locale: this.locale\n });\n }\n getNumDaysInMonth(date) {\n return date.daysInMonth;\n }\n clone(date) {\n return DateTime.fromObject(date.toObject(), this._getOptions());\n }\n createDate(year, month, date) {\n const options = this._getOptions();\n if (month < 0 || month > 11) {\n throw Error(`Invalid month index \"${month}\". Month index has to be between 0 and 11.`);\n }\n if (date < 1) {\n throw Error(`Invalid date \"${date}\". Date has to be greater than 0.`);\n }\n // Luxon uses 1-indexed months so we need to add one to the month.\n const result = this._useUTC ? DateTime.utc(year, month + 1, date, options) : DateTime.local(year, month + 1, date, options);\n if (!this.isValid(result)) {\n throw Error(`Invalid date \"${date}\". Reason: \"${result.invalidReason}\".`);\n }\n return result;\n }\n today() {\n const options = this._getOptions();\n return this._useUTC ? DateTime.utc(options) : DateTime.local(options);\n }\n parse(value, parseFormat) {\n const options = this._getOptions();\n if (typeof value == 'string' && value.length > 0) {\n const iso8601Date = DateTime.fromISO(value, options);\n if (this.isValid(iso8601Date)) {\n return iso8601Date;\n }\n const formats = Array.isArray(parseFormat) ? parseFormat : [parseFormat];\n if (!parseFormat.length) {\n throw Error('Formats array must not be empty.');\n }\n for (const format of formats) {\n const fromFormat = DateTime.fromFormat(value, format, options);\n if (this.isValid(fromFormat)) {\n return fromFormat;\n }\n }\n return this.invalid();\n } else if (typeof value === 'number') {\n return DateTime.fromMillis(value, options);\n } else if (value instanceof Date) {\n return DateTime.fromJSDate(value, options);\n } else if (value instanceof DateTime) {\n return DateTime.fromMillis(value.toMillis(), options);\n }\n return null;\n }\n format(date, displayFormat) {\n if (!this.isValid(date)) {\n throw Error('LuxonDateAdapter: Cannot format invalid date.');\n }\n if (this._useUTC) {\n return date.setLocale(this.locale).setZone('utc').toFormat(displayFormat);\n } else {\n return date.setLocale(this.locale).toFormat(displayFormat);\n }\n }\n addCalendarYears(date, years) {\n return date.reconfigure(this._getOptions()).plus({\n years\n });\n }\n addCalendarMonths(date, months) {\n return date.reconfigure(this._getOptions()).plus({\n months\n });\n }\n addCalendarDays(date, days) {\n return date.reconfigure(this._getOptions()).plus({\n days\n });\n }\n toIso8601(date) {\n return date.toISO();\n }\n /**\n * Returns the given value if given a valid Luxon or null. Deserializes valid ISO 8601 strings\n * (https://www.ietf.org/rfc/rfc3339.txt) and valid Date objects into valid DateTime and empty\n * string into null. Returns an invalid date for all other values.\n */\n deserialize(value) {\n const options = this._getOptions();\n let date;\n if (value instanceof Date) {\n date = DateTime.fromJSDate(value, options);\n }\n if (typeof value === 'string') {\n if (!value) {\n return null;\n }\n date = DateTime.fromISO(value, options);\n }\n if (date && this.isValid(date)) {\n return date;\n }\n return super.deserialize(value);\n }\n isDateInstance(obj) {\n return obj instanceof DateTime;\n }\n isValid(date) {\n return date.isValid;\n }\n invalid() {\n return DateTime.invalid('Invalid Luxon DateTime object.');\n }\n setTime(target, hours, minutes, seconds) {\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (hours < 0 || hours > 23) {\n throw Error(`Invalid hours \"${hours}\". Hours value must be between 0 and 23.`);\n }\n if (minutes < 0 || minutes > 59) {\n throw Error(`Invalid minutes \"${minutes}\". Minutes value must be between 0 and 59.`);\n }\n if (seconds < 0 || seconds > 59) {\n throw Error(`Invalid seconds \"${seconds}\". Seconds value must be between 0 and 59.`);\n }\n }\n return this.clone(target).set({\n hour: hours,\n minute: minutes,\n second: seconds,\n millisecond: 0\n });\n }\n getHours(date) {\n return date.hour;\n }\n getMinutes(date) {\n return date.minute;\n }\n getSeconds(date) {\n return date.second;\n }\n parseTime(value, parseFormat) {\n const result = this.parse(value, parseFormat);\n if ((!result || !this.isValid(result)) && typeof value === 'string') {\n // It seems like Luxon doesn't work well cross-browser for strings that have\n // additional characters around the time. Try parsing without those characters.\n return this.parse(value.replace(/[^0-9:(AM|PM)]/gi, ''), parseFormat) || result;\n }\n return result;\n }\n addSeconds(date, amount) {\n return date.reconfigure(this._getOptions()).plus({\n seconds: amount\n });\n }\n /** Gets the options that should be used when constructing a new `DateTime` object. */\n _getOptions() {\n return {\n zone: this._useUTC ? 'utc' : undefined,\n locale: this.locale,\n outputCalendar: this._defaultOutputCalendar\n };\n }\n static ɵfac = function LuxonDateAdapter_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || LuxonDateAdapter)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: LuxonDateAdapter,\n factory: LuxonDateAdapter.ɵfac\n });\n }\n return LuxonDateAdapter;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst MAT_LUXON_DATE_FORMATS = {\n parse: {\n dateInput: 'D',\n timeInput: 't'\n },\n display: {\n dateInput: 'D',\n timeInput: 't',\n monthYearLabel: 'LLL yyyy',\n dateA11yLabel: 'DD',\n monthYearA11yLabel: 'LLLL yyyy',\n timeOptionLabel: 't'\n }\n};\nlet LuxonDateModule = /*#__PURE__*/(() => {\n class LuxonDateModule {\n static ɵfac = function LuxonDateModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || LuxonDateModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: LuxonDateModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [{\n provide: DateAdapter,\n useClass: LuxonDateAdapter,\n deps: [MAT_DATE_LOCALE, MAT_LUXON_DATE_ADAPTER_OPTIONS]\n }]\n });\n }\n return LuxonDateModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MatLuxonDateModule = /*#__PURE__*/(() => {\n class MatLuxonDateModule {\n static ɵfac = function MatLuxonDateModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatLuxonDateModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatLuxonDateModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [provideLuxonDateAdapter()]\n });\n }\n return MatLuxonDateModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction provideLuxonDateAdapter(formats = MAT_LUXON_DATE_FORMATS) {\n return [{\n provide: DateAdapter,\n useClass: LuxonDateAdapter,\n deps: [MAT_DATE_LOCALE, MAT_LUXON_DATE_ADAPTER_OPTIONS]\n }, {\n provide: MAT_DATE_FORMATS,\n useValue: formats\n }];\n}\nexport { LuxonDateAdapter, LuxonDateModule, MAT_LUXON_DATE_ADAPTER_OPTIONS, MAT_LUXON_DATE_ADAPTER_OPTIONS_FACTORY, MAT_LUXON_DATE_FORMATS, MatLuxonDateModule, provideLuxonDateAdapter };\n","import {\n provideHttpClient,\n withInterceptorsFromDi,\n} from '@angular/common/http';\nimport { importProvidersFrom, ApplicationConfig } from '@angular/core';\nimport { MatDialogModule } from '@angular/material/dialog';\nimport { MAT_FORM_FIELD_DEFAULT_OPTIONS } from '@angular/material/form-field';\nimport { MAT_RADIO_DEFAULT_OPTIONS } from '@angular/material/radio';\nimport { provideNoopAnimations } from '@angular/platform-browser/animations';\nimport { provideAnimationsAsync } from '@angular/platform-browser/animations/async';\nimport { TitleStrategy, provideRouter, withPreloading } from '@angular/router';\nimport {\n disableUnsupportedAnimations,\n provideBfyUiShared,\n Site,\n CustomPreloadingStrategy,\n} from '@bfy/bfy-ui-shared';\nimport { appRoutes } from './app.routing';\nimport { PrefixTitleStrategy } from './util/prefix-title-strategy';\nimport { provideLuxonDateAdapter } from '@angular/material-luxon-adapter';\n\nexport const appConfig: ApplicationConfig = {\n providers: [\n {\n provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,\n useValue: { appearance: 'outline' },\n },\n { provide: MAT_RADIO_DEFAULT_OPTIONS, useValue: { color: 'primary' } },\n { provide: TitleStrategy, useClass: PrefixTitleStrategy },\n importProvidersFrom(MatDialogModule),\n provideLuxonDateAdapter(),\n provideHttpClient(withInterceptorsFromDi()),\n disableUnsupportedAnimations\n ? provideNoopAnimations()\n : provideAnimationsAsync(),\n provideBfyUiShared({\n site: Site.Registration,\n }),\n provideRouter(appRoutes, withPreloading(CustomPreloadingStrategy)),\n ],\n};\n","import { bootstrapApplication } from '@angular/platform-browser';\nimport { AppComponent } from './app/app.component';\nimport { appConfig } from './app/app.config';\n\nbootstrapApplication(AppComponent, appConfig).catch((err) =>\n console.error(err),\n);\n"],"mappings":"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","names":["ɵɵelementStart","ɵɵelement","ɵɵelementEnd","ɵɵadvance","ɵɵproperty","ɵɵpipeBind2","ctx_r0","globalContent","ɵɵsanitizeHtml","AppComponent","constructor","pageContent","isLoading","loadingService","inject","LoadingService","contentService","ContentService","router","Router","googleTagManagerService","GoogleTagManagerService","oneTrustService","OneTrustService","dynatraceService","DynatraceService","ngOnInit","addToDom","then","addGtmToDom","routerEventsSubscription","events","subscribe","event","navigationInterceptor","next","result","spinnerContent","getContentByPurpose","messages","error","err","console","log","ngOnDestroy","unsubscribe","hasInformationalMessage","length","NavigationStart","start","NavigationEnd","setTimeout","stop","NavigationCancel","NavigationError","selectors","decls","vars","consts","template","rf","ctx","ɵɵtemplate","AppComponent_Conditional_2_Template","ɵɵconditional","ɵɵpropertyInterpolate","ɵɵpropertyInterpolate1","ɵɵsanitizeUrl","ContentFilterPipe","SafeMarkupPipe","RouterOutlet","LoadingComponent","styles","MAT_RADIO_DEFAULT_OPTIONS","InjectionToken","MAT_RADIO_DEFAULT_OPTIONS_FACTORY","InjectableAnimationEngine","AnimationEngine","doc","driver","normalizer","__ngFactoryType__","ɵɵinject","DOCUMENT","AnimationDriver","AnimationStyleNormalizer","ɵɵdefineInjectable","instantiateDefaultStyleNormalizer","WebAnimationsStyleNormalizer","instantiateRendererFactory","renderer","engine","zone","AnimationRendererFactory","SHARED_ANIMATION_PROVIDERS","RendererFactory2","DomRendererFactory2","NgZone","BROWSER_NOOP_ANIMATIONS_PROVIDERS","NoopAnimationDriver","ANIMATION_MODULE_TYPE","BROWSER_ANIMATIONS_PROVIDERS","WebAnimationsDriver","provideNoopAnimations","BROWSER_NOOP_ANIMATIONS_PROVIDERS","ANIMATION_PREFIX","AsyncAnimationRendererFactory","inject","Injector","ɵASYNC_ANIMATION_LOADING_SCHEDULER_FN","doc","delegate","zone","animationType","moduleImpl","loadFn","m","moduleImplPromise","e","RuntimeError","ɵcreateEngine","ɵAnimationRendererFactory","rendererFactory","hostElement","rendererType","renderer","dynamicRenderer","DynamicDelegationRenderer","animationRendererFactory","animationRenderer","ChangeDetectionScheduler","componentId","__ngFactoryType__","ɵɵinvalidFactory","ɵɵdefineInjectable","impl","fn","name","namespace","value","parent","newChild","refChild","isMove","oldChild","isHostElement","selectorOrNode","preserveContent","node","el","style","flags","target","eventName","callback","options","propOrEventName","InjectionToken","provideAnimationsAsync","type","performanceMarkFeature","makeEnvironmentProviders","RendererFactory2","DOCUMENT","DomRendererFactory2","NgZone","ANIMATION_MODULE_TYPE","getBackwardsCompatibilityRoutes","paths","map","p","path","noTrailingSlash","ANGULARJS_ROUTE_DATA","BASE_PATH_NO_SLASHES","BASE_PATH_NO_LEADING_SLASH","old","redirectTo","new","getProcessExistingRoutes","PROCESS_EXISTING_ROUTE_DATA","BASE","PATH","ANGULARJS_ROUTES","PARTICIPANT_BASE","PARTICIPANT_ROUTE_DATA","GETTING_STARTED","PARTICIPANT_IDENTITY_BASE","IDENTITY_BASE","PARTICIPANT_ADD_ROLES","ADD_ROLES","PARTICIPANT_RISK_BASED","RISK_BASED","CONTACT","CONTACT_ROUTE_DATA","CONTACTS_BASE","INVITED_ADMIN","INVITED_ADMIN_ROUTE_DATA","INVITED_ADMIN_BASE","INVITED_PERSON","INVITED_PERSON_ROUTE_DATA","INVITED_PERSON_BASE","CREATE_ACCOUNT","GRANT_ROLES","GRANT_ROLES_ROUTE_DATA","PROCESS_EXISTING_ROUTES","PROCESS_EXISTING","CONFIRM","LEGACY_TECHNOLOGY_ROUTES","appRoutes","path","CONTACT_ROUTE_DATA","CONTACTS_BASE","PATH","loadChildren","data","preload","INVITED_ADMIN_ROUTE_DATA","INVITED_ADMIN_BASE","INVITED_PERSON_ROUTE_DATA","INVITED_PERSON_BASE","GRANT_ROLES_ROUTE_DATA","BASE","LEGACY_TECHNOLOGY_ROUTES","PARTICIPANT_ROUTE_DATA","GETTING_STARTED","redirectTo","PrefixTitleStrategy","TitleStrategy","constructor","title","inject","Title","titlePrefix","updateTitle","snapshot","buildTitle","setTitle","__ngFactoryType__","factory","ɵfac","MAT_LUXON_DATE_ADAPTER_OPTIONS","InjectionToken","MAT_LUXON_DATE_ADAPTER_OPTIONS_FACTORY","range","length","valueFunction","valuesArray","i","LuxonDateAdapter","DateAdapter","dateLocale","inject","MAT_DATE_LOCALE","options","DateTime","date","style","Info","dtf","days","year","month","result","value","parseFormat","iso8601Date","formats","format","fromFormat","displayFormat","years","months","obj","target","hours","minutes","seconds","amount","__ngFactoryType__","ɵɵdefineInjectable","MAT_LUXON_DATE_FORMATS","provideLuxonDateAdapter","formats","MAT_LUXON_DATE_FORMATS","DateAdapter","LuxonDateAdapter","MAT_DATE_LOCALE","MAT_LUXON_DATE_ADAPTER_OPTIONS","MAT_DATE_FORMATS","appConfig","providers","provide","MAT_FORM_FIELD_DEFAULT_OPTIONS","useValue","appearance","MAT_RADIO_DEFAULT_OPTIONS","color","TitleStrategy","useClass","PrefixTitleStrategy","importProvidersFrom","MatDialogModule","provideLuxonDateAdapter","provideHttpClient","withInterceptorsFromDi","disableUnsupportedAnimations","provideNoopAnimations","provideAnimationsAsync","provideBfyUiShared","site","Site","Registration","provideRouter","appRoutes","withPreloading","CustomPreloadingStrategy","bootstrapApplication","AppComponent","appConfig","catch","err","console","error"],"x_google_ignoreList":[2,3,4,8]}