@eqproject/eqp-dynamic-module 2.3.26 → 2.3.28
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/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +2 -11
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +11 -7
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +17 -17
- package/esm2020/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.mjs +27 -8
- package/esm2020/lib/components/private/graphs/graph/graph.component.mjs +3 -3
- package/esm2020/lib/components/private/graphs/graphs.component.mjs +8 -8
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +62 -48
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +62 -48
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.d.ts +8 -2
- package/lib/components/private/graphs/graphs.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -46,6 +46,8 @@ import { EqpSelectModule } from '@eqproject/eqp-select';
|
|
|
46
46
|
import * as i3$2 from '@eqproject/eqp-attachments';
|
|
47
47
|
import { AttachmentType, EqpAttachmentsModule } from '@eqproject/eqp-attachments';
|
|
48
48
|
import * as i2$4 from '@angular/platform-browser';
|
|
49
|
+
import { ParamTypeEnum as ParamTypeEnum$1 } from 'projects/eqp-dynamic-module/src/lib/models/endPointConfiguration.model';
|
|
50
|
+
import * as i1$3 from 'projects/eqp-dynamic-module/src/lib/services/utilityHelper.services';
|
|
49
51
|
import * as i2$5 from '@canvasjs/angular-stockcharts';
|
|
50
52
|
import { CanvasJSAngularStockChartsModule, CanvasJSChart, CanvasJSStockChart } from '@canvasjs/angular-stockcharts';
|
|
51
53
|
import * as i8 from '@angular/material/autocomplete';
|
|
@@ -1964,16 +1966,7 @@ class NumericFieldTemplateComponent {
|
|
|
1964
1966
|
console.log("record changed", this.field.Name);
|
|
1965
1967
|
if (!this.field.Formula) {
|
|
1966
1968
|
if (this.isDirty) {
|
|
1967
|
-
|
|
1968
|
-
//console.log("field modified - original value",this.field.Name,this.record[this.field.Name],"precision",this.eqpNumericOptions.precision);
|
|
1969
|
-
this.record[this.field.Name] = this.record[this.field.Name] == 0 ? 0 : (this.record[this.field.Name] / Math.pow(10, this.eqpNumericOptions.precision)).toFixed(this.eqpNumericOptions.precision);
|
|
1970
|
-
console.log("field modified - final value", this.field.Name, this.record[this.field.Name], "precision", this.eqpNumericOptions.precision);
|
|
1971
|
-
}
|
|
1972
|
-
else {
|
|
1973
|
-
//console.log("field modified - original value",this.field.Name,this.record[this.field.Name],"precision",this.eqpNumericOptions.precision);
|
|
1974
|
-
this.record[this.field.Name] = this.record[this.field.Name] == 0 ? 0 : (this.record[this.field.Name]).toFixed(this.eqpNumericOptions.precision);
|
|
1975
|
-
console.log("field modified - final value", this.field.Name, this.record[this.field.Name], "precision", this.eqpNumericOptions.precision);
|
|
1976
|
-
}
|
|
1969
|
+
this.record[this.field.Name] = this.record[this.field.Name] == 0 ? 0 : (this.record[this.field.Name] / Math.pow(10, this.eqpNumericOptions.precision)).toFixed(this.eqpNumericOptions.precision);
|
|
1977
1970
|
console.log("setDirty OFF", this.field.Name);
|
|
1978
1971
|
this.isDirty = false;
|
|
1979
1972
|
}
|
|
@@ -2952,6 +2945,9 @@ class AddFormRecordComponent {
|
|
|
2952
2945
|
createHTMLreadableValues(record) {
|
|
2953
2946
|
this.debugLog("createHTMLreadableValues - record", record);
|
|
2954
2947
|
this.debugLog("createHTMLreadableValues - form", this.form);
|
|
2948
|
+
var formnames = new Array();
|
|
2949
|
+
this.form.Fields.forEach((field) => { formnames.push(field.Name); });
|
|
2950
|
+
this.debugLog("createHTMLreadableValues - form fields names", formnames);
|
|
2955
2951
|
// alert("continue for values?")
|
|
2956
2952
|
let outputValuesArray = this.getResponseValues(record, this.form);
|
|
2957
2953
|
this.debugLog("createHTMLreadableValues - outputValuesArray", outputValuesArray);
|
|
@@ -2985,7 +2981,7 @@ class AddFormRecordComponent {
|
|
|
2985
2981
|
// this.debugLog("(record).Values", record);
|
|
2986
2982
|
form.Fields.forEach((field) => {
|
|
2987
2983
|
try {
|
|
2988
|
-
this.debugLog("getResponseValues field", field);
|
|
2984
|
+
//this.debugLog("getResponseValues field", field);
|
|
2989
2985
|
// let foundObject = record.find(
|
|
2990
2986
|
// (obj) => obj === field.Name
|
|
2991
2987
|
// );
|
|
@@ -2995,7 +2991,7 @@ class AddFormRecordComponent {
|
|
|
2995
2991
|
// prendere la label corretta
|
|
2996
2992
|
////////////////////////////////////////////////////////////////////////////////
|
|
2997
2993
|
if (field.FieldType == FieldTypeEnum["Elenco generico"]) {
|
|
2998
|
-
if (field.Formula) {
|
|
2994
|
+
if (field.Formula != null && field.Formula) {
|
|
2999
2995
|
// aggiungo a valuepairs i valori calcolati
|
|
3000
2996
|
foundObject.ValuePairs = foundObject.ValuePairs ? foundObject.ValuePairs : {};
|
|
3001
2997
|
var temp = UtilityHelperService.EvaluateFieldFormula(field.Formula, record, null);
|
|
@@ -3009,7 +3005,7 @@ class AddFormRecordComponent {
|
|
|
3009
3005
|
}
|
|
3010
3006
|
outputValuesArray[field.Name] = field.ValuePairs[record[field.Name]];
|
|
3011
3007
|
}
|
|
3012
|
-
else if (field.ValuePairs != null && field.ValuePairs.
|
|
3008
|
+
else if (field.ValuePairs != null && field.ValuePairs.length > 0) {
|
|
3013
3009
|
// va bene così
|
|
3014
3010
|
}
|
|
3015
3011
|
else if (field.ValueString != null && field.ValueString != "") {
|
|
@@ -3017,12 +3013,13 @@ class AddFormRecordComponent {
|
|
|
3017
3013
|
field.ValuePairs = this.stringToValuePairs(field.ValueString);
|
|
3018
3014
|
}
|
|
3019
3015
|
let inverted = {};
|
|
3020
|
-
this.debugLog("(<ListValueField>foundObject).ValuePairs", field.ValuePairs);
|
|
3016
|
+
//this.debugLog("(<ListValueField>foundObject).ValuePairs", (<ListValueField>field).ValuePairs);
|
|
3017
|
+
// ValuePairs: {Si: 'Si', No: 'No'}
|
|
3021
3018
|
for (let key in field.ValuePairs) {
|
|
3022
3019
|
inverted[field.ValuePairs[key]] = key;
|
|
3023
3020
|
}
|
|
3024
3021
|
field.ValuePairs = inverted;
|
|
3025
|
-
if (record[field.Name].
|
|
3022
|
+
if (record[field.Name] != null && field.IsMultiChoiche) {
|
|
3026
3023
|
let value = "";
|
|
3027
3024
|
record[field.Name].forEach((element, i) => {
|
|
3028
3025
|
value += field.ValuePairs[element];
|
|
@@ -3033,7 +3030,7 @@ class AddFormRecordComponent {
|
|
|
3033
3030
|
else {
|
|
3034
3031
|
outputValuesArray[field.Name] = field.ValuePairs[record[field.Name]];
|
|
3035
3032
|
}
|
|
3036
|
-
console.log("outputValuesArray", outputValuesArray)
|
|
3033
|
+
//console.log("outputValuesArray", outputValuesArray)
|
|
3037
3034
|
}
|
|
3038
3035
|
else {
|
|
3039
3036
|
// this.debugLog("record[fieldName]", record[field.Name]);
|
|
@@ -3409,7 +3406,7 @@ class ListViewFormRecordComponent {
|
|
|
3409
3406
|
this.defaultListActions = this.configurations.defaultListActions;
|
|
3410
3407
|
this.showTitle = this.configurations.showTitle;
|
|
3411
3408
|
this.outCompileConfigurations = new DynamicModuleCompileConfig(this.compileConfigurations.showTitle, this.compileConfigurations.showSaveButton, this.compileConfigurations.showBackButton, this.compileConfigurations.userID, this.compileConfigurations.additionalParams, this.compileConfigurations.prefilterParams);
|
|
3412
|
-
this.debugLog("list-view - outcompileConfigurations ", this.outCompileConfigurations);
|
|
3409
|
+
//this.debugLog("list-view - outcompileConfigurations ", this.outCompileConfigurations);
|
|
3413
3410
|
this.getFormByID();
|
|
3414
3411
|
this.configureListviewButtons();
|
|
3415
3412
|
// this.outCompileConfigurations.userID;
|
|
@@ -3417,7 +3414,7 @@ class ListViewFormRecordComponent {
|
|
|
3417
3414
|
// this.configureColumns();
|
|
3418
3415
|
}
|
|
3419
3416
|
ngOnChanges(changes) {
|
|
3420
|
-
this.debugLog('ngOnChanges', changes);
|
|
3417
|
+
//this.debugLog('ngOnChanges', changes);
|
|
3421
3418
|
// Se viene modificato il valore di "ngModelInput" allora aggiorna l'input
|
|
3422
3419
|
if (changes["configurations"] != undefined &&
|
|
3423
3420
|
changes["configurations"].firstChange == false) {
|
|
@@ -3496,7 +3493,7 @@ class ListViewFormRecordComponent {
|
|
|
3496
3493
|
this.getRecordsByFormID();
|
|
3497
3494
|
}
|
|
3498
3495
|
else {
|
|
3499
|
-
this.debugLog('Records Exists', this.records);
|
|
3496
|
+
//this.debugLog('Records Exists', this.records);
|
|
3500
3497
|
this.generateAnswersArray(this.records);
|
|
3501
3498
|
}
|
|
3502
3499
|
}
|
|
@@ -3521,7 +3518,7 @@ class ListViewFormRecordComponent {
|
|
|
3521
3518
|
this.endPointConfiguration.Records.GetByFormIDEndPoint) {
|
|
3522
3519
|
// se non conosco l'utente
|
|
3523
3520
|
yield this.utilityHelperService.RunEndPointCall(this.endPointConfiguration.Records.GetByFormIDEndPoint, dynamicModuleParams, (res) => {
|
|
3524
|
-
this.debugLog('GetByFormIDEndPoint', res)
|
|
3521
|
+
//this.debugLog('GetByFormIDEndPoint', res)
|
|
3525
3522
|
this.generateAnswersArray(res);
|
|
3526
3523
|
});
|
|
3527
3524
|
}
|
|
@@ -3543,7 +3540,7 @@ class ListViewFormRecordComponent {
|
|
|
3543
3540
|
},
|
|
3544
3541
|
];
|
|
3545
3542
|
yield this.utilityHelperService.RunEndPointCall(this.endPointConfiguration.Records.GetAllByEntAndUserIDEndPoint, dynamicModuleParams, (res) => {
|
|
3546
|
-
this.debugLog('GetAllByEntAndUserIDEndPoint', res)
|
|
3543
|
+
//this.debugLog('GetAllByEntAndUserIDEndPoint', res)
|
|
3547
3544
|
this.generateAnswersArray(res);
|
|
3548
3545
|
});
|
|
3549
3546
|
}
|
|
@@ -3556,9 +3553,9 @@ class ListViewFormRecordComponent {
|
|
|
3556
3553
|
this.configurations.values = new Array();
|
|
3557
3554
|
this.panels = new Array();
|
|
3558
3555
|
res.forEach((r) => {
|
|
3559
|
-
//
|
|
3556
|
+
//this.debugLog("generateAnswersArray", r)
|
|
3560
3557
|
var tmpRec = new Record();
|
|
3561
|
-
//
|
|
3558
|
+
//this.debugLog("SerializedValues", r.SerializedValues)
|
|
3562
3559
|
tmpRec = JSON.parse(r.SerializedValues);
|
|
3563
3560
|
tmpRec.ID = r.ID;
|
|
3564
3561
|
tmpRec.EntID = r.EntID;
|
|
@@ -3566,7 +3563,7 @@ class ListViewFormRecordComponent {
|
|
|
3566
3563
|
tmpRec.userID = r.userID;
|
|
3567
3564
|
tmpRec.AnswerDate = r.AnswerDate;
|
|
3568
3565
|
tmpRec.HTMLreadableValues = r.HTMLreadableValues;
|
|
3569
|
-
//
|
|
3566
|
+
//this.debugLog("AdditionalParams", r.AdditionalParams)
|
|
3570
3567
|
tmpRec.AdditionalParams = r.AdditionalParams != "" && r.AdditionalParams != null ? JSON.parse(r.AdditionalParams) : "";
|
|
3571
3568
|
this.configurations.values.push(tmpRec);
|
|
3572
3569
|
var isHighlighted = false;
|
|
@@ -3586,9 +3583,9 @@ class ListViewFormRecordComponent {
|
|
|
3586
3583
|
}, 0); // refresh ui
|
|
3587
3584
|
}
|
|
3588
3585
|
togglePanel(panel, record) {
|
|
3589
|
-
this.debugLog('togglePanel')
|
|
3586
|
+
//this.debugLog('togglePanel')
|
|
3590
3587
|
if (this.defaultListViewFunction != null) {
|
|
3591
|
-
this.debugLog('defaultListViewFunction', record)
|
|
3588
|
+
//this.debugLog('defaultListViewFunction', record)
|
|
3592
3589
|
this.defaultListViewFunction(record);
|
|
3593
3590
|
return;
|
|
3594
3591
|
}
|
|
@@ -3639,7 +3636,7 @@ class ListViewFormRecordComponent {
|
|
|
3639
3636
|
* @param onlyView Se TRUE viene mostrato il componente add-form-record in sola lettura.
|
|
3640
3637
|
*/
|
|
3641
3638
|
viewOrEditRecord(record, onlyView, i) {
|
|
3642
|
-
this.debugLog('viewOrEditRecord')
|
|
3639
|
+
//this.debugLog('viewOrEditRecord')
|
|
3643
3640
|
this.loader = false;
|
|
3644
3641
|
this.onAddViewEditRecord2({ record, onlyView });
|
|
3645
3642
|
this.panelOpenState.map(() => false);
|
|
@@ -3649,7 +3646,7 @@ class ListViewFormRecordComponent {
|
|
|
3649
3646
|
viewRecord(panel, onlyView, i, ev) {
|
|
3650
3647
|
ev.preventDefault();
|
|
3651
3648
|
ev.stopPropagation();
|
|
3652
|
-
this.debugLog('viewRecord')
|
|
3649
|
+
//this.debugLog('viewRecord')
|
|
3653
3650
|
let record = panel.record;
|
|
3654
3651
|
this.visualizzaContenuto = true;
|
|
3655
3652
|
this.modificaContenuto = false;
|
|
@@ -3670,7 +3667,7 @@ class ListViewFormRecordComponent {
|
|
|
3670
3667
|
EditRecord(panel, onlyView, i, ev) {
|
|
3671
3668
|
ev.preventDefault();
|
|
3672
3669
|
ev.stopPropagation();
|
|
3673
|
-
this.debugLog('EditRecord')
|
|
3670
|
+
//this.debugLog('EditRecord')
|
|
3674
3671
|
let record = panel.record;
|
|
3675
3672
|
this.visualizzaContenuto = false;
|
|
3676
3673
|
this.modificaContenuto = true;
|
|
@@ -3700,7 +3697,7 @@ class ListViewFormRecordComponent {
|
|
|
3700
3697
|
duplicateRecord(panel, onlyView, i, ev) {
|
|
3701
3698
|
ev.preventDefault();
|
|
3702
3699
|
ev.stopPropagation();
|
|
3703
|
-
this.debugLog('duplicateRecord');
|
|
3700
|
+
//this.debugLog('duplicateRecord');
|
|
3704
3701
|
panel.record.ID = "";
|
|
3705
3702
|
this.selectedRecord = panel.record;
|
|
3706
3703
|
console.log("this.selectedRecord", this.selectedRecord);
|
|
@@ -3855,11 +3852,11 @@ class ListViewFormRecordComponent {
|
|
|
3855
3852
|
* Metodo per salvare i dati inseriti dall'utente una volta conclusa la compilazione della form.
|
|
3856
3853
|
*/
|
|
3857
3854
|
saveOrExitForm(record) {
|
|
3858
|
-
this.debugLog('list-view-form-record save', record)
|
|
3855
|
+
//this.debugLog('list-view-form-record save', record)
|
|
3859
3856
|
this.saveRecordEvent.emit(record);
|
|
3860
3857
|
}
|
|
3861
3858
|
onAfterSaveRecord(event) {
|
|
3862
|
-
this.debugLog('list-view-form-record aftersave', event)
|
|
3859
|
+
//this.debugLog('list-view-form-record aftersave', event)
|
|
3863
3860
|
this.saveRecordEvent.emit(event);
|
|
3864
3861
|
}
|
|
3865
3862
|
/**
|
|
@@ -4042,32 +4039,49 @@ class RepairFormFieldsComponent {
|
|
|
4042
4039
|
console.log(message, element);
|
|
4043
4040
|
}
|
|
4044
4041
|
}
|
|
4045
|
-
constructor() {
|
|
4042
|
+
constructor(utilityHelperService) {
|
|
4043
|
+
this.utilityHelperService = utilityHelperService;
|
|
4046
4044
|
this.debugMode = false;
|
|
4047
4045
|
// @Input() FormJSON: string;
|
|
4048
4046
|
this.onSaveJson = new EventEmitter();
|
|
4049
4047
|
}
|
|
4050
4048
|
ngOnInit() {
|
|
4051
|
-
this.
|
|
4049
|
+
this.getFormByID();
|
|
4052
4050
|
}
|
|
4053
4051
|
printTheJSONInPrettyFormat() {
|
|
4054
4052
|
var badJSON = this.configurations.FormJSON;
|
|
4055
4053
|
var parseJSON = JSON.parse(badJSON);
|
|
4056
4054
|
this.configurations.FormJSON = JSON.stringify(parseJSON, undefined, 4);
|
|
4057
4055
|
}
|
|
4056
|
+
getFormByID(id = this.formID) {
|
|
4057
|
+
const dynamicModuleParams = new Array();
|
|
4058
|
+
dynamicModuleParams.push({
|
|
4059
|
+
ParamName: "id",
|
|
4060
|
+
ParamValue: id,
|
|
4061
|
+
ParamType: ParamTypeEnum$1["Query param"],
|
|
4062
|
+
});
|
|
4063
|
+
this.utilityHelperService.RunEndPointCall(this.endPointConfiguration.Forms.GetByIDEndPoint, dynamicModuleParams, (res) => {
|
|
4064
|
+
this.configurations.FormJSON = JSON.stringify(res.Fields);
|
|
4065
|
+
}, (err) => { });
|
|
4066
|
+
}
|
|
4058
4067
|
saveJson() {
|
|
4059
4068
|
this.onSaveJson.emit(this.configurations.FormJSON);
|
|
4060
4069
|
}
|
|
4061
4070
|
}
|
|
4062
|
-
RepairFormFieldsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RepairFormFieldsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4063
|
-
RepairFormFieldsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RepairFormFieldsComponent, selector: "repair-form-fields", inputs: { debugMode: "debugMode", configurations: "configurations" }, outputs: { onSaveJson: "onSaveJson" }, viewQueries: [{ propertyName: "formulaTextArea", first: true, predicate: ["formJson"], descendants: true }], ngImport: i0, template: "<div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-12 pt-2\">\r\n <div class=\"p-1\">\r\n <textarea name=\"formJson\" #formJson type=\"textarea\" id=\"formJson\" rows=\"50\" style=\"width: 100%\"\r\n [(ngModel)]=\"configurations.FormJSON\"></textarea>\r\n </div>\r\n </div>\r\n </div>\r\n <button (click)=\"printTheJSONInPrettyFormat()\">Formatta Json</button>\r\n <button class=\"mr-2 save \" mat-raised-button color=\"primary\" (click)=\"saveJson()\" type=\"button\">\r\n Salva\r\n</button>\r\n</div>\r\n\r\n", styles: [""], dependencies: [{ kind: "component", type: i2$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
4071
|
+
RepairFormFieldsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RepairFormFieldsComponent, deps: [{ token: i1$3.UtilityHelperService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4072
|
+
RepairFormFieldsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RepairFormFieldsComponent, selector: "repair-form-fields", inputs: { debugMode: "debugMode", configurations: "configurations", formID: "formID", endPointConfiguration: "endPointConfiguration" }, outputs: { onSaveJson: "onSaveJson" }, viewQueries: [{ propertyName: "formulaTextArea", first: true, predicate: ["formJson"], descendants: true }], ngImport: i0, template: "<div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-12 pt-2\">\r\n <div class=\"p-1\">\r\n <textarea name=\"formJson\" #formJson type=\"textarea\" id=\"formJson\" rows=\"50\" style=\"width: 100%\"\r\n [(ngModel)]=\"configurations.FormJSON\"></textarea>\r\n </div>\r\n </div>\r\n </div>\r\n <button (click)=\"printTheJSONInPrettyFormat()\">Formatta Json</button>\r\n <button class=\"mr-2 save \" mat-raised-button color=\"primary\" (click)=\"saveJson()\" type=\"button\">\r\n Salva\r\n</button>\r\n</div>\r\n\r\n", styles: [""], dependencies: [{ kind: "component", type: i2$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
4064
4073
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RepairFormFieldsComponent, decorators: [{
|
|
4065
4074
|
type: Component,
|
|
4066
4075
|
args: [{ selector: 'repair-form-fields', template: "<div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-12 pt-2\">\r\n <div class=\"p-1\">\r\n <textarea name=\"formJson\" #formJson type=\"textarea\" id=\"formJson\" rows=\"50\" style=\"width: 100%\"\r\n [(ngModel)]=\"configurations.FormJSON\"></textarea>\r\n </div>\r\n </div>\r\n </div>\r\n <button (click)=\"printTheJSONInPrettyFormat()\">Formatta Json</button>\r\n <button class=\"mr-2 save \" mat-raised-button color=\"primary\" (click)=\"saveJson()\" type=\"button\">\r\n Salva\r\n</button>\r\n</div>\r\n\r\n" }]
|
|
4067
|
-
}], ctorParameters: function () { return []; }, propDecorators: { debugMode: [{
|
|
4076
|
+
}], ctorParameters: function () { return [{ type: i1$3.UtilityHelperService }]; }, propDecorators: { debugMode: [{
|
|
4068
4077
|
type: Input
|
|
4069
4078
|
}], configurations: [{
|
|
4070
4079
|
type: Input
|
|
4080
|
+
}], formID: [{
|
|
4081
|
+
type: Input,
|
|
4082
|
+
args: ["formID"]
|
|
4083
|
+
}], endPointConfiguration: [{
|
|
4084
|
+
type: Input
|
|
4071
4085
|
}], onSaveJson: [{
|
|
4072
4086
|
type: Output
|
|
4073
4087
|
}], formulaTextArea: [{
|
|
@@ -5501,10 +5515,10 @@ class GraphComponent {
|
|
|
5501
5515
|
}
|
|
5502
5516
|
}
|
|
5503
5517
|
GraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5504
|
-
GraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: GraphComponent, selector: "graph", inputs: { data: "data", title: "title" }, ngImport: i0, template: "<canvasjs-stockchart *ngIf=\"loaded\" [options]=\"stockChartOptions\"></canvasjs-stockchart>\r\n<div class=\"error\" *ngIf=\"!loaded\">Nessun dato trovato nell'intervallo specificato!</div>", styles: [""], dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$5.CanvasJSStockChart, selector: "canvasjs-stockchart", inputs: ["options", "styles"], outputs: ["stockChartInstance"] }] });
|
|
5518
|
+
GraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: GraphComponent, selector: "graph", inputs: { data: "data", title: "title" }, ngImport: i0, template: "<canvasjs-stockchart *ngIf=\"loaded\" [options]=\"stockChartOptions\"></canvasjs-stockchart>\r\n<div class=\"error\" *ngIf=\"!loaded\"><b>{{title}}:</b> Nessun dato trovato nell'intervallo specificato!</div>", styles: [""], dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$5.CanvasJSStockChart, selector: "canvasjs-stockchart", inputs: ["options", "styles"], outputs: ["stockChartInstance"] }] });
|
|
5505
5519
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GraphComponent, decorators: [{
|
|
5506
5520
|
type: Component,
|
|
5507
|
-
args: [{ selector: 'graph', template: "<canvasjs-stockchart *ngIf=\"loaded\" [options]=\"stockChartOptions\"></canvasjs-stockchart>\r\n<div class=\"error\" *ngIf=\"!loaded\">Nessun dato trovato nell'intervallo specificato!</div>" }]
|
|
5521
|
+
args: [{ selector: 'graph', template: "<canvasjs-stockchart *ngIf=\"loaded\" [options]=\"stockChartOptions\"></canvasjs-stockchart>\r\n<div class=\"error\" *ngIf=\"!loaded\"><b>{{title}}:</b> Nessun dato trovato nell'intervallo specificato!</div>" }]
|
|
5508
5522
|
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
5509
5523
|
type: Input,
|
|
5510
5524
|
args: ["data"]
|
|
@@ -5616,14 +5630,15 @@ class GraphsComponent {
|
|
|
5616
5630
|
}
|
|
5617
5631
|
generateGraph() {
|
|
5618
5632
|
this.generated = false;
|
|
5633
|
+
this.selectedGeneratedFields = JSON.parse(JSON.stringify(this.selectedFields));
|
|
5619
5634
|
this.getEligibleAnswers();
|
|
5620
5635
|
}
|
|
5621
5636
|
getEligibleAnswers() {
|
|
5622
5637
|
// Azzero le coordinate
|
|
5623
|
-
this.
|
|
5638
|
+
this.selectedGeneratedFields.forEach((field) => { field.Coords = new Array(); });
|
|
5624
5639
|
this.eligibleAnswers = JSON.parse(JSON.stringify(this.answers));
|
|
5625
|
-
this.minperiodS = this.datePipe.transform(this.minperiod, "YYYY-
|
|
5626
|
-
this.maxperiodS = this.datePipe.transform(this.maxperiod, "YYYY-
|
|
5640
|
+
this.minperiodS = this.datePipe.transform(this.minperiod, "YYYY-MM-dd");
|
|
5641
|
+
this.maxperiodS = this.datePipe.transform(this.maxperiod, "YYYY-MM-dd");
|
|
5627
5642
|
// Filtro minimo periodo
|
|
5628
5643
|
if (this.minperiod != null) {
|
|
5629
5644
|
this.eligibleAnswers = this.eligibleAnswers.filter(x => x.AnswerDate.split("T")[0] >= this.minperiodS);
|
|
@@ -5635,7 +5650,7 @@ class GraphsComponent {
|
|
|
5635
5650
|
// Inserisco i dati trovati
|
|
5636
5651
|
this.eligibleAnswers.forEach((answer) => {
|
|
5637
5652
|
var answervalues = JSON.parse(answer.SerializedValues);
|
|
5638
|
-
this.
|
|
5653
|
+
this.selectedGeneratedFields.forEach((field) => {
|
|
5639
5654
|
if (answervalues[field.Name] != null) {
|
|
5640
5655
|
var coords = new Coords();
|
|
5641
5656
|
coords.x = new Date(answer.AnswerDate.split("T")[0]);
|
|
@@ -5645,14 +5660,13 @@ class GraphsComponent {
|
|
|
5645
5660
|
});
|
|
5646
5661
|
});
|
|
5647
5662
|
setTimeout(() => { this.generated = true; }, 1000);
|
|
5648
|
-
console.log("FINAL COORDS", this.selectedFields);
|
|
5649
5663
|
}
|
|
5650
5664
|
}
|
|
5651
5665
|
GraphsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GraphsComponent, deps: [{ token: UtilityHelperService }, { token: i6.DatePipe }], target: i0.ɵɵFactoryTarget.Component });
|
|
5652
|
-
GraphsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: GraphsComponent, selector: "graphs", inputs: { debugMode: "debugMode", configurations: "configurations", endPointConfiguration: "endPointConfiguration", userID: "userID", formID: "formID", form: "form" }, ngImport: i0, template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n
|
|
5666
|
+
GraphsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: GraphsComponent, selector: "graphs", inputs: { debugMode: "debugMode", configurations: "configurations", endPointConfiguration: "endPointConfiguration", userID: "userID", formID: "formID", form: "form" }, ngImport: i0, template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n <div class=\"generation_box\" *ngIf=\"generated\">\r\n <div class=\"row\">\r\n <div class=\"col-3\">\r\n <div class=\"generation_options\" *ngFor=\"let selectedField of selectedGeneratedFields\">\r\n <mat-checkbox class=\"mr-2\" [(ngModel)]=\"selectedField.Visible\">\r\n {{selectedField.Name}}\r\n </mat-checkbox>\r\n </div>\r\n </div>\r\n <div class=\"col-9\">\r\n <div class=\"generation_graph\" *ngFor=\"let selectedField of selectedGeneratedFields\">\r\n <div class=\"generation_divider\" [hidden]=\"!selectedField.Visible\">\r\n <graph [data]=\"selectedField.Coords\" [title]=\"selectedField.Name\"></graph>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n \r\n </mat-card-content>\r\n <mat-card-footer>\r\n </mat-card-footer>\r\n </mat-card>", styles: [".btn-graph-generate{height:56px;width:100%}.generation_box .generation_divider{margin-bottom:10px;padding-bottom:10px;border-bottom:2px solid black;width:100%;height:600px}.generation_box .generation_divider>*{width:100%;height:400px}\n"], dependencies: [{ kind: "component", type: i1.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex"], exportAs: ["matCheckbox"] }, { kind: "component", type: i2$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i5$1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i5$1.MatCardContent, selector: "mat-card-content" }, { kind: "directive", type: i5$1.MatCardFooter, selector: "mat-card-footer" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i7.EqpSelectComponent, selector: "eqp-select", inputs: ["placeholder", "enumData", "enumDataToExclude", "arrayData", "arrayKeyProperty", "arrayValueProperty", "ngModelOptions", "ngModelInput", "formGroupInput", "formControlNameInput", "isRequired", "isDisabled", "isMultiLanguage", "multilanguagePrefixKey", "isAlphabeticalOrderable", "suffixIcon", "prefixIcon", "isMultiSelect", "includeFullObject", "showCancelButton", "isSearchable", "searchText", "noResultSearchText", "data"], outputs: ["ngModelInputChange"] }, { kind: "component", type: i1$1.EqpDateTimePickerComponent, selector: "eqp-datetimepicker", inputs: ["placeholder", "ngModelInput", "UTCDate", "timeType", "pickerMode", "formControlNameInput", "formGroupInput", "isRequired", "minDate", "maxDate", "readonlyInput", "disabled", "showSpinners", "showSeconds", "disableMinute", "defaultTime", "stepHour", "stepMinute", "stepSecond", "color", "enableMeridian", "touchUi", "customDateFormat"], outputs: ["ngModelInputChange", "onDateChange"] }, { kind: "component", type: GraphComponent, selector: "graph", inputs: ["data", "title"] }] });
|
|
5653
5667
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GraphsComponent, decorators: [{
|
|
5654
5668
|
type: Component,
|
|
5655
|
-
args: [{ selector: 'graphs', template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n
|
|
5669
|
+
args: [{ selector: 'graphs', template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n <div class=\"generation_box\" *ngIf=\"generated\">\r\n <div class=\"row\">\r\n <div class=\"col-3\">\r\n <div class=\"generation_options\" *ngFor=\"let selectedField of selectedGeneratedFields\">\r\n <mat-checkbox class=\"mr-2\" [(ngModel)]=\"selectedField.Visible\">\r\n {{selectedField.Name}}\r\n </mat-checkbox>\r\n </div>\r\n </div>\r\n <div class=\"col-9\">\r\n <div class=\"generation_graph\" *ngFor=\"let selectedField of selectedGeneratedFields\">\r\n <div class=\"generation_divider\" [hidden]=\"!selectedField.Visible\">\r\n <graph [data]=\"selectedField.Coords\" [title]=\"selectedField.Name\"></graph>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n \r\n </mat-card-content>\r\n <mat-card-footer>\r\n </mat-card-footer>\r\n </mat-card>", styles: [".btn-graph-generate{height:56px;width:100%}.generation_box .generation_divider{margin-bottom:10px;padding-bottom:10px;border-bottom:2px solid black;width:100%;height:600px}.generation_box .generation_divider>*{width:100%;height:400px}\n"] }]
|
|
5656
5670
|
}], ctorParameters: function () { return [{ type: UtilityHelperService }, { type: i6.DatePipe }]; }, propDecorators: { debugMode: [{
|
|
5657
5671
|
type: Input
|
|
5658
5672
|
}], configurations: [{
|
|
@@ -6021,10 +6035,10 @@ class EqpDynamicModuleComponent {
|
|
|
6021
6035
|
}
|
|
6022
6036
|
}
|
|
6023
6037
|
EqpDynamicModuleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EqpDynamicModuleComponent, deps: [{ token: UtilityHelperService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
6024
|
-
EqpDynamicModuleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EqpDynamicModuleComponent, selector: "eqp-dynamic-module", inputs: { debugMode: "debugMode", configurations: "configurations", formID: "formID", starterViewMode: "starterViewMode", userID: "userID", showTitle: "showTitle", showBackButton: "showBackButton", showSaveButton: "showSaveButton", values: "values", FormJSON: "FormJSON", externalButtons: "externalButtons", defaultListViewFunction: "defaultListViewFunction", defaultListActions: "defaultListActions", onSaveBackToList: "onSaveBackToList", onBackTo: "onBackTo", filterResultViewMode: "filterResultViewMode", additionalParams: "additionalParams", prefilterParams: "prefilterParams", showNewSearchButton: "showNewSearchButton", answerToDuplicateId: "answerToDuplicateId", highlightFilter: "highlightFilter" }, outputs: { saveRecord: "saveRecord", deleteRecord: "deleteRecord", SaveJSON: "SaveJSON", afterFilter: "afterFilter", afterSaveRecord: "afterSaveRecord", afterDeleteRecord: "afterDeleteRecord" }, ngImport: i0, template: "<eqp-dynamic-module-spinner></eqp-dynamic-module-spinner>\r\n\r\n<!-- [record]=\"'b3d943c0-9c01-4973-948b-7aa418634f72'\" -->\r\n<view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.VIEW\"\r\n class=\"dynamic-module-view\"\r\n [debugMode]=\"debugMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [record]=\"selectedRecord.ID\"\r\n (goBackEvent)=\"onGoBack()\"\r\n>\r\n</view-form-record>\r\n\r\n<graphs\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.GRAPHS\"\r\nclass=\"dynamic-module-view\"\r\n[debugMode]=\"debugMode\"\r\n[endPointConfiguration]=\"endPointConfiguration\"\r\n[form]=\"form\"\r\n[formID]=\"formID\"\r\n[userID]=\"userID\"\r\n[configurations]=\"dynamicModuleCompileConfig\"\r\n>\r\n</graphs>\r\n\r\n<filter-form-statistic\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.FILTER\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [formID]=\"formID\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [defaultListActions]=\"defaultListActions\"\r\n [filterResultViewMode]=\"filterResultViewMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n (afterFilter)=\"onAfterFilter($event)\"\r\n>\r\n</filter-form-statistic>\r\n\r\n<add-form-record\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.COMPILE\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [isDuplicate]=\"isDuplicate\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n [additionalParams]=\"dynamicModuleCompileConfig.additionalParams\"\r\n\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n>\r\n</add-form-record>\r\n\r\n<list-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LIST\"\r\n class=\"dynamic-module-list\"\r\n [debugMode]=\"debugMode\"\r\n [formID]=\"formID\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [externalButtons]=\"externalButtons\"\r\n\r\n (onViewRecord)=\"onViewRecord($event)\"\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (onAfterDeleteRecord)=\"onAfterDeleteRecord($event)\"\r\n>\r\n</list-form-record>\r\n\r\n<repair-form-fields\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.REPAIR\"\r\n class=\"dynamic-module-repair\"\r\n [debugMode]=\"debugMode\"\r\n\r\n [configurations]=\"dynamicModuleRepairConfig\"\r\n\r\n (onSaveJson)=\"onSaveJson($event)\"\r\n>\r\n</repair-form-fields>\r\n\r\n<list-view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LISTWIEW\"\r\n class=\"dynamic-module-list-view\"\r\n [debugMode]=\"debugMode\"\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [compileConfigurations]=\"dynamicModuleCompileConfig\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [formID]=\"formID\"\r\n [userID]=\"userID\"\r\n [highlightFilter]=\"highlightFilter\"\r\n [defaultListViewFunction]=\"defaultListViewFunction\"\r\n [externalButtons]=\"externalButtons\"\r\n [onlyView]=\"!defaultListActions.edit\"\r\n\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n >\r\n</list-view-form-record>\r\n", styles: ["::ng-deep mat-form-field{width:100%}\n"], dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ListFormRecordComponent, selector: "list-form-record", inputs: ["debugMode", "configurations", "endPointConfiguration", "formID", "form", "externalButtons"], outputs: ["onViewRecord", "onAddViewEditRecord", "onDeleteRecord", "onAfterDeleteRecord"] }, { kind: "component", type: ListViewFormRecordComponent, selector: "list-view-form-record", inputs: ["debugMode", "configurations", "compileConfigurations", "endPointConfiguration", "userID", "formID", "form", "defaultListViewFunction", "externalButtons", "onlyView", "records", "highlightFilter"], outputs: ["onAddViewEditRecord", "onDeleteRecord", "saveRecordEvent", "afterSaveRecordEvent"] }, { kind: "component", type: AddFormRecordComponent, selector: "add-form-record", inputs: ["debugMode", "configurations", "endPointConfiguration", "userID", "formID", "form", "record", "onlyView", "isDuplicate", "additionalParams"], outputs: ["saveRecordEvent", "afterSaveRecordEvent"] }, { kind: "component", type: ViewFormRecordComponent, selector: "view-form-record", inputs: ["debugMode", "endPointConfiguration", "record", "showBackButton"], outputs: ["goBackEvent"] }, { kind: "component", type: SpinnerComponent, selector: "eqp-dynamic-module-spinner" }, { kind: "component", type: RepairFormFieldsComponent, selector: "repair-form-fields", inputs: ["debugMode", "configurations"], outputs: ["onSaveJson"] }, { kind: "component", type: FilterFormStatisticComponent, selector: "filter-form-statistic", inputs: ["debugMode", "configurations", "endPointConfiguration", "userID", "externalButtons", "formID", "form", "record", "onlyView", "defaultListActions", "filterResultViewMode"], outputs: ["saveRecordEvent", "afterSaveRecordEvent", "afterFilter"] }, { kind: "component", type: GraphsComponent, selector: "graphs", inputs: ["debugMode", "configurations", "endPointConfiguration", "userID", "formID", "form"] }] });
|
|
6038
|
+
EqpDynamicModuleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EqpDynamicModuleComponent, selector: "eqp-dynamic-module", inputs: { debugMode: "debugMode", configurations: "configurations", formID: "formID", starterViewMode: "starterViewMode", userID: "userID", showTitle: "showTitle", showBackButton: "showBackButton", showSaveButton: "showSaveButton", values: "values", FormJSON: "FormJSON", externalButtons: "externalButtons", defaultListViewFunction: "defaultListViewFunction", defaultListActions: "defaultListActions", onSaveBackToList: "onSaveBackToList", onBackTo: "onBackTo", filterResultViewMode: "filterResultViewMode", additionalParams: "additionalParams", prefilterParams: "prefilterParams", showNewSearchButton: "showNewSearchButton", answerToDuplicateId: "answerToDuplicateId", highlightFilter: "highlightFilter" }, outputs: { saveRecord: "saveRecord", deleteRecord: "deleteRecord", SaveJSON: "SaveJSON", afterFilter: "afterFilter", afterSaveRecord: "afterSaveRecord", afterDeleteRecord: "afterDeleteRecord" }, ngImport: i0, template: "<eqp-dynamic-module-spinner></eqp-dynamic-module-spinner>\r\n\r\n<!-- [record]=\"'b3d943c0-9c01-4973-948b-7aa418634f72'\" -->\r\n<view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.VIEW\"\r\n class=\"dynamic-module-view\"\r\n [debugMode]=\"debugMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [record]=\"selectedRecord.ID\"\r\n (goBackEvent)=\"onGoBack()\"\r\n>\r\n</view-form-record>\r\n\r\n<graphs\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.GRAPHS\"\r\nclass=\"dynamic-module-view\"\r\n[debugMode]=\"debugMode\"\r\n[endPointConfiguration]=\"endPointConfiguration\"\r\n[form]=\"form\"\r\n[formID]=\"formID\"\r\n[userID]=\"userID\"\r\n[configurations]=\"dynamicModuleCompileConfig\"\r\n>\r\n</graphs>\r\n\r\n<filter-form-statistic\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.FILTER\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [formID]=\"formID\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [defaultListActions]=\"defaultListActions\"\r\n [filterResultViewMode]=\"filterResultViewMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n (afterFilter)=\"onAfterFilter($event)\"\r\n>\r\n</filter-form-statistic>\r\n\r\n<add-form-record\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.COMPILE\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [isDuplicate]=\"isDuplicate\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n [additionalParams]=\"dynamicModuleCompileConfig.additionalParams\"\r\n\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n>\r\n</add-form-record>\r\n\r\n<list-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LIST\"\r\n class=\"dynamic-module-list\"\r\n [debugMode]=\"debugMode\"\r\n [formID]=\"formID\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [externalButtons]=\"externalButtons\"\r\n\r\n (onViewRecord)=\"onViewRecord($event)\"\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (onAfterDeleteRecord)=\"onAfterDeleteRecord($event)\"\r\n>\r\n</list-form-record>\r\n\r\n<repair-form-fields\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.REPAIR\"\r\n class=\"dynamic-module-repair\"\r\n [debugMode]=\"debugMode\"\r\n [formID]=\"formID\"\r\n\r\n [configurations]=\"dynamicModuleRepairConfig\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n\r\n (onSaveJson)=\"onSaveJson($event)\"\r\n>\r\n</repair-form-fields>\r\n\r\n<list-view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LISTWIEW\"\r\n class=\"dynamic-module-list-view\"\r\n [debugMode]=\"debugMode\"\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [compileConfigurations]=\"dynamicModuleCompileConfig\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [formID]=\"formID\"\r\n [userID]=\"userID\"\r\n [highlightFilter]=\"highlightFilter\"\r\n [defaultListViewFunction]=\"defaultListViewFunction\"\r\n [externalButtons]=\"externalButtons\"\r\n [onlyView]=\"!defaultListActions.edit\"\r\n\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n >\r\n</list-view-form-record>\r\n", styles: ["::ng-deep mat-form-field{width:100%}\n"], dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ListFormRecordComponent, selector: "list-form-record", inputs: ["debugMode", "configurations", "endPointConfiguration", "formID", "form", "externalButtons"], outputs: ["onViewRecord", "onAddViewEditRecord", "onDeleteRecord", "onAfterDeleteRecord"] }, { kind: "component", type: ListViewFormRecordComponent, selector: "list-view-form-record", inputs: ["debugMode", "configurations", "compileConfigurations", "endPointConfiguration", "userID", "formID", "form", "defaultListViewFunction", "externalButtons", "onlyView", "records", "highlightFilter"], outputs: ["onAddViewEditRecord", "onDeleteRecord", "saveRecordEvent", "afterSaveRecordEvent"] }, { kind: "component", type: AddFormRecordComponent, selector: "add-form-record", inputs: ["debugMode", "configurations", "endPointConfiguration", "userID", "formID", "form", "record", "onlyView", "isDuplicate", "additionalParams"], outputs: ["saveRecordEvent", "afterSaveRecordEvent"] }, { kind: "component", type: ViewFormRecordComponent, selector: "view-form-record", inputs: ["debugMode", "endPointConfiguration", "record", "showBackButton"], outputs: ["goBackEvent"] }, { kind: "component", type: SpinnerComponent, selector: "eqp-dynamic-module-spinner" }, { kind: "component", type: RepairFormFieldsComponent, selector: "repair-form-fields", inputs: ["debugMode", "configurations", "formID", "endPointConfiguration"], outputs: ["onSaveJson"] }, { kind: "component", type: FilterFormStatisticComponent, selector: "filter-form-statistic", inputs: ["debugMode", "configurations", "endPointConfiguration", "userID", "externalButtons", "formID", "form", "record", "onlyView", "defaultListActions", "filterResultViewMode"], outputs: ["saveRecordEvent", "afterSaveRecordEvent", "afterFilter"] }, { kind: "component", type: GraphsComponent, selector: "graphs", inputs: ["debugMode", "configurations", "endPointConfiguration", "userID", "formID", "form"] }] });
|
|
6025
6039
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EqpDynamicModuleComponent, decorators: [{
|
|
6026
6040
|
type: Component,
|
|
6027
|
-
args: [{ selector: "eqp-dynamic-module", template: "<eqp-dynamic-module-spinner></eqp-dynamic-module-spinner>\r\n\r\n<!-- [record]=\"'b3d943c0-9c01-4973-948b-7aa418634f72'\" -->\r\n<view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.VIEW\"\r\n class=\"dynamic-module-view\"\r\n [debugMode]=\"debugMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [record]=\"selectedRecord.ID\"\r\n (goBackEvent)=\"onGoBack()\"\r\n>\r\n</view-form-record>\r\n\r\n<graphs\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.GRAPHS\"\r\nclass=\"dynamic-module-view\"\r\n[debugMode]=\"debugMode\"\r\n[endPointConfiguration]=\"endPointConfiguration\"\r\n[form]=\"form\"\r\n[formID]=\"formID\"\r\n[userID]=\"userID\"\r\n[configurations]=\"dynamicModuleCompileConfig\"\r\n>\r\n</graphs>\r\n\r\n<filter-form-statistic\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.FILTER\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [formID]=\"formID\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [defaultListActions]=\"defaultListActions\"\r\n [filterResultViewMode]=\"filterResultViewMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n (afterFilter)=\"onAfterFilter($event)\"\r\n>\r\n</filter-form-statistic>\r\n\r\n<add-form-record\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.COMPILE\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [isDuplicate]=\"isDuplicate\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n [additionalParams]=\"dynamicModuleCompileConfig.additionalParams\"\r\n\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n>\r\n</add-form-record>\r\n\r\n<list-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LIST\"\r\n class=\"dynamic-module-list\"\r\n [debugMode]=\"debugMode\"\r\n [formID]=\"formID\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [externalButtons]=\"externalButtons\"\r\n\r\n (onViewRecord)=\"onViewRecord($event)\"\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (onAfterDeleteRecord)=\"onAfterDeleteRecord($event)\"\r\n>\r\n</list-form-record>\r\n\r\n<repair-form-fields\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.REPAIR\"\r\n class=\"dynamic-module-repair\"\r\n [debugMode]=\"debugMode\"\r\n\r\n [configurations]=\"dynamicModuleRepairConfig\"\r\n\r\n (onSaveJson)=\"onSaveJson($event)\"\r\n>\r\n</repair-form-fields>\r\n\r\n<list-view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LISTWIEW\"\r\n class=\"dynamic-module-list-view\"\r\n [debugMode]=\"debugMode\"\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [compileConfigurations]=\"dynamicModuleCompileConfig\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [formID]=\"formID\"\r\n [userID]=\"userID\"\r\n [highlightFilter]=\"highlightFilter\"\r\n [defaultListViewFunction]=\"defaultListViewFunction\"\r\n [externalButtons]=\"externalButtons\"\r\n [onlyView]=\"!defaultListActions.edit\"\r\n\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n >\r\n</list-view-form-record>\r\n", styles: ["::ng-deep mat-form-field{width:100%}\n"] }]
|
|
6041
|
+
args: [{ selector: "eqp-dynamic-module", template: "<eqp-dynamic-module-spinner></eqp-dynamic-module-spinner>\r\n\r\n<!-- [record]=\"'b3d943c0-9c01-4973-948b-7aa418634f72'\" -->\r\n<view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.VIEW\"\r\n class=\"dynamic-module-view\"\r\n [debugMode]=\"debugMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [record]=\"selectedRecord.ID\"\r\n (goBackEvent)=\"onGoBack()\"\r\n>\r\n</view-form-record>\r\n\r\n<graphs\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.GRAPHS\"\r\nclass=\"dynamic-module-view\"\r\n[debugMode]=\"debugMode\"\r\n[endPointConfiguration]=\"endPointConfiguration\"\r\n[form]=\"form\"\r\n[formID]=\"formID\"\r\n[userID]=\"userID\"\r\n[configurations]=\"dynamicModuleCompileConfig\"\r\n>\r\n</graphs>\r\n\r\n<filter-form-statistic\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.FILTER\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [formID]=\"formID\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [defaultListActions]=\"defaultListActions\"\r\n [filterResultViewMode]=\"filterResultViewMode\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n (afterFilter)=\"onAfterFilter($event)\"\r\n>\r\n</filter-form-statistic>\r\n\r\n<add-form-record\r\n*ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.COMPILE\"\r\n class=\"dynamic-module-compile\"\r\n [debugMode]=\"debugMode\"\r\n [form]=\"form\"\r\n [record]=\"selectedRecord\"\r\n [onlyView]=\"onlyView\"\r\n [isDuplicate]=\"isDuplicate\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [userID]=\"userID\"\r\n\r\n [configurations]=\"dynamicModuleCompileConfig\"\r\n [additionalParams]=\"dynamicModuleCompileConfig.additionalParams\"\r\n\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n>\r\n</add-form-record>\r\n\r\n<list-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LIST\"\r\n class=\"dynamic-module-list\"\r\n [debugMode]=\"debugMode\"\r\n [formID]=\"formID\"\r\n\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [externalButtons]=\"externalButtons\"\r\n\r\n (onViewRecord)=\"onViewRecord($event)\"\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (onAfterDeleteRecord)=\"onAfterDeleteRecord($event)\"\r\n>\r\n</list-form-record>\r\n\r\n<repair-form-fields\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.REPAIR\"\r\n class=\"dynamic-module-repair\"\r\n [debugMode]=\"debugMode\"\r\n [formID]=\"formID\"\r\n\r\n [configurations]=\"dynamicModuleRepairConfig\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n\r\n (onSaveJson)=\"onSaveJson($event)\"\r\n>\r\n</repair-form-fields>\r\n\r\n<list-view-form-record\r\n *ngIf=\"loader && viewMode == dynamicModuleViewModeEnum.LISTWIEW\"\r\n class=\"dynamic-module-list-view\"\r\n [debugMode]=\"debugMode\"\r\n [configurations]=\"dynamicModuleListConfig\"\r\n [compileConfigurations]=\"dynamicModuleCompileConfig\"\r\n [endPointConfiguration]=\"endPointConfiguration\"\r\n [formID]=\"formID\"\r\n [userID]=\"userID\"\r\n [highlightFilter]=\"highlightFilter\"\r\n [defaultListViewFunction]=\"defaultListViewFunction\"\r\n [externalButtons]=\"externalButtons\"\r\n [onlyView]=\"!defaultListActions.edit\"\r\n\r\n (onAddViewEditRecord)=\"onAddViewEditRecord($event)\"\r\n (onDeleteRecord)=\"onDeleteRecord($event)\"\r\n (saveRecordEvent)=\"onSaveRecord($event)\"\r\n (afterSaveRecordEvent)=\"onAfterSaveRecord($event)\"\r\n >\r\n</list-view-form-record>\r\n", styles: ["::ng-deep mat-form-field{width:100%}\n"] }]
|
|
6028
6042
|
}], ctorParameters: function () { return [{ type: UtilityHelperService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { debugMode: [{
|
|
6029
6043
|
type: Input
|
|
6030
6044
|
}], configurations: [{
|