@everymatrix/prod-mm-verification-report 1.1.38 → 1.1.41

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/component-lib.js CHANGED
@@ -2385,10 +2385,10 @@ zone.js/fesm2015/zone.js:
2385
2385
  import {
2386
2386
  ProgressSpinner,
2387
2387
  ProgressSpinnerModule
2388
- } from "./chunk-U5B4KNN3.js";
2388
+ } from "./chunk-XPR46BQ7.js";
2389
2389
  import {
2390
2390
  DomainsOverloadModalComponent
2391
- } from "./chunk-X4X6VEWE.js";
2391
+ } from "./chunk-M6UR2DLR.js";
2392
2392
  import {
2393
2393
  ApiHandlerService,
2394
2394
  BrowserModule,
@@ -2422,7 +2422,7 @@ import {
2422
2422
  provideHttpClient,
2423
2423
  require_moment,
2424
2424
  withInterceptors
2425
- } from "./chunk-45BJCP4W.js";
2425
+ } from "./chunk-YQA2IRNM.js";
2426
2426
  import {
2427
2427
  $dt,
2428
2428
  AutoFocus,
@@ -25593,19 +25593,22 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
25593
25593
  this.elementRef = elementRef;
25594
25594
  this.shadowDomStyleInjectorService = shadowDomStyleInjectorService;
25595
25595
  this.dateControl.valueChanges.subscribe((dates) => {
25596
- if (this.manualDateChange) {
25597
- this.currentAlias = TimePeriod.Custom;
25598
- this.manualDateChange = false;
25599
- }
25596
+ const start = Array.isArray(dates) && this.isDateValid(dates[0]);
25597
+ const end = Array.isArray(dates) && this.isDateValid(dates[1]);
25598
+ const parsed = [];
25599
+ if (start)
25600
+ parsed.push(dates[0]);
25601
+ if (start && end)
25602
+ parsed.push(dates[1]);
25600
25603
  const rangeValue = {
25601
25604
  alias: this.currentAlias ?? "custom",
25602
25605
  start: dates?.[0] ?? null,
25603
25606
  end: dates?.[1] ?? null
25604
25607
  };
25605
- this.inputValue = this.formatDateRange(dates ?? []);
25606
- this.onChangeFn(rangeValue);
25608
+ this.inputValue = this.formatDateRange(parsed);
25609
+ this.onChangeFn(parsed.length ? rangeValue : null);
25607
25610
  this.elementRef.nativeElement.dispatchEvent(new CustomEvent("dm-range-date-picker-changed", {
25608
- detail: rangeValue,
25611
+ detail: parsed.length ? rangeValue : null,
25609
25612
  bubbles: true,
25610
25613
  composed: true
25611
25614
  }));
@@ -25653,19 +25656,23 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
25653
25656
  return this.requireEndDate ? endDateRequired(control) : null;
25654
25657
  }
25655
25658
  writeValue(value) {
25656
- if (!value || typeof value !== "object" || !("alias" in value)) {
25659
+ if (!value || typeof value !== "object" || !("alias" in value) || !value.alias) {
25657
25660
  this.inputValue = "";
25658
- this._initialValue = null;
25659
25661
  this.dateControl.setValue(null, { emitEvent: false });
25660
25662
  return;
25661
25663
  }
25662
- this._initialValue = value;
25663
25664
  if (value.alias !== "custom") {
25664
25665
  this.onListSelect(value.alias);
25665
25666
  } else {
25666
- this.currentAlias = TimePeriod.Custom;
25667
- const parsed = [new Date(value.start), new Date(value.end)];
25668
- this.dateControl.setValue(parsed, { emitEvent: false });
25667
+ const start = this.isDateValid(value.start);
25668
+ const end = this.isDateValid(value.end);
25669
+ const parsed = [];
25670
+ if (start)
25671
+ parsed.push(value.start);
25672
+ if (start && end)
25673
+ parsed.push(value.end);
25674
+ this.currentAlias = parsed.length ? TimePeriod.Custom : null;
25675
+ this.dateControl.setValue(parsed.length ? parsed : null, { emitEvent: false });
25669
25676
  this.inputValue = this.formatDateRange(parsed);
25670
25677
  }
25671
25678
  }
@@ -25676,7 +25683,6 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
25676
25683
  this.onTouchedFn = fn;
25677
25684
  }
25678
25685
  dateSelection() {
25679
- this.manualDateChange = true;
25680
25686
  const range = this.dateControl.value;
25681
25687
  if (!this.showTimePicker && range && Array.isArray(range) && range.length === 2 && range[1] && (0, import_moment.default)(range[1]).isValid()) {
25682
25688
  const endDate = new Date(range[1]);
@@ -25684,22 +25690,22 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
25684
25690
  this.dateControl.setValue([range[0], endDate]);
25685
25691
  }
25686
25692
  this.inputValue = this.formatDateRange(this.dateControl.value);
25693
+ this.currentAlias = TimePeriod.Custom;
25687
25694
  }
25688
25695
  onListSelect(key) {
25689
- this.currentAlias = key;
25696
+ this.currentAlias = null;
25690
25697
  const alias = DATE_HINTS.find((item) => item.dateAlias === key);
25691
25698
  if (alias) {
25699
+ this.currentAlias = key;
25692
25700
  const dates = [alias.interval.start, alias.interval.end];
25693
25701
  this.dateControl.setValue(dates);
25694
- this._initialValue = {
25695
- alias: key,
25696
- start: alias.interval.start,
25697
- end: alias.interval.end
25698
- };
25699
25702
  }
25700
25703
  }
25704
+ isDateValid(date) {
25705
+ return !!date && (0, import_moment.default)(date).isValid();
25706
+ }
25701
25707
  formatDate(date) {
25702
- if (!date || !(0, import_moment.default)(date).isValid()) {
25708
+ if (!this.isDateValid(date)) {
25703
25709
  return "";
25704
25710
  }
25705
25711
  return (0, import_moment.default)(date).format("DD/MM/YYYY");
@@ -25758,7 +25764,7 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
25758
25764
  this.dateControl.markAsTouched();
25759
25765
  this.dateControl.markAsDirty();
25760
25766
  this.inputValue = "";
25761
- this._initialValue = null;
25767
+ this.currentAlias = null;
25762
25768
  if (this.control) {
25763
25769
  this.control.reset();
25764
25770
  this.control.markAsTouched();
@@ -56164,7 +56170,7 @@ var DmDatePickerLibComponent = class _DmDatePickerLibComponent {
56164
56170
 
56165
56171
  // libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts
56166
56172
  var _forTrack04 = ($index, $item) => $item.dag_id;
56167
- var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent)];
56173
+ var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent)];
56168
56174
  var _c026 = () => ({ "width": "460px", "max-height": "540px" });
56169
56175
  var _c151 = () => ({ width: "20px", height: "20px" });
56170
56176
  var _c237 = () => ({ "min-width": "720px" });
@@ -56999,7 +57005,7 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
56999
57005
  ], 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 });
57000
57006
  };
57001
57007
  (() => {
57002
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
57008
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
57003
57009
  setClassMetadata(SendSettingsModalComponent, [{
57004
57010
  type: Component,
57005
57011
  args: [{ selector: "lib-send-settings-modal", standalone: true, imports: [
@@ -57456,8 +57462,8 @@ Are you sure you want to delete the schedule?"
57456
57462
 
57457
57463
  // libs/shared/ui/components/src/lib/modals/template-select-modal/template-select-modal.ts
57458
57464
  var _forTrack05 = ($index, $item) => $item.template_id;
57459
- var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent)];
57460
- var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-YRTJB34Z.js").then((m) => m.DomainsOverloadModalComponent)];
57465
+ var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent)];
57466
+ var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-TKCUBEMB.js").then((m) => m.DomainsOverloadModalComponent)];
57461
57467
  var _c027 = (a0) => ({ "selected-row": a0 });
57462
57468
  var _c158 = () => ({ width: "16px", height: "16px" });
57463
57469
  var _c238 = () => ({ position: "relative" });
@@ -58002,7 +58008,7 @@ var TemplateSelectModalComponent = class _TemplateSelectModalComponent {
58002
58008
  ], 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}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-name[_ngcontent-%COMP%] .tooltip-label[_ngcontent-%COMP%], \n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-desc[_ngcontent-%COMP%] .tooltip-label[_ngcontent-%COMP%] {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 200px;\n display: inline-block;\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.disabled-action[_ngcontent-%COMP%] {\n opacity: 0.4;\n cursor: not-allowed;\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 });
58003
58009
  };
58004
58010
  (() => {
58005
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-YRTJB34Z.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
58011
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-TKCUBEMB.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
58006
58012
  setClassMetadata(TemplateSelectModalComponent, [{
58007
58013
  type: Component,
58008
58014
  args: [{ selector: "lib-template-select-modal", standalone: true, imports: [
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-U5B4KNN3.js"><link rel="modulepreload" href="chunk-X4X6VEWE.js"><link rel="modulepreload" href="chunk-45BJCP4W.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-XPR46BQ7.js"><link rel="modulepreload" href="chunk-M6UR2DLR.js"><link rel="modulepreload" href="chunk-YQA2IRNM.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-U5B4KNN3.js";
4
+ } from "./chunk-XPR46BQ7.js";
5
5
  import {
6
6
  DomainsOverloadModalComponent
7
- } from "./chunk-X4X6VEWE.js";
7
+ } from "./chunk-M6UR2DLR.js";
8
8
  import {
9
9
  ApiHandlerService,
10
10
  BrowserModule,
@@ -38,7 +38,7 @@ import {
38
38
  provideHttpClient,
39
39
  require_moment,
40
40
  withInterceptors
41
- } from "./chunk-45BJCP4W.js";
41
+ } from "./chunk-YQA2IRNM.js";
42
42
  import {
43
43
  $dt,
44
44
  AutoFocus,
@@ -23209,19 +23209,22 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23209
23209
  this.elementRef = elementRef;
23210
23210
  this.shadowDomStyleInjectorService = shadowDomStyleInjectorService;
23211
23211
  this.dateControl.valueChanges.subscribe((dates) => {
23212
- if (this.manualDateChange) {
23213
- this.currentAlias = TimePeriod.Custom;
23214
- this.manualDateChange = false;
23215
- }
23212
+ const start = Array.isArray(dates) && this.isDateValid(dates[0]);
23213
+ const end = Array.isArray(dates) && this.isDateValid(dates[1]);
23214
+ const parsed = [];
23215
+ if (start)
23216
+ parsed.push(dates[0]);
23217
+ if (start && end)
23218
+ parsed.push(dates[1]);
23216
23219
  const rangeValue = {
23217
23220
  alias: this.currentAlias ?? "custom",
23218
23221
  start: dates?.[0] ?? null,
23219
23222
  end: dates?.[1] ?? null
23220
23223
  };
23221
- this.inputValue = this.formatDateRange(dates ?? []);
23222
- this.onChangeFn(rangeValue);
23224
+ this.inputValue = this.formatDateRange(parsed);
23225
+ this.onChangeFn(parsed.length ? rangeValue : null);
23223
23226
  this.elementRef.nativeElement.dispatchEvent(new CustomEvent("dm-range-date-picker-changed", {
23224
- detail: rangeValue,
23227
+ detail: parsed.length ? rangeValue : null,
23225
23228
  bubbles: true,
23226
23229
  composed: true
23227
23230
  }));
@@ -23269,19 +23272,23 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23269
23272
  return this.requireEndDate ? endDateRequired(control) : null;
23270
23273
  }
23271
23274
  writeValue(value) {
23272
- if (!value || typeof value !== "object" || !("alias" in value)) {
23275
+ if (!value || typeof value !== "object" || !("alias" in value) || !value.alias) {
23273
23276
  this.inputValue = "";
23274
- this._initialValue = null;
23275
23277
  this.dateControl.setValue(null, { emitEvent: false });
23276
23278
  return;
23277
23279
  }
23278
- this._initialValue = value;
23279
23280
  if (value.alias !== "custom") {
23280
23281
  this.onListSelect(value.alias);
23281
23282
  } else {
23282
- this.currentAlias = TimePeriod.Custom;
23283
- const parsed = [new Date(value.start), new Date(value.end)];
23284
- this.dateControl.setValue(parsed, { emitEvent: false });
23283
+ const start = this.isDateValid(value.start);
23284
+ const end = this.isDateValid(value.end);
23285
+ const parsed = [];
23286
+ if (start)
23287
+ parsed.push(value.start);
23288
+ if (start && end)
23289
+ parsed.push(value.end);
23290
+ this.currentAlias = parsed.length ? TimePeriod.Custom : null;
23291
+ this.dateControl.setValue(parsed.length ? parsed : null, { emitEvent: false });
23285
23292
  this.inputValue = this.formatDateRange(parsed);
23286
23293
  }
23287
23294
  }
@@ -23292,7 +23299,6 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23292
23299
  this.onTouchedFn = fn;
23293
23300
  }
23294
23301
  dateSelection() {
23295
- this.manualDateChange = true;
23296
23302
  const range = this.dateControl.value;
23297
23303
  if (!this.showTimePicker && range && Array.isArray(range) && range.length === 2 && range[1] && (0, import_moment.default)(range[1]).isValid()) {
23298
23304
  const endDate = new Date(range[1]);
@@ -23300,22 +23306,22 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23300
23306
  this.dateControl.setValue([range[0], endDate]);
23301
23307
  }
23302
23308
  this.inputValue = this.formatDateRange(this.dateControl.value);
23309
+ this.currentAlias = TimePeriod.Custom;
23303
23310
  }
23304
23311
  onListSelect(key) {
23305
- this.currentAlias = key;
23312
+ this.currentAlias = null;
23306
23313
  const alias = DATE_HINTS.find((item) => item.dateAlias === key);
23307
23314
  if (alias) {
23315
+ this.currentAlias = key;
23308
23316
  const dates = [alias.interval.start, alias.interval.end];
23309
23317
  this.dateControl.setValue(dates);
23310
- this._initialValue = {
23311
- alias: key,
23312
- start: alias.interval.start,
23313
- end: alias.interval.end
23314
- };
23315
23318
  }
23316
23319
  }
23320
+ isDateValid(date) {
23321
+ return !!date && (0, import_moment.default)(date).isValid();
23322
+ }
23317
23323
  formatDate(date) {
23318
- if (!date || !(0, import_moment.default)(date).isValid()) {
23324
+ if (!this.isDateValid(date)) {
23319
23325
  return "";
23320
23326
  }
23321
23327
  return (0, import_moment.default)(date).format("DD/MM/YYYY");
@@ -23374,7 +23380,7 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23374
23380
  this.dateControl.markAsTouched();
23375
23381
  this.dateControl.markAsDirty();
23376
23382
  this.inputValue = "";
23377
- this._initialValue = null;
23383
+ this.currentAlias = null;
23378
23384
  if (this.control) {
23379
23385
  this.control.reset();
23380
23386
  this.control.markAsTouched();
@@ -53780,7 +53786,7 @@ var DmDatePickerLibComponent = class _DmDatePickerLibComponent {
53780
53786
 
53781
53787
  // libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts
53782
53788
  var _forTrack04 = ($index, $item) => $item.dag_id;
53783
- var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent)];
53789
+ var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent)];
53784
53790
  var _c026 = () => ({ "width": "460px", "max-height": "540px" });
53785
53791
  var _c151 = () => ({ width: "20px", height: "20px" });
53786
53792
  var _c237 = () => ({ "min-width": "720px" });
@@ -54615,7 +54621,7 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
54615
54621
  ], 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 });
54616
54622
  };
54617
54623
  (() => {
54618
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
54624
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
54619
54625
  setClassMetadata(SendSettingsModalComponent, [{
54620
54626
  type: Component,
54621
54627
  args: [{ selector: "lib-send-settings-modal", standalone: true, imports: [
@@ -55072,8 +55078,8 @@ Are you sure you want to delete the schedule?"
55072
55078
 
55073
55079
  // libs/shared/ui/components/src/lib/modals/template-select-modal/template-select-modal.ts
55074
55080
  var _forTrack05 = ($index, $item) => $item.template_id;
55075
- var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent)];
55076
- var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-YRTJB34Z.js").then((m) => m.DomainsOverloadModalComponent)];
55081
+ var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent)];
55082
+ var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-TKCUBEMB.js").then((m) => m.DomainsOverloadModalComponent)];
55077
55083
  var _c027 = (a0) => ({ "selected-row": a0 });
55078
55084
  var _c158 = () => ({ width: "16px", height: "16px" });
55079
55085
  var _c238 = () => ({ position: "relative" });
@@ -55618,7 +55624,7 @@ var TemplateSelectModalComponent = class _TemplateSelectModalComponent {
55618
55624
  ], 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}\n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-name[_ngcontent-%COMP%] .tooltip-label[_ngcontent-%COMP%], \n.template-list[_ngcontent-%COMP%] .template-row[_ngcontent-%COMP%] .cell.cell-desc[_ngcontent-%COMP%] .tooltip-label[_ngcontent-%COMP%] {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 200px;\n display: inline-block;\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.disabled-action[_ngcontent-%COMP%] {\n opacity: 0.4;\n cursor: not-allowed;\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 });
55619
55625
  };
55620
55626
  (() => {
55621
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-4PDDP3YK.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-YRTJB34Z.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
55627
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-PMJHE7NE.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-TKCUBEMB.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
55622
55628
  setClassMetadata(TemplateSelectModalComponent, [{
55623
55629
  type: Component,
55624
55630
  args: [{ selector: "lib-template-select-modal", standalone: true, imports: [