@eqproject/eqp-dynamic-module 1.0.0 → 1.0.1

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.
Files changed (18) hide show
  1. package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +3 -3
  2. package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +3 -3
  3. package/esm2020/lib/components/private/field-templates/attachment-field-template/attachment-field-template.component.mjs +3 -3
  4. package/esm2020/lib/components/private/field-templates/boolean-field-template/boolean-field-template.component.mjs +3 -3
  5. package/esm2020/lib/components/private/field-templates/date-field-template/date-field-template.component.mjs +3 -3
  6. package/esm2020/lib/components/private/field-templates/image-field-template/image-field-template.component.mjs +3 -3
  7. package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +3 -3
  8. package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +24 -9
  9. package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +4 -3
  10. package/esm2020/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.mjs +4 -3
  11. package/esm2020/lib/models/baseField.model.mjs +1 -1
  12. package/fesm2015/eqproject-eqp-dynamic-module.mjs +43 -30
  13. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  14. package/fesm2020/eqproject-eqp-dynamic-module.mjs +43 -30
  15. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  16. package/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.d.ts +5 -0
  17. package/lib/models/baseField.model.d.ts +1 -0
  18. package/package.json +1 -1
@@ -8,6 +8,7 @@ export declare class NumericFieldTemplateComponent implements OnInit, OnChanges,
8
8
  field: NumericField;
9
9
  record: Record;
10
10
  recordChange: EventEmitter<Record>;
11
+ validatorsArray: any[];
11
12
  eqpNumericOptions: Partial<NumericMaskConfig>;
12
13
  constructor();
13
14
  ngOnInit(): void;
@@ -24,6 +25,10 @@ export declare class NumericFieldTemplateComponent implements OnInit, OnChanges,
24
25
  * Metodo per configurare eqp-numeric
25
26
  */
26
27
  private configureEqpNumericOptions;
28
+ /**
29
+ * Metodo di aggiunta dei validator dell'input
30
+ */
31
+ private configureControllers;
27
32
  static ɵfac: i0.ɵɵFactoryDeclaration<NumericFieldTemplateComponent, never>;
28
33
  static ɵcmp: i0.ɵɵComponentDeclaration<NumericFieldTemplateComponent, "numeric-field-template", never, { "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false>;
29
34
  }
@@ -15,6 +15,7 @@ export declare class BaseField extends BaseObj {
15
15
  Required: boolean;
16
16
  Formula: string;
17
17
  OrdinalPosition: number;
18
+ Disabled: boolean;
18
19
  /**
19
20
  * Entità a cui appartiene il campo. Si tenga presente che sono ammessi anche campi
20
21
  * di sola visualizzazione e calcolati, da utilizzare nelle form,
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "1.0.0",
7
+ "version": "1.0.1",
8
8
  "peerDependencies": {
9
9
  "@angular/common": "~14.2.8",
10
10
  "@angular/core": "~14.2.8",