@eqproject/eqp-dynamic-module 2.9.25 → 2.9.27

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.
@@ -91,6 +91,7 @@ export declare class AddFormFieldComponent implements OnInit {
91
91
  selectedMetadata: BaseField;
92
92
  dialogFormulaRef: MatDialogRef<TemplateRef<any>>;
93
93
  dialogVisibleIfRef: MatDialogRef<TemplateRef<any>>;
94
+ dialogReadOnlyIfRef: MatDialogRef<TemplateRef<any>>;
94
95
  dialogFormula: TemplateRef<any>;
95
96
  buttonImagesKeyValueInputColumn: TemplateRef<any>;
96
97
  FieldTypeEnum: typeof FieldTypeEnum;
@@ -220,6 +221,7 @@ export declare class AddFormFieldComponent implements OnInit {
220
221
  deleteKeyFromDictionary(key: string): void;
221
222
  openFormulaDialog(): void;
222
223
  openVisibleIfDialog(): void;
224
+ openReadOnlyIfDialog(): void;
223
225
  openAnswerStyleVisibleIfDialog(): void;
224
226
  stringSanitizer(value: any): void;
225
227
  /**
@@ -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
  }
@@ -19,6 +19,7 @@ export declare class BaseField extends BaseObj {
19
19
  OrdinalPosition: number;
20
20
  Disabled: boolean;
21
21
  Readonly: boolean;
22
+ ReadonlyIf: string;
22
23
  FieldstyleCSS: string;
23
24
  LabelstyleCSS: string;
24
25
  AnswerStyle: AnswerStyle;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.9.25",
7
+ "version": "2.9.27",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",