@eqproject/eqp-dynamic-module 2.8.9 → 2.8.11
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/private/add-form-field/add-form-field.component.mjs +6 -5
- package/esm2020/lib/components/private/field-templates/boolean-field-template/boolean-field-template.component.mjs +4 -1
- package/esm2020/lib/components/private/field-templates/date-field-template/date-field-template.component.mjs +4 -1
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +4 -1
- package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +4 -1
- package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +4 -1
- package/esm2020/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.mjs +4 -1
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +24 -12
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +123 -9
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +165 -25
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +165 -25
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +13 -1
- package/package.json +1 -1
|
@@ -44,7 +44,8 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
44
44
|
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
45
45
|
showTitle: boolean;
|
|
46
46
|
test: boolean;
|
|
47
|
-
|
|
47
|
+
isDuplicating: boolean;
|
|
48
|
+
selectedRecord: any;
|
|
48
49
|
loader: boolean;
|
|
49
50
|
loadedform: boolean;
|
|
50
51
|
panelOpenState: boolean[];
|
|
@@ -62,6 +63,8 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
62
63
|
openGraphDialogRef: MatDialogRef<TemplateRef<any>>;
|
|
63
64
|
todoList: any;
|
|
64
65
|
isFullOpened: boolean;
|
|
66
|
+
isTabellar: boolean;
|
|
67
|
+
isListView: boolean;
|
|
65
68
|
onAddViewEditRecord: EventEmitter<{
|
|
66
69
|
record: Record;
|
|
67
70
|
onlyView: boolean;
|
|
@@ -78,11 +81,20 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
78
81
|
ngOnChanges(changes: SimpleChanges): void;
|
|
79
82
|
onOpening(indice: number): void;
|
|
80
83
|
configureListviewButtons(): void;
|
|
84
|
+
openTabellar(): void;
|
|
85
|
+
openListView(): void;
|
|
81
86
|
getFormByID(id?: string): void;
|
|
82
87
|
/**
|
|
83
88
|
* Metodo per configurare le colonne della eqp-table.
|
|
84
89
|
*/
|
|
85
90
|
private configureColumns;
|
|
91
|
+
private configureTabellarColumns;
|
|
92
|
+
/**
|
|
93
|
+
* Metodo per creare l'oggetto ConfigureColumn che rappresenta il BaseField passato in input.
|
|
94
|
+
* @param field BaseField per cui creare la colonna nella eqp-table
|
|
95
|
+
* @returns Restituisce una ConfigColumn per la eqp-table
|
|
96
|
+
*/
|
|
97
|
+
private createFieldColumn;
|
|
86
98
|
/**
|
|
87
99
|
* Metodo per recuperare tutti i record salvati per una particolare Form.
|
|
88
100
|
* La chiamata viene effettuata solo se è stato configurato l'endPoint da usare.
|