@eqproject/eqp-dynamic-module 2.9.13 → 2.9.14

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.
@@ -34,9 +34,11 @@ export declare class ActionButtonCreatorComponent {
34
34
  onFormulaFieldChange(formulaField: any): void;
35
35
  onEqpSelectModule(ev: any, formulaField: any): void;
36
36
  saveOrExitForm(exit: boolean): void;
37
+ generateGUID(): string;
37
38
  changeSomething(): void;
38
39
  getAllModules(): void;
39
40
  onChangeFormula(formula: any): void;
41
+ isAnActionKey(key: any, field: ActionButton, formulas: Array<any>): boolean;
40
42
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonCreatorComponent, never>;
41
43
  static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonCreatorComponent, "action-button-creator", never, { "form": "form"; "actionButton": "actionButton"; "actionButtonField": "actionButtonField"; "formulas": "formulas"; "endPointConfiguration": "endPointConfiguration"; "InField": "InField"; }, { "onSaveRecord": "onSaveRecord"; "onChangeSomething": "onChangeSomething"; }, never, never, false, never>;
42
44
  }
@@ -233,6 +233,7 @@ export declare class AddFormFieldComponent implements OnInit {
233
233
  * che mostra l'elenco dei campi aggiunti alla form.
234
234
  */
235
235
  saveAndExitAddField(save: boolean): void;
236
+ isAnActionKey(key: any, field: ActionButtonField, formulas: Array<any>): boolean;
236
237
  setCodeToExtraFields(): void;
237
238
  /**
238
239
  * Metodo per ripristinare l'oggetto field al cambio del tipo selezionato.
@@ -13,7 +13,7 @@ export declare class ActionButtonFieldTemplateComponent {
13
13
  ngOnInit(): void;
14
14
  initStyles(): void;
15
15
  generateAction(actionButton: ActionButtonField): void;
16
- onFireTrigger(ev: FireTrigger): void;
16
+ evaluateFormulasAndFireTrigger(triggerToFire: FireTrigger): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonFieldTemplateComponent, never>;
18
18
  static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonFieldTemplateComponent, "action-button-field-template", never, { "field": "field"; "record": "record"; "inConfig": "inConfig"; }, { "fireTrigger": "fireTrigger"; }, never, never, false, never>;
19
19
  }
@@ -1,10 +1,11 @@
1
1
  import { BaseField } from "../baseField.model";
2
2
  export declare class ActionButtonField extends BaseField {
3
+ ButtonUniqueId: string;
3
4
  ButtonCode: string;
4
5
  Icon: string;
5
6
  ButtonLabel: string;
6
7
  execution: string;
7
- formulas: KeyTypeValue;
8
+ formulas: Array<KeyTypeValue>;
8
9
  formulasTemp?: any;
9
10
  userPatient: string;
10
11
  userMedicalExamination: number;
@@ -50,6 +50,7 @@ export declare class FireTrigger {
50
50
  userMedicalExamination: number;
51
51
  }
52
52
  export declare class ActionButton {
53
+ ButtonUniqueId: string;
53
54
  ButtonCode: string;
54
55
  ButtonLabel: string;
55
56
  Icon: string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.9.13",
7
+ "version": "2.9.14",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",