@eqproject/eqp-dynamic-module 2.10.6 → 2.10.7
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-configurator/eqp-dynamic-module-configurator.component.mjs +8 -3
- package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +3 -3
- package/esm2020/lib/services/eqp-dynamic-module-dialog.service.mjs +25 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +33 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +33 -4
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +2 -1
- package/lib/services/eqp-dynamic-module-dialog.service.d.ts +6 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import { ConfigColumn, EqpTableComponent } from "@eqproject/eqp-table";
|
|
|
5
5
|
import { BaseField } from '../../../models/baseField.model';
|
|
6
6
|
import { Context } from "../../../models/context.model";
|
|
7
7
|
import { EndPointConfiguration } from "../../../models/endPointConfiguration.model";
|
|
8
|
-
import { ActionOnRecord, Form, FormScalarTypeEnum, FormTypeEnum } from "../../../models/form.model";
|
|
8
|
+
import { ActionOnRecord, Form, FormFieldGroup, FormScalarTypeEnum, FormTypeEnum } from "../../../models/form.model";
|
|
9
9
|
import { UtilityHelperService } from "../../../services/utilityHelper.services";
|
|
10
10
|
import { DynamicModuleCompileConfig } from "../../../models/dynamicModuleCompileConfig.model";
|
|
11
11
|
import { DynamicModuleConfiguratorConfig } from "../../../models/dynamicModuleConfiguratorConfig.model";
|
|
@@ -169,6 +169,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
169
169
|
* @param groupName Nome della sezione da eliminare.
|
|
170
170
|
*/
|
|
171
171
|
onDeleteFormFieldGroupName(groupName: string): void;
|
|
172
|
+
onEditFormFieldGroupName(formFieldGroup: FormFieldGroup): void;
|
|
172
173
|
/**
|
|
173
174
|
* Metodo chiamato quando si vuole aggiungere un nuovo campo o si vuole modificare uno esistente.
|
|
174
175
|
* Memorizza l'eventuale Field scelto one crea uno nuovo prima di aprire il dialog per modificarlo/aggiungerlo.
|
|
@@ -39,6 +39,12 @@ export declare class EqpDynamicModuleDialogService {
|
|
|
39
39
|
* @param title Titolo dello sweetalert (di default mostra 'Attenzione!')
|
|
40
40
|
*/
|
|
41
41
|
static Warning(message: string | string[], title?: string, isToast?: boolean): void;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @param message Messaggio da mostrare nel prompt
|
|
45
|
+
* @param confirmCallback Funzione di callback da richiamare sul conferma
|
|
46
|
+
*/
|
|
47
|
+
static Prompt(message: string, confirmCallback: any, inputValue?: any): void;
|
|
42
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleDialogService, never>;
|
|
43
49
|
static ɵprov: i0.ɵɵInjectableDeclaration<EqpDynamicModuleDialogService>;
|
|
44
50
|
}
|