@everymatrix/stage-mm-verification-report 1.0.34 → 1.0.35
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/app.component.css.map +2 -2
- package/{chunk-5YYL42DS.js → chunk-4SSH756B.js} +3 -3
- package/{chunk-PUQ5Z3AY.js → chunk-AQTB7ALY.js} +2 -2
- package/{chunk-BTHW6DIE.js → chunk-IAW45NHK.js} +15 -8
- package/{chunk-BTHW6DIE.js.map → chunk-IAW45NHK.js.map} +1 -1
- package/{chunk-CG477KFS.js → chunk-RSTLXP3U.js} +3 -3
- package/{chunk-WMPCH4IX.js → chunk-YEHJXZLH.js} +2 -2
- package/dm-input-text-lib.component.css.map +2 -2
- package/index.html +1 -1
- package/main.js +134 -58
- package/main.js.map +1 -1
- package/package.json +1 -1
- package/report-configuration-modal.css.map +2 -2
- /package/{chunk-5YYL42DS.js.map → chunk-4SSH756B.js.map} +0 -0
- /package/{chunk-PUQ5Z3AY.js.map → chunk-AQTB7ALY.js.map} +0 -0
- /package/{chunk-CG477KFS.js.map → chunk-RSTLXP3U.js.map} +0 -0
- /package/{chunk-WMPCH4IX.js.map → chunk-YEHJXZLH.js.map} +0 -0
package/main.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ProgressSpinner,
|
|
3
3
|
ProgressSpinnerModule
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-YEHJXZLH.js";
|
|
5
5
|
import {
|
|
6
6
|
DomainsOverloadModalComponent
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-AQTB7ALY.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-
|
|
38
|
+
} from "./chunk-IAW45NHK.js";
|
|
39
39
|
import {
|
|
40
40
|
$dt,
|
|
41
41
|
AutoFocus,
|
|
@@ -23034,7 +23034,9 @@ var TimePeriod;
|
|
|
23034
23034
|
TimePeriod2["Yesterday"] = "yesterday";
|
|
23035
23035
|
TimePeriod2["CurrentWeek"] = "current_week";
|
|
23036
23036
|
TimePeriod2["CurrentMonth"] = "current_month";
|
|
23037
|
+
TimePeriod2["CurrentQuarter"] = "current_quarter";
|
|
23037
23038
|
TimePeriod2["LastMonth"] = "last_month";
|
|
23039
|
+
TimePeriod2["LastQuarter"] = "last_quarter";
|
|
23038
23040
|
TimePeriod2["Last30Days"] = "last_30_days";
|
|
23039
23041
|
TimePeriod2["CurrentYear"] = "current_year";
|
|
23040
23042
|
TimePeriod2["Custom"] = "custom";
|
|
@@ -23072,6 +23074,14 @@ var DATE_HINTS = [
|
|
|
23072
23074
|
end: (0, import_moment.default)().endOf("day").toDate()
|
|
23073
23075
|
}
|
|
23074
23076
|
},
|
|
23077
|
+
{
|
|
23078
|
+
name: "Current Quarter",
|
|
23079
|
+
dateAlias: TimePeriod.CurrentQuarter,
|
|
23080
|
+
interval: {
|
|
23081
|
+
start: (0, import_moment.default)().startOf("quarter").startOf("day").toDate(),
|
|
23082
|
+
end: (0, import_moment.default)().endOf("day").toDate()
|
|
23083
|
+
}
|
|
23084
|
+
},
|
|
23075
23085
|
{
|
|
23076
23086
|
name: "Last Month",
|
|
23077
23087
|
dateAlias: TimePeriod.LastMonth,
|
|
@@ -23080,6 +23090,14 @@ var DATE_HINTS = [
|
|
|
23080
23090
|
end: (0, import_moment.default)().subtract(1, "months").endOf("month").endOf("day").toDate()
|
|
23081
23091
|
}
|
|
23082
23092
|
},
|
|
23093
|
+
{
|
|
23094
|
+
name: "Last Quarter",
|
|
23095
|
+
dateAlias: TimePeriod.LastQuarter,
|
|
23096
|
+
interval: {
|
|
23097
|
+
start: (0, import_moment.default)().subtract(1, "quarter").startOf("quarter").startOf("day").toDate(),
|
|
23098
|
+
end: (0, import_moment.default)().subtract(1, "quarter").endOf("quarter").endOf("day").toDate()
|
|
23099
|
+
}
|
|
23100
|
+
},
|
|
23083
23101
|
{
|
|
23084
23102
|
name: "Last 30 Days",
|
|
23085
23103
|
dateAlias: TimePeriod.Last30Days,
|
|
@@ -23253,11 +23271,14 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
|
|
|
23253
23271
|
{ key: TimePeriod.Yesterday, value: "Yesterday" },
|
|
23254
23272
|
{ key: TimePeriod.CurrentWeek, value: "Current Week" },
|
|
23255
23273
|
{ key: TimePeriod.CurrentMonth, value: "Current Month" },
|
|
23274
|
+
{ key: TimePeriod.CurrentQuarter, value: "Current Quarter" },
|
|
23256
23275
|
{ key: TimePeriod.LastMonth, value: "Last Month" },
|
|
23276
|
+
{ key: TimePeriod.LastQuarter, value: "Last Quarter" },
|
|
23257
23277
|
{ key: TimePeriod.Last30Days, value: "Last 30 Days" },
|
|
23258
23278
|
{ key: TimePeriod.CurrentYear, value: "Current Year" }
|
|
23259
23279
|
];
|
|
23260
23280
|
dateControl = new FormControl(null);
|
|
23281
|
+
control;
|
|
23261
23282
|
attachedToShadowDom = signal(false);
|
|
23262
23283
|
popoverOpened = false;
|
|
23263
23284
|
// If the click did not occur inside this component's Shadow DOM,
|
|
@@ -23414,6 +23435,9 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
|
|
|
23414
23435
|
onClear() {
|
|
23415
23436
|
this.dateControl.reset();
|
|
23416
23437
|
this.inputValue = "";
|
|
23438
|
+
this._initialValue = null;
|
|
23439
|
+
if (this.control)
|
|
23440
|
+
this.control.reset();
|
|
23417
23441
|
}
|
|
23418
23442
|
static \u0275fac = function DmRangeDatePickerLibComponent_Factory(__ngFactoryType__) {
|
|
23419
23443
|
return new (__ngFactoryType__ || _DmRangeDatePickerLibComponent)(\u0275\u0275directiveInject(ElementRef), \u0275\u0275directiveInject(ShadowDomStyleInjectorService));
|
|
@@ -23432,7 +23456,7 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
|
|
|
23432
23456
|
return ctx.onDocumentClick($event);
|
|
23433
23457
|
}, false, \u0275\u0275resolveDocument);
|
|
23434
23458
|
}
|
|
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([
|
|
23459
|
+
}, 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
23460
|
{
|
|
23437
23461
|
provide: NG_VALUE_ACCESSOR,
|
|
23438
23462
|
useExisting: forwardRef(() => _DmRangeDatePickerLibComponent),
|
|
@@ -23734,13 +23758,15 @@ var DmRangeDatePickerLibComponent = class _DmRangeDatePickerLibComponent {
|
|
|
23734
23758
|
}], popover: [{
|
|
23735
23759
|
type: ViewChild,
|
|
23736
23760
|
args: ["op", { static: true }]
|
|
23761
|
+
}], control: [{
|
|
23762
|
+
type: Input
|
|
23737
23763
|
}], onDocumentClick: [{
|
|
23738
23764
|
type: HostListener,
|
|
23739
23765
|
args: ["document:click", ["$event"]]
|
|
23740
23766
|
}] });
|
|
23741
23767
|
})();
|
|
23742
23768
|
(() => {
|
|
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:
|
|
23769
|
+
(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
23770
|
})();
|
|
23745
23771
|
|
|
23746
23772
|
// node_modules/@angular/core/fesm2022/rxjs-interop.mjs
|
|
@@ -30186,7 +30212,8 @@ var _c010 = [[["", "icon-left", ""]], [["", "icon-right", ""]]];
|
|
|
30186
30212
|
var _c120 = ["[icon-left]", "[icon-right]"];
|
|
30187
30213
|
var _c214 = (a0) => ({ visibility: a0 });
|
|
30188
30214
|
var _c39 = () => ({ position: "relative" });
|
|
30189
|
-
var _c49 = () => ({
|
|
30215
|
+
var _c49 = (a0) => ({ "has-value-on-hover": a0 });
|
|
30216
|
+
var _c57 = () => ({ display: "block", padding: 0, border: "none" });
|
|
30190
30217
|
function DmInputTextLibComponent_Conditional_1_Template(rf, ctx) {
|
|
30191
30218
|
if (rf & 1) {
|
|
30192
30219
|
\u0275\u0275elementStart(0, "label", 2);
|
|
@@ -30229,12 +30256,20 @@ function DmInputTextLibComponent_Conditional_3_Template(rf, ctx) {
|
|
|
30229
30256
|
\u0275\u0275restoreView(_r2);
|
|
30230
30257
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
30231
30258
|
return \u0275\u0275resetView(ctx_r0.onSuggestionSelect($event));
|
|
30259
|
+
})("mouseenter", function DmInputTextLibComponent_Conditional_3_Template_p_autocomplete_mouseenter_0_listener() {
|
|
30260
|
+
\u0275\u0275restoreView(_r2);
|
|
30261
|
+
const ctx_r0 = \u0275\u0275nextContext();
|
|
30262
|
+
return \u0275\u0275resetView(ctx_r0.isHovered = true);
|
|
30263
|
+
})("mouseleave", function DmInputTextLibComponent_Conditional_3_Template_p_autocomplete_mouseleave_0_listener() {
|
|
30264
|
+
\u0275\u0275restoreView(_r2);
|
|
30265
|
+
const ctx_r0 = \u0275\u0275nextContext();
|
|
30266
|
+
return \u0275\u0275resetView(ctx_r0.isHovered = false);
|
|
30232
30267
|
});
|
|
30233
30268
|
\u0275\u0275elementEnd();
|
|
30234
30269
|
}
|
|
30235
30270
|
if (rf & 2) {
|
|
30236
30271
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
30237
|
-
\u0275\u0275property("ngStyle", \u0275\u0275pureFunction0(8,
|
|
30272
|
+
\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
30273
|
}
|
|
30239
30274
|
}
|
|
30240
30275
|
function DmInputTextLibComponent_Conditional_4_Template(rf, ctx) {
|
|
@@ -30258,12 +30293,21 @@ function DmInputTextLibComponent_Conditional_4_Template(rf, ctx) {
|
|
|
30258
30293
|
\u0275\u0275restoreView(_r3);
|
|
30259
30294
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
30260
30295
|
return \u0275\u0275resetView(ctx_r0.isFocused = true);
|
|
30296
|
+
})("mouseenter", function DmInputTextLibComponent_Conditional_4_Template_input_mouseenter_0_listener() {
|
|
30297
|
+
\u0275\u0275restoreView(_r3);
|
|
30298
|
+
const ctx_r0 = \u0275\u0275nextContext();
|
|
30299
|
+
return \u0275\u0275resetView(ctx_r0.isHovered = true);
|
|
30300
|
+
})("mouseleave", function DmInputTextLibComponent_Conditional_4_Template_input_mouseleave_0_listener() {
|
|
30301
|
+
\u0275\u0275restoreView(_r3);
|
|
30302
|
+
const ctx_r0 = \u0275\u0275nextContext();
|
|
30303
|
+
return \u0275\u0275resetView(ctx_r0.isHovered = false);
|
|
30261
30304
|
});
|
|
30262
30305
|
\u0275\u0275elementEnd();
|
|
30263
30306
|
}
|
|
30264
30307
|
if (rf & 2) {
|
|
30265
30308
|
const ctx_r0 = \u0275\u0275nextContext();
|
|
30266
|
-
\u0275\u0275property("id", "inputField-" + ctx_r0.uniqueId())("readonly", ctx_r0.readonly())("formControl", ctx_r0.
|
|
30309
|
+
\u0275\u0275property("id", "inputField-" + ctx_r0.uniqueId())("readonly", ctx_r0.readonly())("formControl", ctx_r0.currentControl())("placeholder", "Enter " + ctx_r0.placeholder());
|
|
30310
|
+
\u0275\u0275attribute("part", ctx_r0.inputPartName);
|
|
30267
30311
|
}
|
|
30268
30312
|
}
|
|
30269
30313
|
function DmInputTextLibComponent_Conditional_5_Template(rf, ctx) {
|
|
@@ -30329,6 +30373,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30329
30373
|
control = input(null);
|
|
30330
30374
|
attachedToShadowDom = signal(false);
|
|
30331
30375
|
isFocused = false;
|
|
30376
|
+
isHovered = false;
|
|
30332
30377
|
clickEmitter = output();
|
|
30333
30378
|
suggestionsList = [];
|
|
30334
30379
|
filteredSuggestions = [];
|
|
@@ -30336,6 +30381,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30336
30381
|
searchCharacter;
|
|
30337
30382
|
showEmptyMessage;
|
|
30338
30383
|
appendToBody = false;
|
|
30384
|
+
inputPartName;
|
|
30339
30385
|
uniqueId = signal(crypto.randomUUID());
|
|
30340
30386
|
internalControl = new FormControl("");
|
|
30341
30387
|
currentControl = computed(() => this.control() ?? this.internalControl);
|
|
@@ -30441,13 +30487,13 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30441
30487
|
static \u0275fac = function DmInputTextLibComponent_Factory(__ngFactoryType__) {
|
|
30442
30488
|
return new (__ngFactoryType__ || _DmInputTextLibComponent)();
|
|
30443
30489
|
};
|
|
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:
|
|
30490
|
+
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
30491
|
if (rf & 1) {
|
|
30446
30492
|
\u0275\u0275projectionDef(_c010);
|
|
30447
30493
|
\u0275\u0275elementStart(0, "div", 1);
|
|
30448
30494
|
\u0275\u0275template(1, DmInputTextLibComponent_Conditional_1_Template, 2, 2, "label", 2);
|
|
30449
30495
|
\u0275\u0275elementStart(2, "div", 3);
|
|
30450
|
-
\u0275\u0275template(3, DmInputTextLibComponent_Conditional_3_Template, 2, 9, "p-autocomplete", 4)(4, DmInputTextLibComponent_Conditional_4_Template, 2,
|
|
30496
|
+
\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
30497
|
\u0275\u0275projection(6);
|
|
30452
30498
|
\u0275\u0275projection(7, 1);
|
|
30453
30499
|
\u0275\u0275elementEnd();
|
|
@@ -30455,16 +30501,17 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30455
30501
|
\u0275\u0275elementEnd();
|
|
30456
30502
|
}
|
|
30457
30503
|
if (rf & 2) {
|
|
30458
|
-
let
|
|
30459
|
-
|
|
30504
|
+
let tmp_3_0;
|
|
30505
|
+
let tmp_5_0;
|
|
30506
|
+
\u0275\u0275property("ngStyle", \u0275\u0275pureFunction1(9, _c214, !ctx.attachedToShadowDom() ? "hidden" : "visible"));
|
|
30460
30507
|
\u0275\u0275advance();
|
|
30461
30508
|
\u0275\u0275conditional(ctx.label() ? 1 : -1);
|
|
30462
30509
|
\u0275\u0275advance();
|
|
30463
|
-
\u0275\u0275property("ngStyle", \u0275\u0275pureFunction0(
|
|
30510
|
+
\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
30511
|
\u0275\u0275advance();
|
|
30465
30512
|
\u0275\u0275conditional(ctx.autocomplete ? 3 : 4);
|
|
30466
30513
|
\u0275\u0275advance(2);
|
|
30467
|
-
\u0275\u0275conditional(ctx.showClear() && ((
|
|
30514
|
+
\u0275\u0275conditional(ctx.showClear() && ((tmp_5_0 = ctx.currentControl()) == null ? null : tmp_5_0.value) ? 5 : -1);
|
|
30468
30515
|
\u0275\u0275advance(3);
|
|
30469
30516
|
\u0275\u0275conditional(ctx.showError() && !ctx.isFocused ? 8 : -1);
|
|
30470
30517
|
\u0275\u0275advance();
|
|
@@ -30472,7 +30519,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30472
30519
|
\u0275\u0275advance();
|
|
30473
30520
|
\u0275\u0275conditional(ctx.hint() && ctx.permanentHint() && !ctx.showError() ? 10 : -1);
|
|
30474
30521
|
}
|
|
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 });
|
|
30522
|
+
}, 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
30523
|
};
|
|
30477
30524
|
(() => {
|
|
30478
30525
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(DmInputTextLibComponent, [{
|
|
@@ -30492,7 +30539,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30492
30539
|
{{ computedLabel() }}
|
|
30493
30540
|
</label>
|
|
30494
30541
|
}
|
|
30495
|
-
<div [ngStyle]="{ position: 'relative' }" class="input-text-container">
|
|
30542
|
+
<div [ngStyle]="{ position: 'relative' }" class="input-text-container" [ngClass]="{'has-value-on-hover': showClear() && currentControl()?.value && isHovered }">
|
|
30496
30543
|
@if(autocomplete) {
|
|
30497
30544
|
<p-autocomplete
|
|
30498
30545
|
#inputElement
|
|
@@ -30502,7 +30549,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30502
30549
|
pInputText
|
|
30503
30550
|
[id]="'inputField-' + uniqueId()"
|
|
30504
30551
|
[readonly]="readonly()"
|
|
30505
|
-
[formControl]="
|
|
30552
|
+
[formControl]="currentControl()"
|
|
30506
30553
|
[placeholder]="'Enter ' + placeholder()"
|
|
30507
30554
|
(blur)="markAsTouched(); isFocused = false"
|
|
30508
30555
|
(focus)="isFocused = true"
|
|
@@ -30513,6 +30560,8 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30513
30560
|
(onSelect)="onSuggestionSelect($event)"
|
|
30514
30561
|
fluid
|
|
30515
30562
|
[appendTo]="appendToBody ? 'body' : null"
|
|
30563
|
+
(mouseenter)="isHovered = true"
|
|
30564
|
+
(mouseleave)="isHovered = false"
|
|
30516
30565
|
/>
|
|
30517
30566
|
} @else {
|
|
30518
30567
|
<input
|
|
@@ -30524,13 +30573,16 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30524
30573
|
pInputText
|
|
30525
30574
|
[id]="'inputField-' + uniqueId()"
|
|
30526
30575
|
[readonly]="readonly()"
|
|
30527
|
-
[formControl]="
|
|
30576
|
+
[formControl]="currentControl()"
|
|
30528
30577
|
[placeholder]="'Enter ' + placeholder()"
|
|
30529
30578
|
(blur)="markAsTouched(); isFocused = false"
|
|
30530
30579
|
(focus)="isFocused = true"
|
|
30580
|
+
[attr.part]="inputPartName"
|
|
30581
|
+
(mouseenter)="isHovered = true"
|
|
30582
|
+
(mouseleave)="isHovered = false"
|
|
30531
30583
|
/>
|
|
30532
30584
|
}
|
|
30533
|
-
@if(showClear() &&
|
|
30585
|
+
@if(showClear() && currentControl()?.value) {
|
|
30534
30586
|
<svg
|
|
30535
30587
|
(click)="onClear()"
|
|
30536
30588
|
class="clear-icon"
|
|
@@ -30564,7 +30616,7 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30564
30616
|
</div>
|
|
30565
30617
|
}
|
|
30566
30618
|
</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'] }]
|
|
30619
|
+
`, 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
30620
|
}], null, { suggestionsList: [{
|
|
30569
30621
|
type: Input
|
|
30570
30622
|
}], autocomplete: [{
|
|
@@ -30576,10 +30628,12 @@ var DmInputTextLibComponent = class _DmInputTextLibComponent {
|
|
|
30576
30628
|
}], appendToBody: [{
|
|
30577
30629
|
type: Input,
|
|
30578
30630
|
args: [{ transform: booleanAttribute }]
|
|
30631
|
+
}], inputPartName: [{
|
|
30632
|
+
type: Input
|
|
30579
30633
|
}] });
|
|
30580
30634
|
})();
|
|
30581
30635
|
(() => {
|
|
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:
|
|
30636
|
+
(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
30637
|
})();
|
|
30584
30638
|
|
|
30585
30639
|
// node_modules/primeng/fesm2022/primeng-iconfield.mjs
|
|
@@ -30931,7 +30985,7 @@ function SelectItem_ng_container_3_Template(rf, ctx) {
|
|
|
30931
30985
|
}
|
|
30932
30986
|
var _c310 = ["item"];
|
|
30933
30987
|
var _c410 = ["group"];
|
|
30934
|
-
var
|
|
30988
|
+
var _c58 = ["loader"];
|
|
30935
30989
|
var _c67 = ["selectedItem"];
|
|
30936
30990
|
var _c77 = ["header"];
|
|
30937
30991
|
var _c86 = ["filter"];
|
|
@@ -33589,7 +33643,7 @@ var Select = class _Select extends BaseComponent {
|
|
|
33589
33643
|
if (rf & 1) {
|
|
33590
33644
|
\u0275\u0275contentQuery(dirIndex, _c310, 4);
|
|
33591
33645
|
\u0275\u0275contentQuery(dirIndex, _c410, 4);
|
|
33592
|
-
\u0275\u0275contentQuery(dirIndex,
|
|
33646
|
+
\u0275\u0275contentQuery(dirIndex, _c58, 4);
|
|
33593
33647
|
\u0275\u0275contentQuery(dirIndex, _c67, 4);
|
|
33594
33648
|
\u0275\u0275contentQuery(dirIndex, _c77, 4);
|
|
33595
33649
|
\u0275\u0275contentQuery(dirIndex, _c86, 4);
|
|
@@ -35312,7 +35366,7 @@ function MultiSelectItem_ng_container_4_Template(rf, ctx) {
|
|
|
35312
35366
|
}
|
|
35313
35367
|
}
|
|
35314
35368
|
var _c411 = ["item"];
|
|
35315
|
-
var
|
|
35369
|
+
var _c59 = ["group"];
|
|
35316
35370
|
var _c68 = ["loader"];
|
|
35317
35371
|
var _c78 = ["header"];
|
|
35318
35372
|
var _c87 = ["filter"];
|
|
@@ -38297,7 +38351,7 @@ var MultiSelect = class _MultiSelect extends BaseComponent {
|
|
|
38297
38351
|
\u0275\u0275contentQuery(dirIndex, Footer, 5);
|
|
38298
38352
|
\u0275\u0275contentQuery(dirIndex, Header, 5);
|
|
38299
38353
|
\u0275\u0275contentQuery(dirIndex, _c411, 4);
|
|
38300
|
-
\u0275\u0275contentQuery(dirIndex,
|
|
38354
|
+
\u0275\u0275contentQuery(dirIndex, _c59, 4);
|
|
38301
38355
|
\u0275\u0275contentQuery(dirIndex, _c68, 4);
|
|
38302
38356
|
\u0275\u0275contentQuery(dirIndex, _c78, 4);
|
|
38303
38357
|
\u0275\u0275contentQuery(dirIndex, _c87, 4);
|
|
@@ -42186,7 +42240,7 @@ var _c131 = ["firstpagelinkicon"];
|
|
|
42186
42240
|
var _c221 = ["previouspagelinkicon"];
|
|
42187
42241
|
var _c314 = ["lastpagelinkicon"];
|
|
42188
42242
|
var _c412 = ["nextpagelinkicon"];
|
|
42189
|
-
var
|
|
42243
|
+
var _c510 = (a0) => ({
|
|
42190
42244
|
"p-disabled": a0
|
|
42191
42245
|
});
|
|
42192
42246
|
var _c69 = (a0) => ({
|
|
@@ -42266,7 +42320,7 @@ function Paginator_div_0_button_3_Template(rf, ctx) {
|
|
|
42266
42320
|
}
|
|
42267
42321
|
if (rf & 2) {
|
|
42268
42322
|
const ctx_r1 = \u0275\u0275nextContext(2);
|
|
42269
|
-
\u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5,
|
|
42323
|
+
\u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5, _c510, ctx_r1.isFirstPage() || ctx_r1.empty()));
|
|
42270
42324
|
\u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("firstPageLabel"));
|
|
42271
42325
|
\u0275\u0275advance();
|
|
42272
42326
|
\u0275\u0275property("ngIf", !ctx_r1.firstPageLinkIconTemplate && !ctx_r1._firstPageLinkIconTemplate);
|
|
@@ -42474,7 +42528,7 @@ function Paginator_div_0_button_12_Template(rf, ctx) {
|
|
|
42474
42528
|
}
|
|
42475
42529
|
if (rf & 2) {
|
|
42476
42530
|
const ctx_r1 = \u0275\u0275nextContext(2);
|
|
42477
|
-
\u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5,
|
|
42531
|
+
\u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(5, _c510, ctx_r1.isLastPage() || ctx_r1.empty()));
|
|
42478
42532
|
\u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("lastPageLabel"));
|
|
42479
42533
|
\u0275\u0275advance();
|
|
42480
42534
|
\u0275\u0275property("ngIf", !ctx_r1.lastPageLinkIconTemplate && !ctx_r1._lastPageLinkIconTemplate);
|
|
@@ -42623,7 +42677,7 @@ function Paginator_div_0_Template(rf, ctx) {
|
|
|
42623
42677
|
\u0275\u0275advance();
|
|
42624
42678
|
\u0275\u0275property("ngIf", ctx_r1.showFirstLastIcon);
|
|
42625
42679
|
\u0275\u0275advance();
|
|
42626
|
-
\u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(25,
|
|
42680
|
+
\u0275\u0275property("disabled", ctx_r1.isFirstPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(25, _c510, ctx_r1.isFirstPage() || ctx_r1.empty()));
|
|
42627
42681
|
\u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("prevPageLabel"));
|
|
42628
42682
|
\u0275\u0275advance();
|
|
42629
42683
|
\u0275\u0275property("ngIf", !ctx_r1.previousPageLinkIconTemplate && !ctx_r1._previousPageLinkIconTemplate);
|
|
@@ -42634,7 +42688,7 @@ function Paginator_div_0_Template(rf, ctx) {
|
|
|
42634
42688
|
\u0275\u0275advance();
|
|
42635
42689
|
\u0275\u0275property("ngIf", ctx_r1.showJumpToPageDropdown);
|
|
42636
42690
|
\u0275\u0275advance();
|
|
42637
|
-
\u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(27,
|
|
42691
|
+
\u0275\u0275property("disabled", ctx_r1.isLastPage() || ctx_r1.empty())("ngClass", \u0275\u0275pureFunction1(27, _c510, ctx_r1.isLastPage() || ctx_r1.empty()));
|
|
42638
42692
|
\u0275\u0275attribute("aria-label", ctx_r1.getAriaLabel("nextPageLabel"));
|
|
42639
42693
|
\u0275\u0275advance();
|
|
42640
42694
|
\u0275\u0275property("ngIf", !ctx_r1.nextPageLinkIconTemplate && !ctx_r1._nextPageLinkIconTemplate);
|
|
@@ -43546,7 +43600,7 @@ var _c138 = ["caption"];
|
|
|
43546
43600
|
var _c227 = ["header"];
|
|
43547
43601
|
var _c315 = ["body"];
|
|
43548
43602
|
var _c413 = ["footer"];
|
|
43549
|
-
var
|
|
43603
|
+
var _c511 = ["summary"];
|
|
43550
43604
|
var _c610 = ["emptymessage"];
|
|
43551
43605
|
var _c710 = ["paginatorleft"];
|
|
43552
43606
|
var _c88 = ["paginatorright"];
|
|
@@ -46891,7 +46945,7 @@ var TreeTable = class _TreeTable extends BaseComponent {
|
|
|
46891
46945
|
\u0275\u0275contentQuery(dirIndex, _c227, 4);
|
|
46892
46946
|
\u0275\u0275contentQuery(dirIndex, _c315, 4);
|
|
46893
46947
|
\u0275\u0275contentQuery(dirIndex, _c413, 4);
|
|
46894
|
-
\u0275\u0275contentQuery(dirIndex,
|
|
46948
|
+
\u0275\u0275contentQuery(dirIndex, _c511, 4);
|
|
46895
46949
|
\u0275\u0275contentQuery(dirIndex, _c610, 4);
|
|
46896
46950
|
\u0275\u0275contentQuery(dirIndex, _c710, 4);
|
|
46897
46951
|
\u0275\u0275contentQuery(dirIndex, _c88, 4);
|
|
@@ -52096,7 +52150,7 @@ var RadioButtonModule = class _RadioButtonModule {
|
|
|
52096
52150
|
})();
|
|
52097
52151
|
|
|
52098
52152
|
// libs/shared/ui/components/src/lib/modals/save-template-modal/save-template-modal.component.ts
|
|
52099
|
-
var _c023 = (a0) => ({ width: "460px", "
|
|
52153
|
+
var _c023 = (a0) => ({ width: "460px", "height": a0 });
|
|
52100
52154
|
var _c149 = () => ({ "margin-bottom": "12px" });
|
|
52101
52155
|
var _c231 = () => ({ "margin-right": "4px" });
|
|
52102
52156
|
var _c318 = () => ({ width: "20px", height: "20px" });
|
|
@@ -52388,7 +52442,7 @@ var SaveTemplateModalComponent = class _SaveTemplateModalComponent {
|
|
|
52388
52442
|
header="Save Template"
|
|
52389
52443
|
[(visible)]="visible"
|
|
52390
52444
|
[modal]="true"
|
|
52391
|
-
[style]="{ width: '460px', '
|
|
52445
|
+
[style]="{ width: '460px', 'height': showWarningMessage() ? '398px' : '340px' }"
|
|
52392
52446
|
(onShow)="onShowDialog()"
|
|
52393
52447
|
>
|
|
52394
52448
|
@if(isTemplatePresent) {
|
|
@@ -53231,7 +53285,7 @@ var ReportConfigurationModalComponent = class _ReportConfigurationModalComponent
|
|
|
53231
53285
|
DefaultValueAccessor,
|
|
53232
53286
|
NgControlStatus,
|
|
53233
53287
|
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 });
|
|
53288
|
+
], 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
53289
|
};
|
|
53236
53290
|
(() => {
|
|
53237
53291
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ReportConfigurationModalComponent, [{
|
|
@@ -53479,7 +53533,7 @@ var ReportConfigurationModalComponent = class _ReportConfigurationModalComponent
|
|
|
53479
53533
|
</div>\r
|
|
53480
53534
|
</ng-template>\r
|
|
53481
53535
|
</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'] }]
|
|
53536
|
+
`, 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
53537
|
}], null, { allAvailableFields: [{
|
|
53484
53538
|
type: Input
|
|
53485
53539
|
}], selectedList: [{
|
|
@@ -53781,13 +53835,13 @@ var DmDatePickerLibComponent = class _DmDatePickerLibComponent {
|
|
|
53781
53835
|
|
|
53782
53836
|
// libs/shared/ui/components/src/lib/modals/send-settings-modal/send-settings-modal.ts
|
|
53783
53837
|
var _forTrack04 = ($index, $item) => $item.dag_id;
|
|
53784
|
-
var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-
|
|
53838
|
+
var SendSettingsModalComponent_Defer_3_DepsFn = () => [import("./chunk-4SSH756B.js").then((m) => m.DeleteTemplateModalComponent)];
|
|
53785
53839
|
var _c026 = () => ({ "width": "460px", "max-height": "540px" });
|
|
53786
53840
|
var _c151 = () => ({ width: "20px", height: "20px" });
|
|
53787
53841
|
var _c237 = () => ({ "min-width": "720px" });
|
|
53788
53842
|
var _c319 = () => ({ height: "20px" });
|
|
53789
53843
|
var _c414 = () => ({ "min-width": "80px" });
|
|
53790
|
-
var
|
|
53844
|
+
var _c512 = () => ({ width: "40px", height: "40px" });
|
|
53791
53845
|
function SendSettingsModalComponent_Conditional_0_Conditional_10_Conditional_2_Template(rf, ctx) {
|
|
53792
53846
|
if (rf & 1) {
|
|
53793
53847
|
\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 +54203,7 @@ function SendSettingsModalComponent_Conditional_1_Conditional_2_Template(rf, ctx
|
|
|
54149
54203
|
}
|
|
54150
54204
|
if (rf & 2) {
|
|
54151
54205
|
\u0275\u0275advance();
|
|
54152
|
-
\u0275\u0275styleMap(\u0275\u0275pureFunction0(2,
|
|
54206
|
+
\u0275\u0275styleMap(\u0275\u0275pureFunction0(2, _c512));
|
|
54153
54207
|
}
|
|
54154
54208
|
}
|
|
54155
54209
|
function SendSettingsModalComponent_Conditional_1_Template(rf, ctx) {
|
|
@@ -54612,7 +54666,7 @@ var SendSettingsModalComponent = class _SendSettingsModalComponent {
|
|
|
54612
54666
|
], 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
54667
|
};
|
|
54614
54668
|
(() => {
|
|
54615
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-
|
|
54669
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(SendSettingsModalComponent, () => [import("./chunk-4SSH756B.js").then((m) => m.DeleteTemplateModalComponent)], (DeleteTemplateModalComponent) => {
|
|
54616
54670
|
setClassMetadata(SendSettingsModalComponent, [{
|
|
54617
54671
|
type: Component,
|
|
54618
54672
|
args: [{ selector: "lib-send-settings-modal", standalone: true, imports: [
|
|
@@ -55068,8 +55122,8 @@ Are you sure you want to delete the schedule?"\r
|
|
|
55068
55122
|
|
|
55069
55123
|
// libs/shared/ui/components/src/lib/modals/template-select-modal/template-select-modal.ts
|
|
55070
55124
|
var _forTrack05 = ($index, $item) => $item.template_id;
|
|
55071
|
-
var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-
|
|
55072
|
-
var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-
|
|
55125
|
+
var TemplateSelectModalComponent_Defer_12_DepsFn = () => [import("./chunk-4SSH756B.js").then((m) => m.DeleteTemplateModalComponent)];
|
|
55126
|
+
var TemplateSelectModalComponent_Defer_16_DepsFn = () => [import("./chunk-RSTLXP3U.js").then((m) => m.DomainsOverloadModalComponent)];
|
|
55073
55127
|
var _c027 = (a0) => ({ "selected-row": a0 });
|
|
55074
55128
|
var _c158 = () => ({ position: "relative" });
|
|
55075
55129
|
var _c238 = () => ({ width: "16px", height: "16px" });
|
|
@@ -55586,7 +55640,7 @@ var TemplateSelectModalComponent = class _TemplateSelectModalComponent {
|
|
|
55586
55640
|
], 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
55641
|
};
|
|
55588
55642
|
(() => {
|
|
55589
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-
|
|
55643
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(TemplateSelectModalComponent, () => [import("./chunk-4SSH756B.js").then((m) => m.DeleteTemplateModalComponent), import("./chunk-RSTLXP3U.js").then((m) => m.DomainsOverloadModalComponent)], (DeleteTemplateModalComponent, DomainsOverloadModalComponent2) => {
|
|
55590
55644
|
setClassMetadata(TemplateSelectModalComponent, [{
|
|
55591
55645
|
type: Component,
|
|
55592
55646
|
args: [{ selector: "lib-template-select-modal", standalone: true, imports: [
|
|
@@ -56110,7 +56164,7 @@ function ToastItem_Conditional_3_Template(rf, ctx) {
|
|
|
56110
56164
|
\u0275\u0275conditional((ctx_r1.message == null ? null : ctx_r1.message.closable) !== false ? 3 : -1);
|
|
56111
56165
|
}
|
|
56112
56166
|
}
|
|
56113
|
-
var
|
|
56167
|
+
var _c513 = ["message"];
|
|
56114
56168
|
var _c611 = ["headless"];
|
|
56115
56169
|
function Toast_p_toastItem_2_Template(rf, ctx) {
|
|
56116
56170
|
if (rf & 1) {
|
|
@@ -56998,7 +57052,7 @@ var Toast = class _Toast extends BaseComponent {
|
|
|
56998
57052
|
selectors: [["p-toast"]],
|
|
56999
57053
|
contentQueries: function Toast_ContentQueries(rf, ctx, dirIndex) {
|
|
57000
57054
|
if (rf & 1) {
|
|
57001
|
-
\u0275\u0275contentQuery(dirIndex,
|
|
57055
|
+
\u0275\u0275contentQuery(dirIndex, _c513, 5);
|
|
57002
57056
|
\u0275\u0275contentQuery(dirIndex, _c611, 5);
|
|
57003
57057
|
\u0275\u0275contentQuery(dirIndex, PrimeTemplate, 4);
|
|
57004
57058
|
}
|
|
@@ -57370,7 +57424,7 @@ var _c160 = (a0) => ({ width: a0 });
|
|
|
57370
57424
|
var _c240 = () => ({ "margin-right": "16px" });
|
|
57371
57425
|
var _c324 = () => ({ height: "20px" });
|
|
57372
57426
|
var _c417 = () => [];
|
|
57373
|
-
var
|
|
57427
|
+
var _c514 = () => ({ width: "20px", height: "20px" });
|
|
57374
57428
|
var _c612 = () => ({ width: "60px", height: "60px" });
|
|
57375
57429
|
var _c711 = () => ({ standalone: true });
|
|
57376
57430
|
var _c89 = () => ({ width: "16px", height: "16px" });
|
|
@@ -57536,7 +57590,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_0_Template(
|
|
|
57536
57590
|
\u0275\u0275nextContext(3);
|
|
57537
57591
|
const lookups_r12 = \u0275\u0275readContextLet(2);
|
|
57538
57592
|
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["
|
|
57593
|
+
\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
57594
|
}
|
|
57541
57595
|
}
|
|
57542
57596
|
function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_1_Template(rf, ctx) {
|
|
@@ -57545,7 +57599,8 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_1_Template(
|
|
|
57545
57599
|
}
|
|
57546
57600
|
if (rf & 2) {
|
|
57547
57601
|
const field_r11 = \u0275\u0275nextContext().$implicit;
|
|
57548
|
-
\u0275\
|
|
57602
|
+
const ctx_r2 = \u0275\u0275nextContext(3);
|
|
57603
|
+
\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
57604
|
}
|
|
57550
57605
|
}
|
|
57551
57606
|
function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Conditional_0_Conditional_2_Template(rf, ctx) {
|
|
@@ -57588,7 +57643,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Condition
|
|
|
57588
57643
|
if (rf & 2) {
|
|
57589
57644
|
const field_r11 = \u0275\u0275nextContext(2).$implicit;
|
|
57590
57645
|
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));
|
|
57646
|
+
\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
57647
|
\u0275\u0275advance(2);
|
|
57593
57648
|
\u0275\u0275conditional(ctx_r2.getControl(field_r11.field_id).value ? 2 : -1);
|
|
57594
57649
|
}
|
|
@@ -57605,7 +57660,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Condition
|
|
|
57605
57660
|
}
|
|
57606
57661
|
function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Template(rf, ctx) {
|
|
57607
57662
|
if (rf & 1) {
|
|
57608
|
-
\u0275\u0275template(0, AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Conditional_0_Template, 6,
|
|
57663
|
+
\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
57664
|
}
|
|
57610
57665
|
if (rf & 2) {
|
|
57611
57666
|
const field_r11 = \u0275\u0275nextContext().$implicit;
|
|
@@ -57614,7 +57669,7 @@ function AppComponent_Conditional_12_Conditional_5_For_4_Conditional_2_Template(
|
|
|
57614
57669
|
}
|
|
57615
57670
|
function AppComponent_Conditional_12_Conditional_5_For_4_Template(rf, ctx) {
|
|
57616
57671
|
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,
|
|
57672
|
+
\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
57673
|
}
|
|
57619
57674
|
if (rf & 2) {
|
|
57620
57675
|
const field_r11 = ctx.$implicit;
|
|
@@ -57638,7 +57693,7 @@ function AppComponent_Conditional_12_Conditional_5_Conditional_16_Template(rf, c
|
|
|
57638
57693
|
}
|
|
57639
57694
|
if (rf & 2) {
|
|
57640
57695
|
\u0275\u0275advance();
|
|
57641
|
-
\u0275\u0275styleMap(\u0275\u0275pureFunction0(2,
|
|
57696
|
+
\u0275\u0275styleMap(\u0275\u0275pureFunction0(2, _c514));
|
|
57642
57697
|
}
|
|
57643
57698
|
}
|
|
57644
57699
|
function AppComponent_Conditional_12_Conditional_5_Template(rf, ctx) {
|
|
@@ -57827,6 +57882,10 @@ function AppComponent_Defer_20_Conditional_2_Template(rf, ctx) {
|
|
|
57827
57882
|
\u0275\u0275property("isMultiSelect", true)("options", lookups_r12 && lookups_r12["documents_type"]);
|
|
57828
57883
|
\u0275\u0275advance();
|
|
57829
57884
|
\u0275\u0275property("isMultiSelect", true)("options", lookups_r12 && lookups_r12["documents_status"]);
|
|
57885
|
+
\u0275\u0275advance();
|
|
57886
|
+
\u0275\u0275property("control", ctx_r2.getControl("documents_expiry_date"));
|
|
57887
|
+
\u0275\u0275advance();
|
|
57888
|
+
\u0275\u0275property("control", ctx_r2.getControl("documents_created_date"));
|
|
57830
57889
|
}
|
|
57831
57890
|
}
|
|
57832
57891
|
function AppComponent_Defer_20_Template(rf, ctx) {
|
|
@@ -57839,7 +57898,7 @@ function AppComponent_Defer_20_Template(rf, ctx) {
|
|
|
57839
57898
|
\u0275\u0275twoWayBindingSet(ctx_r2.documentsModal, $event) || (ctx_r2.documentsModal = $event);
|
|
57840
57899
|
return \u0275\u0275resetView($event);
|
|
57841
57900
|
});
|
|
57842
|
-
\u0275\u0275template(2, AppComponent_Defer_20_Conditional_2_Template, 9,
|
|
57901
|
+
\u0275\u0275template(2, AppComponent_Defer_20_Conditional_2_Template, 9, 7);
|
|
57843
57902
|
\u0275\u0275elementEnd();
|
|
57844
57903
|
}
|
|
57845
57904
|
if (rf & 2) {
|
|
@@ -58105,7 +58164,9 @@ var AppComponent = class _AppComponent {
|
|
|
58105
58164
|
}))).subscribe((data) => {
|
|
58106
58165
|
if (data?.lookups) {
|
|
58107
58166
|
if (!this.lookupsSignal()) {
|
|
58108
|
-
this.
|
|
58167
|
+
const groupedLookups = this.groupLookups(data.lookups);
|
|
58168
|
+
this.sortGroupedLookups(groupedLookups);
|
|
58169
|
+
this.lookupsSignal.set(groupedLookups);
|
|
58109
58170
|
}
|
|
58110
58171
|
}
|
|
58111
58172
|
if (data?.domainLookups) {
|
|
@@ -58432,6 +58493,17 @@ var AppComponent = class _AppComponent {
|
|
|
58432
58493
|
return acc;
|
|
58433
58494
|
}, {});
|
|
58434
58495
|
}
|
|
58496
|
+
sortGroupedLookups(groupedLookups) {
|
|
58497
|
+
Object.keys(groupedLookups).forEach((key) => {
|
|
58498
|
+
if (Array.isArray(groupedLookups[key])) {
|
|
58499
|
+
if (groupedLookups[key].some(({ sort_key }) => sort_key && sort_key > 0)) {
|
|
58500
|
+
groupedLookups[key].sort((a, b) => a.sort_key > b.sort_key ? 1 : -1);
|
|
58501
|
+
} else {
|
|
58502
|
+
groupedLookups[key].sort((a, b) => a.lookup_value > b.lookup_value ? 1 : -1);
|
|
58503
|
+
}
|
|
58504
|
+
}
|
|
58505
|
+
});
|
|
58506
|
+
}
|
|
58435
58507
|
getControl(fieldId) {
|
|
58436
58508
|
const control = this.filterForm.get(fieldId);
|
|
58437
58509
|
return control instanceof FormControl ? control : null;
|
|
@@ -58580,7 +58652,7 @@ var AppComponent = class _AppComponent {
|
|
|
58580
58652
|
static \u0275fac = function AppComponent_Factory(__ngFactoryType__) {
|
|
58581
58653
|
return new (__ngFactoryType__ || _AppComponent)();
|
|
58582
58654
|
};
|
|
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) {
|
|
58655
|
+
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
58656
|
if (rf & 1) {
|
|
58585
58657
|
const _r1 = \u0275\u0275getCurrentView();
|
|
58586
58658
|
\u0275\u0275elementStart(0, "div", 5)(1, "div", 6);
|
|
@@ -58676,7 +58748,7 @@ var AppComponent = class _AppComponent {
|
|
|
58676
58748
|
NgModel,
|
|
58677
58749
|
TemplateSelectModalComponent,
|
|
58678
58750
|
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 });
|
|
58751
|
+
], 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
58752
|
};
|
|
58681
58753
|
(() => {
|
|
58682
58754
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadataAsync(AppComponent, () => [import("./chunk-C7TDIIUY.js").then((m) => m.Dialog)], (Dialog2) => {
|
|
@@ -58868,7 +58940,7 @@ var AppComponent = class _AppComponent {
|
|
|
58868
58940
|
lookups\r
|
|
58869
58941
|
? field['field_id'] === 'merchant_name'\r
|
|
58870
58942
|
? domainLookups\r
|
|
58871
|
-
: lookups[field['
|
|
58943
|
+
: lookups[field['lookup_param_key']]\r
|
|
58872
58944
|
: []\r
|
|
58873
58945
|
"\r
|
|
58874
58946
|
[formControlName]="field.field_id"\r
|
|
@@ -58887,6 +58959,7 @@ var AppComponent = class _AppComponent {
|
|
|
58887
58959
|
"\r
|
|
58888
58960
|
[label]="field['field_name']"\r
|
|
58889
58961
|
[formControlName]="field.field_id"\r
|
|
58962
|
+
[control]="getControl(field.field_id)"\r
|
|
58890
58963
|
/>\r
|
|
58891
58964
|
} @else if (field['field_data_type'] === 'STRING' ||\r
|
|
58892
58965
|
field['field_data_type'] === 'BIGNUMERIC' ||\r
|
|
@@ -58899,6 +58972,7 @@ var AppComponent = class _AppComponent {
|
|
|
58899
58972
|
[readonly]="true"\r
|
|
58900
58973
|
[placeholder]="field['field_name']"\r
|
|
58901
58974
|
[control]="getControl(field.field_id)"\r
|
|
58975
|
+
[inputPartName]="'documents-modal-button-custom-styles'"\r
|
|
58902
58976
|
>\r
|
|
58903
58977
|
<div\r
|
|
58904
58978
|
icon-right\r
|
|
@@ -59150,11 +59224,13 @@ var AppComponent = class _AppComponent {
|
|
|
59150
59224
|
label="Expiry Date"\r
|
|
59151
59225
|
formControlName="documents_expiry_date"\r
|
|
59152
59226
|
(openState)="calculateHeightPosition(contentWrapper)"\r
|
|
59227
|
+
[control]="getControl('documents_expiry_date')"\r
|
|
59153
59228
|
/>\r
|
|
59154
59229
|
<lib-dm-range-date-picker-lib\r
|
|
59155
59230
|
label="Last Update"\r
|
|
59156
59231
|
formControlName="documents_created_date"\r
|
|
59157
59232
|
(openState)="calculateHeightPosition(contentWrapper)"\r
|
|
59233
|
+
[control]="getControl('documents_created_date')"\r
|
|
59158
59234
|
/>\r
|
|
59159
59235
|
</form>\r
|
|
59160
59236
|
<div class="dialog-footer">\r
|
|
@@ -59205,7 +59281,7 @@ var AppComponent = class _AppComponent {
|
|
|
59205
59281
|
} }\r
|
|
59206
59282
|
</div>\r
|
|
59207
59283
|
<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'] }]
|
|
59284
|
+
`, 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
59285
|
}], () => [], null);
|
|
59210
59286
|
});
|
|
59211
59287
|
})();
|