@eqproject/eqp-dynamic-module 2.9.24 → 2.9.26
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/field-templates/action-button-field-template/action-button-field-template.component.mjs +7 -3
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +6 -2
- package/esm2020/lib/components/private/trigger-creator/trigger-creator.component.mjs +78 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +89 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +87 -5
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/trigger-creator/trigger-creator.component.d.ts +7 -0
- package/package.json +1 -1
|
@@ -39,6 +39,13 @@ export declare class TriggerCreatorComponent {
|
|
|
39
39
|
openFormulaDialog(formulaField: any): void;
|
|
40
40
|
getAllModules(): void;
|
|
41
41
|
onEqpSelectModule(ev: any, formulaField: any): void;
|
|
42
|
+
/**
|
|
43
|
+
* adatta la compatibilità di proprietà di tipo dropdown dichiarate nel configurator ma create in precedenza come string
|
|
44
|
+
* nel caso di myFormula.value non presenti negli allowedValues queste saranno aggiunte come selezioni temporanee fino a quando modificate con una scelta ammissibile
|
|
45
|
+
* @param myFormula elem of formulaFieldsStructure
|
|
46
|
+
* @param triggerFormula this.trigger.formulas[res]
|
|
47
|
+
*/
|
|
48
|
+
stringToDropDownHandler(myFormula: any, triggerFormula: any): void;
|
|
42
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<TriggerCreatorComponent, never>;
|
|
43
50
|
static ɵcmp: i0.ɵɵComponentDeclaration<TriggerCreatorComponent, "trigger-creator", never, { "form": "form"; "trigger": "trigger"; "formulas": "formulas"; "endPointConfiguration": "endPointConfiguration"; }, { "onSaveRecord": "onSaveRecord"; }, never, never, false, never>;
|
|
44
51
|
}
|