tuain-ng-forms-lib 14.2.14 → 14.3.0
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/elements/field.component.mjs +27 -40
- package/esm2020/lib/components/forms/basic-form.mjs +12 -1
- package/fesm2015/tuain-ng-forms-lib.mjs +40 -42
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +37 -39
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/elements/field.component.d.ts +6 -6
- package/lib/components/forms/basic-form.d.ts +1 -0
- package/package.json +1 -1
|
@@ -25,19 +25,19 @@ export declare class FieldComponent implements OnInit {
|
|
|
25
25
|
state: any;
|
|
26
26
|
ngOnInit(): void;
|
|
27
27
|
dafaultProcessFieldChange(attribute: string, value?: any): void;
|
|
28
|
+
get visible(): boolean;
|
|
29
|
+
get disabled(): boolean;
|
|
30
|
+
updateValue(): void;
|
|
31
|
+
onInputChange(): void;
|
|
32
|
+
onChangeContent(): void;
|
|
33
|
+
onShowInfo(detail?: any): void;
|
|
28
34
|
processFieldChange(attribute: string, value?: any): void;
|
|
29
35
|
start(): void;
|
|
30
36
|
focus(): void;
|
|
31
37
|
updateObject(): void;
|
|
32
38
|
inputChanged(): void;
|
|
33
39
|
inputTyped(): void;
|
|
34
|
-
updateValue(): void;
|
|
35
|
-
onInputChange(): void;
|
|
36
|
-
onChangeContent(): void;
|
|
37
|
-
onShowInfo(detail?: any): void;
|
|
38
40
|
numberInputValidation(event: any): boolean;
|
|
39
|
-
get visible(): boolean;
|
|
40
|
-
get disabled(): boolean;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponent, never>;
|
|
42
42
|
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "lib-field", never, { "field": "field"; "state": "state"; }, {}, never, ["*"], false>;
|
|
43
43
|
}
|
|
@@ -290,6 +290,7 @@ export declare class BasicFormComponent {
|
|
|
290
290
|
checkSectionRequiredFields(sectionCode: string, reqFieldMessage?: string): boolean;
|
|
291
291
|
validateSectionConsistency(sectionCode: string, reqFieldMessage?: string): boolean;
|
|
292
292
|
copyTableRecordToFields(tableObj: any, mappingTable?: any): boolean;
|
|
293
|
+
notifyFormActivity(): void;
|
|
293
294
|
/**
|
|
294
295
|
* Métodos Legacy de compatibilidad hacia atrás
|
|
295
296
|
*/
|