@eqproject/eqp-dynamic-module 1.0.0 → 1.0.2
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 +11 -3
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/attachment-field-template/attachment-field-template.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/boolean-field-template/boolean-field-template.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/date-field-template/date-field-template.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/image-field-template/image-field-template.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +24 -9
- package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +4 -3
- package/esm2020/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.mjs +4 -3
- package/esm2020/lib/models/baseField.model.mjs +1 -1
- package/esm2020/lib/models/fields/listValueField.model.mjs +1 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +51 -30
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +51 -30
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.d.ts +5 -0
- package/lib/models/baseField.model.d.ts +1 -0
- 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,
|