tuain-ng-forms-lib 15.1.10 → 15.1.11
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/classes/forms/element.mjs +1 -3
- package/esm2020/lib/classes/forms/piece-propagate.mjs +1 -7
- package/esm2020/lib/components/elements/field.component.mjs +5 -7
- package/esm2020/lib/components/elements/layout/section.component.mjs +5 -7
- package/esm2020/lib/components/elements/layout/sub-section.component.mjs +5 -7
- package/esm2020/lib/components/elements/tables/table.component.mjs +5 -7
- package/esm2020/lib/components/forms/basic-form.mjs +1 -1
- package/fesm2015/tuain-ng-forms-lib.mjs +16 -32
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +16 -32
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/forms/basic-form.d.ts +23 -23
- package/package.json +1 -1
|
@@ -9,29 +9,29 @@ export declare class BasicFormComponent extends FormStructureAndData {
|
|
|
9
9
|
protected formManagerService: LibFormManagerService;
|
|
10
10
|
protected _eventManager: LibEventManagerService;
|
|
11
11
|
protected fileMgmtServices: LibFileManagementService;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
12
|
+
private _controlToken;
|
|
13
|
+
private _originToken;
|
|
14
|
+
private _formRoute;
|
|
15
|
+
private _definitionObtained;
|
|
16
|
+
private _notifyFormActivity;
|
|
17
|
+
private _formChangeState;
|
|
18
|
+
private _formSectionsCanDeactivate;
|
|
19
|
+
private _formSectionsActivate;
|
|
20
|
+
private _formSectionsInactivate;
|
|
21
|
+
private _formActionsStart;
|
|
22
|
+
private _formActionsFinish;
|
|
23
|
+
private _fieldInputValidation;
|
|
24
|
+
private _fieldValidationsStart;
|
|
25
|
+
private _fieldValidationsFinish;
|
|
26
|
+
private _tableSelectionsStart;
|
|
27
|
+
private _tableSelectionsFinish;
|
|
28
|
+
private _tableActionsStart;
|
|
29
|
+
private _tableActionsFinish;
|
|
30
|
+
private _tableGetDataStart;
|
|
31
|
+
private _tableGetDataFinish;
|
|
32
|
+
private _actionServerError;
|
|
33
|
+
private _fieldServerError;
|
|
34
|
+
private _tableServerError;
|
|
35
35
|
protected inputDataFields: any;
|
|
36
36
|
protected extraData: any;
|
|
37
37
|
protected _eventEmiter: LibEventManagerService;
|