@eqproject/eqp-dynamic-module 2.4.14 → 2.4.15
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 +15 -3
- package/esm2020/lib/components/private/add-formula-field/add-formula-field.component.mjs +3 -2
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +19 -6
- package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +1 -1
- package/esm2020/lib/eqp-dynamic-module.module.mjs +9 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +39 -8
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +39 -8
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +5 -1
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +6 -1
- package/lib/eqp-dynamic-module.module.d.ts +4 -3
- package/package.json +1 -1
|
@@ -71,6 +71,8 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
71
71
|
*/
|
|
72
72
|
afterSaveRecord: EventEmitter<Record>;
|
|
73
73
|
afterDeleteRecord: EventEmitter<Record>;
|
|
74
|
+
dragStarted: EventEmitter<Record>;
|
|
75
|
+
dragReleased: EventEmitter<void>;
|
|
74
76
|
form: Form;
|
|
75
77
|
lastform: Form;
|
|
76
78
|
FormTypeEnum: typeof FormTypeEnum;
|
|
@@ -143,6 +145,8 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
143
145
|
onDeleteRecord(record: Record): void;
|
|
144
146
|
onAfterDeleteRecord(record: Record): void;
|
|
145
147
|
onAfterFilter(ev: any): void;
|
|
148
|
+
onDragStarted(el: Record): void;
|
|
149
|
+
onDragReleased(): void;
|
|
146
150
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
147
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "externalButtons": "externalButtons"; "listViewRecordTitle": "listViewRecordTitle"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "additionalInfo": "additionalInfo"; "updateInfo": "updateInfo"; "prefilterParams": "prefilterParams"; "showNewSearchButton": "showNewSearchButton"; "answerToDuplicateId": "answerToDuplicateId"; "highlightFilter": "highlightFilter"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; }, never, never, false, never>;
|
|
151
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "externalButtons": "externalButtons"; "listViewRecordTitle": "listViewRecordTitle"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "additionalInfo": "additionalInfo"; "updateInfo": "updateInfo"; "prefilterParams": "prefilterParams"; "showNewSearchButton": "showNewSearchButton"; "answerToDuplicateId": "answerToDuplicateId"; "highlightFilter": "highlightFilter"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; }, never, never, false, never>;
|
|
148
152
|
}
|
|
@@ -52,6 +52,7 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
52
52
|
openAddDialogRef: MatDialogRef<TemplateRef<any>>;
|
|
53
53
|
openGraphDialog: TemplateRef<any>;
|
|
54
54
|
openGraphDialogRef: MatDialogRef<TemplateRef<any>>;
|
|
55
|
+
todoList: any;
|
|
55
56
|
onAddViewEditRecord: EventEmitter<{
|
|
56
57
|
record: Record;
|
|
57
58
|
onlyView: boolean;
|
|
@@ -59,6 +60,8 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
59
60
|
onDeleteRecord: EventEmitter<Record>;
|
|
60
61
|
saveRecordEvent: EventEmitter<Record>;
|
|
61
62
|
afterSaveRecordEvent: EventEmitter<Record>;
|
|
63
|
+
dragStarted: EventEmitter<Record>;
|
|
64
|
+
dragReleased: EventEmitter<void>;
|
|
62
65
|
constructor(utilityHelperService: UtilityHelperService, changeDetector: ChangeDetectorRef, dialog: MatDialog, router: Router);
|
|
63
66
|
ngOnInit(): void;
|
|
64
67
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -126,7 +129,9 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
126
129
|
onAddSaveRecord(record: Record): void;
|
|
127
130
|
onAddAfterSaveRecord(record: Record): void;
|
|
128
131
|
printAdditionalInfo(record: Record): string;
|
|
132
|
+
onDragStarted(el: Record): void;
|
|
133
|
+
onDragReleased(): void;
|
|
129
134
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewFormRecordComponent, never>;
|
|
130
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; "highlightFilter": "highlightFilter"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
135
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; "highlightFilter": "highlightFilter"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; }, never, never, false, never>;
|
|
131
136
|
}
|
|
132
137
|
export {};
|
|
@@ -49,8 +49,9 @@ import * as i46 from "@eqproject/eqp-select";
|
|
|
49
49
|
import * as i47 from "@eqproject/eqp-datetimepicker";
|
|
50
50
|
import * as i48 from "@eqproject/eqp-filters";
|
|
51
51
|
import * as i49 from "@eqproject/eqp-img-drawing";
|
|
52
|
-
import * as i50 from "@
|
|
53
|
-
import * as i51 from "@
|
|
52
|
+
import * as i50 from "@angular/cdk/drag-drop";
|
|
53
|
+
import * as i51 from "@eqproject/eqp-numeric";
|
|
54
|
+
import * as i52 from "@canvasjs/angular-stockcharts";
|
|
54
55
|
export declare const customNumericMaskConfig: {
|
|
55
56
|
align: string;
|
|
56
57
|
allowNegative: boolean;
|
|
@@ -67,6 +68,6 @@ export declare const customNumericMaskConfig: {
|
|
|
67
68
|
};
|
|
68
69
|
export declare class EqpDynamicModuleModule {
|
|
69
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleModule, never>;
|
|
70
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EqpDynamicModuleModule, [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i3.AddFormFieldComponent, typeof i4.TextFieldTemplateComponent, typeof i5.BooleanFieldTemplateComponent, typeof i6.DateFieldTemplateComponent, typeof i7.TextareaFieldTemplateComponent, typeof i8.NumericFieldTemplateComponent, typeof i9.ListValueFieldTemplateComponent, typeof i10.AttachmentFieldTemplateComponent, typeof i11.ImageFieldTemplateComponent, typeof i12.ListFormRecordComponent, typeof i13.ListViewFormRecordComponent, typeof i14.AddFormRecordComponent, typeof i15.ViewFormRecordComponent, typeof i16.DynamicModuleFieldComponent, typeof i17.DynamicModuleFieldFixComponent, typeof i18.SpinnerComponent, typeof i19.AddFormulaComponent, typeof i19.DialogDataExampleDialog, typeof i20.RepairFormFieldsComponent, typeof i21.SingleRecordComponent, typeof i22.FilterFormStatisticComponent, typeof i23.DynamicModuleFilterFixComponent, typeof i24.TextFilterTemplateComponent, typeof i25.NumericFilterTemplateComponent, typeof i26.BooleanFilterTemplateComponent, typeof i27.DateFilterTemplateComponent, typeof i28.ListValueFilterTemplateComponent, typeof i29.TextareaFilterTemplateComponent, typeof i30.AttachmentFilterTemplateComponent, typeof i31.ImageFilterTemplateComponent, typeof i32.ListFormRecordFilterTemplateComponent, typeof i33.GraphsComponent, typeof i34.GraphComponent, typeof i35.ImageFieldSelectorTemplateComponent, typeof i36.LabelFieldTemplateComponent, typeof i37.ImageSelectorFilterTemplateComponent, typeof i38.TmwImageDrawerComponent, typeof i39.ImageWithMarkersFieldTemplateComponent, typeof i40.TmwImageMarkerComponent], [typeof i41.MaterialModule, typeof i42.FormsModule, typeof i43.CommonModule, typeof i42.ReactiveFormsModule, typeof i44.EqpTableModule, typeof i45.EqpAttachmentsModule, typeof i46.EqpSelectModule, typeof i47.EqpDatetimepickerModule, typeof i48.EqpFiltersModule, typeof i49.EqpImgDrawingModule, typeof i50.
|
|
71
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EqpDynamicModuleModule, [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i3.AddFormFieldComponent, typeof i4.TextFieldTemplateComponent, typeof i5.BooleanFieldTemplateComponent, typeof i6.DateFieldTemplateComponent, typeof i7.TextareaFieldTemplateComponent, typeof i8.NumericFieldTemplateComponent, typeof i9.ListValueFieldTemplateComponent, typeof i10.AttachmentFieldTemplateComponent, typeof i11.ImageFieldTemplateComponent, typeof i12.ListFormRecordComponent, typeof i13.ListViewFormRecordComponent, typeof i14.AddFormRecordComponent, typeof i15.ViewFormRecordComponent, typeof i16.DynamicModuleFieldComponent, typeof i17.DynamicModuleFieldFixComponent, typeof i18.SpinnerComponent, typeof i19.AddFormulaComponent, typeof i19.DialogDataExampleDialog, typeof i20.RepairFormFieldsComponent, typeof i21.SingleRecordComponent, typeof i22.FilterFormStatisticComponent, typeof i23.DynamicModuleFilterFixComponent, typeof i24.TextFilterTemplateComponent, typeof i25.NumericFilterTemplateComponent, typeof i26.BooleanFilterTemplateComponent, typeof i27.DateFilterTemplateComponent, typeof i28.ListValueFilterTemplateComponent, typeof i29.TextareaFilterTemplateComponent, typeof i30.AttachmentFilterTemplateComponent, typeof i31.ImageFilterTemplateComponent, typeof i32.ListFormRecordFilterTemplateComponent, typeof i33.GraphsComponent, typeof i34.GraphComponent, typeof i35.ImageFieldSelectorTemplateComponent, typeof i36.LabelFieldTemplateComponent, typeof i37.ImageSelectorFilterTemplateComponent, typeof i38.TmwImageDrawerComponent, typeof i39.ImageWithMarkersFieldTemplateComponent, typeof i40.TmwImageMarkerComponent], [typeof i41.MaterialModule, typeof i42.FormsModule, typeof i43.CommonModule, typeof i42.ReactiveFormsModule, typeof i44.EqpTableModule, typeof i45.EqpAttachmentsModule, typeof i46.EqpSelectModule, typeof i47.EqpDatetimepickerModule, typeof i48.EqpFiltersModule, typeof i49.EqpImgDrawingModule, typeof i50.DragDropModule, typeof i51.EqpNumericModule, typeof i52.CanvasJSAngularStockChartsModule], [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i50.DragDropModule, typeof i52.CanvasJSChart, typeof i52.CanvasJSStockChart]>;
|
|
71
72
|
static ɵinj: i0.ɵɵInjectorDeclaration<EqpDynamicModuleModule>;
|
|
72
73
|
}
|