@everymatrix/stage-mm-verification-report 1.0.12 → 1.0.14
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/{chunk-WBKHZ3PI.js → chunk-S6DMBQOC.js} +43 -6
- package/chunk-S6DMBQOC.js.map +1 -0
- package/{chunk-QOVMFFNP.js → chunk-UDHA2F3U.js} +2 -2
- package/index.html +1 -1
- package/main.js +47 -21
- package/main.js.map +1 -1
- package/package.json +1 -1
- package/chunk-WBKHZ3PI.js.map +0 -1
- /package/{chunk-QOVMFFNP.js.map → chunk-UDHA2F3U.js.map} +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DeleteTemplateModalComponent
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-S6DMBQOC.js";
|
|
4
4
|
import "./chunk-ASC7H5NM.js";
|
|
5
5
|
import "./chunk-G3EGCVBN.js";
|
|
6
6
|
export {
|
|
7
7
|
DeleteTemplateModalComponent
|
|
8
8
|
};
|
|
9
|
-
//# sourceMappingURL=chunk-
|
|
9
|
+
//# sourceMappingURL=chunk-UDHA2F3U.js.map
|
package/index.html
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
<link rel="stylesheet" href="styles.css"></head>
|
|
9
9
|
<body>
|
|
10
10
|
<everymatrix-mm-verification-report></everymatrix-mm-verification-report>
|
|
11
|
-
<link rel="modulepreload" href="chunk-
|
|
11
|
+
<link rel="modulepreload" href="chunk-S6DMBQOC.js"><link rel="modulepreload" href="chunk-ASC7H5NM.js"><link rel="modulepreload" href="chunk-G3EGCVBN.js"><script src="polyfills.js" type="module"></script><script src="main.js" type="module"></script></body>
|
|
12
12
|
</html>
|
package/main.js
CHANGED
|
@@ -17,6 +17,7 @@ import {
|
|
|
17
17
|
ShadowDomStyleInjectorService,
|
|
18
18
|
TIME_OPTIONS,
|
|
19
19
|
TemplateService,
|
|
20
|
+
TracingInfoService,
|
|
20
21
|
UiGridCommonService,
|
|
21
22
|
VerificationRequestBodyStrategy,
|
|
22
23
|
appConfig,
|
|
@@ -29,7 +30,7 @@ import {
|
|
|
29
30
|
provideHttpClient,
|
|
30
31
|
require_moment,
|
|
31
32
|
withInterceptors
|
|
32
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-S6DMBQOC.js";
|
|
33
34
|
import {
|
|
34
35
|
$dt,
|
|
35
36
|
AutoFocus,
|
|
@@ -155,6 +156,7 @@ import {
|
|
|
155
156
|
ViewChild,
|
|
156
157
|
ViewContainerRef,
|
|
157
158
|
ViewEncapsulation,
|
|
159
|
+
__async,
|
|
158
160
|
__spreadProps,
|
|
159
161
|
__spreadValues,
|
|
160
162
|
__toESM,
|
|
@@ -169,6 +171,7 @@ import {
|
|
|
169
171
|
computed,
|
|
170
172
|
effect,
|
|
171
173
|
filter,
|
|
174
|
+
firstValueFrom,
|
|
172
175
|
forkJoin,
|
|
173
176
|
forwardRef,
|
|
174
177
|
from,
|
|
@@ -36380,14 +36383,16 @@ var DmSelectLibComponent = class _DmSelectLibComponent {
|
|
|
36380
36383
|
var VerificationService = class _VerificationService {
|
|
36381
36384
|
apiHandlerService;
|
|
36382
36385
|
sessionService;
|
|
36386
|
+
apiTracingInfo;
|
|
36383
36387
|
verificationRequestBodyStrategy;
|
|
36384
36388
|
httpClient;
|
|
36385
36389
|
initDataSubject = new BehaviorSubject(null);
|
|
36386
36390
|
initData$ = this.initDataSubject.asObservable();
|
|
36387
36391
|
sessionData;
|
|
36388
|
-
constructor(apiHandlerService, sessionService, verificationRequestBodyStrategy, httpClient) {
|
|
36392
|
+
constructor(apiHandlerService, sessionService, apiTracingInfo, verificationRequestBodyStrategy, httpClient) {
|
|
36389
36393
|
this.apiHandlerService = apiHandlerService;
|
|
36390
36394
|
this.sessionService = sessionService;
|
|
36395
|
+
this.apiTracingInfo = apiTracingInfo;
|
|
36391
36396
|
this.verificationRequestBodyStrategy = verificationRequestBodyStrategy;
|
|
36392
36397
|
this.httpClient = httpClient;
|
|
36393
36398
|
this.sessionData = this.sessionService.sessionData;
|
|
@@ -36397,8 +36402,7 @@ var VerificationService = class _VerificationService {
|
|
|
36397
36402
|
}
|
|
36398
36403
|
runReport(config) {
|
|
36399
36404
|
const url = this.apiHandlerService.getACSBaseUrl("mm_verification_report");
|
|
36400
|
-
|
|
36401
|
-
return this.apiHandlerService.Post(url, { p_report_params: body }).pipe(map((data) => {
|
|
36405
|
+
return from(this.getTracingInfo()).pipe(switchMap((tracingInfo) => this.apiHandlerService.Post(url, { p_report_params: this.verificationRequestBodyStrategy.buildRequestBody(config, tracingInfo) }).pipe(map((data) => {
|
|
36402
36406
|
if (!data) {
|
|
36403
36407
|
throw new Error("Server returned empty response");
|
|
36404
36408
|
}
|
|
@@ -36406,7 +36410,16 @@ var VerificationService = class _VerificationService {
|
|
|
36406
36410
|
throw new Error(data.message || "Server responded with an error.");
|
|
36407
36411
|
}
|
|
36408
36412
|
return data.result;
|
|
36409
|
-
}));
|
|
36413
|
+
}))));
|
|
36414
|
+
}
|
|
36415
|
+
getTracingInfo() {
|
|
36416
|
+
return __async(this, null, function* () {
|
|
36417
|
+
try {
|
|
36418
|
+
return firstValueFrom(this.apiTracingInfo.tracingSubj);
|
|
36419
|
+
} catch (e) {
|
|
36420
|
+
return {};
|
|
36421
|
+
}
|
|
36422
|
+
});
|
|
36410
36423
|
}
|
|
36411
36424
|
getLookups() {
|
|
36412
36425
|
const url = this.apiHandlerService.getACSBaseUrl("rep_mm_report_params_lookup_bq", "ce");
|
|
@@ -36462,7 +36475,7 @@ var VerificationService = class _VerificationService {
|
|
|
36462
36475
|
}, { responseType: "text" });
|
|
36463
36476
|
}
|
|
36464
36477
|
static \u0275fac = function VerificationService_Factory(__ngFactoryType__) {
|
|
36465
|
-
return new (__ngFactoryType__ || _VerificationService)(\u0275\u0275inject(ApiHandlerService), \u0275\u0275inject(SessionService), \u0275\u0275inject(VerificationRequestBodyStrategy), \u0275\u0275inject(HttpClient));
|
|
36478
|
+
return new (__ngFactoryType__ || _VerificationService)(\u0275\u0275inject(ApiHandlerService), \u0275\u0275inject(SessionService), \u0275\u0275inject(TracingInfoService), \u0275\u0275inject(VerificationRequestBodyStrategy), \u0275\u0275inject(HttpClient));
|
|
36466
36479
|
};
|
|
36467
36480
|
static \u0275prov = /* @__PURE__ */ \u0275\u0275defineInjectable({ token: _VerificationService, factory: _VerificationService.\u0275fac, providedIn: "root" });
|
|
36468
36481
|
};
|
|
@@ -36472,7 +36485,7 @@ var VerificationService = class _VerificationService {
|
|
|
36472
36485
|
args: [{
|
|
36473
36486
|
providedIn: "root"
|
|
36474
36487
|
}]
|
|
36475
|
-
}], () => [{ type: ApiHandlerService }, { type: SessionService }, { type: VerificationRequestBodyStrategy }, { type: HttpClient }], null);
|
|
36488
|
+
}], () => [{ type: ApiHandlerService }, { type: SessionService }, { type: TracingInfoService }, { type: VerificationRequestBodyStrategy }, { type: HttpClient }], null);
|
|
36476
36489
|
})();
|
|
36477
36490
|
|
|
36478
36491
|
// node_modules/primeng/fesm2022/primeng-inputnumber.mjs
|
|
@@ -50309,7 +50322,7 @@ var DmDatePickerLibComponent = class _DmDatePickerLibComponent {
|
|
|
50309
50322
|
|
|
50310
50323
|
// libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts
|
|
50311
50324
|
var _forTrack04 = ($index, $item) => $item.dag_id;
|
|
50312
|
-
var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-
|
|
50325
|
+
var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-UDHA2F3U.js").then((m) => m.DeleteTemplateModalComponent)];
|
|
50313
50326
|
var _c025 = () => ({ width: "460px" });
|
|
50314
50327
|
var _c147 = () => ({ width: "20px", height: "20px" });
|
|
50315
50328
|
var _c229 = () => ({ "min-width": "720px" });
|
|
@@ -50732,6 +50745,7 @@ function SendSettingsModalComponent_Defer_2_Template(rf, ctx) {
|
|
|
50732
50745
|
var emailRegex = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|.(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
|
50733
50746
|
var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
50734
50747
|
fb;
|
|
50748
|
+
apiTracingInfo;
|
|
50735
50749
|
visible = model(false);
|
|
50736
50750
|
showDeleteConfirmation = model(false);
|
|
50737
50751
|
schedulesLoading = signal(false);
|
|
@@ -50769,8 +50783,9 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
|
50769
50783
|
currentReport;
|
|
50770
50784
|
mailTo = "";
|
|
50771
50785
|
scheduleId = "";
|
|
50772
|
-
constructor(fb) {
|
|
50786
|
+
constructor(fb, apiTracingInfo) {
|
|
50773
50787
|
this.fb = fb;
|
|
50788
|
+
this.apiTracingInfo = apiTracingInfo;
|
|
50774
50789
|
effect(() => {
|
|
50775
50790
|
const template = this.selectedTemplate();
|
|
50776
50791
|
if (template?.domain_id) {
|
|
@@ -51025,8 +51040,10 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
|
51025
51040
|
});
|
|
51026
51041
|
}
|
|
51027
51042
|
triggerAirFlow() {
|
|
51028
|
-
|
|
51029
|
-
|
|
51043
|
+
return from(this.getTracingInfo()).pipe(switchMap((tracingInfo) => {
|
|
51044
|
+
const request = this.sendingService.getRequestParamsToAirflow(this.selectedTemplate(), this.radioButtonControl.value === "once" ? this.onceForm.value : this.recurringForm.value, this.getReportBodyModel(tracingInfo));
|
|
51045
|
+
return this.sendingService.triggerAirflowJob(this.selectedTemplate(), request.p_report_params, this.radioButtonControl.value === "once");
|
|
51046
|
+
}));
|
|
51030
51047
|
}
|
|
51031
51048
|
saveSchedule() {
|
|
51032
51049
|
const scheduleInterval = {
|
|
@@ -51036,13 +51053,13 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
|
51036
51053
|
timeHours: this.recurringForm.value.time || TIME_OPTIONS[0].lookup_key
|
|
51037
51054
|
};
|
|
51038
51055
|
this.loading.set(true);
|
|
51039
|
-
this.sendingService.saveReportSchedule(this.selectedTemplate(), this.recurringForm.value, this.getReportBodyModel(), scheduleInterval, this.currentSchedule).pipe(switchMap((x) => {
|
|
51056
|
+
from(this.getTracingInfo()).pipe(switchMap((tracingInfo) => this.sendingService.saveReportSchedule(this.selectedTemplate(), this.recurringForm.value, this.getReportBodyModel(tracingInfo), scheduleInterval, this.currentSchedule).pipe(switchMap((x) => {
|
|
51040
51057
|
const saveTemplate$ = this.saveTemplate().pipe(take(1), tap((template) => {
|
|
51041
51058
|
this.templateService.templatesList.update((templates) => templates.map((item) => item.template_id === template.template_id ? template : item));
|
|
51042
51059
|
}));
|
|
51043
51060
|
const triggerAirflow$ = this.triggerAirFlow().pipe(take(1));
|
|
51044
51061
|
return forkJoin([saveTemplate$, triggerAirflow$]);
|
|
51045
|
-
}), take(1)).subscribe({
|
|
51062
|
+
}), take(1)))).subscribe({
|
|
51046
51063
|
next: () => {
|
|
51047
51064
|
this.loading.set(false);
|
|
51048
51065
|
this.visible.set(false);
|
|
@@ -51070,7 +51087,7 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
|
51070
51087
|
newSending() {
|
|
51071
51088
|
this.settingForms.set(true);
|
|
51072
51089
|
}
|
|
51073
|
-
getReportBodyModel() {
|
|
51090
|
+
getReportBodyModel(tracingInfo) {
|
|
51074
51091
|
if (this.currentReport.reportId === 100) {
|
|
51075
51092
|
const config = {
|
|
51076
51093
|
offset: null,
|
|
@@ -51082,13 +51099,22 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
|
51082
51099
|
sorting: { field: null, value: null },
|
|
51083
51100
|
template: this.selectedTemplate()
|
|
51084
51101
|
};
|
|
51085
|
-
return this.reportStrategyFactory.getStrategy(this.currentReport.reportKey).buildRequestBody(config);
|
|
51102
|
+
return this.reportStrategyFactory.getStrategy(this.currentReport.reportKey).buildRequestBody(config, tracingInfo);
|
|
51086
51103
|
} else {
|
|
51087
51104
|
return {};
|
|
51088
51105
|
}
|
|
51089
51106
|
}
|
|
51107
|
+
getTracingInfo() {
|
|
51108
|
+
return __async(this, null, function* () {
|
|
51109
|
+
try {
|
|
51110
|
+
return firstValueFrom(this.apiTracingInfo.tracingSubj);
|
|
51111
|
+
} catch (e) {
|
|
51112
|
+
return {};
|
|
51113
|
+
}
|
|
51114
|
+
});
|
|
51115
|
+
}
|
|
51090
51116
|
static \u0275fac = function SendSettingsModalComponent_Factory(__ngFactoryType__) {
|
|
51091
|
-
return new (__ngFactoryType__ || _SendSettingsModalComponent)(\u0275\u0275directiveInject(FormBuilder));
|
|
51117
|
+
return new (__ngFactoryType__ || _SendSettingsModalComponent)(\u0275\u0275directiveInject(FormBuilder), \u0275\u0275directiveInject(TracingInfoService));
|
|
51092
51118
|
};
|
|
51093
51119
|
static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _SendSettingsModalComponent, selectors: [["lib-send-settings-modal"]], inputs: { visible: [1, "visible"], showDeleteConfirmation: [1, "showDeleteConfirmation"], selectedTemplate: [1, "selectedTemplate"] }, outputs: { visible: "visibleChange", showDeleteConfirmation: "showDeleteConfirmationChange" }, decls: 5, vars: 2, consts: [["header", "Send Settings", 3, "visible", "modal", "style"], ["header", "Send Report", 3, "visible", "modal", "style"], ["header", "Send Settings", 3, "visibleChange", "onShow", "visible", "modal"], [1, "radio-buttons-container"], [1, "radio-button"], ["value", "once", "inputId", "sendOnce", 3, "formControl"], ["for", "sendOnce", 1, "radio-button-label"], ["value", "recurring", "inputId", "recurring", 3, "formControl"], ["for", "recurring", 1, "radio-button-label"], [1, "form-container", 3, "formGroup"], [1, "modal-footer"], ["text", "Cancel", "size", "medium", "variant", "secondary-outlined", 3, "outsideClickEmitter"], ["text", "Send Now", "size", "medium", "variant", "primary-filled", 3, "disabled"], ["text", "Save Schedule", "size", "medium", "variant", "primary-filled", 3, "disabled"], ["label", "Destination", "placeholder", "Destination", "optionLabel", "lookup_value", "optionValue", "lookup_key", "formControlName", "destination", 3, "options", "filter"], ["label", "Email", "placeholder", "Email", 3, "control", "hint", "errorMessage"], ["label", "Email Subject", "placeholder", "Email Subject", 3, "control"], ["label", "Email CC", "placeholder", "Email CC", 3, "control", "hint", "errorMessage"], ["label", "Email BCC", "placeholder", "Email BCC", 3, "control", "hint", "errorMessage"], ["label", "Connection Id", "placeholder", "Connection Id", 3, "control"], ["label", "Folder Name", "placeholder", "Folder Name", 3, "control"], ["label", "File Name", "placeholder", "File Name", 3, "control", "hint", "permanentHint"], ["label", "Date Time Format", "formControlName", "dateTimeFormat", "optionLabel", "lookup_value", "optionValue", "lookup_key", 3, "options", "filter", "hint", "permanentHint"], ["label", "Name", "placeholder", "Name", 3, "control"], ["label", "Destination", "placeholder", "Destination", "optionLabel", "lookup_value", "optionValue", "lookup_key", "formControlName", "destination", 3, "options", "isMultiSelect", "filter"], ["label", "Expiration Date", "formControlName", "expirationDate"], ["label", "Schedule", "placeholder", "Schedule", "optionLabel", "lookup_value", "optionValue", "lookup_key", "formControlName", "schedule", 3, "options", "filter", "isMultiSelect"], ["label", "Day of Week", "placeholder", "Day Of Week", "optionLabel", "lookup_value", "optionValue", "lookup_key", "formControlName", "dayOfWeek", 3, "options", "filter", "isMultiSelect"], ["label", "Day of Month", "placeholder", "Day of Month", "optionLabel", "lookup_value", "optionValue", "lookup_key", "formControlName", "dayOfMonth", 3, "options", "filter", "isMultiSelect"], ["label", "Time (UTC)", "optionLabel", "lookup_value", "optionValue", "lookup_key", "formControlName", "time", 3, "options", "filter", "isMultiSelect"], ["text", "Send Now", "size", "medium", "variant", "primary-filled", 3, "outsideClickEmitter", "disabled"], ["icon-left", "", 1, "dm-button-icon"], ["xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M16.1126 5.06654L9.72433 11.4548L11.6686 16.4544L16.1126 5.06654ZM8.54582 10.2763L14.9341 3.88803L3.5463 8.33205L8.54582 10.2763ZM17.2069 1.22851C17.3596 1.18417 17.6666 1.10449 17.9965 1.21467C18.3691 1.33915 18.6615 1.63157 18.786 2.00419C18.8962 2.334 18.8165 2.64105 18.7721 2.7937C18.7238 2.96006 18.6464 3.15833 18.5687 3.35725L13.0542 17.4882C12.9675 17.7106 12.8835 17.9259 12.8013 18.0921C12.7303 18.2358 12.5722 18.541 12.2442 18.7115C11.8825 18.8994 11.4518 18.8991 11.0903 18.7108C10.7625 18.54 10.6048 18.2345 10.534 18.0908C10.452 17.9245 10.3682 17.709 10.2818 17.4866L8.1068 11.8938L2.54348 9.73033C2.53368 9.72652 2.52388 9.72271 2.5141 9.71891C2.29163 9.63242 2.07618 9.54867 1.90985 9.46667C1.76613 9.39582 1.46067 9.23811 1.28988 8.9103C1.10153 8.5488 1.10128 8.11818 1.2892 7.75646C1.4596 7.42845 1.76488 7.27038 1.90851 7.19936C2.07475 7.11717 2.2901 7.03316 2.51247 6.94642C2.52225 6.9426 2.53204 6.93878 2.54184 6.93496L16.6434 1.43191C16.8423 1.35425 17.0406 1.27683 17.2069 1.22851Z", "fill", "white"], ["strokeWidth", "6"], ["text", "Save Schedule", "size", "medium", "variant", "primary-filled", 3, "outsideClickEmitter", "disabled"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M12.8369 3.35628C12.7633 3.33861 12.6754 3.33326 12.2281 3.33326H6.66602V5.33326C6.66602 5.58036 6.66666 5.71557 6.6746 5.81273C6.67492 5.8166 6.67524 5.82026 6.67556 5.82371C6.67902 5.82403 6.68268 5.82435 6.68654 5.82467C6.7837 5.83261 6.91891 5.83326 7.16602 5.83326H12.8327C13.0798 5.83326 13.215 5.83261 13.3122 5.82467C13.316 5.82435 13.3197 5.82403 13.3231 5.82372C13.3235 5.82026 13.3238 5.8166 13.3241 5.81273C13.332 5.71557 13.3327 5.58036 13.3327 5.33326V3.67996C13.1758 3.52635 13.1264 3.48587 13.0777 3.45606C13.0032 3.41036 12.9219 3.37669 12.8369 3.35628ZM14.7552 2.74389L14.703 2.69171C14.6865 2.67522 14.6701 2.65884 14.6539 2.6426C14.4144 2.40261 14.2032 2.19102 13.9486 2.03499C13.7249 1.89792 13.481 1.79691 13.2259 1.73566C12.9356 1.66595 12.6366 1.66623 12.2975 1.66655C12.2746 1.66657 12.2514 1.66659 12.2281 1.66659L6.46493 1.66659C6.25739 1.66659 6.06106 1.66658 5.87552 1.66767C5.86133 1.66695 5.84705 1.66659 5.83268 1.66659C5.81429 1.66659 5.79604 1.66718 5.77795 1.66836C5.40448 1.67146 5.07624 1.67999 4.78949 1.70342C4.32108 1.74169 3.89049 1.82382 3.48605 2.0299C2.85884 2.34948 2.34891 2.85941 2.02933 3.48662C1.82325 3.89107 1.74112 4.32165 1.70284 4.79007C1.666 5.24106 1.66601 5.7947 1.66602 6.46551V13.5343C1.66601 14.2051 1.666 14.7588 1.70284 15.2098C1.74112 15.6782 1.82325 16.1088 2.02933 16.5132C2.34891 17.1404 2.85884 17.6504 3.48605 17.9699C3.89049 18.176 4.32108 18.2582 4.78949 18.2964C5.07624 18.3199 5.40448 18.3284 5.77794 18.3315C5.79604 18.3327 5.81429 18.3333 5.83268 18.3333C5.84705 18.3333 5.86133 18.3329 5.87552 18.3322C6.06105 18.3333 6.25737 18.3333 6.46491 18.3333H13.5338C13.7413 18.3333 13.9376 18.3333 14.1232 18.3322C14.1374 18.3329 14.1516 18.3333 14.166 18.3333C14.1844 18.3333 14.2027 18.3327 14.2208 18.3315C14.5942 18.3284 14.9225 18.3199 15.2092 18.2964C15.6776 18.2582 16.1082 18.176 16.5127 17.9699C17.1399 17.6504 17.6498 17.1404 17.9694 16.5132C18.1754 16.1088 18.2576 15.6782 18.2959 15.2098C18.3327 14.7588 18.3327 14.2052 18.3327 13.5344V7.77116C18.3327 7.74782 18.3327 7.72468 18.3327 7.70173C18.333 7.36265 18.3333 7.0637 18.2636 6.77333C18.2024 6.51824 18.1014 6.27438 17.9643 6.0507C17.8083 5.79608 17.5967 5.58489 17.3567 5.34535C17.3404 5.32913 17.3241 5.31278 17.3076 5.29629L14.7552 2.74389C14.7552 2.74396 14.7551 2.74382 14.7552 2.74389ZM14.9994 5.3451V5.35982C14.9994 5.57015 14.9994 5.77498 14.9852 5.94845C14.9697 6.13894 14.9329 6.36372 14.8177 6.58991C14.6579 6.90351 14.4029 7.15848 14.0893 7.31827C13.8631 7.43351 13.6384 7.47024 13.4479 7.4858C13.2744 7.49997 13.0696 7.49995 12.8593 7.49992L7.16602 7.49992C7.15715 7.49992 7.14829 7.49992 7.13944 7.49992C6.92912 7.49995 6.72429 7.49997 6.55082 7.4858C6.36033 7.47024 6.13555 7.43351 5.90937 7.31827C5.59576 7.15848 5.34079 6.90351 5.18101 6.58991C5.06576 6.36372 5.02903 6.13894 5.01347 5.94845C4.9993 5.77498 4.99932 5.57016 4.99935 5.35984C4.99935 5.35099 4.99935 5.34212 4.99935 5.33326V3.35897C4.97416 3.36071 4.94946 3.36257 4.92521 3.36455C4.55987 3.3944 4.37303 3.4485 4.2427 3.51491C3.9291 3.6747 3.67413 3.92967 3.51434 4.24327C3.44793 4.3736 3.39383 4.56044 3.36398 4.92579C3.33333 5.30086 3.33268 5.78611 3.33268 6.49992V13.4999C3.33268 14.2137 3.33333 14.699 3.36398 15.0741C3.39383 15.4394 3.44793 15.6262 3.51434 15.7566C3.67413 16.0702 3.9291 16.3251 4.2427 16.4849C4.37303 16.5513 4.55987 16.6054 4.92521 16.6353C4.94946 16.6373 4.97416 16.6391 4.99935 16.6409L4.99935 12.14C4.99932 11.9297 4.9993 11.7249 5.01347 11.5514C5.02903 11.3609 5.06576 11.1361 5.18101 10.9099C5.34079 10.5963 5.59576 10.3414 5.90937 10.1816C6.13555 10.0663 6.36033 10.0296 6.55082 10.014C6.72429 9.99987 6.92912 9.9999 7.13945 9.99992H12.8593C13.0696 9.9999 13.2744 9.99987 13.4479 10.014C13.6384 10.0296 13.8631 10.0663 14.0893 10.1816C14.4029 10.3414 14.6579 10.5963 14.8177 10.9099C14.9329 11.1361 14.9697 11.3609 14.9852 11.5514C14.9994 11.7249 14.9994 11.9297 14.9994 12.14L14.9993 16.6409C15.0245 16.6391 15.0492 16.6373 15.0735 16.6353C15.4388 16.6054 15.6257 16.5513 15.756 16.4849C16.0696 16.3251 16.3246 16.0702 16.4844 15.7566C16.5508 15.6262 16.6049 15.4394 16.6347 15.0741C16.6654 14.699 16.666 14.2137 16.666 13.4999V7.77116C16.666 7.32384 16.6607 7.23601 16.643 7.16241C16.6226 7.07738 16.5889 6.99609 16.5432 6.92153C16.5037 6.85699 16.4453 6.7911 16.129 6.4748L14.9994 5.3451ZM13.3327 16.6666V12.1666C13.3327 11.9195 13.332 11.7843 13.3241 11.6871C13.3238 11.6832 13.3235 11.6796 13.3231 11.6761C13.3197 11.6758 13.316 11.6755 13.3122 11.6752C13.215 11.6672 13.0798 11.6666 12.8327 11.6666H7.16602C6.91891 11.6666 6.7837 11.6672 6.68654 11.6752C6.68268 11.6755 6.67902 11.6758 6.67556 11.6761C6.67524 11.6796 6.67492 11.6832 6.6746 11.6871C6.66666 11.7843 6.66602 11.9195 6.66602 12.1666V16.6666H13.3327Z", "fill", "white"], ["header", "Send Report", 3, "visibleChange", "visible", "modal"], [1, "schedule-list-container"], [1, "loading-state"], ["text", "New Sending", "size", "medium", "variant", "primary-filled", 3, "outsideClickEmitter"], ["icon-left", "", 1, "dm-button-icon", 3, "ngStyle"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M10.0007 3.33331C10.4609 3.33331 10.834 3.70641 10.834 4.16665V9.16665H15.834C16.2942 9.16665 16.6673 9.53974 16.6673 9.99998C16.6673 10.4602 16.2942 10.8333 15.834 10.8333H10.834V15.8333C10.834 16.2936 10.4609 16.6666 10.0007 16.6666C9.54041 16.6666 9.16732 16.2936 9.16732 15.8333V10.8333H4.16732C3.70708 10.8333 3.33398 10.4602 3.33398 9.99998C3.33398 9.53974 3.70708 9.16665 4.16732 9.16665H9.16732V4.16665C9.16732 3.70641 9.54041 3.33331 10.0007 3.33331Z", "fill", "white"], [1, "list-table"], [3, "ngStyle"], [1, "cell-actions", 3, "ngStyle"], [1, "cell-icon", 3, "click"], ["xmlns", "http://www.w3.org/2000/svg", "width", "16", "height", "16", "viewBox", "0 0 16 16", "fill", "none"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M10.862 1.52861C11.8587 0.531884 13.4747 0.531886 14.4714 1.52861C15.4682 2.52534 15.4682 4.14136 14.4714 5.13809L12.4732 7.13634C12.4726 7.13692 12.472 7.13751 12.4714 7.13809C12.4708 7.13867 12.4703 7.13926 12.4697 7.13984L5.66723 13.9423C5.65605 13.9534 5.64498 13.9645 5.63399 13.9755C5.47073 14.1391 5.32671 14.2833 5.1556 14.3961C5.00516 14.4954 4.842 14.5738 4.67056 14.6293C4.47555 14.6924 4.27295 14.7147 4.04326 14.7401C4.02781 14.7418 4.01224 14.7435 3.99654 14.7452L1.74029 14.9959C1.53901 15.0183 1.33847 14.948 1.19527 14.8048C1.05206 14.6616 0.981717 14.461 1.00408 14.2597L1.25478 12.0035C1.25652 11.9878 1.25824 11.9722 1.25994 11.9567C1.28528 11.7271 1.30763 11.5245 1.37075 11.3295C1.42626 11.158 1.50467 10.9949 1.60388 10.8444C1.71671 10.6733 1.86096 10.5293 2.02449 10.366C2.03549 10.355 2.04658 10.344 2.05775 10.3328L10.862 1.52861ZM9.33335 4.94283L3.00056 11.2756C2.78556 11.4906 2.74564 11.535 2.71698 11.5784C2.68391 11.6286 2.65777 11.683 2.63927 11.7401C2.62324 11.7896 2.61353 11.8485 2.57995 12.1507L2.42129 13.5787L3.8493 13.4201C4.15149 13.3865 4.21037 13.3768 4.25991 13.3608C4.31706 13.3422 4.37144 13.3161 4.42159 13.283C4.46505 13.2544 4.50941 13.2145 4.72442 12.9995L11.0572 6.66668L9.33335 4.94283ZM12 5.72387L10.2762 4.00002L11.8048 2.47142C12.2808 1.99539 13.0526 1.99539 13.5286 2.47142C14.0046 2.94745 14.0046 3.71925 13.5286 4.19528L12 5.72387Z", "fill", "#5D6983"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M7.44162 0.666688H8.55968C8.91111 0.666676 9.21429 0.666665 9.464 0.687068C9.72757 0.708602 9.98971 0.756146 10.242 0.884675C10.6183 1.07642 10.9243 1.38238 11.116 1.75871C11.2445 2.01096 11.2921 2.27311 11.3136 2.53667C11.3319 2.76052 11.3338 3.02733 11.334 3.33336H14.0007C14.3688 3.33336 14.6673 3.63183 14.6673 4.00002C14.6673 4.36821 14.3688 4.66669 14.0007 4.66669H13.334V11.4942C13.334 12.0309 13.334 12.4738 13.3045 12.8346C13.2739 13.2093 13.2082 13.5538 13.0433 13.8773C12.7877 14.3791 12.3797 14.787 11.878 15.0427C11.5544 15.2076 11.2099 15.2733 10.8352 15.3039C10.4744 15.3334 10.0315 15.3334 9.49487 15.3334H6.50644C5.9698 15.3334 5.52689 15.3334 5.1661 15.3039C4.79137 15.2733 4.4469 15.2076 4.12334 15.0427C3.62158 14.787 3.21363 14.3791 2.95797 13.8773C2.79311 13.5538 2.7274 13.2093 2.69678 12.8346C2.6673 12.4738 2.66731 12.0309 2.66732 11.4942L2.66732 4.66669H2.00065C1.63246 4.66669 1.33398 4.36821 1.33398 4.00002C1.33398 3.63183 1.63246 3.33336 2.00065 3.33336H4.66734C4.66752 3.02733 4.66941 2.76052 4.6877 2.53667C4.70923 2.27311 4.75678 2.01096 4.8853 1.75871C5.07705 1.38238 5.38301 1.07642 5.75934 0.884675C6.01159 0.756146 6.27374 0.708602 6.5373 0.687068C6.78701 0.666665 7.09019 0.666676 7.44162 0.666688ZM4.00065 4.66669V11.4667C4.00065 12.0377 4.00117 12.4259 4.02569 12.726C4.04957 13.0183 4.09285 13.1677 4.14598 13.272C4.27381 13.5229 4.47778 13.7269 4.72866 13.8547C4.83293 13.9078 4.9824 13.9511 5.27468 13.975C5.57474 13.9995 5.96293 14 6.53398 14H9.46732C10.0384 14 10.4266 13.9995 10.7266 13.975C11.0189 13.9511 11.1684 13.9078 11.2726 13.8547C11.5235 13.7269 11.7275 13.5229 11.8553 13.272C11.9085 13.1677 11.9517 13.0183 11.9756 12.726C12.0001 12.4259 12.0007 12.0377 12.0007 11.4667V4.66669H4.00065ZM10.0006 3.33336H6.0007C6.00099 3.02329 6.00303 2.81134 6.0166 2.64525C6.0314 2.46414 6.05652 2.39699 6.07331 2.36403C6.13723 2.23859 6.23922 2.1366 6.36466 2.07268C6.39762 2.05589 6.46477 2.03077 6.64588 2.01597C6.83477 2.00054 7.08295 2.00002 7.46732 2.00002H8.53398C8.91835 2.00002 9.16654 2.00054 9.35543 2.01597C9.53654 2.03077 9.60368 2.05589 9.63664 2.07268C9.76209 2.1366 9.86407 2.23859 9.92799 2.36403C9.94478 2.39699 9.9699 2.46414 9.9847 2.64525C9.99827 2.81134 10.0003 3.02329 10.0006 3.33336ZM6.66732 7.00002C7.03551 7.00002 7.33398 7.2985 7.33398 7.66669V11C7.33398 11.3682 7.03551 11.6667 6.66732 11.6667C6.29913 11.6667 6.00065 11.3682 6.00065 11V7.66669C6.00065 7.2985 6.29913 7.00002 6.66732 7.00002ZM9.33398 7.00002C9.70217 7.00002 10.0007 7.2985 10.0007 7.66669V11C10.0007 11.3682 9.70217 11.6667 9.33398 11.6667C8.96579 11.6667 8.66732 11.3682 8.66732 11V7.66669C8.66732 7.2985 8.96579 7.00002 9.33398 7.00002Z", "fill", "#5D6983"], ["title", "Delete Schedule", "description", "If the schedule is deleted, you will no longer receive reports.\nAre you sure you want to delete the schedule?", 3, "loadingChange", "visibleChange", "confirm", "loading", "visible"]], template: function SendSettingsModalComponent_Template(rf, ctx) {
|
|
51094
51120
|
if (rf & 1) {
|
|
@@ -51123,7 +51149,7 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
|
51123
51149
|
], styles: ['\n\n*[_ngcontent-%COMP%], \n[_ngcontent-%COMP%]::before, \n[_ngcontent-%COMP%]::after {\n box-sizing: border-box;\n}\nhtml[_ngcontent-%COMP%] {\n font-family:\n system-ui,\n "Segoe UI",\n Roboto,\n Helvetica,\n Arial,\n sans-serif,\n "Apple Color Emoji",\n "Segoe UI Emoji";\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n}\nbody[_ngcontent-%COMP%] {\n margin: 0;\n}\nb[_ngcontent-%COMP%], \nstrong[_ngcontent-%COMP%] {\n font-weight: bolder;\n}\ncode[_ngcontent-%COMP%], \nkbd[_ngcontent-%COMP%], \nsamp[_ngcontent-%COMP%], \npre[_ngcontent-%COMP%] {\n font-family:\n ui-monospace,\n SFMono-Regular,\n Consolas,\n "Liberation Mono",\n Menlo,\n monospace;\n font-size: 1em;\n}\nsmall[_ngcontent-%COMP%] {\n font-size: 80%;\n}\nsub[_ngcontent-%COMP%], \nsup[_ngcontent-%COMP%] {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsub[_ngcontent-%COMP%] {\n bottom: -0.25em;\n}\nsup[_ngcontent-%COMP%] {\n top: -0.5em;\n}\ntable[_ngcontent-%COMP%] {\n border-color: currentcolor;\n}\nbutton[_ngcontent-%COMP%], \ninput[_ngcontent-%COMP%], \noptgroup[_ngcontent-%COMP%], \nselect[_ngcontent-%COMP%], \ntextarea[_ngcontent-%COMP%] {\n font-family: inherit;\n font-size: 100%;\n line-height: 1.15;\n margin: 0;\n}\nbutton[_ngcontent-%COMP%], \n[type=button][_ngcontent-%COMP%], \n[type=reset][_ngcontent-%COMP%], \n[type=submit][_ngcontent-%COMP%] {\n -webkit-appearance: button;\n}\nlegend[_ngcontent-%COMP%] {\n padding: 0;\n}\nprogress[_ngcontent-%COMP%] {\n vertical-align: baseline;\n}\n[_ngcontent-%COMP%]::-webkit-inner-spin-button, \n[_ngcontent-%COMP%]::-webkit-outer-spin-button {\n height: auto;\n}\n[type=search][_ngcontent-%COMP%] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n}\n[_ngcontent-%COMP%]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n[_ngcontent-%COMP%]::-webkit-file-upload-button {\n -webkit-appearance: button;\n font: inherit;\n}\nsummary[_ngcontent-%COMP%] {\n display: list-item;\n}\n\n\n\n*[_ngcontent-%COMP%] {\n font-family:\n Inter,\n Arial,\n serif;\n caret-color: transparent !important;\n}\ninput[_ngcontent-%COMP%], \ntextarea[_ngcontent-%COMP%], \n[contenteditable=true][_ngcontent-%COMP%] {\n caret-color: auto !important;\n}\nbody[_ngcontent-%COMP%] {\n margin: 0;\n padding: 0;\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%] {\n margin: 0;\n padding: 0;\n}\n.input[_ngcontent-%COMP%]:focus-visible {\n box-shadow: 0px 0px 0px 4px rgba(0, 118, 221, 0.16) !important;\n}\n.form-control-container[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 4px;\n font-size: 14px;\n line-height: 18px;\n font-variant-numeric: lining-nums tabular-nums;\n font-weight: 400;\n cursor: pointer;\n position: relative;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-label[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 12px;\n font-style: normal;\n font-weight: 500;\n line-height: 18px;\n display: inline-flex;\n align-items: center;\n gap: 4px;\n position: relative;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-field[_ngcontent-%COMP%] {\n font-size: 14px;\n color: #252a34;\n font-weight: 400;\n line-height: 18px;\n font-style: normal;\n font-variant-numeric: lining-nums tabular-nums;\n width: 100%;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-error-message[_ngcontent-%COMP%] {\n font-size: 12px;\n color: #d6421e;\n margin-top: 2px;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-hint-message[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 12px;\n margin-top: 2px;\n}\n.radio-buttons-container[_ngcontent-%COMP%] {\n display: flex;\n gap: 40px;\n margin-bottom: 20px;\n}\n.radio-buttons-container[_ngcontent-%COMP%] .radio-button-label[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n margin-left: 5px;\n}\n.radio-buttons-container[_ngcontent-%COMP%] .radio-button[_ngcontent-%COMP%] {\n display: flex;\n align-items: baseline;\n}\n.radio-buttons-container[_ngcontent-%COMP%] .p-radiobutton-box[_ngcontent-%COMP%]:hover {\n background: #ebf4fc !important;\n}\n.form-container[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 12px;\n}\n.list-table[_ngcontent-%COMP%] {\n width: 100%;\n border-collapse: collapse;\n table-layout: auto;\n margin-top: 24px;\n}\n.list-table[_ngcontent-%COMP%] th[_ngcontent-%COMP%], \n.list-table[_ngcontent-%COMP%] td[_ngcontent-%COMP%] {\n padding: 11px 12px;\n font-size: 14px;\n font-weight: 400;\n text-align: left;\n border-bottom: 1px solid #edeff2;\n vertical-align: middle;\n height: 40px;\n min-width: 160px;\n max-width: 200px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.list-table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] {\n background: #f6f7f9;\n}\n.list-table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%] {\n font-weight: 600;\n font-size: 12px;\n color: #4a5469;\n}\n.list-table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:hover {\n background: #eaeef3;\n}\n.list-table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] .cell-actions[_ngcontent-%COMP%] {\n display: flex;\n gap: 16px;\n}\n.list-table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] .cell-icon[_ngcontent-%COMP%] {\n padding: 4px;\n width: 24px;\n height: 24px;\n cursor: pointer;\n}\n.list-table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] .cell-icon[_ngcontent-%COMP%]:hover {\n border-radius: 4px;\n background: rgba(93, 105, 131, 0.08);\n}\n.list-table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] .cell-icon[_ngcontent-%COMP%]:active {\n border-radius: 4px;\n background: rgba(93, 105, 131, 0.22);\n}\n.list-table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] .cell-icon[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] {\n width: 16px;\n height: 16px;\n}\n.modal-footer[_ngcontent-%COMP%] {\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n padding-top: 8px;\n margin-top: 24px;\n}\n.loading-state[_ngcontent-%COMP%] {\n display: flex;\n justify-content: center;\n}\n\n\n\n\n\n\n/*# sourceMappingURL=send-settings-modal.css.map */'], changeDetection: 0 });
|
|
51124
51150
|
};
|
|
51125
51151
|
(() => {
|
|
51126
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-
|
|
51152
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-UDHA2F3U.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
|
|
51127
51153
|
setClassMetadata(SendSettingsModalComponent, [{
|
|
51128
51154
|
type: Component,
|
|
51129
51155
|
args: [{ selector: "lib-send-settings-modal", standalone: true, imports: [
|
|
@@ -51552,16 +51578,16 @@ Are you sure you want to delete the schedule?"\r
|
|
|
51552
51578
|
></lib-delete-template-modal>\r
|
|
51553
51579
|
}\r
|
|
51554
51580
|
`, styles: ['/* node_modules/modern-normalize/modern-normalize.css */\n*,\n::before,\n::after {\n box-sizing: border-box;\n}\nhtml {\n font-family:\n system-ui,\n "Segoe UI",\n Roboto,\n Helvetica,\n Arial,\n sans-serif,\n "Apple Color Emoji",\n "Segoe UI Emoji";\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n}\nbody {\n margin: 0;\n}\nb,\nstrong {\n font-weight: bolder;\n}\ncode,\nkbd,\nsamp,\npre {\n font-family:\n ui-monospace,\n SFMono-Regular,\n Consolas,\n "Liberation Mono",\n Menlo,\n monospace;\n font-size: 1em;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsub {\n bottom: -0.25em;\n}\nsup {\n top: -0.5em;\n}\ntable {\n border-color: currentcolor;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit;\n font-size: 100%;\n line-height: 1.15;\n margin: 0;\n}\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nlegend {\n padding: 0;\n}\nprogress {\n vertical-align: baseline;\n}\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n height: auto;\n}\n[type=search] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n}\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n::-webkit-file-upload-button {\n -webkit-appearance: button;\n font: inherit;\n}\nsummary {\n display: list-item;\n}\n\n/* libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.scss */\n* {\n font-family:\n Inter,\n Arial,\n serif;\n caret-color: transparent !important;\n}\ninput,\ntextarea,\n[contenteditable=true] {\n caret-color: auto !important;\n}\nbody {\n margin: 0;\n padding: 0;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n padding: 0;\n}\n.input:focus-visible {\n box-shadow: 0px 0px 0px 4px rgba(0, 118, 221, 0.16) !important;\n}\n.form-control-container {\n display: flex;\n flex-direction: column;\n gap: 4px;\n font-size: 14px;\n line-height: 18px;\n font-variant-numeric: lining-nums tabular-nums;\n font-weight: 400;\n cursor: pointer;\n position: relative;\n}\n.form-control-container .form-control-label {\n color: #4a5469;\n font-size: 12px;\n font-style: normal;\n font-weight: 500;\n line-height: 18px;\n display: inline-flex;\n align-items: center;\n gap: 4px;\n position: relative;\n}\n.form-control-container .form-control-field {\n font-size: 14px;\n color: #252a34;\n font-weight: 400;\n line-height: 18px;\n font-style: normal;\n font-variant-numeric: lining-nums tabular-nums;\n width: 100%;\n}\n.form-control-container .form-control-error-message {\n font-size: 12px;\n color: #d6421e;\n margin-top: 2px;\n}\n.form-control-container .form-control-hint-message {\n color: #4a5469;\n font-size: 12px;\n margin-top: 2px;\n}\n.radio-buttons-container {\n display: flex;\n gap: 40px;\n margin-bottom: 20px;\n}\n.radio-buttons-container .radio-button-label {\n color: #4a5469;\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n margin-left: 5px;\n}\n.radio-buttons-container .radio-button {\n display: flex;\n align-items: baseline;\n}\n.radio-buttons-container .p-radiobutton-box:hover {\n background: #ebf4fc !important;\n}\n.form-container {\n display: flex;\n flex-direction: column;\n gap: 12px;\n}\n.list-table {\n width: 100%;\n border-collapse: collapse;\n table-layout: auto;\n margin-top: 24px;\n}\n.list-table th,\n.list-table td {\n padding: 11px 12px;\n font-size: 14px;\n font-weight: 400;\n text-align: left;\n border-bottom: 1px solid #edeff2;\n vertical-align: middle;\n height: 40px;\n min-width: 160px;\n max-width: 200px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.list-table thead {\n background: #f6f7f9;\n}\n.list-table thead th {\n font-weight: 600;\n font-size: 12px;\n color: #4a5469;\n}\n.list-table tbody tr:hover {\n background: #eaeef3;\n}\n.list-table tbody .cell-actions {\n display: flex;\n gap: 16px;\n}\n.list-table tbody .cell-icon {\n padding: 4px;\n width: 24px;\n height: 24px;\n cursor: pointer;\n}\n.list-table tbody .cell-icon:hover {\n border-radius: 4px;\n background: rgba(93, 105, 131, 0.08);\n}\n.list-table tbody .cell-icon:active {\n border-radius: 4px;\n background: rgba(93, 105, 131, 0.22);\n}\n.list-table tbody .cell-icon svg {\n width: 16px;\n height: 16px;\n}\n.modal-footer {\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n padding-top: 8px;\n margin-top: 24px;\n}\n.loading-state {\n display: flex;\n justify-content: center;\n}\n/*! Bundled license information:\n\nmodern-normalize/modern-normalize.css:\n (*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize *)\n*/\n/*# sourceMappingURL=send-settings-modal.css.map */\n'] }]
|
|
51555
|
-
}], () => [{ type: FormBuilder }], null);
|
|
51581
|
+
}], () => [{ type: FormBuilder }, { type: TracingInfoService }], null);
|
|
51556
51582
|
});
|
|
51557
51583
|
})();
|
|
51558
51584
|
(() => {
|
|
51559
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(SendSettingsModalComponent, { className: "SendSettingsModalComponent", filePath: "libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts", lineNumber:
|
|
51585
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(SendSettingsModalComponent, { className: "SendSettingsModalComponent", filePath: "libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts", lineNumber: 73 });
|
|
51560
51586
|
})();
|
|
51561
51587
|
|
|
51562
51588
|
// libs/shared/ui/components/src/lib/modals/template-select-modal/template-select-modal.ts
|
|
51563
51589
|
var _forTrack05 = ($index, $item) => $item.template_id;
|
|
51564
|
-
var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-
|
|
51590
|
+
var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-UDHA2F3U.js").then((m) => m.DeleteTemplateModalComponent)];
|
|
51565
51591
|
var _c026 = (a0) => ({ "selected-row": a0 });
|
|
51566
51592
|
var _c148 = () => ({ position: "relative" });
|
|
51567
51593
|
var _c230 = () => ({ width: "16px", height: "16px" });
|
|
@@ -52004,7 +52030,7 @@ var TemplateSelectModalComponent = class _TemplateSelectModalComponent {
|
|
|
52004
52030
|
], styles: ['\n\n*[_ngcontent-%COMP%], \n[_ngcontent-%COMP%]::before, \n[_ngcontent-%COMP%]::after {\n box-sizing: border-box;\n}\nhtml[_ngcontent-%COMP%] {\n font-family:\n system-ui,\n "Segoe UI",\n Roboto,\n Helvetica,\n Arial,\n sans-serif,\n "Apple Color Emoji",\n "Segoe UI Emoji";\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n}\nbody[_ngcontent-%COMP%] {\n margin: 0;\n}\nb[_ngcontent-%COMP%], \nstrong[_ngcontent-%COMP%] {\n font-weight: bolder;\n}\ncode[_ngcontent-%COMP%], \nkbd[_ngcontent-%COMP%], \nsamp[_ngcontent-%COMP%], \npre[_ngcontent-%COMP%] {\n font-family:\n ui-monospace,\n SFMono-Regular,\n Consolas,\n "Liberation Mono",\n Menlo,\n monospace;\n font-size: 1em;\n}\nsmall[_ngcontent-%COMP%] {\n font-size: 80%;\n}\nsub[_ngcontent-%COMP%], \nsup[_ngcontent-%COMP%] {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsub[_ngcontent-%COMP%] {\n bottom: -0.25em;\n}\nsup[_ngcontent-%COMP%] {\n top: -0.5em;\n}\ntable[_ngcontent-%COMP%] {\n border-color: currentcolor;\n}\nbutton[_ngcontent-%COMP%], \ninput[_ngcontent-%COMP%], \noptgroup[_ngcontent-%COMP%], \nselect[_ngcontent-%COMP%], \ntextarea[_ngcontent-%COMP%] {\n font-family: inherit;\n font-size: 100%;\n line-height: 1.15;\n margin: 0;\n}\nbutton[_ngcontent-%COMP%], \n[type=button][_ngcontent-%COMP%], \n[type=reset][_ngcontent-%COMP%], \n[type=submit][_ngcontent-%COMP%] {\n -webkit-appearance: button;\n}\nlegend[_ngcontent-%COMP%] {\n padding: 0;\n}\nprogress[_ngcontent-%COMP%] {\n vertical-align: baseline;\n}\n[_ngcontent-%COMP%]::-webkit-inner-spin-button, \n[_ngcontent-%COMP%]::-webkit-outer-spin-button {\n height: auto;\n}\n[type=search][_ngcontent-%COMP%] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n}\n[_ngcontent-%COMP%]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n[_ngcontent-%COMP%]::-webkit-file-upload-button {\n -webkit-appearance: button;\n font: inherit;\n}\nsummary[_ngcontent-%COMP%] {\n display: list-item;\n}\n\n\n\n*[_ngcontent-%COMP%] {\n font-family:\n Inter,\n Arial,\n serif;\n caret-color: transparent !important;\n}\ninput[_ngcontent-%COMP%], \ntextarea[_ngcontent-%COMP%], \n[contenteditable=true][_ngcontent-%COMP%] {\n caret-color: auto !important;\n}\nbody[_ngcontent-%COMP%] {\n margin: 0;\n padding: 0;\n}\nh1[_ngcontent-%COMP%], \nh2[_ngcontent-%COMP%], \nh3[_ngcontent-%COMP%], \nh4[_ngcontent-%COMP%], \nh5[_ngcontent-%COMP%], \nh6[_ngcontent-%COMP%] {\n margin: 0;\n padding: 0;\n}\n.input[_ngcontent-%COMP%]:focus-visible {\n box-shadow: 0px 0px 0px 4px rgba(0, 118, 221, 0.16) !important;\n}\n.form-control-container[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 4px;\n font-size: 14px;\n line-height: 18px;\n font-variant-numeric: lining-nums tabular-nums;\n font-weight: 400;\n cursor: pointer;\n position: relative;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-label[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 12px;\n font-style: normal;\n font-weight: 500;\n line-height: 18px;\n display: inline-flex;\n align-items: center;\n gap: 4px;\n position: relative;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-field[_ngcontent-%COMP%] {\n font-size: 14px;\n color: #252a34;\n font-weight: 400;\n line-height: 18px;\n font-style: normal;\n font-variant-numeric: lining-nums tabular-nums;\n width: 100%;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-error-message[_ngcontent-%COMP%] {\n font-size: 12px;\n color: #d6421e;\n margin-top: 2px;\n}\n.form-control-container[_ngcontent-%COMP%] .form-control-hint-message[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 12px;\n margin-top: 2px;\n}\n.popover-container[_ngcontent-%COMP%] {\n padding: 24px;\n max-height: 390px;\n overflow-y: scroll;\n}\n.popover-container[_ngcontent-%COMP%]::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n background: #fff;\n z-index: 999999;\n}\n.popover-container[_ngcontent-%COMP%]::-webkit-scrollbar-thumb {\n border-radius: 5px;\n background: #9aa6bc;\n}\n.template-list-search[_ngcontent-%COMP%] {\n position: relative;\n margin-bottom: 24px;\n width: 50%;\n}\n.template-list-search[_ngcontent-%COMP%]:hover .clear-icon[_ngcontent-%COMP%] {\n display: block;\n}\n.template-list-search[_ngcontent-%COMP%] .search-input[_ngcontent-%COMP%] {\n width: 100%;\n padding-inline: 36px;\n border-color: #bcc2d0;\n}\n.template-list-search[_ngcontent-%COMP%] .search-input[_ngcontent-%COMP%]:focus {\n border-color: #0076dd;\n}\n.template-list-search[_ngcontent-%COMP%] .clear-icon[_ngcontent-%COMP%] {\n display: none;\n position: absolute;\n right: 12px;\n transform: translateY(-50%);\n top: 50%;\n width: 12px;\n height: 12px;\n color: #5d6983;\n background: #ffffff;\n cursor: pointer;\n}\n.template-list-search[_ngcontent-%COMP%] .search-icon[_ngcontent-%COMP%] {\n position: absolute;\n left: 12px;\n transform: translateY(-50%);\n top: 50%;\n width: 16px;\n height: 16px;\n}\n.template-list[_ngcontent-%COMP%] {\n width: 100%;\n min-width: 600px;\n min-height: 50px;\n}\n.template-list[_ngcontent-%COMP%] .template-row-content[_ngcontent-%COMP%] {\n cursor: pointer;\n height: 40px;\n}\n.template-list[_ngcontent-%COMP%] .template-row-content[_ngcontent-%COMP%]:hover {\n background: #eaeef3;\n}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] {\n display: flex;\n border-bottom: 1px solid #edeff2;\n}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell[_ngcontent-%COMP%] {\n min-width: 200px;\n padding: 11px 12px;\n}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-name[_ngcontent-%COMP%], \n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-desc[_ngcontent-%COMP%] {\n color: #252a34;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-actions[_ngcontent-%COMP%] {\n display: flex;\n justify-content: space-between;\n}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-actions[_ngcontent-%COMP%] .action[_ngcontent-%COMP%] {\n cursor: pointer;\n padding: 4px;\n width: 24px;\n height: 24px;\n}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-actions[_ngcontent-%COMP%] .action[_ngcontent-%COMP%]:hover {\n border-radius: 4px;\n background: rgba(93, 105, 131, 0.08);\n}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-actions[_ngcontent-%COMP%] .action[_ngcontent-%COMP%]:active {\n border-radius: 4px;\n background: rgba(93, 105, 131, 0.22);\n}\n.template-list[_ngcontent-%COMP%] .selected-row[_ngcontent-%COMP%] {\n background-color: rgba(0, 118, 221, 0.12);\n}\n.template-list[_ngcontent-%COMP%] .template-row-header[_ngcontent-%COMP%] {\n background: #f6f7f9;\n}\n.template-list[_ngcontent-%COMP%] .template-row-header[_ngcontent-%COMP%] .cell-header[_ngcontent-%COMP%] {\n font-style: normal;\n line-height: 18px;\n font-weight: 600;\n font-size: 12px;\n color: #4a5469;\n}\n.template-list[_ngcontent-%COMP%] .empty-container[_ngcontent-%COMP%] {\n display: flex;\n justify-content: center;\n align-items: center;\n height: 50px;\n color: #4a5469;\n font-size: 16px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.template-list[_ngcontent-%COMP%] .loading-state[_ngcontent-%COMP%] {\n display: flex;\n justify-content: center;\n}\n\n\n\n\n\n\n/*# sourceMappingURL=template-select-modal.css.map */'], changeDetection: 0 });
|
|
52005
52031
|
};
|
|
52006
52032
|
(() => {
|
|
52007
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-
|
|
52033
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-UDHA2F3U.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
|
|
52008
52034
|
setClassMetadata(TemplateSelectModalComponent, [{
|
|
52009
52035
|
type: Component,
|
|
52010
52036
|
args: [{ selector: "lib-template-select-modal", standalone: true, imports: [
|