@eqproject/eqp-dynamic-module 2.9.15 → 2.9.16
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 +18 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +17 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +17 -2
- 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 +4 -0
- package/package.json +1 -1
|
@@ -118,6 +118,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
118
118
|
showAllFields: boolean;
|
|
119
119
|
selectedContestualization: string;
|
|
120
120
|
selectedContestualizationValue: number;
|
|
121
|
+
showDeleteButton: boolean;
|
|
122
|
+
selectedFields: Array<BaseField>;
|
|
121
123
|
constructor(formBuilder: UntypedFormBuilder, dialog: MatDialog, utilityHelperService: UtilityHelperService, sanitizer: DomSanitizer);
|
|
122
124
|
ngOnInit(): void;
|
|
123
125
|
/**
|
|
@@ -345,6 +347,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
345
347
|
onContestualizationSelectValue(): void;
|
|
346
348
|
applyContestualization(element: any): void;
|
|
347
349
|
onFireTrigger(ev: FireTrigger): void;
|
|
350
|
+
toggleDeleteButton(event: Array<BaseField>): void;
|
|
351
|
+
deleteSelectedFields(propertyName: string): void;
|
|
348
352
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleConfiguratorComponent, never>;
|
|
349
353
|
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleConfiguratorComponent, "eqp-dynamic-module-configurator", never, { "debugMode": "debugMode"; "fieldsExtraConfig": "fieldsExtraConfig"; "configurations": "configurations"; "formID": "formID"; "ProjectName": "ProjectName"; "viewMode": "viewMode"; "QueryEditorComponent": "QueryEditorComponent"; "triggers": "triggers"; "actionButtons": "actionButtons"; "contestualization": "contestualization"; }, { "fireTrigger": "fireTrigger"; "saveFormEvent": "saveFormEvent"; "afterSaveFormEvent": "afterSaveFormEvent"; "out": "out"; }, never, never, false, never>;
|
|
350
354
|
}
|