@ieeesa-npm/presentation 0.31.0 → 0.31.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/export-format-popover/export-format-popover.component.mjs +206 -0
- package/esm2022/lib/components/export-success-dialog/export-success-dialog.component.mjs +39 -0
- package/esm2022/lib/components/modal-info/modal-info.component.mjs +41 -0
- package/esm2022/lib/components/policy-confirmation-dialog/policy-confirmation-dialog.component.mjs +58 -0
- package/esm2022/lib/models/export-format-popover.model.mjs +10 -0
- package/esm2022/lib/models/export-success-dialog.model.mjs +2 -0
- package/esm2022/lib/models/policy-confirmation-dialog.model.mjs +2 -0
- package/esm2022/public-api.mjs +8 -1
- package/fesm2022/ieeesa-npm-presentation.mjs +331 -1
- package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
- package/lib/components/export-format-popover/export-format-popover.component.d.ts +91 -0
- package/lib/components/export-success-dialog/export-success-dialog.component.d.ts +24 -0
- package/lib/components/modal-info/modal-info.component.d.ts +23 -0
- package/lib/components/policy-confirmation-dialog/policy-confirmation-dialog.component.d.ts +36 -0
- package/lib/models/export-format-popover.model.d.ts +15 -0
- package/lib/models/export-success-dialog.model.d.ts +8 -0
- package/lib/models/policy-confirmation-dialog.model.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +8 -1
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output, ViewChild, ViewEncapsulation, } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { TemplatePortal } from '@angular/cdk/portal';
|
|
4
|
+
import { Subject, takeUntil } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/cdk/overlay";
|
|
7
|
+
import * as i2 from "@angular/common";
|
|
8
|
+
/**
|
|
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.
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @class ExportFormatPopoverComponent
|
|
16
|
+
* @implements {OnInit}
|
|
17
|
+
* @implements {OnChanges}
|
|
18
|
+
* @implements {OnDestroy}
|
|
19
|
+
*/
|
|
20
|
+
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;
|
|
31
|
+
/** Array of format options to display in the popover */
|
|
32
|
+
this.formatOptions = [];
|
|
33
|
+
/** Controls overlay visibility */
|
|
34
|
+
this.isOpen = false;
|
|
35
|
+
/** Title text displayed at the top of the popover */
|
|
36
|
+
this.popoverTitle = 'Select the file format for attendance export.';
|
|
37
|
+
/** Subtitle map for format options (keyed by ExportFormat value) */
|
|
38
|
+
this.formatSubtitles = {
|
|
39
|
+
csv: 'Comma separated file',
|
|
40
|
+
xls: 'Spreadsheet File',
|
|
41
|
+
};
|
|
42
|
+
/** Tracks the currently selected format for visual highlight */
|
|
43
|
+
this.selectedFormat = null;
|
|
44
|
+
/** Emits when user selects a format */
|
|
45
|
+
this.formatSelected = new EventEmitter();
|
|
46
|
+
/** Emits when popover closes without selection */
|
|
47
|
+
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
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* 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
|
|
153
|
+
*/
|
|
154
|
+
onFormatSelect(format) {
|
|
155
|
+
this.selectedFormat = format;
|
|
156
|
+
this.formatSelected.emit(format);
|
|
157
|
+
this.closeOverlay();
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* TrackBy function for *ngFor on format options.
|
|
161
|
+
* @param {number} index
|
|
162
|
+
* @param {ExportFormatOption} option
|
|
163
|
+
* @return {string}
|
|
164
|
+
* @memberof ExportFormatPopoverComponent
|
|
165
|
+
*/
|
|
166
|
+
// eslint-disable-next-line no-unused-vars
|
|
167
|
+
trackByFormat(index, option) {
|
|
168
|
+
return option.value;
|
|
169
|
+
}
|
|
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 }); }
|
|
184
|
+
}
|
|
185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExportFormatPopoverComponent, decorators: [{
|
|
186
|
+
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: [{
|
|
189
|
+
type: Input
|
|
190
|
+
}], origin: [{
|
|
191
|
+
type: Input
|
|
192
|
+
}], isOpen: [{
|
|
193
|
+
type: Input
|
|
194
|
+
}], popoverTitle: [{
|
|
195
|
+
type: Input
|
|
196
|
+
}], formatSubtitles: [{
|
|
197
|
+
type: Input
|
|
198
|
+
}], formatSelected: [{
|
|
199
|
+
type: Output
|
|
200
|
+
}], closed: [{
|
|
201
|
+
type: Output
|
|
202
|
+
}], popoverTemplate: [{
|
|
203
|
+
type: ViewChild,
|
|
204
|
+
args: ['popoverTemplate']
|
|
205
|
+
}] } });
|
|
206
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwb3J0LWZvcm1hdC1wb3BvdmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByZXNlbnRhdGlvbi9zcmMvbGliL2NvbXBvbmVudHMvZXhwb3J0LWZvcm1hdC1wb3BvdmVyL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9jb21wb25lbnRzL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci9leHBvcnQtZm9ybWF0LXBvcG92ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFFVCxZQUFZLEVBQ1osS0FBSyxFQUlMLE1BQU0sRUFHTixTQUFTLEVBRVQsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDckQsT0FBTyxFQUFFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7QUFHMUM7Ozs7Ozs7Ozs7O0dBV0c7QUFTSCxNQUFNLE9BQU8sNEJBQTRCO0lBa0N2QztJQUNFLDBDQUEwQztJQUNsQyxPQUFnQjtJQUN4QiwwQ0FBMEM7SUFDbEMsc0JBQThDO0lBQ3RELDBDQUEwQztJQUNsQyxnQkFBa0M7UUFKbEMsWUFBTyxHQUFQLE9BQU8sQ0FBUztRQUVoQiwyQkFBc0IsR0FBdEIsc0JBQXNCLENBQXdCO1FBRTlDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7UUF2QzVDLHdEQUF3RDtRQUMvQyxrQkFBYSxHQUF5QixFQUFFLENBQUM7UUFLbEQsa0NBQWtDO1FBQ3pCLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFFeEIscURBQXFEO1FBQzVDLGlCQUFZLEdBQUcsK0NBQStDLENBQUM7UUFFeEUsb0VBQW9FO1FBQzNELG9CQUFlLEdBQTJCO1lBQ2pELEdBQUcsRUFBRSxzQkFBc0I7WUFDM0IsR0FBRyxFQUFFLGtCQUFrQjtTQUN4QixDQUFDO1FBRUYsZ0VBQWdFO1FBQ2hFLG1CQUFjLEdBQXdCLElBQUksQ0FBQztRQUUzQyx1Q0FBdUM7UUFDN0IsbUJBQWMsR0FBRyxJQUFJLFlBQVksRUFBZ0IsQ0FBQztRQUU1RCxrREFBa0Q7UUFDeEMsV0FBTSxHQUFHLElBQUksWUFBWSxFQUFRLENBQUM7UUFJcEMsZUFBVSxHQUFzQixJQUFJLENBQUM7UUFDckMsV0FBTSxHQUEwQixJQUFJLENBQUM7UUFDN0MsYUFBUSxHQUFHLElBQUksT0FBTyxFQUFXLENBQUM7SUFTL0IsQ0FBQztJQUVKOzs7T0FHRztJQUNILFFBQVE7UUFDTiwwQ0FBMEM7SUFDNUMsQ0FBQztJQUVEOzs7O09BSUc7SUFDSCxXQUFXLENBQUMsT0FBc0I7UUFDaEMsSUFBSSxPQUFPLENBQUMsUUFBUSxDQUFDLEVBQUU7WUFDckIsSUFBSSxJQUFJLENBQUMsTUFBTSxFQUFFO2dCQUNmLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQzthQUNwQjtpQkFBTTtnQkFDTCxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7YUFDckI7U0FDRjtJQUNILENBQUM7SUFFRDs7O09BR0c7SUFDSyxXQUFXO1FBQ2pCLElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRSxXQUFXLEVBQUUsRUFBRTtZQUNsQyxPQUFPO1NBQ1I7UUFDRCxJQUFJLElBQUksQ0FBQyxVQUFVLEVBQUU7WUFDbkIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUMxQixJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQztTQUN4QjtRQUNELHFDQUFxQztRQUNyQyxJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQztRQUUzQixNQUFNLGdCQUFnQixHQUFHLElBQUksQ0FBQyxzQkFBc0I7YUFDakQsbUJBQW1CLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQzthQUNoQyxhQUFhLENBQUM7WUFDYjtnQkFDRSxPQUFPLEVBQUUsT0FBTztnQkFDaEIsT0FBTyxFQUFFLFFBQVE7Z0JBQ2pCLFFBQVEsRUFBRSxPQUFPO2dCQUNqQixRQUFRLEVBQUUsS0FBSztnQkFDZixPQUFPLEVBQUUsQ0FBQzthQUNYO1lBQ0Q7Z0JBQ0UsT0FBTyxFQUFFLEtBQUs7Z0JBQ2QsT0FBTyxFQUFFLFFBQVE7Z0JBQ2pCLFFBQVEsRUFBRSxLQUFLO2dCQUNmLFFBQVEsRUFBRSxLQUFLO2dCQUNmLE9BQU8sRUFBRSxDQUFDO2FBQ1g7U0FDRixDQUFDLENBQUM7UUFFTCxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDO1lBQ3BDLGdCQUFnQjtZQUNoQixXQUFXLEVBQUUsSUFBSTtZQUNqQixhQUFhLEVBQUUsa0NBQWtDO1lBQ2pELGNBQWMsRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLGdCQUFnQixDQUFDLFVBQVUsRUFBRTtTQUMzRCxDQUFDLENBQUM7UUFFSCxxQ0FBcUM7UUFDckMsSUFBSSxDQUFDLFVBQVU7YUFDWixhQUFhLEVBQUU7YUFDZixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUM5QixTQUFTLENBQUMsR0FBRyxFQUFFO1lBQ2QsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ2YsQ0FBQyxDQUFDLENBQUM7UUFFTCxpQ0FBaUM7UUFDakMsSUFBSSxDQUFDLFVBQVU7YUFDWixhQUFhLEVBQUU7YUFDZixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUM5QixTQUFTLENBQUMsQ0FBQyxLQUFvQixFQUFFLEVBQUU7WUFDbEMsSUFBSSxLQUFLLENBQUMsR0FBRyxLQUFLLFFBQVEsRUFBRTtnQkFDMUIsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO2FBQ2Q7UUFDSCxDQUFDLENBQUMsQ0FBQztRQUVMLElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSxjQUFjLENBQUMsSUFBSSxDQUFDLGVBQWUsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUM5RSxJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDdEMsQ0FBQztJQUVEOzs7T0FHRztJQUNLLFlBQVk7UUFDbEIsSUFBSSxJQUFJLENBQUMsVUFBVSxFQUFFLFdBQVcsRUFBRSxFQUFFO1lBQ2xDLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxFQUFFLENBQUM7U0FDMUI7SUFDSCxDQUFDO0lBRUQ7OztPQUdHO0lBQ0ssS0FBSztRQUNYLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUNwQixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNILGNBQWMsQ0FBQyxNQUFvQjtRQUNqQyxJQUFJLENBQUMsY0FBYyxHQUFHLE1BQU0sQ0FBQztRQUM3QixJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUNqQyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNILDBDQUEwQztJQUMxQyxhQUFhLENBQUMsS0FBYSxFQUFFLE1BQTBCO1FBQ3JELE9BQU8sTUFBTSxDQUFDLEtBQUssQ0FBQztJQUN0QixDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsV0FBVztRQUNULElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ3pCLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxFQUFFLENBQUM7UUFDNUIsSUFBSSxJQUFJLENBQUMsVUFBVSxFQUFFO1lBQ25CLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxFQUFFLENBQUM7WUFDMUIsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUM7U0FDeEI7SUFDSCxDQUFDOytHQXZMVSw0QkFBNEI7bUdBQTVCLDRCQUE0QixvYkN6Q3pDLHVpQ0FzQkEseXRWRGNZLFlBQVk7OzRGQUtYLDRCQUE0QjtrQkFSeEMsU0FBUzsrQkFDRSw4QkFBOEIsY0FDNUIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDLGlCQUdSLGlCQUFpQixDQUFDLElBQUk7a0tBSTVCLGFBQWE7c0JBQXJCLEtBQUs7Z0JBR0csTUFBTTtzQkFBZCxLQUFLO2dCQUdHLE1BQU07c0JBQWQsS0FBSztnQkFHRyxZQUFZO3NCQUFwQixLQUFLO2dCQUdHLGVBQWU7c0JBQXZCLEtBQUs7Z0JBU0ksY0FBYztzQkFBdkIsTUFBTTtnQkFHRyxNQUFNO3NCQUFmLE1BQU07Z0JBRXVCLGVBQWU7c0JBQTVDLFNBQVM7dUJBQUMsaUJBQWlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcclxuICBDb21wb25lbnQsXHJcbiAgRWxlbWVudFJlZixcclxuICBFdmVudEVtaXR0ZXIsXHJcbiAgSW5wdXQsXHJcbiAgT25DaGFuZ2VzLFxyXG4gIE9uRGVzdHJveSxcclxuICBPbkluaXQsXHJcbiAgT3V0cHV0LFxyXG4gIFNpbXBsZUNoYW5nZXMsXHJcbiAgVGVtcGxhdGVSZWYsXHJcbiAgVmlld0NoaWxkLFxyXG4gIFZpZXdDb250YWluZXJSZWYsXHJcbiAgVmlld0VuY2Fwc3VsYXRpb24sXHJcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IE92ZXJsYXksIE92ZXJsYXlSZWYsIE92ZXJsYXlQb3NpdGlvbkJ1aWxkZXIgfSBmcm9tICdAYW5ndWxhci9jZGsvb3ZlcmxheSc7XHJcbmltcG9ydCB7IFRlbXBsYXRlUG9ydGFsIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XHJcbmltcG9ydCB7IFN1YmplY3QsIHRha2VVbnRpbCB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQgeyBFeHBvcnRGb3JtYXQsIEV4cG9ydEZvcm1hdE9wdGlvbiB9IGZyb20gJy4uLy4uL21vZGVscy9leHBvcnQtZm9ybWF0LXBvcG92ZXIubW9kZWwnO1xyXG5cclxuLyoqXHJcbiAqIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnQgcmVuZGVycyBhIENESyBPdmVybGF5IHBvcG92ZXIgYW5jaG9yZWQgYmVsb3dcclxuICogYSB0cmlnZ2VyIGVsZW1lbnQsIHByZXNlbnRpbmcgZm9ybWF0IHNlbGVjdGlvbiBjYXJkcyAoQ1NWIC8gRXhjZWwpLlxyXG4gKiBUaGUgcG9wb3ZlciBzdXBwb3J0cyBrZXlib2FyZCBuYXZpZ2F0aW9uIChUYWIgYmV0d2VlbiBvcHRpb25zLCBFbnRlciB0byBzZWxlY3QsXHJcbiAqIEVzY2FwZSB0byBjbG9zZSkgYW5kIGVtaXRzIHRoZSBzZWxlY3RlZCBmb3JtYXQgb3IgYSBjbG9zZSBldmVudC5cclxuICpcclxuICogQGV4cG9ydFxyXG4gKiBAY2xhc3MgRXhwb3J0Rm9ybWF0UG9wb3ZlckNvbXBvbmVudFxyXG4gKiBAaW1wbGVtZW50cyB7T25Jbml0fVxyXG4gKiBAaW1wbGVtZW50cyB7T25DaGFuZ2VzfVxyXG4gKiBAaW1wbGVtZW50cyB7T25EZXN0cm95fVxyXG4gKi9cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyJyxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9leHBvcnQtZm9ybWF0LXBvcG92ZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2V4cG9ydC1mb3JtYXQtcG9wb3Zlci5jb21wb25lbnQuc2NzcyddLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBFeHBvcnRGb3JtYXRQb3BvdmVyQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkNoYW5nZXMsIE9uRGVzdHJveSB7XHJcbiAgLyoqIEFycmF5IG9mIGZvcm1hdCBvcHRpb25zIHRvIGRpc3BsYXkgaW4gdGhlIHBvcG92ZXIgKi9cclxuICBASW5wdXQoKSBmb3JtYXRPcHRpb25zOiBFeHBvcnRGb3JtYXRPcHRpb25bXSA9IFtdO1xyXG5cclxuICAvKiogVGhlIGVsZW1lbnQgdGhlIHBvcG92ZXIgYXR0YWNoZXMgdG8gKGFuY2hvciBwb2ludCkgKi9cclxuICBASW5wdXQoKSBvcmlnaW4hOiBFbGVtZW50UmVmO1xyXG5cclxuICAvKiogQ29udHJvbHMgb3ZlcmxheSB2aXNpYmlsaXR5ICovXHJcbiAgQElucHV0KCkgaXNPcGVuID0gZmFsc2U7XHJcblxyXG4gIC8qKiBUaXRsZSB0ZXh0IGRpc3BsYXllZCBhdCB0aGUgdG9wIG9mIHRoZSBwb3BvdmVyICovXHJcbiAgQElucHV0KCkgcG9wb3ZlclRpdGxlID0gJ1NlbGVjdCB0aGUgZmlsZSBmb3JtYXQgZm9yIGF0dGVuZGFuY2UgZXhwb3J0Lic7XHJcblxyXG4gIC8qKiBTdWJ0aXRsZSBtYXAgZm9yIGZvcm1hdCBvcHRpb25zIChrZXllZCBieSBFeHBvcnRGb3JtYXQgdmFsdWUpICovXHJcbiAgQElucHV0KCkgZm9ybWF0U3VidGl0bGVzOiBSZWNvcmQ8c3RyaW5nLCBzdHJpbmc+ID0ge1xyXG4gICAgY3N2OiAnQ29tbWEgc2VwYXJhdGVkIGZpbGUnLFxyXG4gICAgeGxzOiAnU3ByZWFkc2hlZXQgRmlsZScsXHJcbiAgfTtcclxuXHJcbiAgLyoqIFRyYWNrcyB0aGUgY3VycmVudGx5IHNlbGVjdGVkIGZvcm1hdCBmb3IgdmlzdWFsIGhpZ2hsaWdodCAqL1xyXG4gIHNlbGVjdGVkRm9ybWF0OiBFeHBvcnRGb3JtYXQgfCBudWxsID0gbnVsbDtcclxuXHJcbiAgLyoqIEVtaXRzIHdoZW4gdXNlciBzZWxlY3RzIGEgZm9ybWF0ICovXHJcbiAgQE91dHB1dCgpIGZvcm1hdFNlbGVjdGVkID0gbmV3IEV2ZW50RW1pdHRlcjxFeHBvcnRGb3JtYXQ+KCk7XHJcblxyXG4gIC8qKiBFbWl0cyB3aGVuIHBvcG92ZXIgY2xvc2VzIHdpdGhvdXQgc2VsZWN0aW9uICovXHJcbiAgQE91dHB1dCgpIGNsb3NlZCA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcbiAgQFZpZXdDaGlsZCgncG9wb3ZlclRlbXBsYXRlJykgcG9wb3ZlclRlbXBsYXRlITogVGVtcGxhdGVSZWY8dW5rbm93bj47XHJcblxyXG4gIHByaXZhdGUgb3ZlcmxheVJlZjogT3ZlcmxheVJlZiB8IG51bGwgPSBudWxsO1xyXG4gIHByaXZhdGUgcG9ydGFsOiBUZW1wbGF0ZVBvcnRhbCB8IG51bGwgPSBudWxsO1xyXG4gIGRlc3Ryb3kkID0gbmV3IFN1YmplY3Q8Ym9vbGVhbj4oKTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tdW51c2VkLXZhcnNcclxuICAgIHByaXZhdGUgb3ZlcmxheTogT3ZlcmxheSxcclxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBuby11bnVzZWQtdmFyc1xyXG4gICAgcHJpdmF0ZSBvdmVybGF5UG9zaXRpb25CdWlsZGVyOiBPdmVybGF5UG9zaXRpb25CdWlsZGVyLFxyXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIG5vLXVudXNlZC12YXJzXHJcbiAgICBwcml2YXRlIHZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWZcclxuICApIHt9XHJcblxyXG4gIC8qKlxyXG4gICAqIExpZmVjeWNsZSBob29rIOKAlCBpbml0aWFsIHNldHVwLlxyXG4gICAqIEBtZW1iZXJvZiBFeHBvcnRGb3JtYXRQb3BvdmVyQ29tcG9uZW50XHJcbiAgICovXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICAvLyBPdmVybGF5IGlzIGNyZWF0ZWQgbGF6aWx5IG9uIGZpcnN0IG9wZW5cclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIFJlc3BvbmRzIHRvIGlucHV0IGNoYW5nZXMg4oCUIG9wZW5zIG9yIGNsb3NlcyB0aGUgb3ZlcmxheSB3aGVuIGBpc09wZW5gIGNoYW5nZXMuXHJcbiAgICogQHBhcmFtIHtTaW1wbGVDaGFuZ2VzfSBjaGFuZ2VzXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XHJcbiAgICBpZiAoY2hhbmdlc1snaXNPcGVuJ10pIHtcclxuICAgICAgaWYgKHRoaXMuaXNPcGVuKSB7XHJcbiAgICAgICAgdGhpcy5vcGVuT3ZlcmxheSgpO1xyXG4gICAgICB9IGVsc2Uge1xyXG4gICAgICAgIHRoaXMuY2xvc2VPdmVybGF5KCk7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIENyZWF0ZXMgYW5kIG9wZW5zIHRoZSBDREsgb3ZlcmxheSBwb3NpdGlvbmVkIGJlbG93IHRoZSBvcmlnaW4gZWxlbWVudC5cclxuICAgKiBAbWVtYmVyb2YgRXhwb3J0Rm9ybWF0UG9wb3ZlckNvbXBvbmVudFxyXG4gICAqL1xyXG4gIHByaXZhdGUgb3Blbk92ZXJsYXkoKTogdm9pZCB7XHJcbiAgICBpZiAodGhpcy5vdmVybGF5UmVmPy5oYXNBdHRhY2hlZCgpKSB7XHJcbiAgICAgIHJldHVybjtcclxuICAgIH1cclxuICAgIGlmICh0aGlzLm92ZXJsYXlSZWYpIHtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmLmRpc3Bvc2UoKTtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmID0gbnVsbDtcclxuICAgIH1cclxuICAgIC8vIFJlc2V0IHNlbGVjdGlvbiBzdGF0ZSBvbiBlYWNoIG9wZW5cclxuICAgIHRoaXMuc2VsZWN0ZWRGb3JtYXQgPSBudWxsO1xyXG5cclxuICAgIGNvbnN0IHBvc2l0aW9uU3RyYXRlZ3kgPSB0aGlzLm92ZXJsYXlQb3NpdGlvbkJ1aWxkZXJcclxuICAgICAgLmZsZXhpYmxlQ29ubmVjdGVkVG8odGhpcy5vcmlnaW4pXHJcbiAgICAgIC53aXRoUG9zaXRpb25zKFtcclxuICAgICAgICB7XHJcbiAgICAgICAgICBvcmlnaW5YOiAnc3RhcnQnLFxyXG4gICAgICAgICAgb3JpZ2luWTogJ2JvdHRvbScsXHJcbiAgICAgICAgICBvdmVybGF5WDogJ3N0YXJ0JyxcclxuICAgICAgICAgIG92ZXJsYXlZOiAndG9wJyxcclxuICAgICAgICAgIG9mZnNldFk6IDQsXHJcbiAgICAgICAgfSxcclxuICAgICAgICB7XHJcbiAgICAgICAgICBvcmlnaW5YOiAnZW5kJyxcclxuICAgICAgICAgIG9yaWdpblk6ICdib3R0b20nLFxyXG4gICAgICAgICAgb3ZlcmxheVg6ICdlbmQnLFxyXG4gICAgICAgICAgb3ZlcmxheVk6ICd0b3AnLFxyXG4gICAgICAgICAgb2Zmc2V0WTogNCxcclxuICAgICAgICB9LFxyXG4gICAgICBdKTtcclxuXHJcbiAgICB0aGlzLm92ZXJsYXlSZWYgPSB0aGlzLm92ZXJsYXkuY3JlYXRlKHtcclxuICAgICAgcG9zaXRpb25TdHJhdGVneSxcclxuICAgICAgaGFzQmFja2Ryb3A6IHRydWUsXHJcbiAgICAgIGJhY2tkcm9wQ2xhc3M6ICdjZGstb3ZlcmxheS10cmFuc3BhcmVudC1iYWNrZHJvcCcsXHJcbiAgICAgIHNjcm9sbFN0cmF0ZWd5OiB0aGlzLm92ZXJsYXkuc2Nyb2xsU3RyYXRlZ2llcy5yZXBvc2l0aW9uKCksXHJcbiAgICB9KTtcclxuXHJcbiAgICAvLyBMaXN0ZW4gZm9yIGJhY2tkcm9wIGNsaWNrIHRvIGNsb3NlXHJcbiAgICB0aGlzLm92ZXJsYXlSZWZcclxuICAgICAgLmJhY2tkcm9wQ2xpY2soKVxyXG4gICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXHJcbiAgICAgIC5zdWJzY3JpYmUoKCkgPT4ge1xyXG4gICAgICAgIHRoaXMuY2xvc2UoKTtcclxuICAgICAgfSk7XHJcblxyXG4gICAgLy8gTGlzdGVuIGZvciBFc2NhcGUga2V5IHRvIGNsb3NlXHJcbiAgICB0aGlzLm92ZXJsYXlSZWZcclxuICAgICAgLmtleWRvd25FdmVudHMoKVxyXG4gICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXHJcbiAgICAgIC5zdWJzY3JpYmUoKGV2ZW50OiBLZXlib2FyZEV2ZW50KSA9PiB7XHJcbiAgICAgICAgaWYgKGV2ZW50LmtleSA9PT0gJ0VzY2FwZScpIHtcclxuICAgICAgICAgIHRoaXMuY2xvc2UoKTtcclxuICAgICAgICB9XHJcbiAgICAgIH0pO1xyXG5cclxuICAgIHRoaXMucG9ydGFsID0gbmV3IFRlbXBsYXRlUG9ydGFsKHRoaXMucG9wb3ZlclRlbXBsYXRlLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xyXG4gICAgdGhpcy5vdmVybGF5UmVmLmF0dGFjaCh0aGlzLnBvcnRhbCk7XHJcbiAgfVxyXG5cclxuICAvKipcclxuICAgKiBEZXRhY2hlcyBhbmQgZGlzcG9zZXMgdGhlIG92ZXJsYXkuXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBwcml2YXRlIGNsb3NlT3ZlcmxheSgpOiB2b2lkIHtcclxuICAgIGlmICh0aGlzLm92ZXJsYXlSZWY/Lmhhc0F0dGFjaGVkKCkpIHtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmLmRldGFjaCgpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogQ2xvc2VzIHRoZSBwb3BvdmVyIGFuZCBlbWl0cyB0aGUgYGNsb3NlZGAgZXZlbnQuXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBwcml2YXRlIGNsb3NlKCk6IHZvaWQge1xyXG4gICAgdGhpcy5jbG9zZU92ZXJsYXkoKTtcclxuICAgIHRoaXMuY2xvc2VkLmVtaXQoKTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIEhhbmRsZXMgZm9ybWF0IG9wdGlvbiBzZWxlY3Rpb24gdmlhIGNsaWNrIG9yIEVudGVyIGtleS5cclxuICAgKiBFbWl0cyB0aGUgc2VsZWN0ZWQgZm9ybWF0IGFuZCBjbG9zZXMgdGhlIG92ZXJsYXkuXHJcbiAgICogQHBhcmFtIHtFeHBvcnRGb3JtYXR9IGZvcm1hdCAtIFRoZSBzZWxlY3RlZCBleHBvcnQgZm9ybWF0IHZhbHVlXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBvbkZvcm1hdFNlbGVjdChmb3JtYXQ6IEV4cG9ydEZvcm1hdCk6IHZvaWQge1xyXG4gICAgdGhpcy5zZWxlY3RlZEZvcm1hdCA9IGZvcm1hdDtcclxuICAgIHRoaXMuZm9ybWF0U2VsZWN0ZWQuZW1pdChmb3JtYXQpO1xyXG4gICAgdGhpcy5jbG9zZU92ZXJsYXkoKTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIFRyYWNrQnkgZnVuY3Rpb24gZm9yICpuZ0ZvciBvbiBmb3JtYXQgb3B0aW9ucy5cclxuICAgKiBAcGFyYW0ge251bWJlcn0gaW5kZXhcclxuICAgKiBAcGFyYW0ge0V4cG9ydEZvcm1hdE9wdGlvbn0gb3B0aW9uXHJcbiAgICogQHJldHVybiB7c3RyaW5nfVxyXG4gICAqIEBtZW1iZXJvZiBFeHBvcnRGb3JtYXRQb3BvdmVyQ29tcG9uZW50XHJcbiAgICovXHJcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIG5vLXVudXNlZC12YXJzXHJcbiAgdHJhY2tCeUZvcm1hdChpbmRleDogbnVtYmVyLCBvcHRpb246IEV4cG9ydEZvcm1hdE9wdGlvbik6IHN0cmluZyB7XHJcbiAgICByZXR1cm4gb3B0aW9uLnZhbHVlO1xyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogQ2xlYW5zIHVwIG92ZXJsYXkgYW5kIHN1YnNjcmlwdGlvbnMgb24gY29tcG9uZW50IGRlc3Ryb3kuXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydEZvcm1hdFBvcG92ZXJDb21wb25lbnRcclxuICAgKi9cclxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcclxuICAgIHRoaXMuZGVzdHJveSQubmV4dCh0cnVlKTtcclxuICAgIHRoaXMuZGVzdHJveSQudW5zdWJzY3JpYmUoKTtcclxuICAgIGlmICh0aGlzLm92ZXJsYXlSZWYpIHtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmLmRpc3Bvc2UoKTtcclxuICAgICAgdGhpcy5vdmVybGF5UmVmID0gbnVsbDtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIiwiPG5nLXRlbXBsYXRlICNwb3BvdmVyVGVtcGxhdGU+XHJcbiAgPGRpdiBjbGFzcz1cImllZWVzYS1leHBvcnQtZm9ybWF0LXBvcG92ZXJcIiByb2xlPVwibGlzdGJveFwiPlxyXG4gICAgPHAgY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX190aXRsZVwiPnt7IHBvcG92ZXJUaXRsZSB9fTwvcD5cclxuICAgIDxkaXYgY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb25zXCI+XHJcbiAgICAgIDxidXR0b25cclxuICAgICAgICAqbmdGb3I9XCJsZXQgb3B0aW9uIG9mIGZvcm1hdE9wdGlvbnM7IHRyYWNrQnk6IHRyYWNrQnlGb3JtYXRcIlxyXG4gICAgICAgIGNsYXNzPVwiaWVlZXNhLWV4cG9ydC1mb3JtYXQtcG9wb3Zlcl9fb3B0aW9uXCJcclxuICAgICAgICBbY2xhc3MuaWVlZXNhLWV4cG9ydC1mb3JtYXQtcG9wb3Zlcl9fb3B0aW9uLS1zZWxlY3RlZF09XCJzZWxlY3RlZEZvcm1hdCA9PT0gb3B0aW9uLnZhbHVlXCJcclxuICAgICAgICByb2xlPVwib3B0aW9uXCJcclxuICAgICAgICBbYXR0ci5hcmlhLXNlbGVjdGVkXT1cInNlbGVjdGVkRm9ybWF0ID09PSBvcHRpb24udmFsdWVcIlxyXG4gICAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwib3B0aW9uLmFyaWFMYWJlbFwiXHJcbiAgICAgICAgKGNsaWNrKT1cIm9uRm9ybWF0U2VsZWN0KG9wdGlvbi52YWx1ZSlcIlxyXG4gICAgICAgIChrZXlkb3duLmVudGVyKT1cIm9uRm9ybWF0U2VsZWN0KG9wdGlvbi52YWx1ZSlcIlxyXG4gICAgICA+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb24tbGFiZWxcIj57eyBvcHRpb24ubGFiZWwgfX08L3NwYW4+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJpZWVlc2EtZXhwb3J0LWZvcm1hdC1wb3BvdmVyX19vcHRpb24tc3VidGl0bGVcIj5cclxuICAgICAgICAgIHt7IGZvcm1hdFN1YnRpdGxlc1tvcHRpb24udmFsdWVdIH19XHJcbiAgICAgICAgPC9zcGFuPlxyXG4gICAgICA8L2J1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG48L25nLXRlbXBsYXRlPlxyXG4iXX0=
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Component, Inject, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { MAT_DIALOG_DATA, MatDialogModule, } from '@angular/material/dialog';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@angular/material/dialog";
|
|
6
|
+
/**
|
|
7
|
+
* ExportSuccessDialogComponent displays a centered success message after
|
|
8
|
+
* a file export completes. Shows the filename in bold and a single "Close" button.
|
|
9
|
+
*
|
|
10
|
+
* Opens via `MatDialog.open(ExportSuccessDialogComponent, { data: ExportSuccessDialogData })`.
|
|
11
|
+
*
|
|
12
|
+
* @export
|
|
13
|
+
* @class ExportSuccessDialogComponent
|
|
14
|
+
*/
|
|
15
|
+
export class ExportSuccessDialogComponent {
|
|
16
|
+
constructor(data,
|
|
17
|
+
// eslint-disable-next-line no-unused-vars
|
|
18
|
+
dialogRef) {
|
|
19
|
+
this.data = data;
|
|
20
|
+
this.dialogRef = dialogRef;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Handles the Close button click — closes the dialog.
|
|
24
|
+
* @memberof ExportSuccessDialogComponent
|
|
25
|
+
*/
|
|
26
|
+
onClose() {
|
|
27
|
+
this.dialogRef.close();
|
|
28
|
+
}
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExportSuccessDialogComponent, deps: [{ token: MAT_DIALOG_DATA }, { token: i1.MatDialogRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
30
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ExportSuccessDialogComponent, isStandalone: true, selector: "ieeesa-export-success-dialog", ngImport: i0, template: "<div class=\"ieeesa-export-success-dialog\">\r\n <div class=\"ieeesa-export-success-dialog__content\">\r\n <span class=\"ieeesa-export-success-dialog__message\">{{ data.message }}</span>\r\n <span class=\"ieeesa-export-success-dialog__filename\">{{ data.filename }}</span>\r\n </div>\r\n <div class=\"ieeesa-export-success-dialog__actions\">\r\n <button\r\n class=\"ieeesa-export-success-dialog__btn-close\"\r\n [attr.aria-label]=\"data.closeLabel\"\r\n (click)=\"onClose()\"\r\n >\r\n {{ data.closeLabel }}\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-success-dialog{display:flex;width:467px;height:210px;flex-direction:column;align-items:flex-end;padding:34.55px;box-sizing:border-box}.ieeesa-export-success-dialog__content{display:flex;flex-direction:column;align-items:center;align-self:stretch;text-align:center;flex:1}.ieeesa-export-success-dialog__message{font-family:Calibri,sans-serif;font-size:20.154px;font-style:normal;font-weight:400;line-height:25.912px;color:#2c2c2c}.ieeesa-export-success-dialog__filename{font-family:Calibri,sans-serif;font-size:20.154px;font-style:normal;font-weight:700;line-height:25.912px;color:#2c2c2c}.ieeesa-export-success-dialog__actions{display:flex;justify-content:center;align-items:center;align-self:stretch}.ieeesa-export-success-dialog__btn-close{display:flex;width:115.165px;height:54.703px;flex-direction:column;justify-content:center;align-items:center;gap:11.516px;border-radius:4.319px;border:2px solid #00629b;background:#fff;font-family:Calibri,sans-serif;font-size:23.033px;font-style:normal;font-weight:700;line-height:28.791px;color:#00629b;text-align:center;cursor:pointer}.ieeesa-export-success-dialog__btn-close:hover{background:#f0f7fc}.ieeesa-export-success-dialog-panel .mat-mdc-dialog-container .mdc-dialog__surface{border-radius:5.758px!important;box-shadow:0 2.879px 5.758px #00000040!important}.ieeesa-export-success-dialog-panel .mat-mdc-dialog-container .mdc-dialog__content{padding:0!important;max-height:unset!important;overflow:visible!important}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatDialogModule }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
31
|
+
}
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExportSuccessDialogComponent, decorators: [{
|
|
33
|
+
type: Component,
|
|
34
|
+
args: [{ selector: 'ieeesa-export-success-dialog', standalone: true, imports: [CommonModule, MatDialogModule], encapsulation: ViewEncapsulation.None, template: "<div class=\"ieeesa-export-success-dialog\">\r\n <div class=\"ieeesa-export-success-dialog__content\">\r\n <span class=\"ieeesa-export-success-dialog__message\">{{ data.message }}</span>\r\n <span class=\"ieeesa-export-success-dialog__filename\">{{ data.filename }}</span>\r\n </div>\r\n <div class=\"ieeesa-export-success-dialog__actions\">\r\n <button\r\n class=\"ieeesa-export-success-dialog__btn-close\"\r\n [attr.aria-label]=\"data.closeLabel\"\r\n (click)=\"onClose()\"\r\n >\r\n {{ data.closeLabel }}\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-success-dialog{display:flex;width:467px;height:210px;flex-direction:column;align-items:flex-end;padding:34.55px;box-sizing:border-box}.ieeesa-export-success-dialog__content{display:flex;flex-direction:column;align-items:center;align-self:stretch;text-align:center;flex:1}.ieeesa-export-success-dialog__message{font-family:Calibri,sans-serif;font-size:20.154px;font-style:normal;font-weight:400;line-height:25.912px;color:#2c2c2c}.ieeesa-export-success-dialog__filename{font-family:Calibri,sans-serif;font-size:20.154px;font-style:normal;font-weight:700;line-height:25.912px;color:#2c2c2c}.ieeesa-export-success-dialog__actions{display:flex;justify-content:center;align-items:center;align-self:stretch}.ieeesa-export-success-dialog__btn-close{display:flex;width:115.165px;height:54.703px;flex-direction:column;justify-content:center;align-items:center;gap:11.516px;border-radius:4.319px;border:2px solid #00629b;background:#fff;font-family:Calibri,sans-serif;font-size:23.033px;font-style:normal;font-weight:700;line-height:28.791px;color:#00629b;text-align:center;cursor:pointer}.ieeesa-export-success-dialog__btn-close:hover{background:#f0f7fc}.ieeesa-export-success-dialog-panel .mat-mdc-dialog-container .mdc-dialog__surface{border-radius:5.758px!important;box-shadow:0 2.879px 5.758px #00000040!important}.ieeesa-export-success-dialog-panel .mat-mdc-dialog-container .mdc-dialog__content{padding:0!important;max-height:unset!important;overflow:visible!important}\n"] }]
|
|
35
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
36
|
+
type: Inject,
|
|
37
|
+
args: [MAT_DIALOG_DATA]
|
|
38
|
+
}] }, { type: i1.MatDialogRef }]; } });
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwb3J0LXN1Y2Nlc3MtZGlhbG9nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByZXNlbnRhdGlvbi9zcmMvbGliL2NvbXBvbmVudHMvZXhwb3J0LXN1Y2Nlc3MtZGlhbG9nL2V4cG9ydC1zdWNjZXNzLWRpYWxvZy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9jb21wb25lbnRzL2V4cG9ydC1zdWNjZXNzLWRpYWxvZy9leHBvcnQtc3VjY2Vzcy1kaWFsb2cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDckUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFDTCxlQUFlLEVBRWYsZUFBZSxHQUNoQixNQUFNLDBCQUEwQixDQUFDOzs7QUFHbEM7Ozs7Ozs7O0dBUUc7QUFTSCxNQUFNLE9BQU8sNEJBQTRCO0lBQ3ZDLFlBR1MsSUFBNkI7SUFDcEMsMENBQTBDO0lBQ2xDLFNBQXFEO1FBRnRELFNBQUksR0FBSixJQUFJLENBQXlCO1FBRTVCLGNBQVMsR0FBVCxTQUFTLENBQTRDO0lBQzVELENBQUM7SUFFSjs7O09BR0c7SUFDSCxPQUFPO1FBQ0wsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN6QixDQUFDOytHQWZVLDRCQUE0QixrQkFFN0IsZUFBZTttR0FGZCw0QkFBNEIsd0ZDMUJ6Qywya0JBZUEsdXZVRE1ZLFlBQVksOEJBQUUsZUFBZTs7NEZBSzVCLDRCQUE0QjtrQkFSeEMsU0FBUzsrQkFDRSw4QkFBOEIsY0FDNUIsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLGVBQWUsQ0FBQyxpQkFHekIsaUJBQWlCLENBQUMsSUFBSTs7MEJBSWxDLE1BQU07MkJBQUMsZUFBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQge1xyXG4gIE1BVF9ESUFMT0dfREFUQSxcclxuICBNYXREaWFsb2dSZWYsXHJcbiAgTWF0RGlhbG9nTW9kdWxlLFxyXG59IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RpYWxvZyc7XHJcbmltcG9ydCB7IEV4cG9ydFN1Y2Nlc3NEaWFsb2dEYXRhIH0gZnJvbSAnLi4vLi4vbW9kZWxzL2V4cG9ydC1zdWNjZXNzLWRpYWxvZy5tb2RlbCc7XHJcblxyXG4vKipcclxuICogRXhwb3J0U3VjY2Vzc0RpYWxvZ0NvbXBvbmVudCBkaXNwbGF5cyBhIGNlbnRlcmVkIHN1Y2Nlc3MgbWVzc2FnZSBhZnRlclxyXG4gKiBhIGZpbGUgZXhwb3J0IGNvbXBsZXRlcy4gU2hvd3MgdGhlIGZpbGVuYW1lIGluIGJvbGQgYW5kIGEgc2luZ2xlIFwiQ2xvc2VcIiBidXR0b24uXHJcbiAqXHJcbiAqIE9wZW5zIHZpYSBgTWF0RGlhbG9nLm9wZW4oRXhwb3J0U3VjY2Vzc0RpYWxvZ0NvbXBvbmVudCwgeyBkYXRhOiBFeHBvcnRTdWNjZXNzRGlhbG9nRGF0YSB9KWAuXHJcbiAqXHJcbiAqIEBleHBvcnRcclxuICogQGNsYXNzIEV4cG9ydFN1Y2Nlc3NEaWFsb2dDb21wb25lbnRcclxuICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaWVlZXNhLWV4cG9ydC1zdWNjZXNzLWRpYWxvZycsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBNYXREaWFsb2dNb2R1bGVdLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9leHBvcnQtc3VjY2Vzcy1kaWFsb2cuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2V4cG9ydC1zdWNjZXNzLWRpYWxvZy5jb21wb25lbnQuc2NzcyddLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBFeHBvcnRTdWNjZXNzRGlhbG9nQ29tcG9uZW50IHtcclxuICBjb25zdHJ1Y3RvcihcclxuICAgIEBJbmplY3QoTUFUX0RJQUxPR19EQVRBKVxyXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIG5vLXVudXNlZC12YXJzXHJcbiAgICBwdWJsaWMgZGF0YTogRXhwb3J0U3VjY2Vzc0RpYWxvZ0RhdGEsXHJcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tdW51c2VkLXZhcnNcclxuICAgIHByaXZhdGUgZGlhbG9nUmVmOiBNYXREaWFsb2dSZWY8RXhwb3J0U3VjY2Vzc0RpYWxvZ0NvbXBvbmVudD5cclxuICApIHt9XHJcblxyXG4gIC8qKlxyXG4gICAqIEhhbmRsZXMgdGhlIENsb3NlIGJ1dHRvbiBjbGljayDigJQgY2xvc2VzIHRoZSBkaWFsb2cuXHJcbiAgICogQG1lbWJlcm9mIEV4cG9ydFN1Y2Nlc3NEaWFsb2dDb21wb25lbnRcclxuICAgKi9cclxuICBvbkNsb3NlKCk6IHZvaWQge1xyXG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2UoKTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cImllZWVzYS1leHBvcnQtc3VjY2Vzcy1kaWFsb2dcIj5cclxuICA8ZGl2IGNsYXNzPVwiaWVlZXNhLWV4cG9ydC1zdWNjZXNzLWRpYWxvZ19fY29udGVudFwiPlxyXG4gICAgPHNwYW4gY2xhc3M9XCJpZWVlc2EtZXhwb3J0LXN1Y2Nlc3MtZGlhbG9nX19tZXNzYWdlXCI+e3sgZGF0YS5tZXNzYWdlIH19PC9zcGFuPlxyXG4gICAgPHNwYW4gY2xhc3M9XCJpZWVlc2EtZXhwb3J0LXN1Y2Nlc3MtZGlhbG9nX19maWxlbmFtZVwiPnt7IGRhdGEuZmlsZW5hbWUgfX08L3NwYW4+XHJcbiAgPC9kaXY+XHJcbiAgPGRpdiBjbGFzcz1cImllZWVzYS1leHBvcnQtc3VjY2Vzcy1kaWFsb2dfX2FjdGlvbnNcIj5cclxuICAgIDxidXR0b25cclxuICAgICAgY2xhc3M9XCJpZWVlc2EtZXhwb3J0LXN1Y2Nlc3MtZGlhbG9nX19idG4tY2xvc2VcIlxyXG4gICAgICBbYXR0ci5hcmlhLWxhYmVsXT1cImRhdGEuY2xvc2VMYWJlbFwiXHJcbiAgICAgIChjbGljayk9XCJvbkNsb3NlKClcIlxyXG4gICAgPlxyXG4gICAgICB7eyBkYXRhLmNsb3NlTGFiZWwgfX1cclxuICAgIDwvYnV0dG9uPlxyXG4gIDwvZGl2PlxyXG48L2Rpdj5cclxuIl19
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Component, Inject, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { MAT_DIALOG_DATA, MatDialogModule, } from '@angular/material/dialog';
|
|
4
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/material/dialog";
|
|
7
|
+
import * as i2 from "@angular/material/button";
|
|
8
|
+
/**
|
|
9
|
+
* ModalInfoComponent is a simple informational dialog that displays a centered message
|
|
10
|
+
* with a single dismissal button.
|
|
11
|
+
*
|
|
12
|
+
* @usageNotes - Pass ModalInfoComponent and data options as parameters to MatDialog open method:
|
|
13
|
+
* this.dialog.open(ModalInfoComponent, { data: { message: '...', buttonLabel: 'OK' } })
|
|
14
|
+
* @class ModalInfoComponent
|
|
15
|
+
*/
|
|
16
|
+
export class ModalInfoComponent {
|
|
17
|
+
constructor(data,
|
|
18
|
+
// eslint-disable-next-line no-unused-vars
|
|
19
|
+
dialogRef) {
|
|
20
|
+
this.data = data;
|
|
21
|
+
this.dialogRef = dialogRef;
|
|
22
|
+
dialogRef.disableClose = true;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Closes the info dialog.
|
|
26
|
+
* @memberof ModalInfoComponent
|
|
27
|
+
*/
|
|
28
|
+
onClose() {
|
|
29
|
+
this.dialogRef.close();
|
|
30
|
+
}
|
|
31
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalInfoComponent, deps: [{ token: MAT_DIALOG_DATA }, { token: i1.MatDialogRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
32
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ModalInfoComponent, isStandalone: true, selector: "ieeesa-modal-info", ngImport: i0, template: "<div class=\"ieeesa-modal-info\">\r\n <div mat-dialog-content class=\"ieeesa-headline-sm-26 row\">\r\n <span class=\"ieeesa-body-md-16\r\n ieeesa-modal-info__content col px-0\">\r\n {{ data.message }}\r\n </span>\r\n </div>\r\n <div\r\n mat-dialog-actions\r\n class=\"d-flex p-2 row flex-nowrap justify-content-center\"\r\n >\r\n <button\r\n mat-button\r\n class=\"mat-tertiary-button\"\r\n (click)=\"onClose()\"\r\n [attr.aria-label]=\"data.buttonLabel\"\r\n >\r\n {{ data.buttonLabel }}\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-modal-info{padding:1.5em}.ieeesa-modal-info__content{color:#1c1b1f}.ieeesa-modal-info .mat-mdc-dialog-content{padding:0 0 1rem;color:#1c1b1f;text-align:center}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i1.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: i1.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
33
|
+
}
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalInfoComponent, decorators: [{
|
|
35
|
+
type: Component,
|
|
36
|
+
args: [{ selector: 'ieeesa-modal-info', standalone: true, imports: [CommonModule, MatDialogModule, MatButtonModule], encapsulation: ViewEncapsulation.None, template: "<div class=\"ieeesa-modal-info\">\r\n <div mat-dialog-content class=\"ieeesa-headline-sm-26 row\">\r\n <span class=\"ieeesa-body-md-16\r\n ieeesa-modal-info__content col px-0\">\r\n {{ data.message }}\r\n </span>\r\n </div>\r\n <div\r\n mat-dialog-actions\r\n class=\"d-flex p-2 row flex-nowrap justify-content-center\"\r\n >\r\n <button\r\n mat-button\r\n class=\"mat-tertiary-button\"\r\n (click)=\"onClose()\"\r\n [attr.aria-label]=\"data.buttonLabel\"\r\n >\r\n {{ data.buttonLabel }}\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-modal-info{padding:1.5em}.ieeesa-modal-info__content{color:#1c1b1f}.ieeesa-modal-info .mat-mdc-dialog-content{padding:0 0 1rem;color:#1c1b1f;text-align:center}\n"] }]
|
|
37
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
38
|
+
type: Inject,
|
|
39
|
+
args: [MAT_DIALOG_DATA]
|
|
40
|
+
}] }, { type: i1.MatDialogRef }]; } });
|
|
41
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtaW5mby5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9jb21wb25lbnRzL21vZGFsLWluZm8vbW9kYWwtaW5mby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9jb21wb25lbnRzL21vZGFsLWluZm8vbW9kYWwtaW5mby5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUNMLGVBQWUsRUFDZixlQUFlLEdBRWhCLE1BQU0sMEJBQTBCLENBQUM7QUFDbEMsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDOzs7O0FBRzNEOzs7Ozs7O0dBT0c7QUFTSCxNQUFNLE9BQU8sa0JBQWtCO0lBQzdCLFlBR1MsSUFBbUI7SUFDMUIsMENBQTBDO0lBQ2xDLFNBQTJDO1FBRjVDLFNBQUksR0FBSixJQUFJLENBQWU7UUFFbEIsY0FBUyxHQUFULFNBQVMsQ0FBa0M7UUFFbkQsU0FBUyxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUM7SUFDaEMsQ0FBQztJQUVEOzs7T0FHRztJQUNILE9BQU87UUFDTCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQ3pCLENBQUM7K0dBakJVLGtCQUFrQixrQkFFbkIsZUFBZTttR0FGZCxrQkFBa0IsNkVDMUIvQiw4a0JBcUJBLHE5UkRBWSxZQUFZLDhCQUFFLGVBQWUseVNBQUUsZUFBZTs7NEZBSzdDLGtCQUFrQjtrQkFSOUIsU0FBUzsrQkFDRSxtQkFBbUIsY0FDakIsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLGVBQWUsRUFBRSxlQUFlLENBQUMsaUJBRzFDLGlCQUFpQixDQUFDLElBQUk7OzBCQUlsQyxNQUFNOzJCQUFDLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHtcclxuICBNQVRfRElBTE9HX0RBVEEsXHJcbiAgTWF0RGlhbG9nTW9kdWxlLFxyXG4gIE1hdERpYWxvZ1JlZixcclxufSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5pbXBvcnQgeyBNYXRCdXR0b25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xyXG5pbXBvcnQgeyBJbmZvTW9kYWxEYXRhIH0gZnJvbSAnQGllZWVzYS1ucG0vbW9kZWxzJztcclxuXHJcbi8qKlxyXG4gKiBNb2RhbEluZm9Db21wb25lbnQgaXMgYSBzaW1wbGUgaW5mb3JtYXRpb25hbCBkaWFsb2cgdGhhdCBkaXNwbGF5cyBhIGNlbnRlcmVkIG1lc3NhZ2VcclxuICogd2l0aCBhIHNpbmdsZSBkaXNtaXNzYWwgYnV0dG9uLiBcclxuICpcclxuICogQHVzYWdlTm90ZXMgLSBQYXNzIE1vZGFsSW5mb0NvbXBvbmVudCBhbmQgZGF0YSBvcHRpb25zIGFzIHBhcmFtZXRlcnMgdG8gTWF0RGlhbG9nIG9wZW4gbWV0aG9kOlxyXG4gKiB0aGlzLmRpYWxvZy5vcGVuKE1vZGFsSW5mb0NvbXBvbmVudCwgeyBkYXRhOiB7IG1lc3NhZ2U6ICcuLi4nLCBidXR0b25MYWJlbDogJ09LJyB9IH0pXHJcbiAqIEBjbGFzcyBNb2RhbEluZm9Db21wb25lbnRcclxuICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaWVlZXNhLW1vZGFsLWluZm8nLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgTWF0RGlhbG9nTW9kdWxlLCBNYXRCdXR0b25Nb2R1bGVdLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9tb2RhbC1pbmZvLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9tb2RhbC1pbmZvLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxufSlcclxuZXhwb3J0IGNsYXNzIE1vZGFsSW5mb0NvbXBvbmVudCB7XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBASW5qZWN0KE1BVF9ESUFMT0dfREFUQSlcclxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBuby11bnVzZWQtdmFyc1xyXG4gICAgcHVibGljIGRhdGE6IEluZm9Nb2RhbERhdGEsXHJcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tdW51c2VkLXZhcnNcclxuICAgIHByaXZhdGUgZGlhbG9nUmVmOiBNYXREaWFsb2dSZWY8TW9kYWxJbmZvQ29tcG9uZW50PlxyXG4gICkge1xyXG4gICAgZGlhbG9nUmVmLmRpc2FibGVDbG9zZSA9IHRydWU7XHJcbiAgfVxyXG5cclxuICAvKipcclxuICAgKiBDbG9zZXMgdGhlIGluZm8gZGlhbG9nLlxyXG4gICAqIEBtZW1iZXJvZiBNb2RhbEluZm9Db21wb25lbnRcclxuICAgKi9cclxuICBvbkNsb3NlKCk6IHZvaWQge1xyXG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2UoKTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cImllZWVzYS1tb2RhbC1pbmZvXCI+XHJcbiAgPGRpdiBtYXQtZGlhbG9nLWNvbnRlbnQgY2xhc3M9XCJpZWVlc2EtaGVhZGxpbmUtc20tMjYgcm93XCI+XHJcbiAgICA8c3BhbiBjbGFzcz1cImllZWVzYS1ib2R5LW1kLTE2XHJcbiAgICAgaWVlZXNhLW1vZGFsLWluZm9fX2NvbnRlbnQgY29sIHB4LTBcIj5cclxuICAgICAge3sgZGF0YS5tZXNzYWdlIH19XHJcbiAgICA8L3NwYW4+XHJcbiAgPC9kaXY+XHJcbiAgPGRpdlxyXG4gICAgbWF0LWRpYWxvZy1hY3Rpb25zXHJcbiAgICBjbGFzcz1cImQtZmxleCBwLTIgcm93IGZsZXgtbm93cmFwIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxyXG4gID5cclxuICAgIDxidXR0b25cclxuICAgICAgbWF0LWJ1dHRvblxyXG4gICAgICBjbGFzcz1cIm1hdC10ZXJ0aWFyeS1idXR0b25cIlxyXG4gICAgICAoY2xpY2spPVwib25DbG9zZSgpXCJcclxuICAgICAgW2F0dHIuYXJpYS1sYWJlbF09XCJkYXRhLmJ1dHRvbkxhYmVsXCJcclxuICAgID5cclxuICAgICAge3sgZGF0YS5idXR0b25MYWJlbCAgfX1cclxuICAgIDwvYnV0dG9uPlxyXG4gIDwvZGl2PlxyXG48L2Rpdj5cclxuIl19
|
package/esm2022/lib/components/policy-confirmation-dialog/policy-confirmation-dialog.component.mjs
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { Component, Inject, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { MAT_DIALOG_DATA, MatDialogModule, } from '@angular/material/dialog';
|
|
4
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/material/dialog";
|
|
7
|
+
import * as i2 from "@angular/material/button";
|
|
8
|
+
/**
|
|
9
|
+
* PolicyConfirmationDialogComponent is a reusable confirmation dialog that displays
|
|
10
|
+
* a configurable title, body text, and Cancel/Confirm action buttons.
|
|
11
|
+
* Used for the IEEE Data Access and Use Policy confirmation in the attendance export flow.
|
|
12
|
+
*
|
|
13
|
+
* Opens via `MatDialog.open(PolicyConfirmationDialogComponent, { data: PolicyConfirmationDialogData })`.
|
|
14
|
+
* Returns `true` on confirm, `false` on cancel or close.
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @class PolicyConfirmationDialogComponent
|
|
18
|
+
*/
|
|
19
|
+
export class PolicyConfirmationDialogComponent {
|
|
20
|
+
constructor(data,
|
|
21
|
+
// eslint-disable-next-line no-unused-vars
|
|
22
|
+
dialogRef) {
|
|
23
|
+
this.data = data;
|
|
24
|
+
this.dialogRef = dialogRef;
|
|
25
|
+
dialogRef.disableClose = true;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Handles the Confirm button click — closes the dialog returning `true`.
|
|
29
|
+
* @memberof PolicyConfirmationDialogComponent
|
|
30
|
+
*/
|
|
31
|
+
onConfirm() {
|
|
32
|
+
this.dialogRef.close(true);
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Handles the Cancel button click — closes the dialog returning `false`.
|
|
36
|
+
* @memberof PolicyConfirmationDialogComponent
|
|
37
|
+
*/
|
|
38
|
+
onCancel() {
|
|
39
|
+
this.dialogRef.close(false);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Handles the X (close) button click — closes the dialog returning `false`.
|
|
43
|
+
* @memberof PolicyConfirmationDialogComponent
|
|
44
|
+
*/
|
|
45
|
+
onClose() {
|
|
46
|
+
this.dialogRef.close(false);
|
|
47
|
+
}
|
|
48
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PolicyConfirmationDialogComponent, deps: [{ token: MAT_DIALOG_DATA }, { token: i1.MatDialogRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
49
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PolicyConfirmationDialogComponent, isStandalone: true, selector: "ieeesa-policy-confirmation-dialog", ngImport: i0, template: "<div class=\"ieeesa-policy-confirmation-dialog\">\r\n <div class=\"ieeesa-policy-confirmation-dialog__header\">\r\n <h2 class=\"ieeesa-policy-confirmation-dialog__title\">{{ data.title }}</h2>\r\n <button\r\n class=\"ieeesa-policy-confirmation-dialog__close-btn\"\r\n [attr.aria-label]=\"'Close ' + data.title + ' dialog'\"\r\n (click)=\"onClose()\"\r\n >\r\n <i class=\"fa-solid fa-xmark\"></i>\r\n </button>\r\n </div>\r\n <hr class=\"ieeesa-policy-confirmation-dialog__divider\" />\r\n <div class=\"ieeesa-policy-confirmation-dialog__body\">\r\n {{ data.bodyText }}\r\n </div>\r\n <hr class=\"ieeesa-policy-confirmation-dialog__divider\" />\r\n <div class=\"ieeesa-policy-confirmation-dialog__footer\">\r\n <button\r\n mat-button\r\n class=\"mat-tertiary-button ieeesa-policy-confirmation-dialog__btn-cancel\"\r\n [attr.aria-label]=\"data.cancelLabel\"\r\n (click)=\"onCancel()\"\r\n >\r\n {{ data.cancelLabel }}\r\n </button>\r\n <button\r\n mat-button\r\n class=\"mat-primary-button ieeesa-policy-confirmation-dialog__btn-confirm\"\r\n [attr.aria-label]=\"data.confirmLabel\"\r\n (click)=\"onConfirm()\"\r\n >\r\n {{ data.confirmLabel }}\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-policy-confirmation-dialog{display:flex;width:637px;height:400px;flex-direction:column;align-items:flex-start;flex-shrink:0;border-radius:11.622px;background:#fff;box-shadow:0 36.318px 72.636px -17.433px #00000040;padding:41.9px;overflow:hidden}.ieeesa-policy-confirmation-dialog__header{display:flex;justify-content:space-between;align-items:center;width:100%;padding-bottom:16px}.ieeesa-policy-confirmation-dialog__title{font-family:Calibri,sans-serif;font-size:24px;font-style:normal;font-weight:700;line-height:34.865px;color:#2c2c2c;margin:0}.ieeesa-policy-confirmation-dialog__close-btn{border:none;background:none;cursor:pointer;font-size:18px;color:#2c2c2c;padding:4px;display:flex;align-items:center;justify-content:center}.ieeesa-policy-confirmation-dialog__close-btn:hover{color:#00629b}.ieeesa-policy-confirmation-dialog__body{font-family:Calibri,sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:34.865px;color:#2c2c2c;flex:1;width:100%;padding:24px 0}.ieeesa-policy-confirmation-dialog__divider{border:none;border-top:1.5px solid #9ba0a6;margin:0 -41.9px;width:calc(100% + 83.8px)}.ieeesa-policy-confirmation-dialog__footer{display:flex;justify-content:center;align-items:center;gap:23.24px;width:100%;padding-top:24px}.ieeesa-policy-confirmation-dialog__btn-cancel,.ieeesa-policy-confirmation-dialog__btn-confirm{display:flex;width:115.165px;height:54.703px;flex-direction:column;justify-content:center;align-items:center;gap:11.516px;border-radius:4.319px;font-family:Calibri,sans-serif;font-size:16px;font-weight:700;line-height:normal}.ieeesa-policy-confirmation-dialog__btn-confirm{background:#00629b;color:#fff;border:none;box-shadow:0 2.879px 5.758px #00000026}.ieeesa-policy-confirmation-dialog__btn-confirm:hover{background:#004872}.ieeesa-policy-confirmation-dialog__btn-cancel{background:#fff;color:#2c2c2c;border:1.453px solid #2c2c2c}.ieeesa-policy-confirmation-dialog__btn-cancel:hover{background:#f0f5f9}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatDialogModule }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
50
|
+
}
|
|
51
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PolicyConfirmationDialogComponent, decorators: [{
|
|
52
|
+
type: Component,
|
|
53
|
+
args: [{ selector: 'ieeesa-policy-confirmation-dialog', standalone: true, imports: [CommonModule, MatDialogModule, MatButtonModule], encapsulation: ViewEncapsulation.None, template: "<div class=\"ieeesa-policy-confirmation-dialog\">\r\n <div class=\"ieeesa-policy-confirmation-dialog__header\">\r\n <h2 class=\"ieeesa-policy-confirmation-dialog__title\">{{ data.title }}</h2>\r\n <button\r\n class=\"ieeesa-policy-confirmation-dialog__close-btn\"\r\n [attr.aria-label]=\"'Close ' + data.title + ' dialog'\"\r\n (click)=\"onClose()\"\r\n >\r\n <i class=\"fa-solid fa-xmark\"></i>\r\n </button>\r\n </div>\r\n <hr class=\"ieeesa-policy-confirmation-dialog__divider\" />\r\n <div class=\"ieeesa-policy-confirmation-dialog__body\">\r\n {{ data.bodyText }}\r\n </div>\r\n <hr class=\"ieeesa-policy-confirmation-dialog__divider\" />\r\n <div class=\"ieeesa-policy-confirmation-dialog__footer\">\r\n <button\r\n mat-button\r\n class=\"mat-tertiary-button ieeesa-policy-confirmation-dialog__btn-cancel\"\r\n [attr.aria-label]=\"data.cancelLabel\"\r\n (click)=\"onCancel()\"\r\n >\r\n {{ data.cancelLabel }}\r\n </button>\r\n <button\r\n mat-button\r\n class=\"mat-primary-button ieeesa-policy-confirmation-dialog__btn-confirm\"\r\n [attr.aria-label]=\"data.confirmLabel\"\r\n (click)=\"onConfirm()\"\r\n >\r\n {{ data.confirmLabel }}\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-policy-confirmation-dialog{display:flex;width:637px;height:400px;flex-direction:column;align-items:flex-start;flex-shrink:0;border-radius:11.622px;background:#fff;box-shadow:0 36.318px 72.636px -17.433px #00000040;padding:41.9px;overflow:hidden}.ieeesa-policy-confirmation-dialog__header{display:flex;justify-content:space-between;align-items:center;width:100%;padding-bottom:16px}.ieeesa-policy-confirmation-dialog__title{font-family:Calibri,sans-serif;font-size:24px;font-style:normal;font-weight:700;line-height:34.865px;color:#2c2c2c;margin:0}.ieeesa-policy-confirmation-dialog__close-btn{border:none;background:none;cursor:pointer;font-size:18px;color:#2c2c2c;padding:4px;display:flex;align-items:center;justify-content:center}.ieeesa-policy-confirmation-dialog__close-btn:hover{color:#00629b}.ieeesa-policy-confirmation-dialog__body{font-family:Calibri,sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:34.865px;color:#2c2c2c;flex:1;width:100%;padding:24px 0}.ieeesa-policy-confirmation-dialog__divider{border:none;border-top:1.5px solid #9ba0a6;margin:0 -41.9px;width:calc(100% + 83.8px)}.ieeesa-policy-confirmation-dialog__footer{display:flex;justify-content:center;align-items:center;gap:23.24px;width:100%;padding-top:24px}.ieeesa-policy-confirmation-dialog__btn-cancel,.ieeesa-policy-confirmation-dialog__btn-confirm{display:flex;width:115.165px;height:54.703px;flex-direction:column;justify-content:center;align-items:center;gap:11.516px;border-radius:4.319px;font-family:Calibri,sans-serif;font-size:16px;font-weight:700;line-height:normal}.ieeesa-policy-confirmation-dialog__btn-confirm{background:#00629b;color:#fff;border:none;box-shadow:0 2.879px 5.758px #00000026}.ieeesa-policy-confirmation-dialog__btn-confirm:hover{background:#004872}.ieeesa-policy-confirmation-dialog__btn-cancel{background:#fff;color:#2c2c2c;border:1.453px solid #2c2c2c}.ieeesa-policy-confirmation-dialog__btn-cancel:hover{background:#f0f5f9}\n"] }]
|
|
54
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
55
|
+
type: Inject,
|
|
56
|
+
args: [MAT_DIALOG_DATA]
|
|
57
|
+
}] }, { type: i1.MatDialogRef }]; } });
|
|
58
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9saWN5LWNvbmZpcm1hdGlvbi1kaWFsb2cuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJlc2VudGF0aW9uL3NyYy9saWIvY29tcG9uZW50cy9wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZy9wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9jb21wb25lbnRzL3BvbGljeS1jb25maXJtYXRpb24tZGlhbG9nL3BvbGljeS1jb25maXJtYXRpb24tZGlhbG9nLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0wsZUFBZSxFQUVmLGVBQWUsR0FDaEIsTUFBTSwwQkFBMEIsQ0FBQztBQUNsQyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7Ozs7QUFHM0Q7Ozs7Ozs7Ozs7R0FVRztBQVNILE1BQU0sT0FBTyxpQ0FBaUM7SUFDNUMsWUFHUyxJQUFrQztJQUN6QywwQ0FBMEM7SUFDbEMsU0FBMEQ7UUFGM0QsU0FBSSxHQUFKLElBQUksQ0FBOEI7UUFFakMsY0FBUyxHQUFULFNBQVMsQ0FBaUQ7UUFFbEUsU0FBUyxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUM7SUFDaEMsQ0FBQztJQUVEOzs7T0FHRztJQUNILFNBQVM7UUFDUCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM3QixDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsUUFBUTtRQUNOLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzlCLENBQUM7SUFFRDs7O09BR0c7SUFDSCxPQUFPO1FBQ0wsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDOUIsQ0FBQzsrR0FqQ1UsaUNBQWlDLGtCQUVsQyxlQUFlO21HQUZkLGlDQUFpQyw2RkM3QjlDLDh3Q0FtQ0EseXRWRFhZLFlBQVksOEJBQUUsZUFBZSw4QkFBRSxlQUFlOzs0RkFLN0MsaUNBQWlDO2tCQVI3QyxTQUFTOytCQUNFLG1DQUFtQyxjQUNqQyxJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsZUFBZSxFQUFFLGVBQWUsQ0FBQyxpQkFHMUMsaUJBQWlCLENBQUMsSUFBSTs7MEJBSWxDLE1BQU07MkJBQUMsZUFBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQge1xyXG4gIE1BVF9ESUFMT0dfREFUQSxcclxuICBNYXREaWFsb2dSZWYsXHJcbiAgTWF0RGlhbG9nTW9kdWxlLFxyXG59IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RpYWxvZyc7XHJcbmltcG9ydCB7IE1hdEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2J1dHRvbic7XHJcbmltcG9ydCB7IFBvbGljeUNvbmZpcm1hdGlvbkRpYWxvZ0RhdGEgfSBmcm9tICcuLi8uLi9tb2RlbHMvcG9saWN5LWNvbmZpcm1hdGlvbi1kaWFsb2cubW9kZWwnO1xyXG5cclxuLyoqXHJcbiAqIFBvbGljeUNvbmZpcm1hdGlvbkRpYWxvZ0NvbXBvbmVudCBpcyBhIHJldXNhYmxlIGNvbmZpcm1hdGlvbiBkaWFsb2cgdGhhdCBkaXNwbGF5c1xyXG4gKiBhIGNvbmZpZ3VyYWJsZSB0aXRsZSwgYm9keSB0ZXh0LCBhbmQgQ2FuY2VsL0NvbmZpcm0gYWN0aW9uIGJ1dHRvbnMuXHJcbiAqIFVzZWQgZm9yIHRoZSBJRUVFIERhdGEgQWNjZXNzIGFuZCBVc2UgUG9saWN5IGNvbmZpcm1hdGlvbiBpbiB0aGUgYXR0ZW5kYW5jZSBleHBvcnQgZmxvdy5cclxuICpcclxuICogT3BlbnMgdmlhIGBNYXREaWFsb2cub3BlbihQb2xpY3lDb25maXJtYXRpb25EaWFsb2dDb21wb25lbnQsIHsgZGF0YTogUG9saWN5Q29uZmlybWF0aW9uRGlhbG9nRGF0YSB9KWAuXHJcbiAqIFJldHVybnMgYHRydWVgIG9uIGNvbmZpcm0sIGBmYWxzZWAgb24gY2FuY2VsIG9yIGNsb3NlLlxyXG4gKlxyXG4gKiBAZXhwb3J0XHJcbiAqIEBjbGFzcyBQb2xpY3lDb25maXJtYXRpb25EaWFsb2dDb21wb25lbnRcclxuICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaWVlZXNhLXBvbGljeS1jb25maXJtYXRpb24tZGlhbG9nJyxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIE1hdERpYWxvZ01vZHVsZSwgTWF0QnV0dG9uTW9kdWxlXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vcG9saWN5LWNvbmZpcm1hdGlvbi1kaWFsb2cuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL3BvbGljeS1jb25maXJtYXRpb24tZGlhbG9nLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxufSlcclxuZXhwb3J0IGNsYXNzIFBvbGljeUNvbmZpcm1hdGlvbkRpYWxvZ0NvbXBvbmVudCB7XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBASW5qZWN0KE1BVF9ESUFMT0dfREFUQSlcclxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBuby11bnVzZWQtdmFyc1xyXG4gICAgcHVibGljIGRhdGE6IFBvbGljeUNvbmZpcm1hdGlvbkRpYWxvZ0RhdGEsXHJcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tdW51c2VkLXZhcnNcclxuICAgIHByaXZhdGUgZGlhbG9nUmVmOiBNYXREaWFsb2dSZWY8UG9saWN5Q29uZmlybWF0aW9uRGlhbG9nQ29tcG9uZW50PlxyXG4gICkge1xyXG4gICAgZGlhbG9nUmVmLmRpc2FibGVDbG9zZSA9IHRydWU7XHJcbiAgfVxyXG5cclxuICAvKipcclxuICAgKiBIYW5kbGVzIHRoZSBDb25maXJtIGJ1dHRvbiBjbGljayDigJQgY2xvc2VzIHRoZSBkaWFsb2cgcmV0dXJuaW5nIGB0cnVlYC5cclxuICAgKiBAbWVtYmVyb2YgUG9saWN5Q29uZmlybWF0aW9uRGlhbG9nQ29tcG9uZW50XHJcbiAgICovXHJcbiAgb25Db25maXJtKCk6IHZvaWQge1xyXG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2UodHJ1ZSk7XHJcbiAgfVxyXG5cclxuICAvKipcclxuICAgKiBIYW5kbGVzIHRoZSBDYW5jZWwgYnV0dG9uIGNsaWNrIOKAlCBjbG9zZXMgdGhlIGRpYWxvZyByZXR1cm5pbmcgYGZhbHNlYC5cclxuICAgKiBAbWVtYmVyb2YgUG9saWN5Q29uZmlybWF0aW9uRGlhbG9nQ29tcG9uZW50XHJcbiAgICovXHJcbiAgb25DYW5jZWwoKTogdm9pZCB7XHJcbiAgICB0aGlzLmRpYWxvZ1JlZi5jbG9zZShmYWxzZSk7XHJcbiAgfVxyXG5cclxuICAvKipcclxuICAgKiBIYW5kbGVzIHRoZSBYIChjbG9zZSkgYnV0dG9uIGNsaWNrIOKAlCBjbG9zZXMgdGhlIGRpYWxvZyByZXR1cm5pbmcgYGZhbHNlYC5cclxuICAgKiBAbWVtYmVyb2YgUG9saWN5Q29uZmlybWF0aW9uRGlhbG9nQ29tcG9uZW50XHJcbiAgICovXHJcbiAgb25DbG9zZSgpOiB2b2lkIHtcclxuICAgIHRoaXMuZGlhbG9nUmVmLmNsb3NlKGZhbHNlKTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cImllZWVzYS1wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZ1wiPlxyXG4gIDxkaXYgY2xhc3M9XCJpZWVlc2EtcG9saWN5LWNvbmZpcm1hdGlvbi1kaWFsb2dfX2hlYWRlclwiPlxyXG4gICAgPGgyIGNsYXNzPVwiaWVlZXNhLXBvbGljeS1jb25maXJtYXRpb24tZGlhbG9nX190aXRsZVwiPnt7IGRhdGEudGl0bGUgfX08L2gyPlxyXG4gICAgPGJ1dHRvblxyXG4gICAgICBjbGFzcz1cImllZWVzYS1wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZ19fY2xvc2UtYnRuXCJcclxuICAgICAgW2F0dHIuYXJpYS1sYWJlbF09XCInQ2xvc2UgJyArIGRhdGEudGl0bGUgKyAnIGRpYWxvZydcIlxyXG4gICAgICAoY2xpY2spPVwib25DbG9zZSgpXCJcclxuICAgID5cclxuICAgICAgPGkgY2xhc3M9XCJmYS1zb2xpZCBmYS14bWFya1wiPjwvaT5cclxuICAgIDwvYnV0dG9uPlxyXG4gIDwvZGl2PlxyXG4gIDxociBjbGFzcz1cImllZWVzYS1wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZ19fZGl2aWRlclwiIC8+XHJcbiAgPGRpdiBjbGFzcz1cImllZWVzYS1wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZ19fYm9keVwiPlxyXG4gICAge3sgZGF0YS5ib2R5VGV4dCB9fVxyXG4gIDwvZGl2PlxyXG4gIDxociBjbGFzcz1cImllZWVzYS1wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZ19fZGl2aWRlclwiIC8+XHJcbiAgPGRpdiBjbGFzcz1cImllZWVzYS1wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZ19fZm9vdGVyXCI+XHJcbiAgICA8YnV0dG9uXHJcbiAgICAgIG1hdC1idXR0b25cclxuICAgICAgY2xhc3M9XCJtYXQtdGVydGlhcnktYnV0dG9uIGllZWVzYS1wb2xpY3ktY29uZmlybWF0aW9uLWRpYWxvZ19fYnRuLWNhbmNlbFwiXHJcbiAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwiZGF0YS5jYW5jZWxMYWJlbFwiXHJcbiAgICAgIChjbGljayk9XCJvbkNhbmNlbCgpXCJcclxuICAgID5cclxuICAgICAge3sgZGF0YS5jYW5jZWxMYWJlbCB9fVxyXG4gICAgPC9idXR0b24+XHJcbiAgICA8YnV0dG9uXHJcbiAgICAgIG1hdC1idXR0b25cclxuICAgICAgY2xhc3M9XCJtYXQtcHJpbWFyeS1idXR0b24gaWVlZXNhLXBvbGljeS1jb25maXJtYXRpb24tZGlhbG9nX19idG4tY29uZmlybVwiXHJcbiAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwiZGF0YS5jb25maXJtTGFiZWxcIlxyXG4gICAgICAoY2xpY2spPVwib25Db25maXJtKClcIlxyXG4gICAgPlxyXG4gICAgICB7eyBkYXRhLmNvbmZpcm1MYWJlbCB9fVxyXG4gICAgPC9idXR0b24+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
|