tuain-ng-forms-lib 14.4.95 → 14.4.96
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/forms/basic-form.mjs +20 -4
- package/fesm2015/tuain-ng-forms-lib.mjs +22 -5
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +19 -3
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/forms/basic-form.d.ts +3 -1
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare class BasicFormComponent {
|
|
|
17
17
|
private _originToken;
|
|
18
18
|
private _formRoute;
|
|
19
19
|
private _definitionObtained;
|
|
20
|
+
private _formChangeState;
|
|
20
21
|
private _formSectionsCanDeactivate;
|
|
21
22
|
private _formSectionsActivate;
|
|
22
23
|
private _formSectionsInactivate;
|
|
@@ -59,7 +60,6 @@ export declare class BasicFormComponent {
|
|
|
59
60
|
cleanData(): void;
|
|
60
61
|
getCurrentState(): string;
|
|
61
62
|
supportState(state: string | null): boolean;
|
|
62
|
-
changeState(state: any): boolean;
|
|
63
63
|
getStates(): any[];
|
|
64
64
|
getImmutableElement(name: string): any;
|
|
65
65
|
getExtraInfo(name: string): any;
|
|
@@ -222,6 +222,7 @@ export declare class BasicFormComponent {
|
|
|
222
222
|
subscribeActionSubjects(): void;
|
|
223
223
|
subscribeTableSubjects(): void;
|
|
224
224
|
formInit(params: any, forceReload?: boolean): Promise<void>;
|
|
225
|
+
changeState(state: string | undefined): boolean;
|
|
225
226
|
checkErrorRecordReceived(recordResponse: any): boolean;
|
|
226
227
|
errorOccured(): boolean;
|
|
227
228
|
/**
|
|
@@ -241,6 +242,7 @@ export declare class BasicFormComponent {
|
|
|
241
242
|
/**
|
|
242
243
|
* Manejo de event handlers para acciones sobre el formulario
|
|
243
244
|
*/
|
|
245
|
+
onFormChange(callback: any): void;
|
|
244
246
|
onSectionCanDeactivate(codes: string[] | string | null, callback: any, properties?: any): void;
|
|
245
247
|
onSectionActivation(codes: string[] | string | null, callback: any, properties?: any): void;
|
|
246
248
|
onSectionInactivation(codes: string[] | string | null, callback: any, properties?: any): void;
|