tuain-ng-forms-lib 14.5.27 → 14.5.29
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 +11 -2
- package/fesm2015/tuain-ng-forms-lib.mjs +10 -1
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +10 -1
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/forms/basic-form.d.ts +4 -1
- package/package.json +1 -1
|
@@ -52,6 +52,9 @@ export declare class BasicFormComponent {
|
|
|
52
52
|
fields: any;
|
|
53
53
|
actions: any;
|
|
54
54
|
sections: any;
|
|
55
|
+
fieldsArray: any;
|
|
56
|
+
actionsArray: any;
|
|
57
|
+
sectionsArray: any;
|
|
55
58
|
busy: boolean;
|
|
56
59
|
get title(): string;
|
|
57
60
|
set title(title: string);
|
|
@@ -205,7 +208,7 @@ export declare class BasicFormComponent {
|
|
|
205
208
|
openForm(name: string, data?: any, backData?: any, cleanStack?: boolean): void;
|
|
206
209
|
canGoBack(): boolean;
|
|
207
210
|
goBack(): void;
|
|
208
|
-
goBackForm(): void;
|
|
211
|
+
goBackForm(forced?: boolean): void;
|
|
209
212
|
getOriginDetail(): any;
|
|
210
213
|
setError(errorType: string | null, errorMessage: string | null, errorDetail: string | null): void;
|
|
211
214
|
resetError(): void;
|