@eqproject/eqp-dynamic-module 0.0.12 → 0.0.13
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/bundles/eqproject-eqp-dynamic-module.umd.js +22 -5
- package/bundles/eqproject-eqp-dynamic-module.umd.js.map +1 -1
- package/bundles/eqproject-eqp-dynamic-module.umd.min.js +1 -1
- package/bundles/eqproject-eqp-dynamic-module.umd.min.js.map +1 -1
- package/eqproject-eqp-dynamic-module.metadata.json +1 -1
- package/esm2015/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.js +12 -3
- package/esm2015/lib/components/private/add-form-field/add-form-field.component.js +13 -4
- package/esm5/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.js +12 -3
- package/esm5/lib/components/private/add-form-field/add-form-field.component.js +13 -4
- package/fesm2015/eqproject-eqp-dynamic-module.js +22 -5
- package/fesm2015/eqproject-eqp-dynamic-module.js.map +1 -1
- package/fesm5/eqproject-eqp-dynamic-module.js +22 -5
- package/fesm5/eqproject-eqp-dynamic-module.js.map +1 -1
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +5 -0
- package/lib/components/private/add-form-field/add-form-field.component.d.ts +2 -0
- package/package.json +2 -2
|
@@ -16,6 +16,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
16
16
|
formID: string;
|
|
17
17
|
innerFormManagment: boolean;
|
|
18
18
|
orgaID: string;
|
|
19
|
+
innerFormRef: MatDialogRef<TemplateRef<any>>;
|
|
19
20
|
/**
|
|
20
21
|
* Url del server da chiamare per recuerare, salvare o eliminare i record.
|
|
21
22
|
* Usato per creare la configurazione di default degli endpoint da chiamare.
|
|
@@ -150,6 +151,10 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
150
151
|
* Metodo per salvare l'azione creata/modificate.
|
|
151
152
|
*/
|
|
152
153
|
saveActionOnRecord(): void;
|
|
154
|
+
/**
|
|
155
|
+
* Metodo per chiudere il dialog della inner form.
|
|
156
|
+
*/
|
|
157
|
+
closeDialogInnerForm(): void;
|
|
153
158
|
/**
|
|
154
159
|
* Metodo per chiudere il dialog di gestione delle action.
|
|
155
160
|
*/
|
|
@@ -2,6 +2,7 @@ import { ChangeDetectorRef, EventEmitter, OnInit, TemplateRef } from '@angular/c
|
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
4
4
|
import { AttachmentType, EqpAttachmentsComponent, IAttachmentDTO } from '@eqproject/eqp-attachments';
|
|
5
|
+
import { PickerModeEnum } from '@eqproject/eqp-datetimepicker';
|
|
5
6
|
import { EnumHelper } from '@eqproject/eqp-select';
|
|
6
7
|
import { ConfigColumn, EqpTableComponent } from '@eqproject/eqp-table';
|
|
7
8
|
import { BaseField, ColSpanSizesEnum, FieldTypeEnum } from '../../../models/baseField.model';
|
|
@@ -63,6 +64,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
63
64
|
ListPresentationEnum: typeof ListPresentationEnum;
|
|
64
65
|
TextMaskEnum: typeof TextMaskEnum;
|
|
65
66
|
AttachmentType: typeof AttachmentType;
|
|
67
|
+
pickerModeEnum: typeof PickerModeEnum;
|
|
66
68
|
constructor(formBuilder: FormBuilder, enumHelper: EnumHelper, dialog: MatDialog, cdr: ChangeDetectorRef);
|
|
67
69
|
ngOnInit(): void;
|
|
68
70
|
/**
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "EqProject"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.0.
|
|
7
|
+
"version": "0.0.13",
|
|
8
8
|
"peerDependencies": {
|
|
9
9
|
"@angular/common": "^9.0.7",
|
|
10
10
|
"@angular/core": "^9.0.7",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@eqproject/eqp-attachments": "^0.1.16",
|
|
19
|
-
"@eqproject/eqp-datetimepicker": "
|
|
19
|
+
"@eqproject/eqp-datetimepicker": "0.0.20",
|
|
20
20
|
"@eqproject/eqp-filters": "^0.1.6",
|
|
21
21
|
"@eqproject/eqp-img-drawing": "0.0.2",
|
|
22
22
|
"@eqproject/eqp-numeric": "^0.0.1",
|