@ieeesa-npm/presentation 0.31.1 → 0.31.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,36 +1,19 @@
1
- import { Component, EventEmitter, Input, Output, ViewChild, ViewEncapsulation, } from '@angular/core';
1
+ import { Component, EventEmitter, Input, Output, ViewEncapsulation, } from '@angular/core';
2
2
  import { CommonModule } from '@angular/common';
3
- import { TemplatePortal } from '@angular/cdk/portal';
4
- import { Subject, takeUntil } from 'rxjs';
5
3
  import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/cdk/overlay";
7
- import * as i2 from "@angular/common";
4
+ import * as i1 from "@angular/common";
8
5
  /**
9
- * ExportFormatPopoverComponent renders a CDK Overlay popover anchored below
10
- * a trigger element, presenting format selection cards (CSV / Excel).
11
- * The popover supports keyboard navigation (Tab between options, Enter to select,
12
- * Escape to close) and emits the selected format or a close event.
6
+ * ExportFormatPopoverComponent renders a popover presenting format selection
7
+ * cards (CSV / Excel). Positioned via CSS absolute below the trigger element.
13
8
  *
14
9
  * @export
15
10
  * @class ExportFormatPopoverComponent
16
- * @implements {OnInit}
17
- * @implements {OnChanges}
18
- * @implements {OnDestroy}
19
11
  */
20
12
  export class ExportFormatPopoverComponent {
21
- constructor(
22
- // eslint-disable-next-line no-unused-vars
23
- overlay,
24
- // eslint-disable-next-line no-unused-vars
25
- overlayPositionBuilder,
26
- // eslint-disable-next-line no-unused-vars
27
- viewContainerRef) {
28
- this.overlay = overlay;
29
- this.overlayPositionBuilder = overlayPositionBuilder;
30
- this.viewContainerRef = viewContainerRef;
13
+ constructor() {
31
14
  /** Array of format options to display in the popover */
32
15
  this.formatOptions = [];
33
- /** Controls overlay visibility */
16
+ /** Controls visibility */
34
17
  this.isOpen = false;
35
18
  /** Title text displayed at the top of the popover */
36
19
  this.popoverTitle = 'Select the file format for attendance export.';
@@ -43,149 +26,38 @@ export class ExportFormatPopoverComponent {
43
26
  this.selectedFormat = null;
44
27
  /** Emits when user selects a format */
45
28
  this.formatSelected = new EventEmitter();
46
- /** Emits when popover closes without selection */
29
+ /** Emits when the popover should be closed (backdrop click or after selection). */
47
30
  this.closed = new EventEmitter();
48
- this.overlayRef = null;
49
- this.portal = null;
50
- this.destroy$ = new Subject();
51
- }
52
- /**
53
- * Lifecycle hook — initial setup.
54
- * @memberof ExportFormatPopoverComponent
55
- */
56
- ngOnInit() {
57
- // Overlay is created lazily on first open
58
- }
59
- /**
60
- * Responds to input changes — opens or closes the overlay when `isOpen` changes.
61
- * @param {SimpleChanges} changes
62
- * @memberof ExportFormatPopoverComponent
63
- */
64
- ngOnChanges(changes) {
65
- if (changes['isOpen']) {
66
- if (this.isOpen) {
67
- this.openOverlay();
68
- }
69
- else {
70
- this.closeOverlay();
71
- }
72
- }
73
- }
74
- /**
75
- * Creates and opens the CDK overlay positioned below the origin element.
76
- * @memberof ExportFormatPopoverComponent
77
- */
78
- openOverlay() {
79
- if (this.overlayRef?.hasAttached()) {
80
- return;
81
- }
82
- if (this.overlayRef) {
83
- this.overlayRef.dispose();
84
- this.overlayRef = null;
85
- }
86
- // Reset selection state on each open
87
- this.selectedFormat = null;
88
- const positionStrategy = this.overlayPositionBuilder
89
- .flexibleConnectedTo(this.origin)
90
- .withPositions([
91
- {
92
- originX: 'start',
93
- originY: 'bottom',
94
- overlayX: 'start',
95
- overlayY: 'top',
96
- offsetY: 4,
97
- },
98
- {
99
- originX: 'end',
100
- originY: 'bottom',
101
- overlayX: 'end',
102
- overlayY: 'top',
103
- offsetY: 4,
104
- },
105
- ]);
106
- this.overlayRef = this.overlay.create({
107
- positionStrategy,
108
- hasBackdrop: true,
109
- backdropClass: 'cdk-overlay-transparent-backdrop',
110
- scrollStrategy: this.overlay.scrollStrategies.reposition(),
111
- });
112
- // Listen for backdrop click to close
113
- this.overlayRef
114
- .backdropClick()
115
- .pipe(takeUntil(this.destroy$))
116
- .subscribe(() => {
117
- this.close();
118
- });
119
- // Listen for Escape key to close
120
- this.overlayRef
121
- .keydownEvents()
122
- .pipe(takeUntil(this.destroy$))
123
- .subscribe((event) => {
124
- if (event.key === 'Escape') {
125
- this.close();
126
- }
127
- });
128
- this.portal = new TemplatePortal(this.popoverTemplate, this.viewContainerRef);
129
- this.overlayRef.attach(this.portal);
130
- }
131
- /**
132
- * Detaches and disposes the overlay.
133
- * @memberof ExportFormatPopoverComponent
134
- */
135
- closeOverlay() {
136
- if (this.overlayRef?.hasAttached()) {
137
- this.overlayRef.detach();
138
- }
139
- }
140
- /**
141
- * Closes the popover and emits the `closed` event.
142
- * @memberof ExportFormatPopoverComponent
143
- */
144
- close() {
145
- this.closeOverlay();
146
- this.closed.emit();
147
31
  }
148
32
  /**
149
33
  * Handles format option selection via click or Enter key.
150
- * Emits the selected format and closes the overlay.
151
- * @param {ExportFormat} format - The selected export format value
152
- * @memberof ExportFormatPopoverComponent
34
+ * @param {ExportFormat} format
153
35
  */
154
36
  onFormatSelect(format) {
155
37
  this.selectedFormat = format;
156
38
  this.formatSelected.emit(format);
157
- this.closeOverlay();
39
+ this.closed.emit();
40
+ }
41
+ /**
42
+ * Closes the popover via backdrop click.
43
+ */
44
+ onBackdropClick() {
45
+ this.closed.emit();
158
46
  }
159
47
  /**
160
48
  * TrackBy function for *ngFor on format options.
161
- * @param {number} index
162
- * @param {ExportFormatOption} option
163
- * @return {string}
164
- * @memberof ExportFormatPopoverComponent
165
49
  */
166
50
  // eslint-disable-next-line no-unused-vars
167
51
  trackByFormat(index, option) {
168
52
  return option.value;
169
53
  }
170
- /**
171
- * Cleans up overlay and subscriptions on component destroy.
172
- * @memberof ExportFormatPopoverComponent
173
- */
174
- ngOnDestroy() {
175
- this.destroy$.next(true);
176
- this.destroy$.unsubscribe();
177
- if (this.overlayRef) {
178
- this.overlayRef.dispose();
179
- this.overlayRef = null;
180
- }
181
- }
182
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExportFormatPopoverComponent, deps: [{ token: i1.Overlay }, { token: i1.OverlayPositionBuilder }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component }); }
183
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ExportFormatPopoverComponent, isStandalone: true, selector: "ieeesa-export-format-popover", inputs: { formatOptions: "formatOptions", origin: "origin", isOpen: "isOpen", popoverTitle: "popoverTitle", formatSubtitles: "formatSubtitles" }, outputs: { formatSelected: "formatSelected", closed: "closed" }, viewQueries: [{ propertyName: "popoverTemplate", first: true, predicate: ["popoverTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-template #popoverTemplate>\r\n <div class=\"ieeesa-export-format-popover\" role=\"listbox\">\r\n <p class=\"ieeesa-export-format-popover__title\">{{ popoverTitle }}</p>\r\n <div class=\"ieeesa-export-format-popover__options\">\r\n <button\r\n *ngFor=\"let option of formatOptions; trackBy: trackByFormat\"\r\n class=\"ieeesa-export-format-popover__option\"\r\n [class.ieeesa-export-format-popover__option--selected]=\"selectedFormat === option.value\"\r\n role=\"option\"\r\n [attr.aria-selected]=\"selectedFormat === option.value\"\r\n [attr.aria-label]=\"option.ariaLabel\"\r\n (click)=\"onFormatSelect(option.value)\"\r\n (keydown.enter)=\"onFormatSelect(option.value)\"\r\n >\r\n <span class=\"ieeesa-export-format-popover__option-label\">{{ option.label }}</span>\r\n <span class=\"ieeesa-export-format-popover__option-subtitle\">\r\n {{ formatSubtitles[option.value] }}\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n</ng-template>\r\n", styles: [".ieeesa-subtitle{text-align:left;font-family:Calibri Regular;font-size:1.5625rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-body{text-align:left;font-family:Calibri Regular;font-size:1.25rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-display-lg-57{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:3.5625rem;line-height:64px;color:#000;letter-spacing:0}.ieeesa-display-md-45{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.813rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-md-47{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.9375rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-sm-38{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.375rem;line-height:44px;color:#000;letter-spacing:0}.ieeesa-headline-lg-32{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-lg-34{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.125rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-md-30{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.875rem;line-height:36px;color:#000;letter-spacing:0}.ieeesa-headline-sm-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:32px;color:#00629b;letter-spacing:0}.ieeesa-headline-sm-26{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.625rem;line-height:32px;color:#000;letter-spacing:0}.ieeesa-title-lg-bold-24{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-lg-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-md-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.009375em}.ieeesa-title-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-title-sm-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-btn-label-lg-bold-16{font-family:Calibri Regular;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#00629b;letter-spacing:.00625em}.ieeesa-label-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-label-sm-13{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.8125rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-18{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#1c1b1f;letter-spacing:.015625em}.ieeesa-body-md-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.015625em}.ieeesa-body-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-sm-12{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.75rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-color-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:18px;color:#49454f;letter-spacing:.025em}.ieeesa-body-sm-bold-14{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-title-inter-lg-bold-24{font-family:Inter Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:29px;color:#000;letter-spacing:0}.mat-mdc-button.mat-mdc-button-base.mat-primary-button,.mat-mdc-button.mat-mdc-button-base.mat-secondary-button,.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button,.mat-mdc-button.mat-mdc-button-base.mat-text-button{min-width:103px;width:auto;min-height:40px;height:auto;border-radius:3px;text-align:center;padding:.625em 1.5em;border:none;font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.mat-mdc-button.mat-mdc-button-base>.mat-icon{margin-right:11px}.mat-mdc-button.mat-mdc-button-base.mat-primary-button{background-color:#00629b;color:#fff}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:focus{background:#1f75a7}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:hover{background-color:#003e65}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:active{background-color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:disabled{background-color:#1c1b1f1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button{color:#fff;background:#a7a8aa;box-shadow:0 1px 2px #0000004d,0 2px 6px 2px #00000026}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:hover{background:#a7a8aa}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:focus{background:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:active{background:#1d192b1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:disabled{background:#1c1b1f1f;color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button{background-color:#fff;border:1px solid #00629b;color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:hover{background-color:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:focus{background-color:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:active{background:#6750a41f}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:disabled{border:1px solid rgba(28,27,31,.12);color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-text-button{color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-text-button:hover,.mat-mdc-button.mat-mdc-button-base.mat-text-button:active{background:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-text-button:disabled{color:#1c1b1f;opacity:.38}.ieeesa-text-button{color:#cac4d0;background:none;border:none}.ieeesa-view-more-or-less-button{border:none;background:none;text-decoration:underline;color:#00629b}.flex-align-center{display:flex;align-items:center;justify-content:center}.mat-button-toggle-checked{background-color:#a7a8aa}.mat-button-toggle-checked .mat-button-toggle-label-content:before{font-family:\"Font Awesome 5 Free\";font-weight:900;content:\"\\f00c\";padding-right:.5625em}.mat-button-toggle-group .mat-button-toggle-label-content{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#1c1b1f;letter-spacing:.00625em}.no-bg-color-btn{color:#00629b;border-radius:3px;border:1px solid #00629b;min-height:40px;height:auto}@media (max-width: 768px){.mat-button-toggle-group .mat-button-toggle-label-content{max-width:8ch;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:relative}}.cdk-overlay-pane .mat-mdc-tooltip .mdc-tooltip__surface{color:#525252;padding:6px 12px;font-family:Calibri Regular;font-size:1rem;border:1px solid #cac4d0;background:#fff;box-shadow:0 4px 8px #00000040;max-width:unset!important}.cdk-overlay-pane .mat-mdc-option .mdc-list-item__primary-text{font-family:Calibri Regular!important}.cdk-overlay-pane.ieeesa-modal-confirm-dialog,.cdk-overlay-pane.ieeesa-modal-dialog,.cdk-overlay-pane.ieeesa-alert-dialog{width:100%;min-width:312px}.mat-mdc-form-field{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:24px;color:#49454f;letter-spacing:.03125em}.ieeesa-cancel-modal-confirm-dialog{width:25vw!important}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation{padding:1.5em 1.5em 1em}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation .mat-mdc-dialog-content{text-align:center;padding:0 0 1em!important}.mat-mdc-button,.mat-mdc-outlined-button{--mat-mdc-button-persistent-ripple-color: unset}@media (max-width: 768px){.ieeesa-cancel-modal-confirm-dialog{width:90vw!important}}.ieeesa-wrapper-border{border:1px solid #b2b7be;border-top:none;padding:1.5em;border-radius:0 0 4px 4px}.ieeesa-export-format-popover{background:#fff;border-radius:4px;box-shadow:0 4px 12px #00000026;padding:20px;min-width:397px;display:flex;flex-direction:column;flex-shrink:0}.ieeesa-export-format-popover__title{font-family:Calibri,sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:34.865px;color:#2c2c2c;margin:0 0 12px}.ieeesa-export-format-popover__options{display:flex;flex-direction:row;align-items:flex-start;gap:16px}.ieeesa-export-format-popover__option{display:flex;min-width:152px;padding:12px 20px 12px 12px;flex-direction:column;justify-content:center;align-items:flex-start;flex-shrink:0;border-radius:4px;border:1.453px solid #d1d5db;background:#fff;cursor:pointer;transition:border-color .2s ease,background-color .2s ease}.ieeesa-export-format-popover__option:hover{border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option:focus{outline:none;border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option--selected{border:1.453px solid #00629b;background:#def3ff}.ieeesa-export-format-popover__option-label{font-family:Calibri,sans-serif;font-size:18px;font-style:normal;font-weight:700;line-height:34.865px;color:#2c2c2c}.ieeesa-export-format-popover__option-subtitle{font-family:Calibri,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:34.865px;color:#63666a;white-space:nowrap}.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-subtitle,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-subtitle{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-label{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-subtitle{color:#00629b}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None }); }
54
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExportFormatPopoverComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
55
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ExportFormatPopoverComponent, isStandalone: true, selector: "ieeesa-export-format-popover", inputs: { formatOptions: "formatOptions", origin: "origin", isOpen: "isOpen", popoverTitle: "popoverTitle", formatSubtitles: "formatSubtitles" }, outputs: { formatSelected: "formatSelected", closed: "closed" }, ngImport: i0, template: "<!-- Backdrop -->\r\n<div\r\n *ngIf=\"isOpen\"\r\n class=\"ieeesa-export-format-popover__backdrop\"\r\n aria-hidden=\"true\"\r\n role=\"presentation\"\r\n (click)=\"onBackdropClick()\"\r\n (document:keydown.escape)=\"onBackdropClick()\"\r\n></div>\r\n\r\n<!-- Popover -->\r\n<div *ngIf=\"isOpen\" class=\"ieeesa-export-format-popover\" role=\"listbox\">\r\n <p class=\"ieeesa-export-format-popover__title\">{{ popoverTitle }}</p>\r\n <div class=\"ieeesa-export-format-popover__options\">\r\n <button\r\n *ngFor=\"let option of formatOptions; trackBy: trackByFormat\"\r\n class=\"ieeesa-export-format-popover__option\"\r\n [class.ieeesa-export-format-popover__option--selected]=\"selectedFormat === option.value\"\r\n role=\"option\"\r\n [attr.aria-selected]=\"selectedFormat === option.value\"\r\n [attr.aria-label]=\"option.ariaLabel\"\r\n (click)=\"onFormatSelect(option.value)\"\r\n (keydown.enter)=\"onFormatSelect(option.value)\"\r\n >\r\n <span class=\"ieeesa-export-format-popover__option-label\">{{ option.label }}</span>\r\n <span class=\"ieeesa-export-format-popover__option-subtitle\">\r\n {{ formatSubtitles[option.value] }}\r\n </span>\r\n </button>\r\n </div>\r\n</div>\r\n", styles: [".ieeesa-subtitle{text-align:left;font-family:Calibri Regular;font-size:1.5625rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-body{text-align:left;font-family:Calibri Regular;font-size:1.25rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-display-lg-57{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:3.5625rem;line-height:64px;color:#000;letter-spacing:0}.ieeesa-display-md-45{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.813rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-md-47{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.9375rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-sm-38{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.375rem;line-height:44px;color:#000;letter-spacing:0}.ieeesa-headline-lg-32{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-lg-34{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.125rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-md-30{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.875rem;line-height:36px;color:#000;letter-spacing:0}.ieeesa-headline-sm-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:32px;color:#00629b;letter-spacing:0}.ieeesa-headline-sm-26{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.625rem;line-height:32px;color:#000;letter-spacing:0}.ieeesa-title-lg-bold-24{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-lg-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-md-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.009375em}.ieeesa-title-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-title-sm-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-btn-label-lg-bold-16{font-family:Calibri Regular;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#00629b;letter-spacing:.00625em}.ieeesa-label-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-label-sm-13{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.8125rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-18{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#1c1b1f;letter-spacing:.015625em}.ieeesa-body-md-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.015625em}.ieeesa-body-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-sm-12{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.75rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-color-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:18px;color:#49454f;letter-spacing:.025em}.ieeesa-body-sm-bold-14{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-title-inter-lg-bold-24{font-family:Inter Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:29px;color:#000;letter-spacing:0}.mat-mdc-button.mat-mdc-button-base.mat-primary-button,.mat-mdc-button.mat-mdc-button-base.mat-secondary-button,.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button,.mat-mdc-button.mat-mdc-button-base.mat-text-button{min-width:103px;width:auto;min-height:40px;height:auto;border-radius:3px;text-align:center;padding:.625em 1.5em;border:none;font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.mat-mdc-button.mat-mdc-button-base>.mat-icon{margin-right:11px}.mat-mdc-button.mat-mdc-button-base.mat-primary-button{background-color:#00629b;color:#fff}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:focus{background:#1f75a7}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:hover{background-color:#003e65}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:active{background-color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:disabled{background-color:#1c1b1f1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button{color:#fff;background:#a7a8aa;box-shadow:0 1px 2px #0000004d,0 2px 6px 2px #00000026}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:hover{background:#a7a8aa}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:focus{background:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:active{background:#1d192b1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:disabled{background:#1c1b1f1f;color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button{background-color:#fff;border:1px solid #00629b;color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:hover{background-color:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:focus{background-color:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:active{background:#6750a41f}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:disabled{border:1px solid rgba(28,27,31,.12);color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-text-button{color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-text-button:hover,.mat-mdc-button.mat-mdc-button-base.mat-text-button:active{background:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-text-button:disabled{color:#1c1b1f;opacity:.38}.ieeesa-text-button{color:#cac4d0;background:none;border:none}.ieeesa-view-more-or-less-button{border:none;background:none;text-decoration:underline;color:#00629b}.flex-align-center{display:flex;align-items:center;justify-content:center}.mat-button-toggle-checked{background-color:#a7a8aa}.mat-button-toggle-checked .mat-button-toggle-label-content:before{font-family:\"Font Awesome 5 Free\";font-weight:900;content:\"\\f00c\";padding-right:.5625em}.mat-button-toggle-group .mat-button-toggle-label-content{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#1c1b1f;letter-spacing:.00625em}.no-bg-color-btn{color:#00629b;border-radius:3px;border:1px solid #00629b;min-height:40px;height:auto}@media (max-width: 768px){.mat-button-toggle-group .mat-button-toggle-label-content{max-width:8ch;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:relative}}.cdk-overlay-pane .mat-mdc-tooltip .mdc-tooltip__surface{color:#525252;padding:6px 12px;font-family:Calibri Regular;font-size:1rem;border:1px solid #cac4d0;background:#fff;box-shadow:0 4px 8px #00000040;max-width:unset!important}.cdk-overlay-pane .mat-mdc-option .mdc-list-item__primary-text{font-family:Calibri Regular!important}.cdk-overlay-pane.ieeesa-modal-confirm-dialog,.cdk-overlay-pane.ieeesa-modal-dialog,.cdk-overlay-pane.ieeesa-alert-dialog{width:100%;min-width:312px}.mat-mdc-form-field{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:24px;color:#49454f;letter-spacing:.03125em}.ieeesa-cancel-modal-confirm-dialog{width:25vw!important}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation{padding:1.5em 1.5em 1em}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation .mat-mdc-dialog-content{text-align:center;padding:0 0 1em!important}.mat-mdc-button,.mat-mdc-outlined-button{--mat-mdc-button-persistent-ripple-color: unset}@media (max-width: 768px){.ieeesa-cancel-modal-confirm-dialog{width:90vw!important}}.ieeesa-wrapper-border{border:1px solid #b2b7be;border-top:none;padding:1.5em;border-radius:0 0 4px 4px}.ieeesa-export-format-popover__backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999}.ieeesa-export-format-popover{position:absolute;top:100%;right:0;margin-top:4px;z-index:1000;background:#fff;border-radius:4px;box-shadow:0 4px 12px #00000026;padding:20px;min-width:397px;display:flex;flex-direction:column;flex-shrink:0}.ieeesa-export-format-popover__title{font-family:Calibri,sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:34.865px;color:#2c2c2c;margin:0 0 12px}.ieeesa-export-format-popover__options{display:flex;flex-direction:row;align-items:flex-start;gap:16px}.ieeesa-export-format-popover__option{display:flex;min-width:152px;padding:12px 20px 12px 12px;flex-direction:column;justify-content:center;align-items:flex-start;flex-shrink:0;border-radius:4px;border:1.453px solid #d1d5db;background:#fff;cursor:pointer;transition:border-color .2s ease,background-color .2s ease}.ieeesa-export-format-popover__option:hover{border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option:focus{outline:none;border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option--selected{border:1.453px solid #00629b;background:#def3ff}.ieeesa-export-format-popover__option-label{font-family:Calibri,sans-serif;font-size:18px;font-style:normal;font-weight:700;line-height:34.865px;color:#2c2c2c}.ieeesa-export-format-popover__option-subtitle{font-family:Calibri,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:34.865px;color:#63666a;white-space:nowrap}.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-subtitle,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-subtitle{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-label{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-subtitle{color:#00629b}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None }); }
184
56
  }
185
57
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExportFormatPopoverComponent, decorators: [{
186
58
  type: Component,
187
- args: [{ selector: 'ieeesa-export-format-popover', standalone: true, imports: [CommonModule], encapsulation: ViewEncapsulation.None, template: "<ng-template #popoverTemplate>\r\n <div class=\"ieeesa-export-format-popover\" role=\"listbox\">\r\n <p class=\"ieeesa-export-format-popover__title\">{{ popoverTitle }}</p>\r\n <div class=\"ieeesa-export-format-popover__options\">\r\n <button\r\n *ngFor=\"let option of formatOptions; trackBy: trackByFormat\"\r\n class=\"ieeesa-export-format-popover__option\"\r\n [class.ieeesa-export-format-popover__option--selected]=\"selectedFormat === option.value\"\r\n role=\"option\"\r\n [attr.aria-selected]=\"selectedFormat === option.value\"\r\n [attr.aria-label]=\"option.ariaLabel\"\r\n (click)=\"onFormatSelect(option.value)\"\r\n (keydown.enter)=\"onFormatSelect(option.value)\"\r\n >\r\n <span class=\"ieeesa-export-format-popover__option-label\">{{ option.label }}</span>\r\n <span class=\"ieeesa-export-format-popover__option-subtitle\">\r\n {{ formatSubtitles[option.value] }}\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n</ng-template>\r\n", styles: [".ieeesa-subtitle{text-align:left;font-family:Calibri Regular;font-size:1.5625rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-body{text-align:left;font-family:Calibri Regular;font-size:1.25rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-display-lg-57{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:3.5625rem;line-height:64px;color:#000;letter-spacing:0}.ieeesa-display-md-45{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.813rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-md-47{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.9375rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-sm-38{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.375rem;line-height:44px;color:#000;letter-spacing:0}.ieeesa-headline-lg-32{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-lg-34{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.125rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-md-30{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.875rem;line-height:36px;color:#000;letter-spacing:0}.ieeesa-headline-sm-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:32px;color:#00629b;letter-spacing:0}.ieeesa-headline-sm-26{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.625rem;line-height:32px;color:#000;letter-spacing:0}.ieeesa-title-lg-bold-24{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-lg-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-md-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.009375em}.ieeesa-title-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-title-sm-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-btn-label-lg-bold-16{font-family:Calibri Regular;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#00629b;letter-spacing:.00625em}.ieeesa-label-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-label-sm-13{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.8125rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-18{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#1c1b1f;letter-spacing:.015625em}.ieeesa-body-md-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.015625em}.ieeesa-body-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-sm-12{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.75rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-color-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:18px;color:#49454f;letter-spacing:.025em}.ieeesa-body-sm-bold-14{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-title-inter-lg-bold-24{font-family:Inter Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:29px;color:#000;letter-spacing:0}.mat-mdc-button.mat-mdc-button-base.mat-primary-button,.mat-mdc-button.mat-mdc-button-base.mat-secondary-button,.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button,.mat-mdc-button.mat-mdc-button-base.mat-text-button{min-width:103px;width:auto;min-height:40px;height:auto;border-radius:3px;text-align:center;padding:.625em 1.5em;border:none;font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.mat-mdc-button.mat-mdc-button-base>.mat-icon{margin-right:11px}.mat-mdc-button.mat-mdc-button-base.mat-primary-button{background-color:#00629b;color:#fff}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:focus{background:#1f75a7}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:hover{background-color:#003e65}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:active{background-color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:disabled{background-color:#1c1b1f1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button{color:#fff;background:#a7a8aa;box-shadow:0 1px 2px #0000004d,0 2px 6px 2px #00000026}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:hover{background:#a7a8aa}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:focus{background:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:active{background:#1d192b1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:disabled{background:#1c1b1f1f;color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button{background-color:#fff;border:1px solid #00629b;color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:hover{background-color:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:focus{background-color:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:active{background:#6750a41f}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:disabled{border:1px solid rgba(28,27,31,.12);color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-text-button{color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-text-button:hover,.mat-mdc-button.mat-mdc-button-base.mat-text-button:active{background:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-text-button:disabled{color:#1c1b1f;opacity:.38}.ieeesa-text-button{color:#cac4d0;background:none;border:none}.ieeesa-view-more-or-less-button{border:none;background:none;text-decoration:underline;color:#00629b}.flex-align-center{display:flex;align-items:center;justify-content:center}.mat-button-toggle-checked{background-color:#a7a8aa}.mat-button-toggle-checked .mat-button-toggle-label-content:before{font-family:\"Font Awesome 5 Free\";font-weight:900;content:\"\\f00c\";padding-right:.5625em}.mat-button-toggle-group .mat-button-toggle-label-content{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#1c1b1f;letter-spacing:.00625em}.no-bg-color-btn{color:#00629b;border-radius:3px;border:1px solid #00629b;min-height:40px;height:auto}@media (max-width: 768px){.mat-button-toggle-group .mat-button-toggle-label-content{max-width:8ch;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:relative}}.cdk-overlay-pane .mat-mdc-tooltip .mdc-tooltip__surface{color:#525252;padding:6px 12px;font-family:Calibri Regular;font-size:1rem;border:1px solid #cac4d0;background:#fff;box-shadow:0 4px 8px #00000040;max-width:unset!important}.cdk-overlay-pane .mat-mdc-option .mdc-list-item__primary-text{font-family:Calibri Regular!important}.cdk-overlay-pane.ieeesa-modal-confirm-dialog,.cdk-overlay-pane.ieeesa-modal-dialog,.cdk-overlay-pane.ieeesa-alert-dialog{width:100%;min-width:312px}.mat-mdc-form-field{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:24px;color:#49454f;letter-spacing:.03125em}.ieeesa-cancel-modal-confirm-dialog{width:25vw!important}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation{padding:1.5em 1.5em 1em}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation .mat-mdc-dialog-content{text-align:center;padding:0 0 1em!important}.mat-mdc-button,.mat-mdc-outlined-button{--mat-mdc-button-persistent-ripple-color: unset}@media (max-width: 768px){.ieeesa-cancel-modal-confirm-dialog{width:90vw!important}}.ieeesa-wrapper-border{border:1px solid #b2b7be;border-top:none;padding:1.5em;border-radius:0 0 4px 4px}.ieeesa-export-format-popover{background:#fff;border-radius:4px;box-shadow:0 4px 12px #00000026;padding:20px;min-width:397px;display:flex;flex-direction:column;flex-shrink:0}.ieeesa-export-format-popover__title{font-family:Calibri,sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:34.865px;color:#2c2c2c;margin:0 0 12px}.ieeesa-export-format-popover__options{display:flex;flex-direction:row;align-items:flex-start;gap:16px}.ieeesa-export-format-popover__option{display:flex;min-width:152px;padding:12px 20px 12px 12px;flex-direction:column;justify-content:center;align-items:flex-start;flex-shrink:0;border-radius:4px;border:1.453px solid #d1d5db;background:#fff;cursor:pointer;transition:border-color .2s ease,background-color .2s ease}.ieeesa-export-format-popover__option:hover{border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option:focus{outline:none;border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option--selected{border:1.453px solid #00629b;background:#def3ff}.ieeesa-export-format-popover__option-label{font-family:Calibri,sans-serif;font-size:18px;font-style:normal;font-weight:700;line-height:34.865px;color:#2c2c2c}.ieeesa-export-format-popover__option-subtitle{font-family:Calibri,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:34.865px;color:#63666a;white-space:nowrap}.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-subtitle,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-subtitle{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-label{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-subtitle{color:#00629b}\n"] }]
188
- }], ctorParameters: function () { return [{ type: i1.Overlay }, { type: i1.OverlayPositionBuilder }, { type: i0.ViewContainerRef }]; }, propDecorators: { formatOptions: [{
59
+ args: [{ selector: 'ieeesa-export-format-popover', standalone: true, imports: [CommonModule], encapsulation: ViewEncapsulation.None, template: "<!-- Backdrop -->\r\n<div\r\n *ngIf=\"isOpen\"\r\n class=\"ieeesa-export-format-popover__backdrop\"\r\n aria-hidden=\"true\"\r\n role=\"presentation\"\r\n (click)=\"onBackdropClick()\"\r\n (document:keydown.escape)=\"onBackdropClick()\"\r\n></div>\r\n\r\n<!-- Popover -->\r\n<div *ngIf=\"isOpen\" class=\"ieeesa-export-format-popover\" role=\"listbox\">\r\n <p class=\"ieeesa-export-format-popover__title\">{{ popoverTitle }}</p>\r\n <div class=\"ieeesa-export-format-popover__options\">\r\n <button\r\n *ngFor=\"let option of formatOptions; trackBy: trackByFormat\"\r\n class=\"ieeesa-export-format-popover__option\"\r\n [class.ieeesa-export-format-popover__option--selected]=\"selectedFormat === option.value\"\r\n role=\"option\"\r\n [attr.aria-selected]=\"selectedFormat === option.value\"\r\n [attr.aria-label]=\"option.ariaLabel\"\r\n (click)=\"onFormatSelect(option.value)\"\r\n (keydown.enter)=\"onFormatSelect(option.value)\"\r\n >\r\n <span class=\"ieeesa-export-format-popover__option-label\">{{ option.label }}</span>\r\n <span class=\"ieeesa-export-format-popover__option-subtitle\">\r\n {{ formatSubtitles[option.value] }}\r\n </span>\r\n </button>\r\n </div>\r\n</div>\r\n", styles: [".ieeesa-subtitle{text-align:left;font-family:Calibri Regular;font-size:1.5625rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-body{text-align:left;font-family:Calibri Regular;font-size:1.25rem;letter-spacing:0;color:#000;opacity:1}.ieeesa-display-lg-57{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:3.5625rem;line-height:64px;color:#000;letter-spacing:0}.ieeesa-display-md-45{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.813rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-md-47{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.9375rem;line-height:52px;color:#000;letter-spacing:0}.ieeesa-display-sm-38{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.375rem;line-height:44px;color:#000;letter-spacing:0}.ieeesa-headline-lg-32{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-lg-34{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:2.125rem;line-height:40px;color:#000;letter-spacing:0}.ieeesa-headline-md-30{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.875rem;line-height:36px;color:#000;letter-spacing:0}.ieeesa-headline-sm-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:32px;color:#00629b;letter-spacing:0}.ieeesa-headline-sm-26{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.625rem;line-height:32px;color:#000;letter-spacing:0}.ieeesa-title-lg-bold-24{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-lg-24{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.5rem;line-height:28px;color:#000;letter-spacing:0}.ieeesa-title-md-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.009375em}.ieeesa-title-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-title-sm-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-label-lg-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.ieeesa-btn-label-lg-bold-16{font-family:Calibri Regular;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#00629b;letter-spacing:.00625em}.ieeesa-label-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-label-sm-13{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.8125rem;line-height:16px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-16{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-bold-18{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-lg-18{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1.125rem;line-height:24px;color:#000;letter-spacing:.03125em}.ieeesa-body-md-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:20px;color:#1c1b1f;letter-spacing:.015625em}.ieeesa-body-md-16{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:20px;color:#000;letter-spacing:.015625em}.ieeesa-body-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-sm-12{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.75rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-body-color-sm-14{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:.875rem;line-height:18px;color:#49454f;letter-spacing:.025em}.ieeesa-body-sm-bold-14{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:.875rem;line-height:16px;color:#000;letter-spacing:.025em}.ieeesa-title-inter-lg-bold-24{font-family:Inter Bold;font-style:normal;font-weight:700;font-size:1.5rem;line-height:29px;color:#000;letter-spacing:0}.mat-mdc-button.mat-mdc-button-base.mat-primary-button,.mat-mdc-button.mat-mdc-button-base.mat-secondary-button,.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button,.mat-mdc-button.mat-mdc-button-base.mat-text-button{min-width:103px;width:auto;min-height:40px;height:auto;border-radius:3px;text-align:center;padding:.625em 1.5em;border:none;font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#000;letter-spacing:.00625em}.mat-mdc-button.mat-mdc-button-base>.mat-icon{margin-right:11px}.mat-mdc-button.mat-mdc-button-base.mat-primary-button{background-color:#00629b;color:#fff}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:focus{background:#1f75a7}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:hover{background-color:#003e65}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:active{background-color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-primary-button:disabled{background-color:#1c1b1f1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button{color:#fff;background:#a7a8aa;box-shadow:0 1px 2px #0000004d,0 2px 6px 2px #00000026}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:hover{background:#a7a8aa}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:focus{background:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:active{background:#1d192b1f}.mat-mdc-button.mat-mdc-button-base.mat-secondary-button:disabled{background:#1c1b1f1f;color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button{background-color:#fff;border:1px solid #00629b;color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:hover{background-color:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:focus{background-color:#f0f5f9}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:active{background:#6750a41f}.mat-mdc-button.mat-mdc-button-base.mat-tertiary-button:disabled{border:1px solid rgba(28,27,31,.12);color:#1c1b1f;opacity:.38}.mat-mdc-button.mat-mdc-button-base.mat-text-button{color:#00629b}.mat-mdc-button.mat-mdc-button-base.mat-text-button:hover,.mat-mdc-button.mat-mdc-button-base.mat-text-button:active{background:#6750a414}.mat-mdc-button.mat-mdc-button-base.mat-text-button:disabled{color:#1c1b1f;opacity:.38}.ieeesa-text-button{color:#cac4d0;background:none;border:none}.ieeesa-view-more-or-less-button{border:none;background:none;text-decoration:underline;color:#00629b}.flex-align-center{display:flex;align-items:center;justify-content:center}.mat-button-toggle-checked{background-color:#a7a8aa}.mat-button-toggle-checked .mat-button-toggle-label-content:before{font-family:\"Font Awesome 5 Free\";font-weight:900;content:\"\\f00c\";padding-right:.5625em}.mat-button-toggle-group .mat-button-toggle-label-content{font-family:Calibri Bold;font-style:normal;font-weight:700;font-size:1rem;line-height:20px;color:#1c1b1f;letter-spacing:.00625em}.no-bg-color-btn{color:#00629b;border-radius:3px;border:1px solid #00629b;min-height:40px;height:auto}@media (max-width: 768px){.mat-button-toggle-group .mat-button-toggle-label-content{max-width:8ch;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:relative}}.cdk-overlay-pane .mat-mdc-tooltip .mdc-tooltip__surface{color:#525252;padding:6px 12px;font-family:Calibri Regular;font-size:1rem;border:1px solid #cac4d0;background:#fff;box-shadow:0 4px 8px #00000040;max-width:unset!important}.cdk-overlay-pane .mat-mdc-option .mdc-list-item__primary-text{font-family:Calibri Regular!important}.cdk-overlay-pane.ieeesa-modal-confirm-dialog,.cdk-overlay-pane.ieeesa-modal-dialog,.cdk-overlay-pane.ieeesa-alert-dialog{width:100%;min-width:312px}.mat-mdc-form-field{font-family:Calibri Regular;font-style:normal;font-weight:400;font-size:1rem;line-height:24px;color:#49454f;letter-spacing:.03125em}.ieeesa-cancel-modal-confirm-dialog{width:25vw!important}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation{padding:1.5em 1.5em 1em}.ieeesa-cancel-modal-confirm-dialog .ieeesa-confirmation .mat-mdc-dialog-content{text-align:center;padding:0 0 1em!important}.mat-mdc-button,.mat-mdc-outlined-button{--mat-mdc-button-persistent-ripple-color: unset}@media (max-width: 768px){.ieeesa-cancel-modal-confirm-dialog{width:90vw!important}}.ieeesa-wrapper-border{border:1px solid #b2b7be;border-top:none;padding:1.5em;border-radius:0 0 4px 4px}.ieeesa-export-format-popover__backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999}.ieeesa-export-format-popover{position:absolute;top:100%;right:0;margin-top:4px;z-index:1000;background:#fff;border-radius:4px;box-shadow:0 4px 12px #00000026;padding:20px;min-width:397px;display:flex;flex-direction:column;flex-shrink:0}.ieeesa-export-format-popover__title{font-family:Calibri,sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:34.865px;color:#2c2c2c;margin:0 0 12px}.ieeesa-export-format-popover__options{display:flex;flex-direction:row;align-items:flex-start;gap:16px}.ieeesa-export-format-popover__option{display:flex;min-width:152px;padding:12px 20px 12px 12px;flex-direction:column;justify-content:center;align-items:flex-start;flex-shrink:0;border-radius:4px;border:1.453px solid #d1d5db;background:#fff;cursor:pointer;transition:border-color .2s ease,background-color .2s ease}.ieeesa-export-format-popover__option:hover{border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option:focus{outline:none;border-color:#00629b;background:#def3ff}.ieeesa-export-format-popover__option--selected{border:1.453px solid #00629b;background:#def3ff}.ieeesa-export-format-popover__option-label{font-family:Calibri,sans-serif;font-size:18px;font-style:normal;font-weight:700;line-height:34.865px;color:#2c2c2c}.ieeesa-export-format-popover__option-subtitle{font-family:Calibri,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:34.865px;color:#63666a;white-space:nowrap}.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option--selected .ieeesa-export-format-popover__option-subtitle,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-label,.ieeesa-export-format-popover__option:hover .ieeesa-export-format-popover__option-subtitle{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-label{color:#00629b}.ieeesa-export-format-popover__option:focus .ieeesa-export-format-popover__option-subtitle{color:#00629b}\n"] }]
60
+ }], propDecorators: { formatOptions: [{
189
61
  type: Input
190
62
  }], origin: [{
191
63
  type: Input
@@ -199,8 +71,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
199
71
  type: Output
200
72
  }], closed: [{
201
73
  type: Output
202
- }], popoverTemplate: [{
203
- type: ViewChild,
204
- args: ['popoverTemplate']
205
74
  }] } });
206
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwb3J0LWZvcm1hdC1wb3BvdmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByZXNlbnRhdGlvbi9zcmMvbGliL2NvbXBvbmVudHMvZXhwb3J0LWZvcm1hdC1wb3BvdmVyL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9jb21wb25lbnRzL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci9leHBvcnQtZm9ybWF0LXBvcG92ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFFVCxZQUFZLEVBQ1osS0FBSyxFQUlMLE1BQU0sRUFHTixTQUFTLEVBRVQsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDckQsT0FBTyxFQUFFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7QUFHMUM7Ozs7Ozs7Ozs7O0dBV0c7QUFTSCxNQUFNLE9BQU8sNEJBQTRCO0lBa0N2QztJQUNFLDBDQUEwQztJQUNsQyxPQUFnQjtJQUN4QiwwQ0FBMEM7SUFDbEMsc0JBQThDO0lBQ3RELDBDQUEwQztJQUNsQyxnQkFBa0M7UUFKbEMsWUFBTyxHQUFQLE9BQU8sQ0FBUztRQUVoQiwyQkFBc0IsR0FBdEIsc0JBQXNCLENBQXdCO1FBRTlDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7UUF2QzVDLHdEQUF3RDtRQUMvQyxrQkFBYSxHQUF5QixFQUFFLENBQUM7UUFLbEQsa0NBQWtDO1FBQ3pCLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFFeEIscURBQXFEO1FBQzVDLGlCQUFZ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QkEseXRWRGNZLFlBQVk7OzRGQUtYLDRCQUE0QjtrQkFSeEMsU0FBUzsrQkFDRSw4QkFBOEIsY0FDNUIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDLGlCQUdSLGlCQUFpQixDQUFDLElBQUk7a0tBSTVCLGFBQWE7c0JBQXJCLEtBQUs7Z0JBR0csTUFBTTtzQkFBZCxLQUFLO2dCQUdHLE1BQU07c0JBQWQsS0FBSztnQkFHRyxZQUFZO3NCQUFwQixLQUFLO2dCQUdHLGVBQWU7c0JBQXZCLEtBQUs7Z0JBU0ksY0FBYztzQkFBdkIsTUFBTTtnQkFHRyxNQUFNO3NCQUFmLE1BQU07Z0JBRXVCLGVBQWU7c0JBQTVDLFNBQVM7dUJBQUMsaUJBQWlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcclxuICBDb21wb25lbnQsXHJcbiAgRWxlbWVudFJlZixcclxuICBFdmVudEVtaXR0ZXIsXHJcbiAgSW5wdXQsXHJcbiAgT25DaGFuZ2VzLFxyXG4gIE9uRGVzdHJveSxcclxuICBPbkluaXQsXHJcbiAgT3V0cHV0LFxyXG4gIFNpbXBsZUNoYW5nZXMsXHJcbiAgVGVtcGxhdGVSZWYsXHJcbiAgVmlld0NoaWxkLFxyXG4gIFZpZXdDb250YWluZXJSZWYsXHJcbiAgVmlld0VuY2Fwc3VsYXRpb24sXHJcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IE92ZXJsYXksIE92ZXJsYXlSZWYsIE92ZXJsYXlQb3NpdGlvbkJ1aWxkZXIgfSBmcm9tICdAYW5ndWxhci9jZGsvb3ZlcmxheSc7XHJcbmltcG9ydCB7IFRlbXBsYXRlUG9ydGFsIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XHJcbmltcG9ydCB7IFN1YmplY3QsIHRha2VVbnRpbCB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQgeyBFeHBvcnRGb3JtYXQsIEV4cG9ydEZvcm1hdE9wdGlvbiB9IGZyb20gJy4uLy4uL21vZGVscy9leHBvcnQtZm9ybWF0LXBvcG92ZXIubW9kZWwnO1xyXG5cclxuLyoqXHJcbiAqIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnQgcmVuZGVycyBhIENESyBPdmVybGF5IHBvcG92ZXIgYW5jaG9yZWQgYmVsb3dcclxuICogYSB0cmlnZ2VyIGVsZW1lbnQsIHByZXNlbnRpbmcgZm9ybWF0IHNlbGVjdGlvbiBjYXJkcyAoQ1NWIC8gRXhjZWwpLlxyXG4gKiBUaGUgcG9wb3ZlciBzdXBwb3J0cyBrZXlib2FyZCBuYXZpZ2F0aW9uIChUYWIgYmV0d2VlbiBvcHRpb25zLCBFbnRlciB0byBzZWxlY3QsXHJcbiAqIEVzY2FwZSB0byBjbG9zZSkgYW5kIGVtaXRzIHRoZSBzZWxlY3RlZCBmb3JtYXQgb3IgYSBjbG9zZSBldmVudC5cclxuICpcclxuICogQGV4cG9ydFxyXG4gKiBAY2xhc3MgRXhwb3J0Rm9ybWF0UG9wb3ZlckNvbXBvbmVudFxyXG4gKiBAaW1wbGVtZW50cyB7T25Jbml0fVxyXG4gKiBAaW1wbGVtZW50cyB7T25DaGFuZ2VzfVxyXG4gKiBAaW1wbGVtZW50cyB7T25EZXN0cm95fVxyXG4gKi9cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyJyxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9leHBvcnQtZm9ybWF0LXBvcG92ZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci5jb21wb25lbnQuc2NzcyddLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBFeHBvcnRGb3JtYXRQb3BvdmVyQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkNoYW5nZXMsIE9uRGVzdHJveSB7XHJcbiAgLyoqIEFycmF5IG9mIGZvcm1hdCBvcHRpb25zIHRvIGRpc3BsYXkgaW4gdGhlIHBvcG92ZXIgKi9cclxuICBASW5wdXQoKSBmb3JtYXRPcHRpb25zOiBFeHBvcnRGb3JtYXRPcHRpb25bXSA9IFtdO1xyXG5cclxuICAvKiogVGhlIGVsZW1lbnQgdGhlIHBvcG92ZXIgYXR0YWNoZXMgdG8gKGFuY2hvciBwb2ludCkgKi9cclxuICBASW5wdXQoKSBvcmlnaW4hOiBFbGVtZW50UmVmO1xyXG5cclxuICAvKiogQ29udHJvbHMgb3ZlcmxheSB2aXNpYmlsaXR5ICovXHJcbiAgQElucHV0KCkgaXNPcGVuID0gZmFsc2U7XHJcblxyXG4gIC8qKiBUaXRsZSB0ZXh0IGRpc3BsYXllZCBhdCB0aGUgdG9wIG9mIHRoZSBwb3BvdmVyICovXHJcbiAgQElucHV0KCkgcG9wb3ZlclRpdGxlID0gJ1NlbGVjdCB0aGUgZmlsZSBmb3JtYXQgZm9yIGF0dGVuZGFuY2UgZXhwb3J0Lic7XHJcblxyXG4gIC8qKiBTdWJ0aXRsZSBtYXAgZm9yIGZvcm1hdCBvcHRpb25zIChrZXllZCBieSBFeHBvcnRGb3JtYXQgdmFsdWUpICovXHJcbiAgQElucHV0KCkgZm9ybWF0U3VidGl0bGVzOiBSZWNvcmQ8c3RyaW5nLCBzdHJpbmc+ID0ge1xyXG4gICAgY3N2OiAnQ29tbWEgc2VwYXJhdGVkIGZpbGUnLFxyXG4gICAgeGxzOiAnU3ByZWFkc2hlZXQgRmlsZScsXHJcbiAgfTtcclxuXHJcbiAgLyoqIFRyYWNrcyB0aGUgY3VycmVudGx5IHNlbGVjdGVkIGZvcm1hdCBmb3IgdmlzdWFsIGhpZ2hsaWdodCAqL1xyXG4gIHNlbGVjdGVkRm9ybWF0OiBFeHBvcnRGb3JtYXQgfCBudWxsID0gbnVsbDtcclxuXHJcbiAgLyoqIEVtaXRzIHdoZW4gdXNlciBzZWxlY3RzIGEgZm9ybWF0ICovXHJcbiAgQE91dHB1dCgpIGZvcm1hdFNlbGVjdGVkID0gbmV3IEV2ZW50RW1pdHRlcjxFeHBvcnRGb3JtYXQ+KCk7XHJcblxyXG4gIC8qKiBFbWl0cyB3aGVuIHBvcG92ZXIgY2xvc2VzIHdpdGhvdXQgc2VsZWN0aW9uICovXHJcbiAgQE91dHB1dCgpIGNsb3NlZCA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcbiAgQFZpZXdDaGlsZCgncG9wb3ZlclRlbXBsYXRlJykgcG9wb3ZlclRlbXBsYXRlITogVGVtcGxhdGVSZWY8dW5rbm93bj47XHJcblxyXG4gIHByaXZhdGUgb3ZlcmxheVJlZjogT3ZlcmxheVJlZiB8IG51bGwgPSBudWxsO1xyXG4gIHByaXZhdGUgcG9ydGFsOiBUZW1wbGF0ZVBvcnRhbCB8IG51bGwgPSBudWxsO1xyXG4gIGRlc3Ryb3kkID0gbmV3IFN1YmplY3Q8Ym9vbGVhbj4oKTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tdW51c2VkLXZhcnNcclxuICAgIHByaXZhdGUgb3ZlcmxheTogT3ZlcmxheSxcclxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBuby11bnVzZWQtdmFyc1xyXG4gICAgcHJpdmF0ZSBvdmVybGF5UG9zaXRpb25CdWlsZGVyOiBPdmVybGF5UG9zaXRpb25CdWlsZGVyLFxyXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIG5vLXVudXNlZC12YXJzXHJcbiAgICBwcml2YXRlIHZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWZcclxuICApIHt9XHJcblxyXG4gIC8qKlxyXG4gICAqIExpZmVjeWNsZSBob29rIOKAlCBpbml0aWFsIHNldHVwLlxyXG4gICAqIEBtZW1iZXJvZiBFeHBvcnRGb3JtYXRQb3BvdmVyQ29tcG9uZW50XHJcbiAgICovXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICAvLyBPdmVybGF5IGlzIGNyZWF0ZWQgbGF6aWx5IG9uIGZpcnN0IG9wZW5cclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIFJlc3BvbmRzIHRvIGlucHV0IGNoYW5nZXMg4oCUIG9wZW5zIG9yIGNsb3NlcyB0aGUgb3ZlcmxheSB3aGVuIGBpc09wZW5gIGNoYW5nZXMuXHJcbiAgICogQHBhcmFtIHtTaW1wbGVDaGFuZ2VzfSBjaGFuZ2VzXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XHJcbiAgICBpZiAoY2hhbmdlc1snaXNPcGVuJ10pIHtcclxuICAgICAgaWYgKHRoaXMuaXNPcGVuKSB7XHJcbiAgICAgICAgdGhpcy5vcGVuT3ZlcmxheSgpO1xyXG4gICAgICB9IGVsc2Uge1xyXG4gICAgICAgIHRoaXMuY2xvc2VPdmVybGF5KCk7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIENyZWF0ZXMgYW5kIG9wZW5zIHRoZSBDREsgb3ZlcmxheSBwb3NpdGlvbmVkIGJlbG93IHRoZSBvcmlnaW4gZWxlbWVudC5cclxuICAgKiBAbWVtYmVyb2YgRXhwb3J0Rm9ybWF0UG9wb3ZlckNvbXBvbmVudFxyXG4gICAqL1xyXG4gIHByaXZhdGUgb3Blbk92ZXJsYXkoKTogdm9pZCB7XHJcbiAgICBpZiAodGhpcy5vdmVybGF5UmVmPy5oYXNBdHRhY2hlZCgpKSB7XHJcbiAgICAgIHJldHVybjtcclxuICAgIH1cclxuICAgIGlmICh0aGlzLm92ZXJsYXlSZWYpIHtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmLmRpc3Bvc2UoKTtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmID0gbnVsbDtcclxuICAgIH1cclxuICAgIC8vIFJlc2V0IHNlbGVjdGlvbiBzdGF0ZSBvbiBlYWNoIG9wZW5cclxuICAgIHRoaXMuc2VsZWN0ZWRGb3JtYXQgPSBudWxsO1xyXG5cclxuICAgIGNvbnN0IHBvc2l0aW9uU3RyYXRlZ3kgPSB0aGlzLm92ZXJsYXlQb3NpdGlvbkJ1aWxkZXJcclxuICAgICAgLmZsZXhpYmxlQ29ubmVjdGVkVG8odGhpcy5vcmlnaW4pXHJcbiAgICAgIC53aXRoUG9zaXRpb25zKFtcclxuICAgICAgICB7XHJcbiAgICAgICAgICBvcmlnaW5YOiAnc3RhcnQnLFxyXG4gICAgICAgICAgb3JpZ2luWTogJ2JvdHRvbScsXHJcbiAgICAgICAgICBvdmVybGF5WDogJ3N0YXJ0JyxcclxuICAgICAgICAgIG92ZXJsYXlZOiAndG9wJyxcclxuICAgICAgICAgIG9mZnNldFk6IDQsXHJcbiAgICAgICAgfSxcclxuICAgICAgICB7XHJcbiAgICAgICAgICBvcmlnaW5YOiAnZW5kJyxcclxuICAgICAgICAgIG9yaWdpblk6ICdib3R0b20nLFxyXG4gICAgICAgICAgb3ZlcmxheVg6ICdlbmQnLFxyXG4gICAgICAgICAgb3ZlcmxheVk6ICd0b3AnLFxyXG4gICAgICAgICAgb2Zmc2V0WTogNCxcclxuICAgICAgICB9LFxyXG4gICAgICBdKTtcclxuXHJcbiAgICB0aGlzLm92ZXJsYXlSZWYgPSB0aGlzLm92ZXJsYXkuY3JlYXRlKHtcclxuICAgICAgcG9zaXRpb25TdHJhdGVneSxcclxuICAgICAgaGFzQmFja2Ryb3A6IHRydWUsXHJcbiAgICAgIGJhY2tkcm9wQ2xhc3M6ICdjZGstb3ZlcmxheS10cmFuc3BhcmVudC1iYWNrZHJvcCcsXHJcbiAgICAgIHNjcm9sbFN0cmF0ZWd5OiB0aGlzLm92ZXJsYXkuc2Nyb2xsU3RyYXRlZ2llcy5yZXBvc2l0aW9uKCksXHJcbiAgICB9KTtcclxuXHJcbiAgICAvLyBMaXN0ZW4gZm9yIGJhY2tkcm9wIGNsaWNrIHRvIGNsb3NlXHJcbiAgICB0aGlzLm92ZXJsYXlSZWZcclxuICAgICAgLmJhY2tkcm9wQ2xpY2soKVxyXG4gICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXHJcbiAgICAgIC5zdWJzY3JpYmUoKCkgPT4ge1xyXG4gICAgICAgIHRoaXMuY2xvc2UoKTtcclxuICAgICAgfSk7XHJcblxyXG4gICAgLy8gTGlzdGVuIGZvciBFc2NhcGUga2V5IHRvIGNsb3NlXHJcbiAgICB0aGlzLm92ZXJsYXlSZWZcclxuICAgICAgLmtleWRvd25FdmVudHMoKVxyXG4gICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXHJcbiAgICAgIC5zdWJzY3JpYmUoKGV2ZW50OiBLZXlib2FyZEV2ZW50KSA9PiB7XHJcbiAgICAgICAgaWYgKGV2ZW50LmtleSA9PT0gJ0VzY2FwZScpIHtcclxuICAgICAgICAgIHRoaXMuY2xvc2UoKTtcclxuICAgICAgICB9XHJcbiAgICAgIH0pO1xyXG5cclxuICAgIHRoaXMucG9ydGFsID0gbmV3IFRlbXBsYXRlUG9ydGFsKHRoaXMucG9wb3ZlclRlbXBsYXRlLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xyXG4gICAgdGhpcy5vdmVybGF5UmVmLmF0dGFjaCh0aGlzLnBvcnRhbCk7XHJcbiAgfVxyXG5cclxuICAvKipcclxuICAgKiBEZXRhY2hlcyBhbmQgZGlzcG9zZXMgdGhlIG92ZXJsYXkuXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBwcml2YXRlIGNsb3NlT3ZlcmxheSgpOiB2b2lkIHtcclxuICAgIGlmICh0aGlzLm92ZXJsYXlSZWY/Lmhhc0F0dGFjaGVkKCkpIHtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmLmRldGFjaCgpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogQ2xvc2VzIHRoZSBwb3BvdmVyIGFuZCBlbWl0cyB0aGUgYGNsb3NlZGAgZXZlbnQuXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBwcml2YXRlIGNsb3NlKCk6IHZvaWQge1xyXG4gICAgdGhpcy5jbG9zZU92ZXJsYXkoKTtcclxuICAgIHRoaXMuY2xvc2VkLmVtaXQoKTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIEhhbmRsZXMgZm9ybWF0IG9wdGlvbiBzZWxlY3Rpb24gdmlhIGNsaWNrIG9yIEVudGVyIGtleS5cclxuICAgKiBFbWl0cyB0aGUgc2VsZWN0ZWQgZm9ybWF0IGFuZCBjbG9zZXMgdGhlIG92ZXJsYXkuXHJcbiAgICogQHBhcmFtIHtFeHBvcnRGb3JtYXR9IGZvcm1hdCAtIFRoZSBzZWxlY3RlZCBleHBvcnQgZm9ybWF0IHZhbHVlXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBvbkZvcm1hdFNlbGVjdChmb3JtYXQ6IEV4cG9ydEZvcm1hdCk6IHZvaWQge1xyXG4gICAgdGhpcy5zZWxlY3RlZEZvcm1hdCA9IGZvcm1hdDtcclxuICAgIHRoaXMuZm9ybWF0U2VsZWN0ZWQuZW1pdChmb3JtYXQpO1xyXG4gICAgdGhpcy5jbG9zZU92ZXJsYXkoKTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIFRyYWNrQnkgZnVuY3Rpb24gZm9yICpuZ0ZvciBvbiBmb3JtYXQgb3B0aW9ucy5cclxuICAgKiBAcGFyYW0ge251bWJlcn0gaW5kZXhcclxuICAgKiBAcGFyYW0ge0V4cG9ydEZvcm1hdE9wdGlvbn0gb3B0aW9uXHJcbiAgICogQHJldHVybiB7c3RyaW5nfVxyXG4gICAqIEBtZW1iZXJvZiBFeHBvcnRGb3JtYXRQb3BvdmVyQ29tcG9uZW50XHJcbiAgICovXHJcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIG5vLXVudXNlZC12YXJzXHJcbiAgdHJhY2tCeUZvcm1hdChpbmRleDogbnVtYmVyLCBvcHRpb246IEV4cG9ydEZvcm1hdE9wdGlvbik6IHN0cmluZyB7XHJcbiAgICByZXR1cm4gb3B0aW9uLnZhbHVlO1xyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogQ2xlYW5zIHVwIG92ZXJsYXkgYW5kIHN1YnNjcmlwdGlvbnMgb24gY29tcG9uZW50IGRlc3Ryb3kuXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcclxuICAgIHRoaXMuZGVzdHJveSQubmV4dCh0cnVlKTtcclxuICAgIHRoaXMuZGVzdHJveSQudW5zdWJzY3JpYmUoKTtcclxuICAgIGlmICh0aGlzLm92ZXJsYXlSZWYpIHtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmLmRpc3Bvc2UoKTtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmID0gbnVsbDtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIiwiPG5nLXRlbXBsYXRlICNwb3BvdmVyVGVtcGxhdGU+XHJcbiAgPGRpdiBjbGFzcz1cImllZWVzYS1leHBvcnQtZm9ybWF0LXBvcG92ZXJcIiByb2xlPVwibGlzdGJveFwiPlxyXG4gICAgPHAgY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX190aXRsZVwiPnt7IHBvcG92ZXJUaXRsZSB9fTwvcD5cclxuICAgIDxkaXYgY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb25zXCI+XHJcbiAgICAgIDxidXR0b25cclxuICAgICAgICAqbmdGb3I9XCJsZXQgb3B0aW9uIG9mIGZvcm1hdE9wdGlvbnM7IHRyYWNrQnk6IHRyYWNrQnlGb3JtYXRcIlxyXG4gICAgICAgIGNsYXNzPVwiaWVlZXNhLWV4cG9ydC1mb3JtYXQtcG9wb3Zlcl9fb3B0aW9uXCJcclxuICAgICAgICBbY2xhc3MuaWVlZXNhLWV4cG9ydC1mb3JtYXQtcG9wb3Zlcl9fb3B0aW9uLS1zZWxlY3RlZF09XCJzZWxlY3RlZEZvcm1hdCA9PT0gb3B0aW9uLnZhbHVlXCJcclxuICAgICAgICByb2xlPVwib3B0aW9uXCJcclxuICAgICAgICBbYXR0ci5hcmlhLXNlbGVjdGVkXT1cInNlbGVjdGVkRm9ybWF0ID09PSBvcHRpb24udmFsdWVcIlxyXG4gICAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwib3B0aW9uLmFyaWFMYWJlbFwiXHJcbiAgICAgICAgKGNsaWNrKT1cIm9uRm9ybWF0U2VsZWN0KG9wdGlvbi52YWx1ZSlcIlxyXG4gICAgICAgIChrZXlkb3duLmVudGVyKT1cIm9uRm9ybWF0U2VsZWN0KG9wdGlvbi52YWx1ZSlcIlxyXG4gICAgICA+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb24tbGFiZWxcIj57eyBvcHRpb24ubGFiZWwgfX08L3NwYW4+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb24tc3VidGl0bGVcIj5cclxuICAgICAgICAgIHt7IGZvcm1hdFN1YnRpdGxlc1tvcHRpb24udmFsdWVdIH19XHJcbiAgICAgICAgPC9zcGFuPlxyXG4gICAgICA8L2J1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG48L25nLXRlbXBsYXRlPlxyXG4iXX0=
75
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwb3J0LWZvcm1hdC1wb3BvdmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByZXNlbnRhdGlvbi9zcmMvbGliL2NvbXBvbmVudHMvZXhwb3J0LWZvcm1hdC1wb3BvdmVyL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9jb21wb25lbnRzL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci9leHBvcnQtZm9ybWF0LXBvcG92ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUNMLE1BQU0sRUFDTixpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7QUFHL0M7Ozs7OztHQU1HO0FBU0gsTUFBTSxPQUFPLDRCQUE0QjtJQVJ6QztRQVNFLHdEQUF3RDtRQUMvQyxrQkFBYSxHQUF5QixFQUFFLENBQUM7UUFPbEQsMEJBQTBCO1FBQ2pCLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFFeEIscURBQXFEO1FBQzVDLGlCQUFZLEdBQUcsK0NBQStDLENBQUM7UUFFeEUsb0VBQW9FO1FBQzNELG9CQUFlLEdBQTJCO1lBQ2pELEdBQUcsRUFBRSxzQkFBc0I7WUFDM0IsR0FBRyxFQUFFLGtCQUFrQjtTQUN4QixDQUFDO1FBRUYsZ0VBQWdFO1FBQ2hFLG1CQUFjLEdBQXdCLElBQUksQ0FBQztRQUUzQyx1Q0FBdUM7UUFDN0IsbUJBQWMsR0FBRyxJQUFJLFlBQVksRUFBZ0IsQ0FBQztRQUU1RCxtRkFBbUY7UUFDekUsV0FBTSxHQUFHLElBQUksWUFBWSxFQUFRLENBQUM7S0EwQjdDO0lBeEJDOzs7T0FHRztJQUNILGNBQWMsQ0FBQyxNQUFvQjtRQUNqQyxJQUFJLENBQUMsY0FBYyxHQUFHLE1BQU0sQ0FBQztRQUM3QixJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUNqQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFRDs7T0FFRztJQUNILGVBQWU7UUFDYixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFRDs7T0FFRztJQUNILDBDQUEwQztJQUMxQyxhQUFhLENBQUMsS0FBYSxFQUFFLE1BQTBCO1FBQ3JELE9BQU8sTUFBTSxDQUFDLEtBQUssQ0FBQztJQUN0QixDQUFDOytHQXJEVSw0QkFBNEI7bUdBQTVCLDRCQUE0QiwyU0N6QnpDLHF2Q0ErQkEsaTRWRFhZLFlBQVk7OzRGQUtYLDRCQUE0QjtrQkFSeEMsU0FBUzsrQkFDRSw4QkFBOEIsY0FDNUIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDLGlCQUdSLGlCQUFpQixDQUFDLElBQUk7OEJBSTVCLGFBQWE7c0JBQXJCLEtBQUs7Z0JBS0csTUFBTTtzQkFBZCxLQUFLO2dCQUdHLE1BQU07c0JBQWQsS0FBSztnQkFHRyxZQUFZO3NCQUFwQixLQUFLO2dCQUdHLGVBQWU7c0JBQXZCLEtBQUs7Z0JBU0ksY0FBYztzQkFBdkIsTUFBTTtnQkFHRyxNQUFNO3NCQUFmLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xyXG4gIENvbXBvbmVudCxcclxuICBFdmVudEVtaXR0ZXIsXHJcbiAgSW5wdXQsXHJcbiAgT3V0cHV0LFxyXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxyXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyBFeHBvcnRGb3JtYXQsIEV4cG9ydEZvcm1hdE9wdGlvbiB9IGZyb20gJy4uLy4uL21vZGVscy9leHBvcnQtZm9ybWF0LXBvcG92ZXIubW9kZWwnO1xyXG5cclxuLyoqXHJcbiAqIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnQgcmVuZGVycyBhIHBvcG92ZXIgcHJlc2VudGluZyBmb3JtYXQgc2VsZWN0aW9uXHJcbiAqIGNhcmRzIChDU1YgLyBFeGNlbCkuIFBvc2l0aW9uZWQgdmlhIENTUyBhYnNvbHV0ZSBiZWxvdyB0aGUgdHJpZ2dlciBlbGVtZW50LlxyXG4gKlxyXG4gKiBAZXhwb3J0XHJcbiAqIEBjbGFzcyBFeHBvcnRGb3JtYXRQb3BvdmVyQ29tcG9uZW50XHJcbiAqL1xyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2llZWVzYS1leHBvcnQtZm9ybWF0LXBvcG92ZXInLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vZXhwb3J0LWZvcm1hdC1wb3BvdmVyLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxufSlcclxuZXhwb3J0IGNsYXNzIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnQge1xyXG4gIC8qKiBBcnJheSBvZiBmb3JtYXQgb3B0aW9ucyB0byBkaXNwbGF5IGluIHRoZSBwb3BvdmVyICovXHJcbiAgQElucHV0KCkgZm9ybWF0T3B0aW9uczogRXhwb3J0Rm9ybWF0T3B0aW9uW10gPSBbXTtcclxuXHJcbiAgLyoqXHJcbiAgICogQGRlcHJlY2F0ZWQgTm8gbG9uZ2VyIHVzZWQgZm9yIHBvc2l0aW9uaW5nOyBrZXB0IGZvciBiYWNrd2FyZHMgY29tcGF0aWJpbGl0eS5cclxuICAgKi9cclxuICBASW5wdXQoKSBvcmlnaW4/OiB1bmtub3duO1xyXG5cclxuICAvKiogQ29udHJvbHMgdmlzaWJpbGl0eSAqL1xyXG4gIEBJbnB1dCgpIGlzT3BlbiA9IGZhbHNlO1xyXG5cclxuICAvKiogVGl0bGUgdGV4dCBkaXNwbGF5ZWQgYXQgdGhlIHRvcCBvZiB0aGUgcG9wb3ZlciAqL1xyXG4gIEBJbnB1dCgpIHBvcG92ZXJUaXRsZSA9ICdTZWxlY3QgdGhlIGZpbGUgZm9ybWF0IGZvciBhdHRlbmRhbmNlIGV4cG9ydC4nO1xyXG5cclxuICAvKiogU3VidGl0bGUgbWFwIGZvciBmb3JtYXQgb3B0aW9ucyAoa2V5ZWQgYnkgRXhwb3J0Rm9ybWF0IHZhbHVlKSAqL1xyXG4gIEBJbnB1dCgpIGZvcm1hdFN1YnRpdGxlczogUmVjb3JkPHN0cmluZywgc3RyaW5nPiA9IHtcclxuICAgIGNzdjogJ0NvbW1hIHNlcGFyYXRlZCBmaWxlJyxcclxuICAgIHhsczogJ1NwcmVhZHNoZWV0IEZpbGUnLFxyXG4gIH07XHJcblxyXG4gIC8qKiBUcmFja3MgdGhlIGN1cnJlbnRseSBzZWxlY3RlZCBmb3JtYXQgZm9yIHZpc3VhbCBoaWdobGlnaHQgKi9cclxuICBzZWxlY3RlZEZvcm1hdDogRXhwb3J0Rm9ybWF0IHwgbnVsbCA9IG51bGw7XHJcblxyXG4gIC8qKiBFbWl0cyB3aGVuIHVzZXIgc2VsZWN0cyBhIGZvcm1hdCAqL1xyXG4gIEBPdXRwdXQoKSBmb3JtYXRTZWxlY3RlZCA9IG5ldyBFdmVudEVtaXR0ZXI8RXhwb3J0Rm9ybWF0PigpO1xyXG5cclxuICAvKiogRW1pdHMgd2hlbiB0aGUgcG9wb3ZlciBzaG91bGQgYmUgY2xvc2VkIChiYWNrZHJvcCBjbGljayBvciBhZnRlciBzZWxlY3Rpb24pLiAqL1xyXG4gIEBPdXRwdXQoKSBjbG9zZWQgPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XHJcblxyXG4gIC8qKlxyXG4gICAqIEhhbmRsZXMgZm9ybWF0IG9wdGlvbiBzZWxlY3Rpb24gdmlhIGNsaWNrIG9yIEVudGVyIGtleS5cclxuICAgKiBAcGFyYW0ge0V4cG9ydEZvcm1hdH0gZm9ybWF0XHJcbiAgICovXHJcbiAgb25Gb3JtYXRTZWxlY3QoZm9ybWF0OiBFeHBvcnRGb3JtYXQpOiB2b2lkIHtcclxuICAgIHRoaXMuc2VsZWN0ZWRGb3JtYXQgPSBmb3JtYXQ7XHJcbiAgICB0aGlzLmZvcm1hdFNlbGVjdGVkLmVtaXQoZm9ybWF0KTtcclxuICAgIHRoaXMuY2xvc2VkLmVtaXQoKTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIENsb3NlcyB0aGUgcG9wb3ZlciB2aWEgYmFja2Ryb3AgY2xpY2suXHJcbiAgICovXHJcbiAgb25CYWNrZHJvcENsaWNrKCk6IHZvaWQge1xyXG4gICAgdGhpcy5jbG9zZWQuZW1pdCgpO1xyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogVHJhY2tCeSBmdW5jdGlvbiBmb3IgKm5nRm9yIG9uIGZvcm1hdCBvcHRpb25zLlxyXG4gICAqL1xyXG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBuby11bnVzZWQtdmFyc1xyXG4gIHRyYWNrQnlGb3JtYXQoaW5kZXg6IG51bWJlciwgb3B0aW9uOiBFeHBvcnRGb3JtYXRPcHRpb24pOiBzdHJpbmcge1xyXG4gICAgcmV0dXJuIG9wdGlvbi52YWx1ZTtcclxuICB9XHJcbn1cclxuXHJcbiIsIjwhLS0gQmFja2Ryb3AgLS0+XHJcbjxkaXZcclxuICAqbmdJZj1cImlzT3BlblwiXHJcbiAgY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19iYWNrZHJvcFwiXHJcbiAgYXJpYS1oaWRkZW49XCJ0cnVlXCJcclxuICByb2xlPVwicHJlc2VudGF0aW9uXCJcclxuICAoY2xpY2spPVwib25CYWNrZHJvcENsaWNrKClcIlxyXG4gIChkb2N1bWVudDprZXlkb3duLmVzY2FwZSk9XCJvbkJhY2tkcm9wQ2xpY2soKVwiXHJcbj48L2Rpdj5cclxuXHJcbjwhLS0gUG9wb3ZlciAtLT5cclxuPGRpdiAqbmdJZj1cImlzT3BlblwiIGNsYXNzPVwiaWVlZXNhLWV4cG9ydC1mb3JtYXQtcG9wb3ZlclwiIHJvbGU9XCJsaXN0Ym94XCI+XHJcbiAgPHAgY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX190aXRsZVwiPnt7IHBvcG92ZXJUaXRsZSB9fTwvcD5cclxuICA8ZGl2IGNsYXNzPVwiaWVlZXNhLWV4cG9ydC1mb3JtYXQtcG9wb3Zlcl9fb3B0aW9uc1wiPlxyXG4gICAgPGJ1dHRvblxyXG4gICAgICAqbmdGb3I9XCJsZXQgb3B0aW9uIG9mIGZvcm1hdE9wdGlvbnM7IHRyYWNrQnk6IHRyYWNrQnlGb3JtYXRcIlxyXG4gICAgICBjbGFzcz1cImllZWVzYS1leHBvcnQtZm9ybWF0LXBvcG92ZXJfX29wdGlvblwiXHJcbiAgICAgIFtjbGFzcy5pZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb24tLXNlbGVjdGVkXT1cInNlbGVjdGVkRm9ybWF0ID09PSBvcHRpb24udmFsdWVcIlxyXG4gICAgICByb2xlPVwib3B0aW9uXCJcclxuICAgICAgW2F0dHIuYXJpYS1zZWxlY3RlZF09XCJzZWxlY3RlZEZvcm1hdCA9PT0gb3B0aW9uLnZhbHVlXCJcclxuICAgICAgW2F0dHIuYXJpYS1sYWJlbF09XCJvcHRpb24uYXJpYUxhYmVsXCJcclxuICAgICAgKGNsaWNrKT1cIm9uRm9ybWF0U2VsZWN0KG9wdGlvbi52YWx1ZSlcIlxyXG4gICAgICAoa2V5ZG93bi5lbnRlcik9XCJvbkZvcm1hdFNlbGVjdChvcHRpb24udmFsdWUpXCJcclxuICAgID5cclxuICAgICAgPHNwYW4gY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb24tbGFiZWxcIj57eyBvcHRpb24ubGFiZWwgfX08L3NwYW4+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwiaWVlZXNhLWV4cG9ydC1mb3JtYXQtcG9wb3Zlcl9fb3B0aW9uLXN1YnRpdGxlXCI+XHJcbiAgICAgICAge3sgZm9ybWF0U3VidGl0bGVzW29wdGlvbi52YWx1ZV0gfX1cclxuICAgICAgPC9zcGFuPlxyXG4gICAgPC9idXR0b24+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=