@everymatrix/stage-mm-verification-report 1.0.34 → 1.0.36

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/main.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  ProgressSpinner,
3
3
  ProgressSpinnerModule
4
- } from "./chunk-WMPCH4IX.js";
4
+ } from "./chunk-72EU5DMV.js";
5
5
  import {
6
6
  DomainsOverloadModalComponent
7
- } from "./chunk-PUQ5Z3AY.js";
7
+ } from "./chunk-CNMXNBAH.js";
8
8
  import {
9
9
  ApiHandlerService,
10
10
  BrowserModule,
@@ -35,7 +35,7 @@ import {
35
35
  provideHttpClient,
36
36
  require_moment,
37
37
  withInterceptors
38
- } from "./chunk-BTHW6DIE.js";
38
+ } from "./chunk-UIRQFQVP.js";
39
39
  import {
40
40
  $dt,
41
41
  AutoFocus,
@@ -115,7 +115,7 @@ import {
115
115
  unblockBodyScroll,
116
116
  uuid,
117
117
  zindexutils
118
- } from "./chunk-2SMQV2OO.js";
118
+ } from "./chunk-O46WKBJL.js";
119
119
  import {
120
120
  ApplicationRef,
121
121
  ChangeDetectionScheduler,
@@ -174,6 +174,7 @@ import {
174
174
  catchError,
175
175
  combineLatest,
176
176
  computed,
177
+ delay,
177
178
  effect,
178
179
  filter,
179
180
  firstValueFrom,
@@ -196,6 +197,7 @@ import {
196
197
  of,
197
198
  output,
198
199
  query,
200
+ retryWhen,
199
201
  setClassMetadata,
200
202
  setClassMetadataAsync,
201
203
  signal,
@@ -205,6 +207,7 @@ import {
205
207
  take,
206
208
  takeUntil,
207
209
  tap,
210
+ throwError,
208
211
  transition,
209
212
  trigger,
210
213
  untracked,
@@ -277,7 +280,7 @@ import {
277
280
  ɵɵtwoWayListener,
278
281
  ɵɵtwoWayProperty,
279
282
  ɵɵviewQuery
280
- } from "./chunk-57JN4OKS.js";
283
+ } from "./chunk-572KF4F3.js";
281
284
 
282
285
  // node_modules/primeng/fesm2022/primeng-icons-angledoubleleft.mjs
283
286
  var AngleDoubleLeftIcon = class _AngleDoubleLeftIcon extends BaseIcon {
@@ -23034,7 +23037,9 @@ var TimePeriod;
23034
23037
  TimePeriod2["Yesterday"] = "yesterday";
23035
23038
  TimePeriod2["CurrentWeek"] = "current_week";
23036
23039
  TimePeriod2["CurrentMonth"] = "current_month";
23040
+ TimePeriod2["CurrentQuarter"] = "current_quarter";
23037
23041
  TimePeriod2["LastMonth"] = "last_month";
23042
+ TimePeriod2["LastQuarter"] = "last_quarter";
23038
23043
  TimePeriod2["Last30Days"] = "last_30_days";
23039
23044
  TimePeriod2["CurrentYear"] = "current_year";
23040
23045
  TimePeriod2["Custom"] = "custom";
@@ -23072,6 +23077,14 @@ var DATE_HINTS = [
23072
23077
  end: (0, import_moment.default)().endOf("day").toDate()
23073
23078
  }
23074
23079
  },
23080
+ {
23081
+ name: "Current Quarter",
23082
+ dateAlias: TimePeriod.CurrentQuarter,
23083
+ interval: {
23084
+ start: (0, import_moment.default)().startOf("quarter").startOf("day").toDate(),
23085
+ end: (0, import_moment.default)().endOf("day").toDate()
23086
+ }
23087
+ },
23075
23088
  {
23076
23089
  name: "Last Month",
23077
23090
  dateAlias: TimePeriod.LastMonth,
@@ -23080,6 +23093,14 @@ var DATE_HINTS = [
23080
23093
  end: (0, import_moment.default)().subtract(1, "months").endOf("month").endOf("day").toDate()
23081
23094
  }
23082
23095
  },
23096
+ {
23097
+ name: "Last Quarter",
23098
+ dateAlias: TimePeriod.LastQuarter,
23099
+ interval: {
23100
+ start: (0, import_moment.default)().subtract(1, "quarter").startOf("quarter").startOf("day").toDate(),
23101
+ end: (0, import_moment.default)().subtract(1, "quarter").endOf("quarter").endOf("day").toDate()
23102
+ }
23103
+ },
23083
23104
  {
23084
23105
  name: "Last 30 Days",
23085
23106
  dateAlias: TimePeriod.Last30Days,
@@ -23253,11 +23274,14 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23253
23274
  { key: TimePeriod.Yesterday, value: "Yesterday" },
23254
23275
  { key: TimePeriod.CurrentWeek, value: "Current Week" },
23255
23276
  { key: TimePeriod.CurrentMonth, value: "Current Month" },
23277
+ { key: TimePeriod.CurrentQuarter, value: "Current Quarter" },
23256
23278
  { key: TimePeriod.LastMonth, value: "Last Month" },
23279
+ { key: TimePeriod.LastQuarter, value: "Last Quarter" },
23257
23280
  { key: TimePeriod.Last30Days, value: "Last 30 Days" },
23258
23281
  { key: TimePeriod.CurrentYear, value: "Current Year" }
23259
23282
  ];
23260
23283
  dateControl = new FormControl(null);
23284
+ control;
23261
23285
  attachedToShadowDom = signal(false);
23262
23286
  popoverOpened = false;
23263
23287
  // If the click did not occur inside this component's Shadow DOM,
@@ -23355,6 +23379,12 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23355
23379
  }
23356
23380
  dateSelection() {
23357
23381
  this.manualDateChange = true;
23382
+ const range = this.dateControl.value;
23383
+ if (!this.showTimePicker && range && Array.isArray(range) && range.length === 2 && range[1] && (0, import_moment.default)(range[1]).isValid()) {
23384
+ const endDate = new Date(range[1]);
23385
+ endDate.setHours(23, 59, 59, 999);
23386
+ this.dateControl.setValue([range[0], endDate]);
23387
+ }
23358
23388
  this.inputValue = this.formatDateRange(this.dateControl.value);
23359
23389
  }
23360
23390
  onListSelect(key) {
@@ -23414,6 +23444,9 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23414
23444
  onClear() {
23415
23445
  this.dateControl.reset();
23416
23446
  this.inputValue = "";
23447
+ this._initialValue = null;
23448
+ if (this.control)
23449
+ this.control.reset();
23417
23450
  }
23418
23451
  static \u0275fac = function DmRangeDatePickerLibComponent_Factory(__ngFactoryType__) {
23419
23452
  return new (__ngFactoryType__ || _DmRangeDatePickerLibComponent)(\u0275\u0275directiveInject(ElementRef), \u0275\u0275directiveInject(ShadowDomStyleInjectorService));
@@ -23432,7 +23465,7 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23432
23465
  return ctx.onDocumentClick($event);
23433
23466
  }, false, \u0275\u0275resolveDocument);
23434
23467
  }
23435
- }, inputs: { requireEndDate: "requireEndDate", label: "label", tooltipMessage: "tooltipMessage", placeholder: "placeholder", disabled: [2, "disabled", "disabled", booleanAttribute], isRequired: [2, "isRequired", "isRequired", booleanAttribute], infoIcon: [2, "infoIcon", "infoIcon", booleanAttribute], hasDefaultDate: [2, "hasDefaultDate", "hasDefaultDate", booleanAttribute], initialValue: "initialValue", minDate: "minDate", maxDate: "maxDate", disabledDates: "disabledDates", disabledDays: "disabledDays", dateFormat: "dateFormat", showTimePicker: [2, "showTimePicker", "showTimePicker", booleanAttribute], showClear: [2, "showClear", "showClear", booleanAttribute] }, outputs: { openState: "openState" }, features: [\u0275\u0275ProvidersFeature([
23468
+ }, inputs: { requireEndDate: "requireEndDate", label: "label", tooltipMessage: "tooltipMessage", placeholder: "placeholder", disabled: [2, "disabled", "disabled", booleanAttribute], isRequired: [2, "isRequired", "isRequired", booleanAttribute], infoIcon: [2, "infoIcon", "infoIcon", booleanAttribute], hasDefaultDate: [2, "hasDefaultDate", "hasDefaultDate", booleanAttribute], initialValue: "initialValue", minDate: "minDate", maxDate: "maxDate", disabledDates: "disabledDates", disabledDays: "disabledDays", dateFormat: "dateFormat", showTimePicker: [2, "showTimePicker", "showTimePicker", booleanAttribute], showClear: [2, "showClear", "showClear", booleanAttribute], control: "control" }, outputs: { openState: "openState" }, features: [\u0275\u0275ProvidersFeature([
23436
23469
  {
23437
23470
  provide: NG_VALUE_ACCESSOR,
23438
23471
  useExisting: forwardRef(() => _DmRangeDatePickerLibComponent),
@@ -23734,13 +23767,15 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
23734
23767
  }], popover: [{
23735
23768
  type: ViewChild,
23736
23769
  args: ["op", { static: true }]
23770
+ }], control: [{
23771
+ type: Input
23737
23772
  }], onDocumentClick: [{
23738
23773
  type: HostListener,
23739
23774
  args: ["document:click", ["$event"]]
23740
23775
  }] });
23741
23776
  })();
23742
23777
  (() => {
23743
- (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 });
23778
+ (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: 186 });
23744
23779
  })();
23745
23780
 
23746
23781
  // node_modules/@angular/core/fesm2022/rxjs-interop.mjs
@@ -30186,7 +30221,8 @@ var _c010 = [[["", "icon-left", ""]], [["", "icon-right", ""]]];
30186
30221
  var _c120 = ["[icon-left]", "[icon-right]"];
30187
30222
  var _c214 = (a0) => ({ visibility: a0 });
30188
30223
  var _c39 = () => ({ position: "relative" });
30189
- var _c49 = () => ({ display: "block", padding: 0, border: "none" });
30224
+ var _c49 = (a0) => ({ "has-value-on-hover": a0 });
30225
+ var _c57 = () => ({ display: "block", padding: 0, border: "none" });
30190
30226
  function DmInputTextLibComponent_Conditional_1_Template(rf, ctx) {
30191
30227
  if (rf & 1) {
30192
30228
  \u0275\u0275elementStart(0, "label", 2);
@@ -30229,12 +30265,20 @@ function DmInputTextLibComponent_Conditional_3_Template(rf, ctx) {
30229
30265
  \u0275\u0275restoreView(_r2);
30230
30266
  const ctx_r0 = \u0275\u0275nextContext();
30231
30267
  return \u0275\u0275resetView(ctx_r0.onSuggestionSelect($event));
30268
+ })("mouseenter", function DmInputTextLibComponent_Conditional_3_Template_p_autocomplete_mouseenter_0_listener() {
30269
+ \u0275\u0275restoreView(_r2);
30270
+ const ctx_r0 = \u0275\u0275nextContext();
30271
+ return \u0275\u0275resetView(ctx_r0.isHovered = true);
30272
+ })("mouseleave", function DmInputTextLibComponent_Conditional_3_Template_p_autocomplete_mouseleave_0_listener() {
30273
+ \u0275\u0275restoreView(_r2);
30274
+ const ctx_r0 = \u0275\u0275nextContext();
30275
+ return \u0275\u0275resetView(ctx_r0.isHovered = false);
30232
30276
  });
30233
30277
  \u0275\u0275elementEnd();
30234
30278
  }
30235
30279
  if (rf & 2) {
30236
30280
  const ctx_r0 = \u0275\u0275nextContext();
30237
- \u0275\u0275property("ngStyle", \u0275\u0275pureFunction0(8, _c49))("id", "inputField-" + ctx_r0.uniqueId())("readonly", ctx_r0.readonly())("formControl", ctx_r0.control() || ctx_r0.internalControl)("placeholder", "Enter " + ctx_r0.placeholder())("suggestions", ctx_r0.filteredSuggestions)("showEmptyMessage", ctx_r0.showEmptyMessage)("appendTo", ctx_r0.appendToBody ? "body" : null);
30281
+ \u0275\u0275property("ngStyle", \u0275\u0275pureFunction0(8, _c57))("id", "inputField-" + ctx_r0.uniqueId())("readonly", ctx_r0.readonly())("formControl", ctx_r0.currentControl())("placeholder", "Enter " + ctx_r0.placeholder())("suggestions", ctx_r0.filteredSuggestions)("showEmptyMessage", ctx_r0.showEmptyMessage)("appendTo", ctx_r0.appendToBody ? "body" : null);
30238
30282
  }
30239
30283
  }
30240
30284
  function DmInputTextLibComponent_Conditional_4_Template(rf, ctx) {
@@ -30258,12 +30302,21 @@ function DmInputTextLibComponent_Conditional_4_Template(rf, ctx) {
30258
30302
  \u0275\u0275restoreView(_r3);
30259
30303
  const ctx_r0 = \u0275\u0275nextContext();
30260
30304
  return \u0275\u0275resetView(ctx_r0.isFocused = true);
30305
+ })("mouseenter", function DmInputTextLibComponent_Conditional_4_Template_input_mouseenter_0_listener() {
30306
+ \u0275\u0275restoreView(_r3);
30307
+ const ctx_r0 = \u0275\u0275nextContext();
30308
+ return \u0275\u0275resetView(ctx_r0.isHovered = true);
30309
+ })("mouseleave", function DmInputTextLibComponent_Conditional_4_Template_input_mouseleave_0_listener() {
30310
+ \u0275\u0275restoreView(_r3);
30311
+ const ctx_r0 = \u0275\u0275nextContext();
30312
+ return \u0275\u0275resetView(ctx_r0.isHovered = false);
30261
30313
  });
30262
30314
  \u0275\u0275elementEnd();
30263
30315
  }
30264
30316
  if (rf & 2) {
30265
30317
  const ctx_r0 = \u0275\u0275nextContext();
30266
- \u0275\u0275property("id", "inputField-" + ctx_r0.uniqueId())("readonly", ctx_r0.readonly())("formControl", ctx_r0.control() || ctx_r0.internalControl)("placeholder", "Enter " + ctx_r0.placeholder());
30318
+ \u0275\u0275property("id", "inputField-" + ctx_r0.uniqueId())("readonly", ctx_r0.readonly())("formControl", ctx_r0.currentControl())("placeholder", "Enter " + ctx_r0.placeholder());
30319
+ \u0275\u0275attribute("part", ctx_r0.inputPartName);
30267
30320
  }
30268
30321
  }
30269
30322
  function DmInputTextLibComponent_Conditional_5_Template(rf, ctx) {
@@ -30329,6 +30382,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30329
30382
  control = input(null);
30330
30383
  attachedToShadowDom = signal(false);
30331
30384
  isFocused = false;
30385
+ isHovered = false;
30332
30386
  clickEmitter = output();
30333
30387
  suggestionsList = [];
30334
30388
  filteredSuggestions = [];
@@ -30336,6 +30390,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30336
30390
  searchCharacter;
30337
30391
  showEmptyMessage;
30338
30392
  appendToBody = false;
30393
+ inputPartName;
30339
30394
  uniqueId = signal(crypto.randomUUID());
30340
30395
  internalControl = new FormControl("");
30341
30396
  currentControl = computed(() => this.control() ?? this.internalControl);
@@ -30441,13 +30496,13 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30441
30496
  static \u0275fac = function DmInputTextLibComponent_Factory(__ngFactoryType__) {
30442
30497
  return new (__ngFactoryType__ || _DmInputTextLibComponent)();
30443
30498
  };
30444
- static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _DmInputTextLibComponent, selectors: [["lib-dm-input-text-lib"]], inputs: { label: [1, "label"], hint: [1, "hint"], permanentHint: [1, "permanentHint"], showClear: [1, "showClear"], placeholder: [1, "placeholder"], readonly: [1, "readonly"], errorMessage: [1, "errorMessage"], control: [1, "control"], suggestionsList: "suggestionsList", autocomplete: "autocomplete", searchCharacter: "searchCharacter", showEmptyMessage: "showEmptyMessage", appendToBody: [2, "appendToBody", "appendToBody", booleanAttribute] }, outputs: { clickEmitter: "clickEmitter" }, features: [\u0275\u0275InputTransformsFeature], ngContentSelectors: _c120, decls: 11, vars: 11, consts: [["inputElement", ""], [1, "form-control-container", 3, "ngStyle"], [1, "form-control-label"], [1, "input-text-container", 3, "ngStyle"], ["pInputText", "", "optionLabel", "name", "fluid", "", 3, "ngStyle", "id", "readonly", "formControl", "placeholder", "suggestions", "showEmptyMessage", "appendTo"], ["autocomplete", "off", "pInputText", "", 1, "form-control-field", 3, "id", "readonly", "formControl", "placeholder"], ["width", "14", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true", 1, "clear-icon"], ["pInputText", "", "optionLabel", "name", "fluid", "", 3, "input", "click", "blur", "focus", "completeMethod", "onSelect", "ngStyle", "id", "readonly", "formControl", "placeholder", "suggestions", "showEmptyMessage", "appendTo"], ["autocomplete", "off", "pInputText", "", 1, "form-control-field", 3, "input", "click", "blur", "focus", "id", "readonly", "formControl", "placeholder"], ["width", "14", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true", 1, "clear-icon", 3, "click"], ["d", "M8.01186 7.00933L12.27 2.75116C12.341 2.68501 12.398 2.60524 12.4375 2.51661C12.4769 2.42798 12.4982 2.3323 12.4999 2.23529C12.5016 2.13827 12.4838 2.0419 12.4474 1.95194C12.4111 1.86197 12.357 1.78024 12.2884 1.71163C12.2198 1.64302 12.138 1.58893 12.0481 1.55259C11.9581 1.51625 11.8617 1.4984 11.7647 1.50011C11.6677 1.50182 11.572 1.52306 11.4834 1.56255C11.3948 1.60204 11.315 1.65898 11.2488 1.72997L6.99067 5.98814L2.7325 1.72997C2.59553 1.60234 2.41437 1.53286 2.22718 1.53616C2.03999 1.53946 1.8614 1.61529 1.72901 1.74767C1.59663 1.88006 1.5208 2.05865 1.5175 2.24584C1.5142 2.43303 1.58368 2.61419 1.71131 2.75116L5.96948 7.00933L1.71131 11.2675C1.576 11.403 1.5 11.5866 1.5 11.7781C1.5 11.9696 1.576 12.1532 1.71131 12.2887C1.84679 12.424 2.03043 12.5 2.2219 12.5C2.41338 12.5 2.59702 12.424 2.7325 12.2887L6.99067 8.03052L11.2488 12.2887C11.3843 12.424 11.568 12.5 11.7594 12.5C11.9509 12.5 12.1346 12.424 12.27 12.2887C12.4053 12.1532 12.4813 11.9696 12.4813 11.7781C12.4813 11.5866 12.4053 11.403 12.27 11.2675L8.01186 7.00933Z", "fill", "#5D6983"], [1, "form-control-error-message"], [1, "form-control-hint-message"]], template: function DmInputTextLibComponent_Template(rf, ctx) {
30499
+ static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _DmInputTextLibComponent, selectors: [["lib-dm-input-text-lib"]], inputs: { label: [1, "label"], hint: [1, "hint"], permanentHint: [1, "permanentHint"], showClear: [1, "showClear"], placeholder: [1, "placeholder"], readonly: [1, "readonly"], errorMessage: [1, "errorMessage"], control: [1, "control"], suggestionsList: "suggestionsList", autocomplete: "autocomplete", searchCharacter: "searchCharacter", showEmptyMessage: "showEmptyMessage", appendToBody: [2, "appendToBody", "appendToBody", booleanAttribute], inputPartName: "inputPartName" }, outputs: { clickEmitter: "clickEmitter" }, features: [\u0275\u0275InputTransformsFeature], ngContentSelectors: _c120, decls: 11, vars: 14, consts: [["inputElement", ""], [1, "form-control-container", 3, "ngStyle"], [1, "form-control-label"], [1, "input-text-container", 3, "ngStyle", "ngClass"], ["pInputText", "", "optionLabel", "name", "fluid", "", 3, "ngStyle", "id", "readonly", "formControl", "placeholder", "suggestions", "showEmptyMessage", "appendTo"], ["autocomplete", "off", "pInputText", "", 1, "form-control-field", 3, "id", "readonly", "formControl", "placeholder"], ["width", "14", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true", 1, "clear-icon"], ["pInputText", "", "optionLabel", "name", "fluid", "", 3, "input", "click", "blur", "focus", "completeMethod", "onSelect", "mouseenter", "mouseleave", "ngStyle", "id", "readonly", "formControl", "placeholder", "suggestions", "showEmptyMessage", "appendTo"], ["autocomplete", "off", "pInputText", "", 1, "form-control-field", 3, "input", "click", "blur", "focus", "mouseenter", "mouseleave", "id", "readonly", "formControl", "placeholder"], ["width", "14", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true", 1, "clear-icon", 3, "click"], ["d", "M8.01186 7.00933L12.27 2.75116C12.341 2.68501 12.398 2.60524 12.4375 2.51661C12.4769 2.42798 12.4982 2.3323 12.4999 2.23529C12.5016 2.13827 12.4838 2.0419 12.4474 1.95194C12.4111 1.86197 12.357 1.78024 12.2884 1.71163C12.2198 1.64302 12.138 1.58893 12.0481 1.55259C11.9581 1.51625 11.8617 1.4984 11.7647 1.50011C11.6677 1.50182 11.572 1.52306 11.4834 1.56255C11.3948 1.60204 11.315 1.65898 11.2488 1.72997L6.99067 5.98814L2.7325 1.72997C2.59553 1.60234 2.41437 1.53286 2.22718 1.53616C2.03999 1.53946 1.8614 1.61529 1.72901 1.74767C1.59663 1.88006 1.5208 2.05865 1.5175 2.24584C1.5142 2.43303 1.58368 2.61419 1.71131 2.75116L5.96948 7.00933L1.71131 11.2675C1.576 11.403 1.5 11.5866 1.5 11.7781C1.5 11.9696 1.576 12.1532 1.71131 12.2887C1.84679 12.424 2.03043 12.5 2.2219 12.5C2.41338 12.5 2.59702 12.424 2.7325 12.2887L6.99067 8.03052L11.2488 12.2887C11.3843 12.424 11.568 12.5 11.7594 12.5C11.9509 12.5 12.1346 12.424 12.27 12.2887C12.4053 12.1532 12.4813 11.9696 12.4813 11.7781C12.4813 11.5866 12.4053 11.403 12.27 11.2675L8.01186 7.00933Z", "fill", "#5D6983"], [1, "form-control-error-message"], [1, "form-control-hint-message"]], template: function DmInputTextLibComponent_Template(rf, ctx) {
30445
30500
  if (rf & 1) {
30446
30501
  \u0275\u0275projectionDef(_c010);
30447
30502
  \u0275\u0275elementStart(0, "div", 1);
30448
30503
  \u0275\u0275template(1, DmInputTextLibComponent_Conditional_1_Template, 2, 2, "label", 2);
30449
30504
  \u0275\u0275elementStart(2, "div", 3);
30450
- \u0275\u0275template(3, DmInputTextLibComponent_Conditional_3_Template, 2, 9, "p-autocomplete", 4)(4, DmInputTextLibComponent_Conditional_4_Template, 2, 4, "input", 5)(5, DmInputTextLibComponent_Conditional_5_Template, 2, 0, ":svg:svg", 6);
30505
+ \u0275\u0275template(3, DmInputTextLibComponent_Conditional_3_Template, 2, 9, "p-autocomplete", 4)(4, DmInputTextLibComponent_Conditional_4_Template, 2, 5, "input", 5)(5, DmInputTextLibComponent_Conditional_5_Template, 2, 0, ":svg:svg", 6);
30451
30506
  \u0275\u0275projection(6);
30452
30507
  \u0275\u0275projection(7, 1);
30453
30508
  \u0275\u0275elementEnd();
@@ -30455,16 +30510,17 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30455
30510
  \u0275\u0275elementEnd();
30456
30511
  }
30457
30512
  if (rf & 2) {
30458
- let tmp_4_0;
30459
- \u0275\u0275property("ngStyle", \u0275\u0275pureFunction1(8, _c214, !ctx.attachedToShadowDom() ? "hidden" : "visible"));
30513
+ let tmp_3_0;
30514
+ let tmp_5_0;
30515
+ \u0275\u0275property("ngStyle", \u0275\u0275pureFunction1(9, _c214, !ctx.attachedToShadowDom() ? "hidden" : "visible"));
30460
30516
  \u0275\u0275advance();
30461
30517
  \u0275\u0275conditional(ctx.label() ? 1 : -1);
30462
30518
  \u0275\u0275advance();
30463
- \u0275\u0275property("ngStyle", \u0275\u0275pureFunction0(10, _c39));
30519
+ \u0275\u0275property("ngStyle", \u0275\u0275pureFunction0(11, _c39))("ngClass", \u0275\u0275pureFunction1(12, _c49, ctx.showClear() && ((tmp_3_0 = ctx.currentControl()) == null ? null : tmp_3_0.value) && ctx.isHovered));
30464
30520
  \u0275\u0275advance();
30465
30521
  \u0275\u0275conditional(ctx.autocomplete ? 3 : 4);
30466
30522
  \u0275\u0275advance(2);
30467
- \u0275\u0275conditional(ctx.showClear() && ((tmp_4_0 = ctx.control()) == null ? null : tmp_4_0.value) ? 5 : -1);
30523
+ \u0275\u0275conditional(ctx.showClear() && ((tmp_5_0 = ctx.currentControl()) == null ? null : tmp_5_0.value) ? 5 : -1);
30468
30524
  \u0275\u0275advance(3);
30469
30525
  \u0275\u0275conditional(ctx.showError() && !ctx.isFocused ? 8 : -1);
30470
30526
  \u0275\u0275advance();
@@ -30472,7 +30528,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30472
30528
  \u0275\u0275advance();
30473
30529
  \u0275\u0275conditional(ctx.hint() && ctx.permanentHint() && !ctx.showError() ? 10 : -1);
30474
30530
  }
30475
- }, dependencies: [InputTextModule, InputText, ReactiveFormsModule, DefaultValueAccessor, NgControlStatus, FormControlDirective, CommonModule, NgStyle, AutoCompleteModule, AutoComplete], 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/components/dm-input-text-lib/src/lib/dm-input-text-lib/dm-input-text-lib.component.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.form-control-container .p-autocomplete-input {\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.dm-input-icon {\n position: absolute;\n transform: translateY(-50%);\n top: 50%;\n width: 16px;\n height: 16px;\n}\n.dm-input-icon.icon-right {\n right: 12px;\n background-color: #ffffff;\n}\n.dm-input-icon.icon-left {\n left: 12px;\n}\n.input-text-container:hover .clear-icon {\n display: block;\n}\n.clear-icon {\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}\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=dm-input-text-lib.component.css.map */\n'], encapsulation: 3, changeDetection: 0 });
30531
+ }, dependencies: [InputTextModule, InputText, ReactiveFormsModule, DefaultValueAccessor, NgControlStatus, FormControlDirective, CommonModule, NgClass, NgStyle, AutoCompleteModule, AutoComplete], 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/components/dm-input-text-lib/src/lib/dm-input-text-lib/dm-input-text-lib.component.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.form-control-container .p-autocomplete-input {\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.dm-input-icon {\n position: absolute;\n transform: translateY(-50%);\n top: 50%;\n width: 16px;\n height: 16px;\n}\n.dm-input-icon.icon-right {\n right: 12px;\n background-color: #ffffff;\n}\n.dm-input-icon.icon-left {\n left: 12px;\n}\n.input-text-container:hover .clear-icon {\n display: block;\n}\n.clear-icon {\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}\n.has-value-on-hover .form-control-field:hover,\n.has-value-on-hover .p-autocomplete-input:hover {\n padding-right: 26px;\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=dm-input-text-lib.component.css.map */\n'], encapsulation: 3, changeDetection: 0 });
30476
30532
  };
30477
30533
  (() => {
30478
30534
  (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(DmInputTextLibComponent, [{
@@ -30492,7 +30548,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30492
30548
  {{ computedLabel() }}
30493
30549
  </label>
30494
30550
  }
30495
- <div [ngStyle]="{ position: 'relative' }" class="input-text-container">
30551
+ <div [ngStyle]="{ position: 'relative' }" class="input-text-container" [ngClass]="{'has-value-on-hover': showClear() && currentControl()?.value && isHovered }">
30496
30552
  @if(autocomplete) {
30497
30553
  <p-autocomplete
30498
30554
  #inputElement
@@ -30502,7 +30558,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30502
30558
  pInputText
30503
30559
  [id]="'inputField-' + uniqueId()"
30504
30560
  [readonly]="readonly()"
30505
- [formControl]="control() || internalControl"
30561
+ [formControl]="currentControl()"
30506
30562
  [placeholder]="'Enter ' + placeholder()"
30507
30563
  (blur)="markAsTouched(); isFocused = false"
30508
30564
  (focus)="isFocused = true"
@@ -30513,6 +30569,8 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30513
30569
  (onSelect)="onSuggestionSelect($event)"
30514
30570
  fluid
30515
30571
  [appendTo]="appendToBody ? 'body' : null"
30572
+ (mouseenter)="isHovered = true"
30573
+ (mouseleave)="isHovered = false"
30516
30574
  />
30517
30575
  } @else {
30518
30576
  <input
@@ -30524,13 +30582,16 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30524
30582
  pInputText
30525
30583
  [id]="'inputField-' + uniqueId()"
30526
30584
  [readonly]="readonly()"
30527
- [formControl]="control() || internalControl"
30585
+ [formControl]="currentControl()"
30528
30586
  [placeholder]="'Enter ' + placeholder()"
30529
30587
  (blur)="markAsTouched(); isFocused = false"
30530
30588
  (focus)="isFocused = true"
30589
+ [attr.part]="inputPartName"
30590
+ (mouseenter)="isHovered = true"
30591
+ (mouseleave)="isHovered = false"
30531
30592
  />
30532
30593
  }
30533
- @if(showClear() && control()?.value) {
30594
+ @if(showClear() && currentControl()?.value) {
30534
30595
  <svg
30535
30596
  (click)="onClear()"
30536
30597
  class="clear-icon"
@@ -30564,7 +30625,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30564
30625
  </div>
30565
30626
  }
30566
30627
  </div>
30567
- `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.ShadowDom, 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/components/dm-input-text-lib/src/lib/dm-input-text-lib/dm-input-text-lib.component.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.form-control-container .p-autocomplete-input {\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.dm-input-icon {\n position: absolute;\n transform: translateY(-50%);\n top: 50%;\n width: 16px;\n height: 16px;\n}\n.dm-input-icon.icon-right {\n right: 12px;\n background-color: #ffffff;\n}\n.dm-input-icon.icon-left {\n left: 12px;\n}\n.input-text-container:hover .clear-icon {\n display: block;\n}\n.clear-icon {\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}\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=dm-input-text-lib.component.css.map */\n'] }]
30628
+ `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.ShadowDom, 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/components/dm-input-text-lib/src/lib/dm-input-text-lib/dm-input-text-lib.component.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.form-control-container .p-autocomplete-input {\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.dm-input-icon {\n position: absolute;\n transform: translateY(-50%);\n top: 50%;\n width: 16px;\n height: 16px;\n}\n.dm-input-icon.icon-right {\n right: 12px;\n background-color: #ffffff;\n}\n.dm-input-icon.icon-left {\n left: 12px;\n}\n.input-text-container:hover .clear-icon {\n display: block;\n}\n.clear-icon {\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}\n.has-value-on-hover .form-control-field:hover,\n.has-value-on-hover .p-autocomplete-input:hover {\n padding-right: 26px;\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=dm-input-text-lib.component.css.map */\n'] }]
30568
30629
  }], null, { suggestionsList: [{
30569
30630
  type: Input
30570
30631
  }], autocomplete: [{
@@ -30576,10 +30637,12 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
30576
30637
  }], appendToBody: [{
30577
30638
  type: Input,
30578
30639
  args: [{ transform: booleanAttribute }]
30640
+ }], inputPartName: [{
30641
+ type: Input
30579
30642
  }] });
30580
30643
  })();
30581
30644
  (() => {
30582
- (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(DmInputTextLibComponent, { className: "DmInputTextLibComponent", filePath: "libs/components/dm-input-text-lib/src/lib/dm-input-text-lib/dm-input-text-lib.component.ts", lineNumber: 124 });
30645
+ (typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(DmInputTextLibComponent, { className: "DmInputTextLibComponent", filePath: "libs/components/dm-input-text-lib/src/lib/dm-input-text-lib/dm-input-text-lib.component.ts", lineNumber: 129 });
30583
30646
  })();
30584
30647
 
30585
30648
  // node_modules/primeng/fesm2022/primeng-iconfield.mjs
@@ -30931,7 +30994,7 @@ function SelectItem_ng_container_3_Template(rf, ctx) {
30931
30994
  }
30932
30995
  var _c310 = ["item"];
30933
30996
  var _c410 = ["group"];
30934
- var _c57 = ["loader"];
30997
+ var _c58 = ["loader"];
30935
30998
  var _c67 = ["selectedItem"];
30936
30999
  var _c77 = ["header"];
30937
31000
  var _c86 = ["filter"];
@@ -33589,7 +33652,7 @@ var Select = class _Select extends BaseComponent {
33589
33652
  if (rf & 1) {
33590
33653
  \u0275\u0275contentQuery(dirIndex, _c310, 4);
33591
33654
  \u0275\u0275contentQuery(dirIndex, _c410, 4);
33592
- \u0275\u0275contentQuery(dirIndex, _c57, 4);
33655
+ \u0275\u0275contentQuery(dirIndex, _c58, 4);
33593
33656
  \u0275\u0275contentQuery(dirIndex, _c67, 4);
33594
33657
  \u0275\u0275contentQuery(dirIndex, _c77, 4);
33595
33658
  \u0275\u0275contentQuery(dirIndex, _c86, 4);
@@ -35312,7 +35375,7 @@ function MultiSelectItem_ng_container_4_Template(rf, ctx) {
35312
35375
  }
35313
35376
  }
35314
35377
  var _c411 = ["item"];
35315
- var _c58 = ["group"];
35378
+ var _c59 = ["group"];
35316
35379
  var _c68 = ["loader"];
35317
35380
  var _c78 = ["header"];
35318
35381
  var _c87 = ["filter"];
@@ -38297,7 +38360,7 @@ var MultiSelect = class _MultiSelect extends BaseComponent {
38297
38360
  \u0275\u0275contentQuery(dirIndex, Footer, 5);
38298
38361
  \u0275\u0275contentQuery(dirIndex, Header, 5);
38299
38362
  \u0275\u0275contentQuery(dirIndex, _c411, 4);
38300
- \u0275\u0275contentQuery(dirIndex, _c58, 4);
38363
+ \u0275\u0275contentQuery(dirIndex, _c59, 4);
38301
38364
  \u0275\u0275contentQuery(dirIndex, _c68, 4);
38302
38365
  \u0275\u0275contentQuery(dirIndex, _c78, 4);
38303
38366
  \u0275\u0275contentQuery(dirIndex, _c87, 4);
@@ -39766,7 +39829,7 @@ var VerificationService = class _VerificationService {
39766
39829
  }
39767
39830
  runReport(config) {
39768
39831
  const url = this.apiHandlerService.getACSBaseUrl("mm_verification_report");
39769
- return from(this.getTracingInfo()).pipe(switchMap((tracingInfo) => this.apiHandlerService.Post(url, { p_report_params: this.verificationRequestBodyStrategy.buildRequestBody(config, tracingInfo) }).pipe(map((data) => {
39832
+ return from(this.getTracingInfo()).pipe(switchMap((tracingInfo) => this.apiHandlerService.Post(url, { p_report_params: this.verificationRequestBodyStrategy.buildRequestBody(config, tracingInfo) }).pipe(this.retryOnUnknownError(3, 5e3), map((data) => {
39770
39833
  if (!data) {
39771
39834
  throw new Error("Server returned empty response");
39772
39835
  }
@@ -39834,6 +39897,14 @@ var VerificationService = class _VerificationService {
39834
39897
  p_realm: this.sessionService.sessionData?.Domains
39835
39898
  }, { responseType: "text" });
39836
39899
  }
39900
+ retryOnUnknownError(maxRetries = 2, delayMs = 1e3) {
39901
+ return (source) => source.pipe(retryWhen((errors) => errors.pipe(mergeMap((error) => {
39902
+ if (!error.ok && error.status == 0 && error.statusText == "Unknown Error") {
39903
+ return of(error).pipe(delay(delayMs));
39904
+ }
39905
+ return throwError(() => error);
39906
+ }), take(maxRetries))));
39907
+ }
39837
39908
  static \u0275fac = function VerificationService_Factory(__ngFactoryType__) {
39838
39909
  return new (__ngFactoryType__ || _VerificationService)(\u0275\u0275inject(ApiHandlerService), \u0275\u0275inject(SessionService), \u0275\u0275inject(TracingInfoService), \u0275\u0275inject(VerificationRequestBodyStrategy), \u0275\u0275inject(HttpClient));
39839
39910
  };
@@ -42186,7 +42257,7 @@ var _c131 = ["firstpagelinkicon"];
42186
42257
  var _c221 = ["previouspagelinkicon"];
42187
42258
  var _c314 = ["lastpagelinkicon"];
42188
42259
  var _c412 = ["nextpagelinkicon"];
42189
- var _c59 = (a0) => ({
42260
+ var _c510 = (a0) => ({
42190
42261
  "p-disabled": a0
42191
42262
  });
42192
42263
  var _c69 = (a0) => ({
@@ -42266,7 +42337,7 @@ function Paginator_div_0_button_3_Template(rf, ctx) {
42266
42337
  }
42267
42338
  if (rf & 2) {
42268
42339
  const ctx_r1 = \u0275\u0275nextContext(2);
42269
- \u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5, _c59, ctx_r1.isFirstPage() || ctx_r1.empty()));
42340
+ \u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5, _c510, ctx_r1.isFirstPage() || ctx_r1.empty()));
42270
42341
  \u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("firstPageLabel"));
42271
42342
  \u0275\u0275advance();
42272
42343
  \u0275\u0275property("ngIf", !ctx_r1.firstPageLinkIconTemplate && !ctx_r1._firstPageLinkIconTemplate);
@@ -42474,7 +42545,7 @@ function Paginator_div_0_button_12_Template(rf, ctx) {
42474
42545
  }
42475
42546
  if (rf & 2) {
42476
42547
  const ctx_r1 = \u0275\u0275nextContext(2);
42477
- \u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5, _c59, ctx_r1.isLastPage() || ctx_r1.empty()));
42548
+ \u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5, _c510, ctx_r1.isLastPage() || ctx_r1.empty()));
42478
42549
  \u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("lastPageLabel"));
42479
42550
  \u0275\u0275advance();
42480
42551
  \u0275\u0275property("ngIf", !ctx_r1.lastPageLinkIconTemplate && !ctx_r1._lastPageLinkIconTemplate);
@@ -42623,7 +42694,7 @@ function Paginator_div_0_Template(rf, ctx) {
42623
42694
  \u0275\u0275advance();
42624
42695
  \u0275\u0275property("ngIf", ctx_r1.showFirstLastIcon);
42625
42696
  \u0275\u0275advance();
42626
- \u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(25, _c59, ctx_r1.isFirstPage() || ctx_r1.empty()));
42697
+ \u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(25, _c510, ctx_r1.isFirstPage() || ctx_r1.empty()));
42627
42698
  \u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("prevPageLabel"));
42628
42699
  \u0275\u0275advance();
42629
42700
  \u0275\u0275property("ngIf", !ctx_r1.previousPageLinkIconTemplate && !ctx_r1._previousPageLinkIconTemplate);
@@ -42634,7 +42705,7 @@ function Paginator_div_0_Template(rf, ctx) {
42634
42705
  \u0275\u0275advance();
42635
42706
  \u0275\u0275property("ngIf", ctx_r1.showJumpToPageDropdown);
42636
42707
  \u0275\u0275advance();
42637
- \u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(27, _c59, ctx_r1.isLastPage() || ctx_r1.empty()));
42708
+ \u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(27, _c510, ctx_r1.isLastPage() || ctx_r1.empty()));
42638
42709
  \u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("nextPageLabel"));
42639
42710
  \u0275\u0275advance();
42640
42711
  \u0275\u0275property("ngIf", !ctx_r1.nextPageLinkIconTemplate && !ctx_r1._nextPageLinkIconTemplate);
@@ -43546,7 +43617,7 @@ var _c138 = ["caption"];
43546
43617
  var _c227 = ["header"];
43547
43618
  var _c315 = ["body"];
43548
43619
  var _c413 = ["footer"];
43549
- var _c510 = ["summary"];
43620
+ var _c511 = ["summary"];
43550
43621
  var _c610 = ["emptymessage"];
43551
43622
  var _c710 = ["paginatorleft"];
43552
43623
  var _c88 = ["paginatorright"];
@@ -46891,7 +46962,7 @@ var TreeTable = class _TreeTable extends BaseComponent {
46891
46962
  \u0275\u0275contentQuery(dirIndex, _c227, 4);
46892
46963
  \u0275\u0275contentQuery(dirIndex, _c315, 4);
46893
46964
  \u0275\u0275contentQuery(dirIndex, _c413, 4);
46894
- \u0275\u0275contentQuery(dirIndex, _c510, 4);
46965
+ \u0275\u0275contentQuery(dirIndex, _c511, 4);
46895
46966
  \u0275\u0275contentQuery(dirIndex, _c610, 4);
46896
46967
  \u0275\u0275contentQuery(dirIndex, _c710, 4);
46897
46968
  \u0275\u0275contentQuery(dirIndex, _c88, 4);
@@ -52096,7 +52167,7 @@ var RadioButtonModule = class _RadioButtonModule {
52096
52167
  })();
52097
52168
 
52098
52169
  // libs/shared/ui/components/src/lib/modals/save-template-modal/save-template-modal.component.ts
52099
- var _c023 = (a0) => ({ width: "460px", "max-height": a0 });
52170
+ var _c023 = (a0) => ({ width: "460px", "height": a0 });
52100
52171
  var _c149 = () => ({ "margin-bottom": "12px" });
52101
52172
  var _c231 = () => ({ "margin-right": "4px" });
52102
52173
  var _c318 = () => ({ width: "20px", height: "20px" });
@@ -52388,7 +52459,7 @@ var SaveTemplateModalComponent = class _SaveTemplateModalComponent {
52388
52459
  header="Save Template"
52389
52460
  [(visible)]="visible"
52390
52461
  [modal]="true"
52391
- [style]="{ width: '460px', 'max-height': showWarningMessage() ? '398px' : '340px' }"
52462
+ [style]="{ width: '460px', 'height': showWarningMessage() ? '398px' : '340px' }"
52392
52463
  (onShow)="onShowDialog()"
52393
52464
  >
52394
52465
  @if(isTemplatePresent) {
@@ -53231,7 +53302,7 @@ var ReportConfigurationModalComponent = class _ReportConfigurationModalComponent
53231
53302
  DefaultValueAccessor,
53232
53303
  NgControlStatus,
53233
53304
  NgModel
53234
- ], 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.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-subtitle[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-content[_ngcontent-%COMP%] {\n margin-top: 24px;\n display: flex;\n flex-direction: row;\n gap: 16px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-section[_ngcontent-%COMP%] {\n height: 394px;\n width: 320px;\n border-radius: 8px;\n border: 1px solid #edeff2;\n background: #fff;\n padding: 16px;\n overflow-y: scroll;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-section[_ngcontent-%COMP%]::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n background: #fff;\n z-index: 999999;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-section[_ngcontent-%COMP%]::-webkit-scrollbar-thumb {\n border-radius: 5px;\n background: #9aa6bc;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-title[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 700;\n line-height: 18px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .total-items[_ngcontent-%COMP%] {\n color: #7985a0;\n font-size: 12px;\n font-style: normal;\n font-weight: 500;\n line-height: 16px;\n margin-left: 12px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-header-action[_ngcontent-%COMP%] {\n cursor: pointer;\n color: #0076dd;\n text-align: center;\n font-size: 12px;\n font-style: normal;\n font-weight: 600;\n line-height: 16px;\n margin-left: 11px;\n display: flex;\n gap: 4px;\n padding: 8px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-header-action[_ngcontent-%COMP%]:hover {\n background-color: rgba(93, 105, 131, 0.08);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-header-action[_ngcontent-%COMP%]:active {\n background-color: rgba(93, 105, 131, 0.22);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] {\n margin-top: 16px;\n position: relative;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] .section-search[_ngcontent-%COMP%] {\n position: relative;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] .section-search[_ngcontent-%COMP%]:hover .clear-icon[_ngcontent-%COMP%] {\n display: block;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] .p-inputtext[_ngcontent-%COMP%] {\n padding-inline: 32px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_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.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_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.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] {\n margin: 16px 0 0;\n padding: 0;\n list-style: none;\n display: flex;\n flex-direction: column;\n gap: 13px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] {\n color: #252a34;\n font-variant-numeric: lining-nums tabular-nums;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n margin-left: 8px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] .list-item-drag-icon[_ngcontent-%COMP%] {\n width: 20px;\n height: 20px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] .list-item-text[_ngcontent-%COMP%] {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] [pDraggable][_ngcontent-%COMP%] {\n cursor: move;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .drag-opacity[_ngcontent-%COMP%] {\n opacity: 0.2;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .selected-list-item[_ngcontent-%COMP%] {\n padding: 8px 12px;\n border: 1px solid rgb(188, 194, 208);\n border-radius: 6px;\n margin: 0;\n display: flex;\n align-items: center;\n gap: 12px;\n height: 36px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .select-all-item[_ngcontent-%COMP%] {\n color: #0076dd;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item-remove-icon[_ngcontent-%COMP%] {\n margin-left: auto;\n cursor: pointer;\n}\n\n\n\n\n\n\n/*# sourceMappingURL=report-configuration-modal.css.map */'], changeDetection: 0 });
53305
+ ], 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.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-subtitle[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-content[_ngcontent-%COMP%] {\n margin-top: 24px;\n display: flex;\n flex-direction: row;\n gap: 16px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-section[_ngcontent-%COMP%] {\n height: 394px;\n width: 320px;\n border-radius: 8px;\n border: 1px solid #edeff2;\n background: #fff;\n padding: 16px;\n overflow-y: scroll;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-section[_ngcontent-%COMP%]::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n background: #fff;\n z-index: 999999;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .modal-section[_ngcontent-%COMP%]::-webkit-scrollbar-thumb {\n border-radius: 5px;\n background: #9aa6bc;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-title[_ngcontent-%COMP%] {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 700;\n line-height: 18px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .total-items[_ngcontent-%COMP%] {\n color: #7985a0;\n font-size: 12px;\n font-style: normal;\n font-weight: 500;\n line-height: 16px;\n margin-left: 12px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-header-action[_ngcontent-%COMP%] {\n cursor: pointer;\n color: #0076dd;\n text-align: center;\n font-size: 12px;\n font-style: normal;\n font-weight: 600;\n line-height: 16px;\n margin-left: 11px;\n display: flex;\n gap: 4px;\n padding: 8px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-header-action[_ngcontent-%COMP%]:hover {\n background-color: rgba(93, 105, 131, 0.08);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-header[_ngcontent-%COMP%] .section-header-action[_ngcontent-%COMP%]:active {\n background-color: rgba(93, 105, 131, 0.22);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] {\n margin-top: 16px;\n position: relative;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] .section-search[_ngcontent-%COMP%] {\n position: relative;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] .section-search[_ngcontent-%COMP%]:hover .clear-icon[_ngcontent-%COMP%] {\n display: block;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] .section-search[_ngcontent-%COMP%] .search-field[_ngcontent-%COMP%] {\n width: 100%;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_ngcontent-%COMP%] .p-inputtext[_ngcontent-%COMP%] {\n padding-inline: 32px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_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.configure-report-modal-wrapper[_ngcontent-%COMP%] .section-content[_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.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] {\n margin: 16px 0 0;\n padding: 0;\n list-style: none;\n display: flex;\n flex-direction: column;\n gap: 13px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] {\n color: #252a34;\n font-variant-numeric: lining-nums tabular-nums;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n margin-left: 8px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] .list-item-drag-icon[_ngcontent-%COMP%] {\n width: 20px;\n height: 20px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item[_ngcontent-%COMP%] .list-item-text[_ngcontent-%COMP%] {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] [pDraggable][_ngcontent-%COMP%] {\n cursor: move;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .drag-opacity[_ngcontent-%COMP%] {\n opacity: 0.2;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .selected-list-item[_ngcontent-%COMP%] {\n padding: 8px 12px;\n border: 1px solid rgb(188, 194, 208);\n border-radius: 6px;\n margin: 0;\n display: flex;\n align-items: center;\n gap: 12px;\n height: 36px;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .select-all-item[_ngcontent-%COMP%] {\n color: #0076dd;\n}\n.configure-report-modal-wrapper[_ngcontent-%COMP%] .list-items[_ngcontent-%COMP%] .list-item-remove-icon[_ngcontent-%COMP%] {\n margin-left: auto;\n cursor: pointer;\n}\n\n\n\n\n\n\n/*# sourceMappingURL=report-configuration-modal.css.map */'], changeDetection: 0 });
53235
53306
  };
53236
53307
  (() => {
53237
53308
  (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ReportConfigurationModalComponent, [{
@@ -53479,7 +53550,7 @@ var ReportConfigurationModalComponent = class _ReportConfigurationModalComponent
53479
53550
  </div>\r
53480
53551
  </ng-template>\r
53481
53552
  </p-dialog>\r
53482
- `, 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/report-configuration-modal/report-configuration-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.form-control-container .p-autocomplete-input {\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.configure-report-modal-wrapper .modal-subtitle {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper .modal-content {\n margin-top: 24px;\n display: flex;\n flex-direction: row;\n gap: 16px;\n}\n.configure-report-modal-wrapper .modal-section {\n height: 394px;\n width: 320px;\n border-radius: 8px;\n border: 1px solid #edeff2;\n background: #fff;\n padding: 16px;\n overflow-y: scroll;\n}\n.configure-report-modal-wrapper .modal-section::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n background: #fff;\n z-index: 999999;\n}\n.configure-report-modal-wrapper .modal-section::-webkit-scrollbar-thumb {\n border-radius: 5px;\n background: #9aa6bc;\n}\n.configure-report-modal-wrapper .section-header {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.configure-report-modal-wrapper .section-header .section-title {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 700;\n line-height: 18px;\n}\n.configure-report-modal-wrapper .section-header .total-items {\n color: #7985a0;\n font-size: 12px;\n font-style: normal;\n font-weight: 500;\n line-height: 16px;\n margin-left: 12px;\n}\n.configure-report-modal-wrapper .section-header .section-header-action {\n cursor: pointer;\n color: #0076dd;\n text-align: center;\n font-size: 12px;\n font-style: normal;\n font-weight: 600;\n line-height: 16px;\n margin-left: 11px;\n display: flex;\n gap: 4px;\n padding: 8px;\n}\n.configure-report-modal-wrapper .section-header .section-header-action:hover {\n background-color: rgba(93, 105, 131, 0.08);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper .section-header .section-header-action:active {\n background-color: rgba(93, 105, 131, 0.22);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper .section-content {\n margin-top: 16px;\n position: relative;\n}\n.configure-report-modal-wrapper .section-content .section-search {\n position: relative;\n}\n.configure-report-modal-wrapper .section-content .section-search:hover .clear-icon {\n display: block;\n}\n.configure-report-modal-wrapper .section-content .p-inputtext {\n padding-inline: 32px;\n}\n.configure-report-modal-wrapper .section-content .search-icon {\n position: absolute;\n left: 12px;\n transform: translateY(-50%);\n top: 50%;\n width: 16px;\n height: 16px;\n}\n.configure-report-modal-wrapper .section-content .clear-icon {\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.configure-report-modal-wrapper .list-items {\n margin: 16px 0 0;\n padding: 0;\n list-style: none;\n display: flex;\n flex-direction: column;\n gap: 13px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper .list-items .list-item {\n color: #252a34;\n font-variant-numeric: lining-nums tabular-nums;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper .list-items .list-item label {\n margin-left: 8px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper .list-items .list-item .list-item-drag-icon {\n width: 20px;\n height: 20px;\n}\n.configure-report-modal-wrapper .list-items .list-item .list-item-text {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.configure-report-modal-wrapper .list-items [pDraggable] {\n cursor: move;\n}\n.configure-report-modal-wrapper .list-items .drag-opacity {\n opacity: 0.2;\n}\n.configure-report-modal-wrapper .list-items .selected-list-item {\n padding: 8px 12px;\n border: 1px solid rgb(188, 194, 208);\n border-radius: 6px;\n margin: 0;\n display: flex;\n align-items: center;\n gap: 12px;\n height: 36px;\n}\n.configure-report-modal-wrapper .list-items .select-all-item {\n color: #0076dd;\n}\n.configure-report-modal-wrapper .list-items .list-item-remove-icon {\n margin-left: auto;\n cursor: pointer;\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=report-configuration-modal.css.map */\n'] }]
53553
+ `, 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/report-configuration-modal/report-configuration-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.form-control-container .p-autocomplete-input {\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.configure-report-modal-wrapper .modal-subtitle {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper .modal-content {\n margin-top: 24px;\n display: flex;\n flex-direction: row;\n gap: 16px;\n}\n.configure-report-modal-wrapper .modal-section {\n height: 394px;\n width: 320px;\n border-radius: 8px;\n border: 1px solid #edeff2;\n background: #fff;\n padding: 16px;\n overflow-y: scroll;\n}\n.configure-report-modal-wrapper .modal-section::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n background: #fff;\n z-index: 999999;\n}\n.configure-report-modal-wrapper .modal-section::-webkit-scrollbar-thumb {\n border-radius: 5px;\n background: #9aa6bc;\n}\n.configure-report-modal-wrapper .section-header {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.configure-report-modal-wrapper .section-header .section-title {\n color: #4a5469;\n font-size: 14px;\n font-style: normal;\n font-weight: 700;\n line-height: 18px;\n}\n.configure-report-modal-wrapper .section-header .total-items {\n color: #7985a0;\n font-size: 12px;\n font-style: normal;\n font-weight: 500;\n line-height: 16px;\n margin-left: 12px;\n}\n.configure-report-modal-wrapper .section-header .section-header-action {\n cursor: pointer;\n color: #0076dd;\n text-align: center;\n font-size: 12px;\n font-style: normal;\n font-weight: 600;\n line-height: 16px;\n margin-left: 11px;\n display: flex;\n gap: 4px;\n padding: 8px;\n}\n.configure-report-modal-wrapper .section-header .section-header-action:hover {\n background-color: rgba(93, 105, 131, 0.08);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper .section-header .section-header-action:active {\n background-color: rgba(93, 105, 131, 0.22);\n border-radius: 4px;\n}\n.configure-report-modal-wrapper .section-content {\n margin-top: 16px;\n position: relative;\n}\n.configure-report-modal-wrapper .section-content .section-search {\n position: relative;\n}\n.configure-report-modal-wrapper .section-content .section-search:hover .clear-icon {\n display: block;\n}\n.configure-report-modal-wrapper .section-content .section-search .search-field {\n width: 100%;\n}\n.configure-report-modal-wrapper .section-content .p-inputtext {\n padding-inline: 32px;\n}\n.configure-report-modal-wrapper .section-content .search-icon {\n position: absolute;\n left: 12px;\n transform: translateY(-50%);\n top: 50%;\n width: 16px;\n height: 16px;\n}\n.configure-report-modal-wrapper .section-content .clear-icon {\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.configure-report-modal-wrapper .list-items {\n margin: 16px 0 0;\n padding: 0;\n list-style: none;\n display: flex;\n flex-direction: column;\n gap: 13px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper .list-items .list-item {\n color: #252a34;\n font-variant-numeric: lining-nums tabular-nums;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 18px;\n}\n.configure-report-modal-wrapper .list-items .list-item label {\n margin-left: 8px;\n cursor: pointer;\n}\n.configure-report-modal-wrapper .list-items .list-item .list-item-drag-icon {\n width: 20px;\n height: 20px;\n}\n.configure-report-modal-wrapper .list-items .list-item .list-item-text {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.configure-report-modal-wrapper .list-items [pDraggable] {\n cursor: move;\n}\n.configure-report-modal-wrapper .list-items .drag-opacity {\n opacity: 0.2;\n}\n.configure-report-modal-wrapper .list-items .selected-list-item {\n padding: 8px 12px;\n border: 1px solid rgb(188, 194, 208);\n border-radius: 6px;\n margin: 0;\n display: flex;\n align-items: center;\n gap: 12px;\n height: 36px;\n}\n.configure-report-modal-wrapper .list-items .select-all-item {\n color: #0076dd;\n}\n.configure-report-modal-wrapper .list-items .list-item-remove-icon {\n margin-left: auto;\n cursor: pointer;\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=report-configuration-modal.css.map */\n'] }]
53483
53554
  }], null, { allAvailableFields: [{
53484
53555
  type: Input
53485
53556
  }], selectedList: [{
@@ -53781,13 +53852,13 @@ var DmDatePickerLibComponent = class _DmDatePickerLibComponent {
53781
53852
 
53782
53853
  // libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts
53783
53854
  var _forTrack04 = ($index, $item) => $item.dag_id;
53784
- var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-5YYL42DS.js").then((m) => m.DeleteTemplateModalComponent)];
53855
+ var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-IQKQHETC.js").then((m) => m.DeleteTemplateModalComponent)];
53785
53856
  var _c026 = () => ({ "width": "460px", "max-height": "540px" });
53786
53857
  var _c151 = () => ({ width: "20px", height: "20px" });
53787
53858
  var _c237 = () => ({ "min-width": "720px" });
53788
53859
  var _c319 = () => ({ height: "20px" });
53789
53860
  var _c414 = () => ({ "min-width": "80px" });
53790
- var _c511 = () => ({ width: "40px", height: "40px" });
53861
+ var _c512 = () => ({ width: "40px", height: "40px" });
53791
53862
  function SendSettingsModalComponent_Conditional_0_Conditional_10_Conditional_2_Template(rf, ctx) {
53792
53863
  if (rf & 1) {
53793
53864
  \u0275\u0275element(0, "lib-dm-input-text-lib", 15)(1, "lib-dm-input-text-lib", 16)(2, "lib-dm-input-text-lib", 17)(3, "lib-dm-input-text-lib", 18);
@@ -54149,7 +54220,7 @@ function SendSettingsModalComponent_Conditional_1_Conditional_2_Template(rf, ctx
54149
54220
  }
54150
54221
  if (rf & 2) {
54151
54222
  \u0275\u0275advance();
54152
- \u0275\u0275styleMap(\u0275\u0275pureFunction0(2, _c511));
54223
+ \u0275\u0275styleMap(\u0275\u0275pureFunction0(2, _c512));
54153
54224
  }
54154
54225
  }
54155
54226
  function SendSettingsModalComponent_Conditional_1_Template(rf, ctx) {
@@ -54612,7 +54683,7 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
54612
54683
  ], 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 });
54613
54684
  };
54614
54685
  (() => {
54615
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-5YYL42DS.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
54686
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-IQKQHETC.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
54616
54687
  setClassMetadata(SendSettingsModalComponent, [{
54617
54688
  type: Component,
54618
54689
  args: [{ selector: "lib-send-settings-modal", standalone: true, imports: [
@@ -55068,8 +55139,8 @@ Are you sure you want to delete the schedule?"\r
55068
55139
 
55069
55140
  // libs/shared/ui/components/src/lib/modals/template-select-modal/template-select-modal.ts
55070
55141
  var _forTrack05 = ($index, $item) => $item.template_id;
55071
- var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-5YYL42DS.js").then((m) => m.DeleteTemplateModalComponent)];
55072
- var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-CG477KFS.js").then((m) => m.DomainsOverloadModalComponent)];
55142
+ var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-IQKQHETC.js").then((m) => m.DeleteTemplateModalComponent)];
55143
+ var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-YFEC4GSE.js").then((m) => m.DomainsOverloadModalComponent)];
55073
55144
  var _c027 = (a0) => ({ "selected-row": a0 });
55074
55145
  var _c158 = () => ({ position: "relative" });
55075
55146
  var _c238 = () => ({ width: "16px", height: "16px" });
@@ -55586,7 +55657,7 @@ var TemplateSelectModalComponent = class _TemplateSelectModalComponent {
55586
55657
  ], 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[_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 });
55587
55658
  };
55588
55659
  (() => {
55589
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-5YYL42DS.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-CG477KFS.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
55660
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-IQKQHETC.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-YFEC4GSE.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
55590
55661
  setClassMetadata(TemplateSelectModalComponent, [{
55591
55662
  type: Component,
55592
55663
  args: [{ selector: "lib-template-select-modal", standalone: true, imports: [
@@ -56110,7 +56181,7 @@ function ToastItem_Conditional_3_Template(rf, ctx) {
56110
56181
  \u0275\u0275conditional((ctx_r1.message == null ? null : ctx_r1.message.closable) !== false ? 3 : -1);
56111
56182
  }
56112
56183
  }
56113
- var _c512 = ["message"];
56184
+ var _c513 = ["message"];
56114
56185
  var _c611 = ["headless"];
56115
56186
  function Toast_p_toastItem_2_Template(rf, ctx) {
56116
56187
  if (rf & 1) {
@@ -56998,7 +57069,7 @@ var Toast = class _Toast extends BaseComponent {
56998
57069
  selectors: [["p-toast"]],
56999
57070
  contentQueries: function Toast_ContentQueries(rf, ctx, dirIndex) {
57000
57071
  if (rf & 1) {
57001
- \u0275\u0275contentQuery(dirIndex, _c512, 5);
57072
+ \u0275\u0275contentQuery(dirIndex, _c513, 5);
57002
57073
  \u0275\u0275contentQuery(dirIndex, _c611, 5);
57003
57074
  \u0275\u0275contentQuery(dirIndex, PrimeTemplate, 4);
57004
57075
  }
@@ -57360,7 +57431,7 @@ var AppComponent_Defer_21_DepsFn = () => [
57360
57431
  NgControlStatusGroup,
57361
57432
  FormGroupDirective,
57362
57433
  FormControlName,
57363
- import("./chunk-C7TDIIUY.js").then((m) => m.Dialog)
57434
+ import("./chunk-PJSYVBGK.js").then((m) => m.Dialog)
57364
57435
  ];
57365
57436
  var AppComponent_Conditional_23_Defer_1_DepsFn = () => [DomainsOverloadModalComponent];
57366
57437
  var AppComponent_Conditional_23_Defer_4_DepsFn = () => [SaveTemplateModalComponent];
@@ -57370,7 +57441,7 @@ var _c160 = (a0) => ({ width: a0 });
57370
57441
  var _c240 = () => ({ "margin-right": "16px" });
57371
57442
  var _c324 = () => ({ height: "20px" });
57372
57443
  var _c417 = () => [];
57373
- var _c513 = () => ({ width: "20px", height: "20px" });
57444
+ var _c514 = () => ({ width: "20px", height: "20px" });
57374
57445
  var _c612 = () => ({ width: "60px", height: "60px" });
57375
57446
  var _c711 = () => ({ standalone: true });
57376
57447
  var _c89 = () => ({ width: "16px", height: "16px" });
@@ -57536,7 +57607,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_0_Template(
57536
57607
  \u0275\u0275nextContext(3);
57537
57608
  const lookups_r12 = \u0275\u0275readContextLet(2);
57538
57609
  const domainLookups_r4 = \u0275\u0275readContextLet(3);
57539
- \u0275\u0275property("isMultiSelect", true)("label", field_r11["field_name"])("placeholder", field_r11["field_name"])("isRequired", field_r11["field_id"] === "merchant_name")("options", lookups_r12 ? field_r11["field_id"] === "merchant_name" ? domainLookups_r4 : lookups_r12[field_r11["field_id"]] : \u0275\u0275pureFunction0(6, _c417))("formControlName", field_r11.field_id);
57610
+ \u0275\u0275property("isMultiSelect", true)("label", field_r11["field_name"])("placeholder", field_r11["field_name"])("isRequired", field_r11["field_id"] === "merchant_name")("options", lookups_r12 ? field_r11["field_id"] === "merchant_name" ? domainLookups_r4 : lookups_r12[field_r11["lookup_param_key"]] : \u0275\u0275pureFunction0(6, _c417))("formControlName", field_r11.field_id);
57540
57611
  }
57541
57612
  }
57542
57613
  function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_1_Template(rf, ctx) {
@@ -57545,7 +57616,8 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_1_Template(
57545
57616
  }
57546
57617
  if (rf & 2) {
57547
57618
  const field_r11 = \u0275\u0275nextContext().$implicit;
57548
- \u0275\u0275property("tooltipMessage", field_r11["field_id"] === "verification_updated_date" || field_r11["field_id"] === "verification_creation_date" ? "You must specify at least one field: Create Date or Last Update" : "")("infoIcon", field_r11["field_id"] === "verification_updated_date" || field_r11["field_id"] === "verification_creation_date")("label", field_r11["field_name"])("formControlName", field_r11.field_id);
57619
+ const ctx_r2 = \u0275\u0275nextContext(3);
57620
+ \u0275\u0275property("tooltipMessage", field_r11["field_id"] === "verification_updated_date" || field_r11["field_id"] === "verification_creation_date" ? "You must specify at least one field: Create Date or Last Update" : "")("infoIcon", field_r11["field_id"] === "verification_updated_date" || field_r11["field_id"] === "verification_creation_date")("label", field_r11["field_name"])("formControlName", field_r11.field_id)("control", ctx_r2.getControl(field_r11.field_id));
57549
57621
  }
57550
57622
  }
57551
57623
  function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Conditional_0_Conditional_2_Template(rf, ctx) {
@@ -57588,7 +57660,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Condition
57588
57660
  if (rf & 2) {
57589
57661
  const field_r11 = \u0275\u0275nextContext(2).$implicit;
57590
57662
  const ctx_r2 = \u0275\u0275nextContext(3);
57591
- \u0275\u0275property("showClear", false)("label", field_r11["field_name"])("readonly", true)("placeholder", field_r11["field_name"])("control", ctx_r2.getControl(field_r11.field_id));
57663
+ \u0275\u0275property("showClear", false)("label", field_r11["field_name"])("readonly", true)("placeholder", field_r11["field_name"])("control", ctx_r2.getControl(field_r11.field_id))("inputPartName", "documents-modal-button-custom-styles");
57592
57664
  \u0275\u0275advance(2);
57593
57665
  \u0275\u0275conditional(ctx_r2.getControl(field_r11.field_id).value ? 2 : -1);
57594
57666
  }
@@ -57605,7 +57677,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Condition
57605
57677
  }
57606
57678
  function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Template(rf, ctx) {
57607
57679
  if (rf & 1) {
57608
- \u0275\u0275template(0, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Conditional_0_Template, 6, 6, "lib-dm-input-text-lib", 51)(1, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Conditional_1_Template, 1, 3, "lib-dm-input-text-lib", 52);
57680
+ \u0275\u0275template(0, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Conditional_0_Template, 6, 7, "lib-dm-input-text-lib", 51)(1, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Conditional_1_Template, 1, 3, "lib-dm-input-text-lib", 52);
57609
57681
  }
57610
57682
  if (rf & 2) {
57611
57683
  const field_r11 = \u0275\u0275nextContext().$implicit;
@@ -57614,7 +57686,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Template(
57614
57686
  }
57615
57687
  function AppComponent_Conditional_12_Conditional_5_For_4_Template(rf, ctx) {
57616
57688
  if (rf & 1) {
57617
- \u0275\u0275template(0, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_0_Template, 1, 7, "lib-dm-select-lib", 49)(1, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_1_Template, 1, 4, "lib-dm-range-date-picker-lib", 50)(2, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Template, 2, 1);
57689
+ \u0275\u0275template(0, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_0_Template, 1, 7, "lib-dm-select-lib", 49)(1, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_1_Template, 1, 5, "lib-dm-range-date-picker-lib", 50)(2, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Template, 2, 1);
57618
57690
  }
57619
57691
  if (rf & 2) {
57620
57692
  const field_r11 = ctx.$implicit;
@@ -57638,7 +57710,7 @@ function AppComponent_Conditional_12_Conditional_5_Conditional_16_Template(rf, c
57638
57710
  }
57639
57711
  if (rf & 2) {
57640
57712
  \u0275\u0275advance();
57641
- \u0275\u0275styleMap(\u0275\u0275pureFunction0(2, _c513));
57713
+ \u0275\u0275styleMap(\u0275\u0275pureFunction0(2, _c514));
57642
57714
  }
57643
57715
  }
57644
57716
  function AppComponent_Conditional_12_Conditional_5_Template(rf, ctx) {
@@ -57827,6 +57899,10 @@ function AppComponent_Defer_20_Conditional_2_Template(rf, ctx) {
57827
57899
  \u0275\u0275property("isMultiSelect", true)("options", lookups_r12 && lookups_r12["documents_type"]);
57828
57900
  \u0275\u0275advance();
57829
57901
  \u0275\u0275property("isMultiSelect", true)("options", lookups_r12 && lookups_r12["documents_status"]);
57902
+ \u0275\u0275advance();
57903
+ \u0275\u0275property("control", ctx_r2.getControl("documents_expiry_date"));
57904
+ \u0275\u0275advance();
57905
+ \u0275\u0275property("control", ctx_r2.getControl("documents_created_date"));
57830
57906
  }
57831
57907
  }
57832
57908
  function AppComponent_Defer_20_Template(rf, ctx) {
@@ -57839,7 +57915,7 @@ function AppComponent_Defer_20_Template(rf, ctx) {
57839
57915
  \u0275\u0275twoWayBindingSet(ctx_r2.documentsModal, $event) || (ctx_r2.documentsModal = $event);
57840
57916
  return \u0275\u0275resetView($event);
57841
57917
  });
57842
- \u0275\u0275template(2, AppComponent_Defer_20_Conditional_2_Template, 9, 5);
57918
+ \u0275\u0275template(2, AppComponent_Defer_20_Conditional_2_Template, 9, 7);
57843
57919
  \u0275\u0275elementEnd();
57844
57920
  }
57845
57921
  if (rf & 2) {
@@ -58105,7 +58181,9 @@ var AppComponent = class _AppComponent {
58105
58181
  }))).subscribe((data) => {
58106
58182
  if (data?.lookups) {
58107
58183
  if (!this.lookupsSignal()) {
58108
- this.lookupsSignal.set(this.groupLookups(data.lookups));
58184
+ const groupedLookups = this.groupLookups(data.lookups);
58185
+ this.sortGroupedLookups(groupedLookups);
58186
+ this.lookupsSignal.set(groupedLookups);
58109
58187
  }
58110
58188
  }
58111
58189
  if (data?.domainLookups) {
@@ -58432,6 +58510,17 @@ var AppComponent = class _AppComponent {
58432
58510
  return acc;
58433
58511
  }, {});
58434
58512
  }
58513
+ sortGroupedLookups(groupedLookups) {
58514
+ Object.keys(groupedLookups).forEach((key) => {
58515
+ if (Array.isArray(groupedLookups[key])) {
58516
+ if (groupedLookups[key].some(({ sort_key }) => sort_key && sort_key > 0)) {
58517
+ groupedLookups[key].sort((a, b) => a.sort_key > b.sort_key ? 1 : -1);
58518
+ } else {
58519
+ groupedLookups[key].sort((a, b) => a.lookup_value > b.lookup_value ? 1 : -1);
58520
+ }
58521
+ }
58522
+ });
58523
+ }
58435
58524
  getControl(fieldId) {
58436
58525
  const control = this.filterForm.get(fieldId);
58437
58526
  return control instanceof FormControl ? control : null;
@@ -58580,7 +58669,7 @@ var AppComponent = class _AppComponent {
58580
58669
  static \u0275fac = function AppComponent_Factory(__ngFactoryType__) {
58581
58670
  return new (__ngFactoryType__ || _AppComponent)();
58582
58671
  };
58583
- static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _AppComponent, selectors: [["app-root"]], features: [\u0275\u0275ProvidersFeature([TemplateService])], decls: 25, vars: 23, consts: [["tablePanel", ""], ["header", ""], ["panel", ""], ["dialog", ""], ["contentWrapper", ""], [1, "everymatrix-mm-verification-report"], [1, "report-wrapper"], [1, "report-header-container"], [1, "report-titles-container"], [1, "report-title"], [1, "template-title"], [3, "reportId", "domainLookups", "templateCsvLoadingConfig"], [3, "toggleable"], [1, "table-panel-container", 3, "ngStyle"], [3, "limitChange", "loadMoreEmitter", "sortingEmitter", "ngStyle", "limit", "startIndex", "loading", "tableColumns", "rawTableData", "generalTotal", "scrollHeight"], [3, "options"], [3, "templateCsvLoadingConfigChange", "csvLoadEmitter", "runReportEmitter", "reportId", "domainLookups", "templateCsvLoadingConfig"], ["pTemplate", "icons"], [3, "formGroup"], [1, "spinner-wrapper"], [1, "panel-header-container", 3, "ngStyle"], [1, "panel-header-left"], [1, "panel-header-title"], ["tooltipPosition", "top", 1, "panel-header-title-sub", 3, "pTooltip"], [1, "panel-header-right", 3, "ngStyle"], ["size", "medium", "variant", "secondary-outlined", 3, "outsideClickEmitter", "disabled"], ["icon-right", "", 1, "dm-button-icon", 3, "ngStyle"], ["pTooltip", "Reset Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", "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", "M0.833496 10C0.833496 5.39763 4.56446 1.66667 9.16683 1.66667C11.4688 1.66667 13.5541 2.60117 15.0614 4.10949C15.5945 4.64289 16.1653 5.30207 16.6668 5.91204V3.33334C16.6668 2.8731 17.0399 2.50001 17.5002 2.50001C17.9604 2.50001 18.3335 2.8731 18.3335 3.33334V8.33334C18.3335 8.79358 17.9604 9.16667 17.5002 9.16667H12.5002C12.0399 9.16667 11.6668 8.79358 11.6668 8.33334C11.6668 7.8731 12.0399 7.50001 12.5002 7.50001H15.8078C15.231 6.77607 14.5139 5.91947 13.8825 5.28759C12.675 4.07929 11.0088 3.33334 9.16683 3.33334C5.48493 3.33334 2.50016 6.31811 2.50016 10C2.50016 13.6819 5.48493 16.6667 9.16683 16.6667C12.2049 16.6667 14.7704 14.6337 15.573 11.8523C15.7006 11.4101 16.1625 11.1551 16.6047 11.2827C17.0469 11.4103 17.302 11.8722 17.1744 12.3144C16.1714 15.7901 12.9672 18.3333 9.16683 18.3333C4.56446 18.3333 0.833496 14.6024 0.833496 10Z", "fill", "#5D6983"], ["text", "Configure Report", "size", "medium", "variant", "secondary-outlined", 3, "outsideClickEmitter"], ["icon-left", "", 1, "dm-button-icon"], ["xmlns", "http://www.w3.org/2000/svg", "width", "18", "height", "14", "viewBox", "0 0 18 14", "fill", "none"], ["d", "M1.5 3.66667H11.5M11.5 3.66667C11.5 5.04738 12.6192 6.16667 14 6.16667C15.3807 6.16667 16.5 5.04738 16.5 3.66667C16.5 2.28596 15.3807 1.16667 14 1.16667C12.6192 1.16667 11.5 2.28596 11.5 3.66667ZM6.5 10.3333H16.5M6.5 10.3333C6.5 11.7141 5.38071 12.8333 4 12.8333C2.61929 12.8333 1.5 11.7141 1.5 10.3333C1.5 8.95258 2.61929 7.83333 4 7.83333C5.38071 7.83333 6.5 8.95258 6.5 10.3333Z", "stroke", "#5D6983", "stroke-width", "2", "stroke-linecap", "round", "stroke-linejoin", "round"], ["xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", "pTooltip", "Collapse Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", 1, "panel-icons"], ["pTooltip", "Expand Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", "xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", 1, "panel-icons"], ["xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", "pTooltip", "Collapse Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", 1, "panel-icons", 3, "click"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M9.41009 6.91075C9.73553 6.58531 10.2632 6.58531 10.5886 6.91075L15.5886 11.9107C15.914 12.2362 15.914 12.7638 15.5886 13.0893C15.2632 13.4147 14.7355 13.4147 14.4101 13.0893L9.99935 8.67852L5.5886 13.0893C5.26317 13.4147 4.73553 13.4147 4.41009 13.0893C4.08466 12.7638 4.08466 12.2362 4.41009 11.9107L9.41009 6.91075Z", "fill", "#5D6983"], ["pTooltip", "Expand Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", "xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", 1, "panel-icons", 3, "click"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M4.41107 6.91083C4.73651 6.58539 5.26414 6.58539 5.58958 6.91083L10.0003 11.3216L14.4111 6.91083C14.7365 6.58539 15.2641 6.58539 15.5896 6.91083C15.915 7.23626 15.915 7.7639 15.5896 8.08934L10.5896 13.0893C10.2641 13.4148 9.73651 13.4148 9.41107 13.0893L4.41107 8.08934C4.08563 7.7639 4.08563 7.23626 4.41107 6.91083Z", "fill", "#5D6983"], [1, "filters-content"], [1, "filter-options"], [1, "form-control-container", "last-updated-checkbox"], ["inputId", "lastUpdate", "formControlName", "show_last_verification", 3, "binary"], ["for", "lastUpdate", 1, "form-control-label"], [1, "filter-actions"], ["text", "Save Template", "size", "medium", "variant", "primary-outlined", 3, "outsideClickEmitter", "disabled"], ["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", "M12.8369 3.35637C12.7633 3.3387 12.6754 3.33335 12.2281 3.33335H6.66602V5.33335C6.66602 5.58045 6.66666 5.71566 6.6746 5.81282C6.67492 5.81669 6.67524 5.82035 6.67556 5.82381C6.67902 5.82413 6.68268 5.82444 6.68654 5.82476C6.7837 5.8327 6.91891 5.83335 7.16602 5.83335H12.8327C13.0798 5.83335 13.215 5.8327 13.3122 5.82476C13.316 5.82444 13.3197 5.82413 13.3231 5.82381C13.3235 5.82035 13.3238 5.81669 13.3241 5.81282C13.332 5.71566 13.3327 5.58045 13.3327 5.33335V3.68005C13.1758 3.52644 13.1264 3.48596 13.0777 3.45615C13.0032 3.41046 12.9219 3.37679 12.8369 3.35637ZM14.7552 2.74398L14.703 2.69181C14.6865 2.67531 14.6701 2.65893 14.6539 2.64269C14.4144 2.4027 14.2032 2.19111 13.9486 2.03508C13.7249 1.89801 13.481 1.797 13.2259 1.73576C12.9356 1.66604 12.6366 1.66632 12.2975 1.66664C12.2746 1.66666 12.2514 1.66668 12.2281 1.66668L6.46493 1.66668C6.25739 1.66668 6.06106 1.66667 5.87552 1.66776C5.86133 1.66704 5.84705 1.66668 5.83268 1.66668C5.81429 1.66668 5.79604 1.66728 5.77795 1.66845C5.40448 1.67155 5.07624 1.68008 4.78949 1.70351C4.32108 1.74178 3.89049 1.82392 3.48605 2.02999C2.85884 2.34957 2.34891 2.8595 2.02933 3.48671C1.82325 3.89116 1.74112 4.32174 1.70284 4.79016C1.666 5.24115 1.66601 5.79479 1.66602 6.4656V13.5344C1.66601 14.2052 1.666 14.7589 1.70284 15.2099C1.74112 15.6783 1.82325 16.1089 2.02933 16.5133C2.34891 17.1405 2.85884 17.6505 3.48605 17.97C3.89049 18.1761 4.32108 18.2582 4.78949 18.2965C5.07624 18.3199 5.40448 18.3285 5.77794 18.3316C5.79604 18.3328 5.81429 18.3333 5.83268 18.3333C5.84705 18.3333 5.86133 18.333 5.87552 18.3323C6.06105 18.3334 6.25737 18.3333 6.46491 18.3333H13.5338C13.7413 18.3333 13.9376 18.3334 14.1232 18.3323C14.1374 18.333 14.1516 18.3333 14.166 18.3333C14.1844 18.3333 14.2027 18.3328 14.2208 18.3316C14.5942 18.3285 14.9225 18.3199 15.2092 18.2965C15.6776 18.2582 16.1082 18.1761 16.5127 17.97C17.1399 17.6505 17.6498 17.1405 17.9694 16.5133C18.1754 16.1089 18.2576 15.6783 18.2959 15.2099C18.3327 14.7589 18.3327 14.2052 18.3327 13.5345V7.77125C18.3327 7.74792 18.3327 7.72477 18.3327 7.70182C18.333 7.36274 18.3333 7.06379 18.2636 6.77342C18.2024 6.51833 18.1014 6.27447 17.9643 6.05079C17.8083 5.79618 17.5967 5.58498 17.3567 5.34544C17.3404 5.32922 17.3241 5.31288 17.3076 5.29638L14.7552 2.74398C14.7552 2.74405 14.7551 2.74391 14.7552 2.74398ZM14.9994 5.34519V5.35991C14.9994 5.57024 14.9994 5.77507 14.9852 5.94854C14.9697 6.13903 14.9329 6.36381 14.8177 6.59C14.6579 6.9036 14.4029 7.15857 14.0893 7.31836C13.8631 7.43361 13.6384 7.47033 13.4479 7.48589C13.2744 7.50006 13.0696 7.50004 12.8593 7.50002L7.16602 7.50001C7.15715 7.50001 7.14829 7.50001 7.13944 7.50002C6.92912 7.50004 6.72429 7.50006 6.55082 7.48589C6.36033 7.47033 6.13555 7.43361 5.90937 7.31836C5.59576 7.15857 5.34079 6.9036 5.18101 6.59C5.06576 6.36381 5.02903 6.13903 5.01347 5.94854C4.9993 5.77507 4.99932 5.57025 4.99935 5.35993C4.99935 5.35108 4.99935 5.34222 4.99935 5.33335V3.35907C4.97416 3.3608 4.94946 3.36266 4.92521 3.36464C4.55987 3.39449 4.37303 3.44859 4.2427 3.515C3.9291 3.67479 3.67413 3.92976 3.51434 4.24336C3.44793 4.3737 3.39383 4.56053 3.36398 4.92588C3.33333 5.30095 3.33268 5.7862 3.33268 6.50001V13.5C3.33268 14.2138 3.33333 14.6991 3.36398 15.0741C3.39383 15.4395 3.44793 15.6263 3.51434 15.7567C3.67413 16.0703 3.9291 16.3252 4.2427 16.485C4.37303 16.5514 4.55987 16.6055 4.92521 16.6354C4.94946 16.6374 4.97416 16.6392 4.99935 16.641L4.99935 12.1401C4.99932 11.9298 4.9993 11.725 5.01347 11.5515C5.02903 11.361 5.06576 11.1362 5.18101 10.91C5.34079 10.5964 5.59576 10.3415 5.90937 10.1817C6.13555 10.0664 6.36033 10.0297 6.55082 10.0141C6.72429 9.99996 6.92912 9.99999 7.13945 10H12.8593C13.0696 9.99999 13.2744 9.99996 13.4479 10.0141C13.6384 10.0297 13.8631 10.0664 14.0893 10.1817C14.4029 10.3415 14.6579 10.5964 14.8177 10.91C14.9329 11.1362 14.9697 11.361 14.9852 11.5515C14.9994 11.725 14.9994 11.9298 14.9994 12.1401L14.9993 16.641C15.0245 16.6392 15.0492 16.6374 15.0735 16.6354C15.4388 16.6055 15.6257 16.5514 15.756 16.485C16.0696 16.3252 16.3246 16.0703 16.4844 15.7567C16.5508 15.6263 16.6049 15.4395 16.6347 15.0741C16.6654 14.6991 16.666 14.2138 16.666 13.5V7.77125C16.666 7.32393 16.6607 7.2361 16.643 7.1625C16.6226 7.07747 16.5889 6.99618 16.5432 6.92162C16.5037 6.85708 16.4453 6.79119 16.129 6.47489L14.9994 5.34519ZM13.3327 16.6667V12.1667C13.3327 11.9196 13.332 11.7844 13.3241 11.6872C13.3238 11.6833 13.3235 11.6797 13.3231 11.6762C13.3197 11.6759 13.316 11.6756 13.3122 11.6753C13.215 11.6673 13.0798 11.6667 12.8327 11.6667H7.16602C6.91891 11.6667 6.7837 11.6673 6.68654 11.6753C6.68268 11.6756 6.67902 11.6759 6.67556 11.6762C6.67524 11.6797 6.67492 11.6833 6.6746 11.6872C6.66666 11.7844 6.66602 11.9196 6.66602 12.1667V16.6667H13.3327Z", "fill", "#0076DD"], ["text", "Run Report", "size", "medium", 3, "outsideClickEmitter", "disabled"], ["optionLabel", "lookup_value", "optionValue", "lookup_key", 3, "isMultiSelect", "label", "placeholder", "isRequired", "options", "formControlName"], [3, "tooltipMessage", "infoIcon", "label", "formControlName"], [3, "showClear", "label", "readonly", "placeholder", "control"], [3, "label", "control", "placeholder"], [3, "clickEmitter", "showClear", "label", "readonly", "placeholder", "control"], ["icon-right", "", 1, "dm-input-icon", "icon-right", "clear-icon", 2, "right", "33px"], ["width", "12", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true"], ["icon-right", "", 1, "dm-input-icon", "icon-right", 3, "click"], ["xmlns", "http://www.w3.org/2000/svg", "width", "16", "height", "16", "viewBox", "0 0 20 20", "fill", "none"], ["d", "M2.5 6.66666H12.5M12.5 6.66666C12.5 8.04737 13.6192 9.16666 15 9.16666C16.3807 9.16666 17.5 8.04736 17.5 6.66666C17.5 5.28595 16.3807 4.16666 15 4.16666C13.6192 4.16666 12.5 5.28595 12.5 6.66666ZM7.5 13.3333H17.5M7.5 13.3333C7.5 14.7141 6.38071 15.8333 5 15.8333C3.61929 15.8333 2.5 14.7141 2.5 13.3333C2.5 11.9526 3.61929 10.8333 5 10.8333C6.38071 10.8333 7.5 11.9526 7.5 13.3333Z", "stroke", "#5D6983", "stroke-width", "2", "stroke-linecap", "round", "stroke-linejoin", "round"], ["width", "12", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true", 3, "click"], ["d", "M8.01186 7.00933L12.27 2.75116C12.341 2.68501 12.398 2.60524 12.4375 2.51661C12.4769 2.42798 12.4982 2.3323 12.4999 2.23529C12.5016 2.13827 12.4838 2.0419 12.4474 1.95194C12.4111 1.86197 12.357 1.78024 12.2884 1.71163C12.2198 1.64302 12.138 1.58893 12.0481 1.55259C11.9581 1.51625 11.8617 1.4984 11.7647 1.50011C11.6677 1.50182 11.572 1.52306 11.4834 1.56255C11.3948 1.60204 11.315 1.65898 11.2488 1.72997L6.99067 5.98814L2.7325 1.72997C2.59553 1.60234 2.41437 1.53286 2.22718 1.53616C2.03999 1.53946 1.8614 1.61529 1.72901 1.74767C1.59663 1.88006 1.5208 2.05865 1.5175 2.24584C1.5142 2.43303 1.58368 2.61419 1.71131 2.75116L5.96948 7.00933L1.71131 11.2675C1.576 11.403 1.5 11.5866 1.5 11.7781C1.5 11.9696 1.576 12.1532 1.71131 12.2887C1.84679 12.424 2.03043 12.5 2.2219 12.5C2.41338 12.5 2.59702 12.424 2.7325 12.2887L6.99067 8.03052L11.2488 12.2887C11.3843 12.424 11.568 12.5 11.7594 12.5C11.9509 12.5 12.1346 12.424 12.27 12.2887C12.4053 12.1532 12.4813 11.9696 12.4813 11.7781C12.4813 11.5866 12.4053 11.403 12.27 11.2675L8.01186 7.00933Z", "fill", "#5D6983"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M10.8333 2.51654C10.6786 2.50244 10.4493 2.5 10.0098 2.5H7.33333C6.61952 2.5 6.13427 2.50065 5.7592 2.53129C5.39385 2.56114 5.20702 2.61525 5.07668 2.68166C4.76308 2.84145 4.50811 3.09641 4.34832 3.41002C4.28192 3.54035 4.22781 3.72719 4.19796 4.09253C4.16732 4.46761 4.16667 4.95285 4.16667 5.66667V14.3333C4.16667 15.0472 4.16732 15.5324 4.19796 15.9075C4.22781 16.2728 4.28192 16.4597 4.34832 16.59C4.50811 16.9036 4.76308 17.1586 5.07668 17.3183C5.20702 17.3848 5.39385 17.4389 5.7592 17.4687C6.13427 17.4994 6.61952 17.5 7.33333 17.5H12.6667C13.3805 17.5 13.8657 17.4994 14.2408 17.4687C14.6061 17.4389 14.793 17.3848 14.9233 17.3183C15.2369 17.1586 15.4919 16.9036 15.6517 16.59C15.7181 16.4597 15.7722 16.2728 15.802 15.9075C15.8327 15.5324 15.8333 15.0472 15.8333 14.3333V8.32352C15.8333 7.8841 15.8309 7.65481 15.8168 7.50006L12.9734 7.50006C12.7631 7.50009 12.5583 7.50011 12.3848 7.48594C12.1943 7.47038 11.9695 7.43365 11.7433 7.3184C11.4297 7.15862 11.1748 6.90365 11.015 6.59004C10.8997 6.36386 10.863 6.13908 10.8475 5.94859C10.8333 5.77512 10.8333 5.57029 10.8333 5.35996L10.8333 2.51654ZM11.9947 1.12497C11.8064 1.04059 11.6105 0.973736 11.4093 0.925435C11.0237 0.832866 10.6239 0.833056 10.0947 0.833308C10.0668 0.833322 10.0385 0.833335 10.0098 0.833335L7.29892 0.833335C6.62811 0.833324 6.07448 0.833315 5.62348 0.870163C5.15506 0.908434 4.72448 0.990571 4.32003 1.19665C3.69283 1.51622 3.18289 2.02616 2.86331 2.65337C2.65724 3.05781 2.5751 3.4884 2.53683 3.95681C2.49998 4.40781 2.49999 4.96144 2.5 5.63225V14.3678C2.49999 15.0386 2.49998 15.5922 2.53683 16.0432C2.5751 16.5116 2.65724 16.9422 2.86331 17.3466C3.18289 17.9738 3.69283 18.4838 4.32003 18.8034C4.72448 19.0094 5.15506 19.0916 5.62348 19.1298C6.07447 19.1667 6.6281 19.1667 7.2989 19.1667H12.7011C13.3719 19.1667 13.9255 19.1667 14.3765 19.1298C14.8449 19.0916 15.2755 19.0094 15.68 18.8034C16.3072 18.4838 16.8171 17.9738 17.1367 17.3466C17.3428 16.9422 17.4249 16.5116 17.4632 16.0432C17.5 15.5922 17.5 15.0386 17.5 14.3678V8.32352C17.5 8.29485 17.5 8.26656 17.5 8.23863C17.5003 7.70946 17.5005 7.30963 17.4079 6.92405C17.3597 6.72344 17.2931 6.52805 17.2091 6.34031C17.2039 6.32807 17.1984 6.31599 17.1926 6.30407C17.1382 6.18624 17.0768 6.07153 17.0088 5.96054C16.8016 5.62244 16.5188 5.33985 16.1444 4.96584C16.1246 4.9461 16.1046 4.92611 16.0843 4.90584L13.4275 2.24899C13.4072 2.22871 13.3872 2.2087 13.3675 2.18893C12.9935 1.81458 12.7109 1.53172 12.3728 1.32453C12.2614 1.25625 12.1462 1.19467 12.0278 1.14006C12.0169 1.1348 12.0058 1.12977 11.9947 1.12497ZM12.5 3.67851V5.3334C12.5 5.5805 12.5006 5.71571 12.5086 5.81287C12.5089 5.81673 12.5092 5.82039 12.5095 5.82385C12.513 5.82417 12.5167 5.82449 12.5205 5.82481C12.6177 5.83275 12.7529 5.83339 13 5.83339H14.6549L12.5 3.67851ZM5.83333 10.8333C5.83333 10.3731 6.20643 10 6.66667 10H13.3333C13.7936 10 14.1667 10.3731 14.1667 10.8333C14.1667 11.2936 13.7936 11.6667 13.3333 11.6667H6.66667C6.20643 11.6667 5.83333 11.2936 5.83333 10.8333ZM5.83333 14.1667C5.83333 13.7064 6.20643 13.3333 6.66667 13.3333H11.6667C12.1269 13.3333 12.5 13.7064 12.5 14.1667C12.5 14.6269 12.1269 15 11.6667 15H6.66667C6.20643 15 5.83333 14.6269 5.83333 14.1667Z", "fill", "white"], ["strokeWidth", "6"], [1, "panel-header-container"], [1, "table-toggle-container"], [1, "table-toggle-label"], ["pTooltip", "Switch between old and new table views", "tooltipPosition", "top", "showDelay", "600", "hideDelay", "300", 1, "table-toggle", 3, "ngModelChange", "onChange", "ngModel", "ngModelOptions"], [1, "panel-header-right"], ["text", "Download .CSV", "size", "medium", "variant", "primary-outlined", 3, "outsideClickEmitter", "disabled"], ["icon-left", "", 1, "dm-button-icon", 3, "ngStyle"], ["styleClass", "outlined-color", "strokeWidth", "6"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M9.99935 1.66663C10.4596 1.66663 10.8327 2.03972 10.8327 2.49996V10.4881L13.5768 7.74404C13.9022 7.4186 14.4298 7.4186 14.7553 7.74404C15.0807 8.06947 15.0807 8.59711 14.7553 8.92255L10.5886 13.0892C10.2632 13.4147 9.73553 13.4147 9.41009 13.0892L5.24343 8.92255C4.91799 8.59711 4.91799 8.06947 5.24343 7.74404C5.56886 7.4186 6.0965 7.4186 6.42194 7.74404L9.16602 10.4881V2.49996C9.16602 2.03972 9.53911 1.66663 9.99935 1.66663ZM2.49935 11.6666C2.95959 11.6666 3.33268 12.0397 3.33268 12.5V13.5C3.33268 14.2138 3.33333 14.699 3.36398 15.0741C3.39383 15.4394 3.44793 15.6263 3.51434 15.7566C3.67413 16.0702 3.9291 16.3252 4.2427 16.485C4.37303 16.5514 4.55987 16.6055 4.92521 16.6353C5.30029 16.666 5.78553 16.6666 6.49935 16.6666H13.4993C14.2132 16.6666 14.6984 16.666 15.0735 16.6353C15.4388 16.6055 15.6257 16.5514 15.756 16.485C16.0696 16.3252 16.3246 16.0702 16.4844 15.7566C16.5508 15.6263 16.6049 15.4394 16.6347 15.0741C16.6654 14.699 16.666 14.2138 16.666 13.5V12.5C16.666 12.0397 17.0391 11.6666 17.4993 11.6666C17.9596 11.6666 18.3327 12.0397 18.3327 12.5V13.5344C18.3327 14.2052 18.3327 14.7588 18.2959 15.2098C18.2576 15.6782 18.1754 16.1088 17.9694 16.5133C17.6498 17.1405 17.1399 17.6504 16.5126 17.97C16.1082 18.1761 15.6776 18.2582 15.2092 18.2965C14.7582 18.3333 14.2046 18.3333 13.5338 18.3333H6.46491C5.79411 18.3333 5.24049 18.3333 4.78949 18.2965C4.32108 18.2582 3.89049 18.1761 3.48605 17.97C2.85884 17.6504 2.34891 17.1405 2.02933 16.5133C1.82325 16.1088 1.74112 15.6782 1.70284 15.2098C1.666 14.7588 1.66601 14.2052 1.66602 13.5344L1.66602 12.5C1.66602 12.0397 2.03911 11.6666 2.49935 11.6666Z", "fill", "#0076DD"], ["header", "Documents Settings", 3, "visibleChange", "modal", "visible"], [1, "dialog-content", 3, "formGroup"], ["optionLabel", "lookup_value", "optionValue", "lookup_key", "label", "Document Type", "formControlName", "documents_type", 3, "isMultiSelect", "options"], ["optionLabel", "lookup_value", "optionValue", "lookup_key", "label", "Document Status", "formControlName", "documents_status", 3, "openState", "isMultiSelect", "options"], ["label", "Expiry Date", "formControlName", "documents_expiry_date", 3, "openState"], ["label", "Last Update", "formControlName", "documents_created_date", 3, "openState"], [1, "dialog-footer"], ["text", "Cancel", "size", "medium", "variant", "secondary-outlined", 3, "outsideClickEmitter"], ["text", "Apply", "size", "medium", "variant", "primary-filled", 3, "outsideClickEmitter"], [3, "visibleChange", "confirm", "visible", "isSaveMode"], [3, "visibleChange", "saveEmitter", "visible", "params", "reportId"], [3, "visibleChange", "fieldsEmitter", "visible", "allAvailableFields", "selectedList"]], template: function AppComponent_Template(rf, ctx) {
58672
+ static \u0275cmp = /* @__PURE__ */ \u0275\u0275defineComponent({ type: _AppComponent, selectors: [["app-root"]], features: [\u0275\u0275ProvidersFeature([TemplateService])], decls: 25, vars: 23, consts: [["tablePanel", ""], ["header", ""], ["panel", ""], ["dialog", ""], ["contentWrapper", ""], [1, "everymatrix-mm-verification-report"], [1, "report-wrapper"], [1, "report-header-container"], [1, "report-titles-container"], [1, "report-title"], [1, "template-title"], [3, "reportId", "domainLookups", "templateCsvLoadingConfig"], [3, "toggleable"], [1, "table-panel-container", 3, "ngStyle"], [3, "limitChange", "loadMoreEmitter", "sortingEmitter", "ngStyle", "limit", "startIndex", "loading", "tableColumns", "rawTableData", "generalTotal", "scrollHeight"], [3, "options"], [3, "templateCsvLoadingConfigChange", "csvLoadEmitter", "runReportEmitter", "reportId", "domainLookups", "templateCsvLoadingConfig"], ["pTemplate", "icons"], [3, "formGroup"], [1, "spinner-wrapper"], [1, "panel-header-container", 3, "ngStyle"], [1, "panel-header-left"], [1, "panel-header-title"], ["tooltipPosition", "top", 1, "panel-header-title-sub", 3, "pTooltip"], [1, "panel-header-right", 3, "ngStyle"], ["size", "medium", "variant", "secondary-outlined", 3, "outsideClickEmitter", "disabled"], ["icon-right", "", 1, "dm-button-icon", 3, "ngStyle"], ["pTooltip", "Reset Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", "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", "M0.833496 10C0.833496 5.39763 4.56446 1.66667 9.16683 1.66667C11.4688 1.66667 13.5541 2.60117 15.0614 4.10949C15.5945 4.64289 16.1653 5.30207 16.6668 5.91204V3.33334C16.6668 2.8731 17.0399 2.50001 17.5002 2.50001C17.9604 2.50001 18.3335 2.8731 18.3335 3.33334V8.33334C18.3335 8.79358 17.9604 9.16667 17.5002 9.16667H12.5002C12.0399 9.16667 11.6668 8.79358 11.6668 8.33334C11.6668 7.8731 12.0399 7.50001 12.5002 7.50001H15.8078C15.231 6.77607 14.5139 5.91947 13.8825 5.28759C12.675 4.07929 11.0088 3.33334 9.16683 3.33334C5.48493 3.33334 2.50016 6.31811 2.50016 10C2.50016 13.6819 5.48493 16.6667 9.16683 16.6667C12.2049 16.6667 14.7704 14.6337 15.573 11.8523C15.7006 11.4101 16.1625 11.1551 16.6047 11.2827C17.0469 11.4103 17.302 11.8722 17.1744 12.3144C16.1714 15.7901 12.9672 18.3333 9.16683 18.3333C4.56446 18.3333 0.833496 14.6024 0.833496 10Z", "fill", "#5D6983"], ["text", "Configure Report", "size", "medium", "variant", "secondary-outlined", 3, "outsideClickEmitter"], ["icon-left", "", 1, "dm-button-icon"], ["xmlns", "http://www.w3.org/2000/svg", "width", "18", "height", "14", "viewBox", "0 0 18 14", "fill", "none"], ["d", "M1.5 3.66667H11.5M11.5 3.66667C11.5 5.04738 12.6192 6.16667 14 6.16667C15.3807 6.16667 16.5 5.04738 16.5 3.66667C16.5 2.28596 15.3807 1.16667 14 1.16667C12.6192 1.16667 11.5 2.28596 11.5 3.66667ZM6.5 10.3333H16.5M6.5 10.3333C6.5 11.7141 5.38071 12.8333 4 12.8333C2.61929 12.8333 1.5 11.7141 1.5 10.3333C1.5 8.95258 2.61929 7.83333 4 7.83333C5.38071 7.83333 6.5 8.95258 6.5 10.3333Z", "stroke", "#5D6983", "stroke-width", "2", "stroke-linecap", "round", "stroke-linejoin", "round"], ["xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", "pTooltip", "Collapse Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", 1, "panel-icons"], ["pTooltip", "Expand Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", "xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", 1, "panel-icons"], ["xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", "pTooltip", "Collapse Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", 1, "panel-icons", 3, "click"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M9.41009 6.91075C9.73553 6.58531 10.2632 6.58531 10.5886 6.91075L15.5886 11.9107C15.914 12.2362 15.914 12.7638 15.5886 13.0893C15.2632 13.4147 14.7355 13.4147 14.4101 13.0893L9.99935 8.67852L5.5886 13.0893C5.26317 13.4147 4.73553 13.4147 4.41009 13.0893C4.08466 12.7638 4.08466 12.2362 4.41009 11.9107L9.41009 6.91075Z", "fill", "#5D6983"], ["pTooltip", "Expand Filters", "tooltipPosition", "top", "positionLeft", "10", "positionTop", "-5", "xmlns", "http://www.w3.org/2000/svg", "width", "20", "height", "20", "viewBox", "0 0 20 20", "fill", "none", 1, "panel-icons", 3, "click"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M4.41107 6.91083C4.73651 6.58539 5.26414 6.58539 5.58958 6.91083L10.0003 11.3216L14.4111 6.91083C14.7365 6.58539 15.2641 6.58539 15.5896 6.91083C15.915 7.23626 15.915 7.7639 15.5896 8.08934L10.5896 13.0893C10.2641 13.4148 9.73651 13.4148 9.41107 13.0893L4.41107 8.08934C4.08563 7.7639 4.08563 7.23626 4.41107 6.91083Z", "fill", "#5D6983"], [1, "filters-content"], [1, "filter-options"], [1, "form-control-container", "last-updated-checkbox"], ["inputId", "lastUpdate", "formControlName", "show_last_verification", 3, "binary"], ["for", "lastUpdate", 1, "form-control-label"], [1, "filter-actions"], ["text", "Save Template", "size", "medium", "variant", "primary-outlined", 3, "outsideClickEmitter", "disabled"], ["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", "M12.8369 3.35637C12.7633 3.3387 12.6754 3.33335 12.2281 3.33335H6.66602V5.33335C6.66602 5.58045 6.66666 5.71566 6.6746 5.81282C6.67492 5.81669 6.67524 5.82035 6.67556 5.82381C6.67902 5.82413 6.68268 5.82444 6.68654 5.82476C6.7837 5.8327 6.91891 5.83335 7.16602 5.83335H12.8327C13.0798 5.83335 13.215 5.8327 13.3122 5.82476C13.316 5.82444 13.3197 5.82413 13.3231 5.82381C13.3235 5.82035 13.3238 5.81669 13.3241 5.81282C13.332 5.71566 13.3327 5.58045 13.3327 5.33335V3.68005C13.1758 3.52644 13.1264 3.48596 13.0777 3.45615C13.0032 3.41046 12.9219 3.37679 12.8369 3.35637ZM14.7552 2.74398L14.703 2.69181C14.6865 2.67531 14.6701 2.65893 14.6539 2.64269C14.4144 2.4027 14.2032 2.19111 13.9486 2.03508C13.7249 1.89801 13.481 1.797 13.2259 1.73576C12.9356 1.66604 12.6366 1.66632 12.2975 1.66664C12.2746 1.66666 12.2514 1.66668 12.2281 1.66668L6.46493 1.66668C6.25739 1.66668 6.06106 1.66667 5.87552 1.66776C5.86133 1.66704 5.84705 1.66668 5.83268 1.66668C5.81429 1.66668 5.79604 1.66728 5.77795 1.66845C5.40448 1.67155 5.07624 1.68008 4.78949 1.70351C4.32108 1.74178 3.89049 1.82392 3.48605 2.02999C2.85884 2.34957 2.34891 2.8595 2.02933 3.48671C1.82325 3.89116 1.74112 4.32174 1.70284 4.79016C1.666 5.24115 1.66601 5.79479 1.66602 6.4656V13.5344C1.66601 14.2052 1.666 14.7589 1.70284 15.2099C1.74112 15.6783 1.82325 16.1089 2.02933 16.5133C2.34891 17.1405 2.85884 17.6505 3.48605 17.97C3.89049 18.1761 4.32108 18.2582 4.78949 18.2965C5.07624 18.3199 5.40448 18.3285 5.77794 18.3316C5.79604 18.3328 5.81429 18.3333 5.83268 18.3333C5.84705 18.3333 5.86133 18.333 5.87552 18.3323C6.06105 18.3334 6.25737 18.3333 6.46491 18.3333H13.5338C13.7413 18.3333 13.9376 18.3334 14.1232 18.3323C14.1374 18.333 14.1516 18.3333 14.166 18.3333C14.1844 18.3333 14.2027 18.3328 14.2208 18.3316C14.5942 18.3285 14.9225 18.3199 15.2092 18.2965C15.6776 18.2582 16.1082 18.1761 16.5127 17.97C17.1399 17.6505 17.6498 17.1405 17.9694 16.5133C18.1754 16.1089 18.2576 15.6783 18.2959 15.2099C18.3327 14.7589 18.3327 14.2052 18.3327 13.5345V7.77125C18.3327 7.74792 18.3327 7.72477 18.3327 7.70182C18.333 7.36274 18.3333 7.06379 18.2636 6.77342C18.2024 6.51833 18.1014 6.27447 17.9643 6.05079C17.8083 5.79618 17.5967 5.58498 17.3567 5.34544C17.3404 5.32922 17.3241 5.31288 17.3076 5.29638L14.7552 2.74398C14.7552 2.74405 14.7551 2.74391 14.7552 2.74398ZM14.9994 5.34519V5.35991C14.9994 5.57024 14.9994 5.77507 14.9852 5.94854C14.9697 6.13903 14.9329 6.36381 14.8177 6.59C14.6579 6.9036 14.4029 7.15857 14.0893 7.31836C13.8631 7.43361 13.6384 7.47033 13.4479 7.48589C13.2744 7.50006 13.0696 7.50004 12.8593 7.50002L7.16602 7.50001C7.15715 7.50001 7.14829 7.50001 7.13944 7.50002C6.92912 7.50004 6.72429 7.50006 6.55082 7.48589C6.36033 7.47033 6.13555 7.43361 5.90937 7.31836C5.59576 7.15857 5.34079 6.9036 5.18101 6.59C5.06576 6.36381 5.02903 6.13903 5.01347 5.94854C4.9993 5.77507 4.99932 5.57025 4.99935 5.35993C4.99935 5.35108 4.99935 5.34222 4.99935 5.33335V3.35907C4.97416 3.3608 4.94946 3.36266 4.92521 3.36464C4.55987 3.39449 4.37303 3.44859 4.2427 3.515C3.9291 3.67479 3.67413 3.92976 3.51434 4.24336C3.44793 4.3737 3.39383 4.56053 3.36398 4.92588C3.33333 5.30095 3.33268 5.7862 3.33268 6.50001V13.5C3.33268 14.2138 3.33333 14.6991 3.36398 15.0741C3.39383 15.4395 3.44793 15.6263 3.51434 15.7567C3.67413 16.0703 3.9291 16.3252 4.2427 16.485C4.37303 16.5514 4.55987 16.6055 4.92521 16.6354C4.94946 16.6374 4.97416 16.6392 4.99935 16.641L4.99935 12.1401C4.99932 11.9298 4.9993 11.725 5.01347 11.5515C5.02903 11.361 5.06576 11.1362 5.18101 10.91C5.34079 10.5964 5.59576 10.3415 5.90937 10.1817C6.13555 10.0664 6.36033 10.0297 6.55082 10.0141C6.72429 9.99996 6.92912 9.99999 7.13945 10H12.8593C13.0696 9.99999 13.2744 9.99996 13.4479 10.0141C13.6384 10.0297 13.8631 10.0664 14.0893 10.1817C14.4029 10.3415 14.6579 10.5964 14.8177 10.91C14.9329 11.1362 14.9697 11.361 14.9852 11.5515C14.9994 11.725 14.9994 11.9298 14.9994 12.1401L14.9993 16.641C15.0245 16.6392 15.0492 16.6374 15.0735 16.6354C15.4388 16.6055 15.6257 16.5514 15.756 16.485C16.0696 16.3252 16.3246 16.0703 16.4844 15.7567C16.5508 15.6263 16.6049 15.4395 16.6347 15.0741C16.6654 14.6991 16.666 14.2138 16.666 13.5V7.77125C16.666 7.32393 16.6607 7.2361 16.643 7.1625C16.6226 7.07747 16.5889 6.99618 16.5432 6.92162C16.5037 6.85708 16.4453 6.79119 16.129 6.47489L14.9994 5.34519ZM13.3327 16.6667V12.1667C13.3327 11.9196 13.332 11.7844 13.3241 11.6872C13.3238 11.6833 13.3235 11.6797 13.3231 11.6762C13.3197 11.6759 13.316 11.6756 13.3122 11.6753C13.215 11.6673 13.0798 11.6667 12.8327 11.6667H7.16602C6.91891 11.6667 6.7837 11.6673 6.68654 11.6753C6.68268 11.6756 6.67902 11.6759 6.67556 11.6762C6.67524 11.6797 6.67492 11.6833 6.6746 11.6872C6.66666 11.7844 6.66602 11.9196 6.66602 12.1667V16.6667H13.3327Z", "fill", "#0076DD"], ["text", "Run Report", "size", "medium", 3, "outsideClickEmitter", "disabled"], ["optionLabel", "lookup_value", "optionValue", "lookup_key", 3, "isMultiSelect", "label", "placeholder", "isRequired", "options", "formControlName"], [3, "tooltipMessage", "infoIcon", "label", "formControlName", "control"], [3, "showClear", "label", "readonly", "placeholder", "control", "inputPartName"], [3, "label", "control", "placeholder"], [3, "clickEmitter", "showClear", "label", "readonly", "placeholder", "control", "inputPartName"], ["icon-right", "", 1, "dm-input-icon", "icon-right", "clear-icon", 2, "right", "33px"], ["width", "12", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true"], ["icon-right", "", 1, "dm-input-icon", "icon-right", 3, "click"], ["xmlns", "http://www.w3.org/2000/svg", "width", "16", "height", "16", "viewBox", "0 0 20 20", "fill", "none"], ["d", "M2.5 6.66666H12.5M12.5 6.66666C12.5 8.04737 13.6192 9.16666 15 9.16666C16.3807 9.16666 17.5 8.04736 17.5 6.66666C17.5 5.28595 16.3807 4.16666 15 4.16666C13.6192 4.16666 12.5 5.28595 12.5 6.66666ZM7.5 13.3333H17.5M7.5 13.3333C7.5 14.7141 6.38071 15.8333 5 15.8333C3.61929 15.8333 2.5 14.7141 2.5 13.3333C2.5 11.9526 3.61929 10.8333 5 10.8333C6.38071 10.8333 7.5 11.9526 7.5 13.3333Z", "stroke", "#5D6983", "stroke-width", "2", "stroke-linecap", "round", "stroke-linejoin", "round"], ["width", "12", "height", "14", "viewBox", "0 0 14 14", "fill", "none", "xmlns", "http://www.w3.org/2000/svg", "aria-hidden", "true", 3, "click"], ["d", "M8.01186 7.00933L12.27 2.75116C12.341 2.68501 12.398 2.60524 12.4375 2.51661C12.4769 2.42798 12.4982 2.3323 12.4999 2.23529C12.5016 2.13827 12.4838 2.0419 12.4474 1.95194C12.4111 1.86197 12.357 1.78024 12.2884 1.71163C12.2198 1.64302 12.138 1.58893 12.0481 1.55259C11.9581 1.51625 11.8617 1.4984 11.7647 1.50011C11.6677 1.50182 11.572 1.52306 11.4834 1.56255C11.3948 1.60204 11.315 1.65898 11.2488 1.72997L6.99067 5.98814L2.7325 1.72997C2.59553 1.60234 2.41437 1.53286 2.22718 1.53616C2.03999 1.53946 1.8614 1.61529 1.72901 1.74767C1.59663 1.88006 1.5208 2.05865 1.5175 2.24584C1.5142 2.43303 1.58368 2.61419 1.71131 2.75116L5.96948 7.00933L1.71131 11.2675C1.576 11.403 1.5 11.5866 1.5 11.7781C1.5 11.9696 1.576 12.1532 1.71131 12.2887C1.84679 12.424 2.03043 12.5 2.2219 12.5C2.41338 12.5 2.59702 12.424 2.7325 12.2887L6.99067 8.03052L11.2488 12.2887C11.3843 12.424 11.568 12.5 11.7594 12.5C11.9509 12.5 12.1346 12.424 12.27 12.2887C12.4053 12.1532 12.4813 11.9696 12.4813 11.7781C12.4813 11.5866 12.4053 11.403 12.27 11.2675L8.01186 7.00933Z", "fill", "#5D6983"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M10.8333 2.51654C10.6786 2.50244 10.4493 2.5 10.0098 2.5H7.33333C6.61952 2.5 6.13427 2.50065 5.7592 2.53129C5.39385 2.56114 5.20702 2.61525 5.07668 2.68166C4.76308 2.84145 4.50811 3.09641 4.34832 3.41002C4.28192 3.54035 4.22781 3.72719 4.19796 4.09253C4.16732 4.46761 4.16667 4.95285 4.16667 5.66667V14.3333C4.16667 15.0472 4.16732 15.5324 4.19796 15.9075C4.22781 16.2728 4.28192 16.4597 4.34832 16.59C4.50811 16.9036 4.76308 17.1586 5.07668 17.3183C5.20702 17.3848 5.39385 17.4389 5.7592 17.4687C6.13427 17.4994 6.61952 17.5 7.33333 17.5H12.6667C13.3805 17.5 13.8657 17.4994 14.2408 17.4687C14.6061 17.4389 14.793 17.3848 14.9233 17.3183C15.2369 17.1586 15.4919 16.9036 15.6517 16.59C15.7181 16.4597 15.7722 16.2728 15.802 15.9075C15.8327 15.5324 15.8333 15.0472 15.8333 14.3333V8.32352C15.8333 7.8841 15.8309 7.65481 15.8168 7.50006L12.9734 7.50006C12.7631 7.50009 12.5583 7.50011 12.3848 7.48594C12.1943 7.47038 11.9695 7.43365 11.7433 7.3184C11.4297 7.15862 11.1748 6.90365 11.015 6.59004C10.8997 6.36386 10.863 6.13908 10.8475 5.94859C10.8333 5.77512 10.8333 5.57029 10.8333 5.35996L10.8333 2.51654ZM11.9947 1.12497C11.8064 1.04059 11.6105 0.973736 11.4093 0.925435C11.0237 0.832866 10.6239 0.833056 10.0947 0.833308C10.0668 0.833322 10.0385 0.833335 10.0098 0.833335L7.29892 0.833335C6.62811 0.833324 6.07448 0.833315 5.62348 0.870163C5.15506 0.908434 4.72448 0.990571 4.32003 1.19665C3.69283 1.51622 3.18289 2.02616 2.86331 2.65337C2.65724 3.05781 2.5751 3.4884 2.53683 3.95681C2.49998 4.40781 2.49999 4.96144 2.5 5.63225V14.3678C2.49999 15.0386 2.49998 15.5922 2.53683 16.0432C2.5751 16.5116 2.65724 16.9422 2.86331 17.3466C3.18289 17.9738 3.69283 18.4838 4.32003 18.8034C4.72448 19.0094 5.15506 19.0916 5.62348 19.1298C6.07447 19.1667 6.6281 19.1667 7.2989 19.1667H12.7011C13.3719 19.1667 13.9255 19.1667 14.3765 19.1298C14.8449 19.0916 15.2755 19.0094 15.68 18.8034C16.3072 18.4838 16.8171 17.9738 17.1367 17.3466C17.3428 16.9422 17.4249 16.5116 17.4632 16.0432C17.5 15.5922 17.5 15.0386 17.5 14.3678V8.32352C17.5 8.29485 17.5 8.26656 17.5 8.23863C17.5003 7.70946 17.5005 7.30963 17.4079 6.92405C17.3597 6.72344 17.2931 6.52805 17.2091 6.34031C17.2039 6.32807 17.1984 6.31599 17.1926 6.30407C17.1382 6.18624 17.0768 6.07153 17.0088 5.96054C16.8016 5.62244 16.5188 5.33985 16.1444 4.96584C16.1246 4.9461 16.1046 4.92611 16.0843 4.90584L13.4275 2.24899C13.4072 2.22871 13.3872 2.2087 13.3675 2.18893C12.9935 1.81458 12.7109 1.53172 12.3728 1.32453C12.2614 1.25625 12.1462 1.19467 12.0278 1.14006C12.0169 1.1348 12.0058 1.12977 11.9947 1.12497ZM12.5 3.67851V5.3334C12.5 5.5805 12.5006 5.71571 12.5086 5.81287C12.5089 5.81673 12.5092 5.82039 12.5095 5.82385C12.513 5.82417 12.5167 5.82449 12.5205 5.82481C12.6177 5.83275 12.7529 5.83339 13 5.83339H14.6549L12.5 3.67851ZM5.83333 10.8333C5.83333 10.3731 6.20643 10 6.66667 10H13.3333C13.7936 10 14.1667 10.3731 14.1667 10.8333C14.1667 11.2936 13.7936 11.6667 13.3333 11.6667H6.66667C6.20643 11.6667 5.83333 11.2936 5.83333 10.8333ZM5.83333 14.1667C5.83333 13.7064 6.20643 13.3333 6.66667 13.3333H11.6667C12.1269 13.3333 12.5 13.7064 12.5 14.1667C12.5 14.6269 12.1269 15 11.6667 15H6.66667C6.20643 15 5.83333 14.6269 5.83333 14.1667Z", "fill", "white"], ["strokeWidth", "6"], [1, "panel-header-container"], [1, "table-toggle-container"], [1, "table-toggle-label"], ["pTooltip", "Switch between old and new table views", "tooltipPosition", "top", "showDelay", "600", "hideDelay", "300", 1, "table-toggle", 3, "ngModelChange", "onChange", "ngModel", "ngModelOptions"], [1, "panel-header-right"], ["text", "Download .CSV", "size", "medium", "variant", "primary-outlined", 3, "outsideClickEmitter", "disabled"], ["icon-left", "", 1, "dm-button-icon", 3, "ngStyle"], ["styleClass", "outlined-color", "strokeWidth", "6"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M9.99935 1.66663C10.4596 1.66663 10.8327 2.03972 10.8327 2.49996V10.4881L13.5768 7.74404C13.9022 7.4186 14.4298 7.4186 14.7553 7.74404C15.0807 8.06947 15.0807 8.59711 14.7553 8.92255L10.5886 13.0892C10.2632 13.4147 9.73553 13.4147 9.41009 13.0892L5.24343 8.92255C4.91799 8.59711 4.91799 8.06947 5.24343 7.74404C5.56886 7.4186 6.0965 7.4186 6.42194 7.74404L9.16602 10.4881V2.49996C9.16602 2.03972 9.53911 1.66663 9.99935 1.66663ZM2.49935 11.6666C2.95959 11.6666 3.33268 12.0397 3.33268 12.5V13.5C3.33268 14.2138 3.33333 14.699 3.36398 15.0741C3.39383 15.4394 3.44793 15.6263 3.51434 15.7566C3.67413 16.0702 3.9291 16.3252 4.2427 16.485C4.37303 16.5514 4.55987 16.6055 4.92521 16.6353C5.30029 16.666 5.78553 16.6666 6.49935 16.6666H13.4993C14.2132 16.6666 14.6984 16.666 15.0735 16.6353C15.4388 16.6055 15.6257 16.5514 15.756 16.485C16.0696 16.3252 16.3246 16.0702 16.4844 15.7566C16.5508 15.6263 16.6049 15.4394 16.6347 15.0741C16.6654 14.699 16.666 14.2138 16.666 13.5V12.5C16.666 12.0397 17.0391 11.6666 17.4993 11.6666C17.9596 11.6666 18.3327 12.0397 18.3327 12.5V13.5344C18.3327 14.2052 18.3327 14.7588 18.2959 15.2098C18.2576 15.6782 18.1754 16.1088 17.9694 16.5133C17.6498 17.1405 17.1399 17.6504 16.5126 17.97C16.1082 18.1761 15.6776 18.2582 15.2092 18.2965C14.7582 18.3333 14.2046 18.3333 13.5338 18.3333H6.46491C5.79411 18.3333 5.24049 18.3333 4.78949 18.2965C4.32108 18.2582 3.89049 18.1761 3.48605 17.97C2.85884 17.6504 2.34891 17.1405 2.02933 16.5133C1.82325 16.1088 1.74112 15.6782 1.70284 15.2098C1.666 14.7588 1.66601 14.2052 1.66602 13.5344L1.66602 12.5C1.66602 12.0397 2.03911 11.6666 2.49935 11.6666Z", "fill", "#0076DD"], ["header", "Documents Settings", 3, "visibleChange", "modal", "visible"], [1, "dialog-content", 3, "formGroup"], ["optionLabel", "lookup_value", "optionValue", "lookup_key", "label", "Document Type", "formControlName", "documents_type", 3, "isMultiSelect", "options"], ["optionLabel", "lookup_value", "optionValue", "lookup_key", "label", "Document Status", "formControlName", "documents_status", 3, "openState", "isMultiSelect", "options"], ["label", "Expiry Date", "formControlName", "documents_expiry_date", 3, "openState", "control"], ["label", "Last Update", "formControlName", "documents_created_date", 3, "openState", "control"], [1, "dialog-footer"], ["text", "Cancel", "size", "medium", "variant", "secondary-outlined", 3, "outsideClickEmitter"], ["text", "Apply", "size", "medium", "variant", "primary-filled", 3, "outsideClickEmitter"], [3, "visibleChange", "confirm", "visible", "isSaveMode"], [3, "visibleChange", "saveEmitter", "visible", "params", "reportId"], [3, "visibleChange", "fieldsEmitter", "visible", "allAvailableFields", "selectedList"]], template: function AppComponent_Template(rf, ctx) {
58584
58673
  if (rf & 1) {
58585
58674
  const _r1 = \u0275\u0275getCurrentView();
58586
58675
  \u0275\u0275elementStart(0, "div", 5)(1, "div", 6);
@@ -58676,10 +58765,10 @@ var AppComponent = class _AppComponent {
58676
58765
  NgModel,
58677
58766
  TemplateSelectModalComponent,
58678
58767
  Checkbox
58679
- ], 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/* apps/reports/moneymatrix/verification/src/app/app.component.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.form-control-container .p-autocomplete-input {\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.report-wrapper {\n padding: 24px;\n width: 100%;\n overflow: hidden;\n min-height: calc(100vh - 85px);\n background-color: #f6f7f9;\n}\n.report-wrapper .report-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n margin-bottom: 24px;\n}\n.report-wrapper .report-title {\n color: #252a34;\n font-size: 24px;\n font-style: normal;\n font-weight: 700;\n}\n.report-wrapper .template-title {\n font-style: normal;\n margin-top: 5px;\n line-height: 20px;\n color: #4a5469;\n font-size: 16px;\n font-weight: 700;\n}\n.report-wrapper .table-toggle-container {\n display: inline-flex;\n align-items: center;\n gap: 5px;\n height: 36px;\n}\n.report-wrapper .table-toggle-container .table-toggle-label {\n color: #252a34;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch {\n --p-toggleswitch-width: 36px;\n --p-toggleswitch-height: 20px;\n --p-toggleswitch-gap: 2px;\n --p-toggleswitch-handle-size: 14px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch .p-toggleswitch-checked .p-toggleswitch-slider {\n background: #0076dd;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:hover).p-toggleswitch-checked .p-toggleswitch-slider {\n background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n border-color: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n}\n.panel-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n}\n.panel-header-container .panel-header-title {\n color: #7985a0;\n font-size: 16px;\n font-style: normal;\n font-weight: 600;\n line-height: 20px;\n}\n.panel-header-container .panel-header-title-sub {\n font-size: 14px;\n font-weight: 500;\n line-height: 18px;\n margin-left: 16px;\n}\n.panel-header-container .panel-header-right {\n display: flex;\n gap: 16px;\n}\n.panel-header-container .panel-header-left {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.table-panel-container {\n margin-top: 20px;\n max-width: 100%;\n}\n.table-panel-container .panel-header-container {\n width: 100%;\n}\n.spinner-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.dialog-content {\n display: flex;\n flex-direction: column;\n gap: 10px;\n}\n.dialog-footer {\n display: flex;\n justify-content: space-between;\n margin-top: 24px;\n}\n.last-updated-checkbox {\n flex-direction: row;\n align-items: center;\n padding-top: 20px;\n gap: 5px;\n display: flex;\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=app.component.css.map */\n'], encapsulation: 3, changeDetection: 0 });
58768
+ ], 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/* apps/reports/moneymatrix/verification/src/app/app.component.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.form-control-container .p-autocomplete-input {\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.report-wrapper {\n padding: 24px;\n width: 100%;\n overflow: hidden;\n min-height: calc(100vh - 85px);\n background-color: #f6f7f9;\n}\n.report-wrapper .report-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n margin-bottom: 24px;\n}\n.report-wrapper .report-title {\n color: #252a34;\n font-size: 24px;\n font-style: normal;\n font-weight: 700;\n}\n.report-wrapper .template-title {\n font-style: normal;\n margin-top: 5px;\n line-height: 20px;\n color: #4a5469;\n font-size: 16px;\n font-weight: 700;\n}\n.report-wrapper .table-toggle-container {\n display: inline-flex;\n align-items: center;\n gap: 5px;\n height: 36px;\n}\n.report-wrapper .table-toggle-container .table-toggle-label {\n color: #252a34;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch {\n --p-toggleswitch-width: 36px;\n --p-toggleswitch-height: 20px;\n --p-toggleswitch-gap: 2px;\n --p-toggleswitch-handle-size: 14px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch .p-toggleswitch-checked .p-toggleswitch-slider {\n background: #0076dd;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:hover).p-toggleswitch-checked .p-toggleswitch-slider {\n background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n border-color: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n}\n.report-wrapper lib-dm-input-text-lib::part(documents-modal-button-custom-styles) {\n padding-right: 42px !important;\n text-overflow: ellipsis !important;\n}\n.panel-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n}\n.panel-header-container .panel-header-title {\n color: #7985a0;\n font-size: 16px;\n font-style: normal;\n font-weight: 600;\n line-height: 20px;\n}\n.panel-header-container .panel-header-title-sub {\n font-size: 14px;\n font-weight: 500;\n line-height: 18px;\n margin-left: 16px;\n}\n.panel-header-container .panel-header-right {\n display: flex;\n gap: 16px;\n}\n.panel-header-container .panel-header-left {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.table-panel-container {\n margin-top: 20px;\n max-width: 100%;\n}\n.table-panel-container .panel-header-container {\n width: 100%;\n}\n.spinner-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.dialog-content {\n display: flex;\n flex-direction: column;\n gap: 10px;\n}\n.dialog-footer {\n display: flex;\n justify-content: space-between;\n margin-top: 24px;\n}\n.last-updated-checkbox {\n flex-direction: row;\n align-items: center;\n padding-top: 20px;\n gap: 5px;\n display: flex;\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=app.component.css.map */\n'], encapsulation: 3, changeDetection: 0 });
58680
58769
  };
58681
58770
  (() => {
58682
- (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(AppComponent, () => [import("./chunk-C7TDIIUY.js").then((m) => m.Dialog)], (Dialog2) => {
58771
+ (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(AppComponent, () => [import("./chunk-PJSYVBGK.js").then((m) => m.Dialog)], (Dialog2) => {
58683
58772
  setClassMetadata(AppComponent, [{
58684
58773
  type: Component,
58685
58774
  args: [{ selector: "app-root", standalone: true, imports: [
@@ -58868,7 +58957,7 @@ var AppComponent = class _AppComponent {
58868
58957
  lookups\r
58869
58958
  ? field['field_id'] === 'merchant_name'\r
58870
58959
  ? domainLookups\r
58871
- : lookups[field['field_id']]\r
58960
+ : lookups[field['lookup_param_key']]\r
58872
58961
  : []\r
58873
58962
  "\r
58874
58963
  [formControlName]="field.field_id"\r
@@ -58887,6 +58976,7 @@ var AppComponent = class _AppComponent {
58887
58976
  "\r
58888
58977
  [label]="field['field_name']"\r
58889
58978
  [formControlName]="field.field_id"\r
58979
+ [control]="getControl(field.field_id)"\r
58890
58980
  />\r
58891
58981
  } @else if (field['field_data_type'] === 'STRING' ||\r
58892
58982
  field['field_data_type'] === 'BIGNUMERIC' ||\r
@@ -58899,6 +58989,7 @@ var AppComponent = class _AppComponent {
58899
58989
  [readonly]="true"\r
58900
58990
  [placeholder]="field['field_name']"\r
58901
58991
  [control]="getControl(field.field_id)"\r
58992
+ [inputPartName]="'documents-modal-button-custom-styles'"\r
58902
58993
  >\r
58903
58994
  <div\r
58904
58995
  icon-right\r
@@ -59150,11 +59241,13 @@ var AppComponent = class _AppComponent {
59150
59241
  label="Expiry Date"\r
59151
59242
  formControlName="documents_expiry_date"\r
59152
59243
  (openState)="calculateHeightPosition(contentWrapper)"\r
59244
+ [control]="getControl('documents_expiry_date')"\r
59153
59245
  />\r
59154
59246
  <lib-dm-range-date-picker-lib\r
59155
59247
  label="Last Update"\r
59156
59248
  formControlName="documents_created_date"\r
59157
59249
  (openState)="calculateHeightPosition(contentWrapper)"\r
59250
+ [control]="getControl('documents_created_date')"\r
59158
59251
  />\r
59159
59252
  </form>\r
59160
59253
  <div class="dialog-footer">\r
@@ -59205,7 +59298,7 @@ var AppComponent = class _AppComponent {
59205
59298
  } }\r
59206
59299
  </div>\r
59207
59300
  <lib-toast-message></lib-toast-message>\r
59208
- `, 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/* apps/reports/moneymatrix/verification/src/app/app.component.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.form-control-container .p-autocomplete-input {\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.report-wrapper {\n padding: 24px;\n width: 100%;\n overflow: hidden;\n min-height: calc(100vh - 85px);\n background-color: #f6f7f9;\n}\n.report-wrapper .report-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n margin-bottom: 24px;\n}\n.report-wrapper .report-title {\n color: #252a34;\n font-size: 24px;\n font-style: normal;\n font-weight: 700;\n}\n.report-wrapper .template-title {\n font-style: normal;\n margin-top: 5px;\n line-height: 20px;\n color: #4a5469;\n font-size: 16px;\n font-weight: 700;\n}\n.report-wrapper .table-toggle-container {\n display: inline-flex;\n align-items: center;\n gap: 5px;\n height: 36px;\n}\n.report-wrapper .table-toggle-container .table-toggle-label {\n color: #252a34;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch {\n --p-toggleswitch-width: 36px;\n --p-toggleswitch-height: 20px;\n --p-toggleswitch-gap: 2px;\n --p-toggleswitch-handle-size: 14px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch .p-toggleswitch-checked .p-toggleswitch-slider {\n background: #0076dd;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:hover).p-toggleswitch-checked .p-toggleswitch-slider {\n background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n border-color: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n}\n.panel-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n}\n.panel-header-container .panel-header-title {\n color: #7985a0;\n font-size: 16px;\n font-style: normal;\n font-weight: 600;\n line-height: 20px;\n}\n.panel-header-container .panel-header-title-sub {\n font-size: 14px;\n font-weight: 500;\n line-height: 18px;\n margin-left: 16px;\n}\n.panel-header-container .panel-header-right {\n display: flex;\n gap: 16px;\n}\n.panel-header-container .panel-header-left {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.table-panel-container {\n margin-top: 20px;\n max-width: 100%;\n}\n.table-panel-container .panel-header-container {\n width: 100%;\n}\n.spinner-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.dialog-content {\n display: flex;\n flex-direction: column;\n gap: 10px;\n}\n.dialog-footer {\n display: flex;\n justify-content: space-between;\n margin-top: 24px;\n}\n.last-updated-checkbox {\n flex-direction: row;\n align-items: center;\n padding-top: 20px;\n gap: 5px;\n display: flex;\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=app.component.css.map */\n'] }]
59301
+ `, 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/* apps/reports/moneymatrix/verification/src/app/app.component.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.form-control-container .p-autocomplete-input {\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.report-wrapper {\n padding: 24px;\n width: 100%;\n overflow: hidden;\n min-height: calc(100vh - 85px);\n background-color: #f6f7f9;\n}\n.report-wrapper .report-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n margin-bottom: 24px;\n}\n.report-wrapper .report-title {\n color: #252a34;\n font-size: 24px;\n font-style: normal;\n font-weight: 700;\n}\n.report-wrapper .template-title {\n font-style: normal;\n margin-top: 5px;\n line-height: 20px;\n color: #4a5469;\n font-size: 16px;\n font-weight: 700;\n}\n.report-wrapper .table-toggle-container {\n display: inline-flex;\n align-items: center;\n gap: 5px;\n height: 36px;\n}\n.report-wrapper .table-toggle-container .table-toggle-label {\n color: #252a34;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch {\n --p-toggleswitch-width: 36px;\n --p-toggleswitch-height: 20px;\n --p-toggleswitch-gap: 2px;\n --p-toggleswitch-handle-size: 14px;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch .p-toggleswitch-checked .p-toggleswitch-slider {\n background: #0076dd;\n}\n.report-wrapper .table-toggle-container .table-toggle .p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:hover).p-toggleswitch-checked .p-toggleswitch-slider {\n background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n border-color: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), #0076dd;\n}\n.report-wrapper lib-dm-input-text-lib::part(documents-modal-button-custom-styles) {\n padding-right: 42px !important;\n text-overflow: ellipsis !important;\n}\n.panel-header-container {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n}\n.panel-header-container .panel-header-title {\n color: #7985a0;\n font-size: 16px;\n font-style: normal;\n font-weight: 600;\n line-height: 20px;\n}\n.panel-header-container .panel-header-title-sub {\n font-size: 14px;\n font-weight: 500;\n line-height: 18px;\n margin-left: 16px;\n}\n.panel-header-container .panel-header-right {\n display: flex;\n gap: 16px;\n}\n.panel-header-container .panel-header-left {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.table-panel-container {\n margin-top: 20px;\n max-width: 100%;\n}\n.table-panel-container .panel-header-container {\n width: 100%;\n}\n.spinner-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.dialog-content {\n display: flex;\n flex-direction: column;\n gap: 10px;\n}\n.dialog-footer {\n display: flex;\n justify-content: space-between;\n margin-top: 24px;\n}\n.last-updated-checkbox {\n flex-direction: row;\n align-items: center;\n padding-top: 20px;\n gap: 5px;\n display: flex;\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=app.component.css.map */\n'] }]
59209
59302
  }], () => [], null);
59210
59303
  });
59211
59304
  })();
@@ -59220,8 +59313,8 @@ var scheduler = {
59220
59313
  *
59221
59314
  * Returns a function that when executed will cancel the scheduled function.
59222
59315
  */
59223
- schedule(taskFn, delay) {
59224
- const id = setTimeout(taskFn, delay);
59316
+ schedule(taskFn, delay2) {
59317
+ const id = setTimeout(taskFn, delay2);
59225
59318
  return () => clearTimeout(id);
59226
59319
  }
59227
59320
  };