@everymatrix/stage-mm-verification-report 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  DomainsOverloadModalComponent
3
- } from "./chunk-BTUZAOXK.js";
4
- import "./chunk-RUQTRHSC.js";
3
+ } from "./chunk-3MEV7EYH.js";
4
+ import "./chunk-UADUFI5X.js";
5
5
  import "./chunk-2SMQV2OO.js";
6
6
  import "./chunk-57JN4OKS.js";
7
7
  export {
8
8
  DomainsOverloadModalComponent
9
9
  };
10
- //# sourceMappingURL=chunk-IQHBD4M3.js.map
10
+ //# sourceMappingURL=chunk-XLILIITP.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-7473W6W2.js"><link rel="modulepreload" href="chunk-BTUZAOXK.js"><link rel="modulepreload" href="chunk-RUQTRHSC.js"><link rel="modulepreload" href="chunk-2SMQV2OO.js"><link rel="modulepreload" href="chunk-57JN4OKS.js"><script src="polyfills.js" type="module"></script><script src="main.js" type="module"></script></body>
11
+ <link rel="modulepreload" href="chunk-BFUWYAHC.js"><link rel="modulepreload" href="chunk-3MEV7EYH.js"><link rel="modulepreload" href="chunk-UADUFI5X.js"><link rel="modulepreload" href="chunk-2SMQV2OO.js"><link rel="modulepreload" href="chunk-57JN4OKS.js"><script src="polyfills.js" type="module"></script><script src="main.js" type="module"></script></body>
12
12
  </html>
package/main.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  ProgressSpinner,
3
3
  ProgressSpinnerModule
4
- } from "./chunk-7473W6W2.js";
4
+ } from "./chunk-BFUWYAHC.js";
5
5
  import {
6
6
  DomainsOverloadModalComponent
7
- } from "./chunk-BTUZAOXK.js";
7
+ } from "./chunk-3MEV7EYH.js";
8
8
  import {
9
9
  ApiHandlerService,
10
10
  BrowserModule,
@@ -34,10 +34,8 @@ import {
34
34
  platformBrowser,
35
35
  provideHttpClient,
36
36
  require_moment,
37
- takeUntilDestroyed,
38
- toSignal,
39
37
  withInterceptors
40
- } from "./chunk-RUQTRHSC.js";
38
+ } from "./chunk-UADUFI5X.js";
41
39
  import {
42
40
  $dt,
43
41
  AutoFocus,
@@ -170,6 +168,8 @@ import {
170
168
  animate,
171
169
  animateChild,
172
170
  animation,
171
+ assertInInjectionContext,
172
+ assertNotInReactiveContext,
173
173
  booleanAttribute,
174
174
  catchError,
175
175
  combineLatest,
@@ -203,6 +203,7 @@ import {
203
203
  style,
204
204
  switchMap,
205
205
  take,
206
+ takeUntil,
206
207
  tap,
207
208
  transition,
208
209
  trigger,
@@ -23733,6 +23734,81 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23733
23734
  (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(DmRangeDatePickerLibComponent, { className: "DmRangeDatePickerLibComponent", filePath: "libs/components/dm-range-date-picker-lib/src/lib/dm-range-date-picker-lib/dm-range-date-picker-lib.component.ts", lineNumber: 168 });
23734
23735
  })();
23735
23736
 
23737
+ // node_modules/@angular/core/fesm2022/rxjs-interop.mjs
23738
+ function takeUntilDestroyed(destroyRef) {
23739
+ if (!destroyRef) {
23740
+ assertInInjectionContext(takeUntilDestroyed);
23741
+ destroyRef = inject(DestroyRef);
23742
+ }
23743
+ const destroyed$ = new Observable((observer) => {
23744
+ const unregisterFn = destroyRef.onDestroy(observer.next.bind(observer));
23745
+ return unregisterFn;
23746
+ });
23747
+ return (source) => {
23748
+ return source.pipe(takeUntil(destroyed$));
23749
+ };
23750
+ }
23751
+ function toSignal(source, options) {
23752
+ ngDevMode && assertNotInReactiveContext(toSignal, "Invoking `toSignal` causes new subscriptions every time. Consider moving `toSignal` outside of the reactive context and read the signal value where needed.");
23753
+ const requiresCleanup = !options?.manualCleanup;
23754
+ requiresCleanup && !options?.injector && assertInInjectionContext(toSignal);
23755
+ const cleanupRef = requiresCleanup ? options?.injector?.get(DestroyRef) ?? inject(DestroyRef) : null;
23756
+ const equal = makeToSignalEqual(options?.equal);
23757
+ let state2;
23758
+ if (options?.requireSync) {
23759
+ state2 = signal({
23760
+ kind: 0
23761
+ /* StateKind.NoValue */
23762
+ }, {
23763
+ equal
23764
+ });
23765
+ } else {
23766
+ state2 = signal({
23767
+ kind: 1,
23768
+ value: options?.initialValue
23769
+ }, {
23770
+ equal
23771
+ });
23772
+ }
23773
+ const sub = source.subscribe({
23774
+ next: (value) => state2.set({
23775
+ kind: 1,
23776
+ value
23777
+ }),
23778
+ error: (error) => {
23779
+ if (options?.rejectErrors) {
23780
+ throw error;
23781
+ }
23782
+ state2.set({
23783
+ kind: 2,
23784
+ error
23785
+ });
23786
+ }
23787
+ // Completion of the Observable is meaningless to the signal. Signals don't have a concept of
23788
+ // "complete".
23789
+ });
23790
+ if (options?.requireSync && state2().kind === 0) {
23791
+ throw new RuntimeError(601, (typeof ngDevMode === "undefined" || ngDevMode) && "`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.");
23792
+ }
23793
+ cleanupRef?.onDestroy(sub.unsubscribe.bind(sub));
23794
+ return computed(() => {
23795
+ const current = state2();
23796
+ switch (current.kind) {
23797
+ case 1:
23798
+ return current.value;
23799
+ case 2:
23800
+ throw current.error;
23801
+ case 0:
23802
+ throw new RuntimeError(601, (typeof ngDevMode === "undefined" || ngDevMode) && "`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.");
23803
+ }
23804
+ }, {
23805
+ equal: options?.equal
23806
+ });
23807
+ }
23808
+ function makeToSignalEqual(userEquality = Object.is) {
23809
+ return (a, b) => a.kind === 1 && b.kind === 1 && userEquality(a.value, b.value);
23810
+ }
23811
+
23736
23812
  // node_modules/primeng/fesm2022/primeng-chip.mjs
23737
23813
  var _c06 = ["removeicon"];
23738
23814
  var _c115 = ["*"];
@@ -39723,8 +39799,8 @@ var VerificationService = class _VerificationService {
39723
39799
  };
39724
39800
  return this.apiHandlerService.Post(url, body);
39725
39801
  }
39726
- csvLoad(resource) {
39727
- const match = resource.match(/reports\/.*?\.csv/);
39802
+ csvLoad(resource2) {
39803
+ const match = resource2.match(/reports\/.*?\.csv/);
39728
39804
  const result = match ? match[0].replace(/\.csv$/, "") : null;
39729
39805
  const url = `${environment.BASE_ACS_URL}acs-proxy?namespace=dm-gcs-docs&bucketName=dm-storage-stage&resourceName=get_google_storage_csv&fileType=csv&filePath=${result}&expiresInSeconds=600`;
39730
39806
  return this.httpClient.post(url, {
@@ -53592,7 +53668,7 @@ var DmDatePickerLibComponent = class _DmDatePickerLibComponent {
53592
53668
 
53593
53669
  // libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts
53594
53670
  var _forTrack04 = ($index, $item) => $item.dag_id;
53595
- var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-MVLDJ2EO.js").then((m) => m.DeleteTemplateModalComponent)];
53671
+ var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-47OBX3AV.js").then((m) => m.DeleteTemplateModalComponent)];
53596
53672
  var _c026 = () => ({ "width": "460px", "max-height": "540px" });
53597
53673
  var _c151 = () => ({ width: "20px", height: "20px" });
53598
53674
  var _c237 = () => ({ "min-width": "720px" });
@@ -54425,7 +54501,7 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
54425
54501
  ], 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.form-control-container[_ngcontent-%COMP%] .p-autocomplete-input[_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 });
54426
54502
  };
54427
54503
  (() => {
54428
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-MVLDJ2EO.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
54504
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-47OBX3AV.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
54429
54505
  setClassMetadata(SendSettingsModalComponent, [{
54430
54506
  type: Component,
54431
54507
  args: [{ selector: "lib-send-settings-modal", standalone: true, imports: [
@@ -54881,8 +54957,8 @@ Are you sure you want to delete the schedule?"\r
54881
54957
 
54882
54958
  // libs/shared/ui/components/src/lib/modals/template-select-modal/template-select-modal.ts
54883
54959
  var _forTrack05 = ($index, $item) => $item.template_id;
54884
- var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-MVLDJ2EO.js").then((m) => m.DeleteTemplateModalComponent)];
54885
- var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-IQHBD4M3.js").then((m) => m.DomainsOverloadModalComponent)];
54960
+ var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-47OBX3AV.js").then((m) => m.DeleteTemplateModalComponent)];
54961
+ var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-XLILIITP.js").then((m) => m.DomainsOverloadModalComponent)];
54886
54962
  var _c027 = (a0) => ({ "selected-row": a0 });
54887
54963
  var _c158 = () => ({ position: "relative" });
54888
54964
  var _c238 = () => ({ width: "16px", height: "16px" });
@@ -55394,7 +55470,7 @@ var TemplateSelectModalComponent = class _TemplateSelectModalComponent {
55394
55470
  ], 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.form-control-container[_ngcontent-%COMP%] .p-autocomplete-input[_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 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 overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\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 });
55395
55471
  };
55396
55472
  (() => {
55397
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-MVLDJ2EO.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-IQHBD4M3.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
55473
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-47OBX3AV.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-XLILIITP.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
55398
55474
  setClassMetadata(TemplateSelectModalComponent, [{
55399
55475
  type: Component,
55400
55476
  args: [{ selector: "lib-template-select-modal", standalone: true, imports: [
@@ -57857,6 +57933,8 @@ var AppComponent = class _AppComponent {
57857
57933
  }
57858
57934
  };
57859
57935
  constructor() {
57936
+ this.sessionService.resetSession();
57937
+ this.tracingInfoService.resetTracingInfo();
57860
57938
  this.effectRef = effect(() => {
57861
57939
  if (!this.ready() || this.filterForm) {
57862
57940
  return;
@@ -57884,10 +57962,6 @@ var AppComponent = class _AppComponent {
57884
57962
  this.templateService.savedTemplateSubject.next(null);
57885
57963
  });
57886
57964
  }
57887
- ngOnDestroy() {
57888
- this.sessionService.setInitData(null);
57889
- this.tracingInfoService.setInitData(null);
57890
- }
57891
57965
  initializeApp() {
57892
57966
  this.sessionService.sessionData$.pipe(takeUntilDestroyed(this.destroyRef), filter((data) => data !== null), take(1), mergeMap(() => combineLatest({
57893
57967
  lookups: this.verificationService.getLookups(),
@@ -58977,7 +59051,7 @@ var AppComponent = class _AppComponent {
58977
59051
  });
58978
59052
  })();
58979
59053
  (() => {
58980
- (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(AppComponent, { className: "AppComponent", filePath: "apps/reports/moneymatrix/verification/src/app/app.component.ts", lineNumber: 96 });
59054
+ (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(AppComponent, { className: "AppComponent", filePath: "apps/reports/moneymatrix/verification/src/app/app.component.ts", lineNumber: 95 });
58981
59055
  })();
58982
59056
 
58983
59057
  // node_modules/@angular/elements/fesm2022/elements.mjs
@@ -59376,6 +59450,13 @@ scriptLoader.loadAngularJsAndUiGridIfNeeded().then(() => {
59376
59450
  * License: MIT
59377
59451
  *)
59378
59452
 
59453
+ @angular/core/fesm2022/rxjs-interop.mjs:
59454
+ (**
59455
+ * @license Angular v19.0.7
59456
+ * (c) 2010-2024 Google LLC. https://angular.io/
59457
+ * License: MIT
59458
+ *)
59459
+
59379
59460
  @angular/elements/fesm2022/elements.mjs:
59380
59461
  (**
59381
59462
  * @license Angular v19.0.7