tuain-ng-forms-lib 0.12.32 → 0.12.36
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/bundles/tuain-ng-forms-lib.umd.js +322 -291
- package/bundles/tuain-ng-forms-lib.umd.js.map +1 -1
- package/esm2015/lib/classes/forms/action.js +5 -5
- package/esm2015/lib/classes/forms/element.js +6 -7
- package/esm2015/lib/classes/forms/field.js +166 -146
- package/esm2015/lib/classes/forms/form.constants.js +82 -11
- package/esm2015/lib/classes/forms/form.js +10 -10
- package/esm2015/lib/classes/forms/subsection.js +6 -6
- package/esm2015/lib/classes/forms/table/column.js +5 -5
- package/esm2015/lib/classes/forms/table/row-data.js +4 -6
- package/esm2015/lib/classes/forms/table/table.js +13 -15
- package/esm2015/lib/components/elements/action.component.js +1 -3
- package/esm2015/lib/components/elements/field.component.js +7 -45
- package/esm2015/lib/components/elements/layout/element.component.js +6 -3
- package/esm2015/lib/components/elements/layout/form-error.component.js +1 -1
- package/esm2015/lib/components/elements/tables/table.component.js +7 -7
- package/esm2015/lib/components/forms/basic-form.js +23 -25
- package/fesm2015/tuain-ng-forms-lib.js +326 -285
- package/fesm2015/tuain-ng-forms-lib.js.map +1 -1
- package/lib/classes/forms/action.d.ts +1 -1
- package/lib/classes/forms/element.d.ts +2 -3
- package/lib/classes/forms/field.d.ts +14 -20
- package/lib/classes/forms/form.constants.d.ts +74 -10
- package/lib/classes/forms/form.d.ts +2 -3
- package/lib/classes/forms/table/column.d.ts +1 -2
- package/lib/classes/forms/table/table.d.ts +1 -1
- package/lib/components/elements/action.component.d.ts +0 -1
- package/lib/components/elements/field.component.d.ts +2 -17
- package/lib/components/elements/layout/element.component.d.ts +2 -1
- package/lib/components/elements/layout/form-error.component.d.ts +1 -0
- package/lib/components/elements/tables/table.component.d.ts +0 -1
- package/lib/components/forms/basic-form.d.ts +2 -3
- package/package.json +1 -1
- package/tuain-ng-forms-lib.metadata.json +1 -1
|
@@ -14,7 +14,7 @@ export declare class FormAction extends FormElement {
|
|
|
14
14
|
restrictedOnValue: string;
|
|
15
15
|
customValidation: any;
|
|
16
16
|
customAttributes: any;
|
|
17
|
-
constructor(actionDefinition: any
|
|
17
|
+
constructor(actionDefinition: any);
|
|
18
18
|
get actionActivated(): Subject<string>;
|
|
19
19
|
start(): void;
|
|
20
20
|
stop(): void;
|
|
@@ -2,13 +2,12 @@ export declare class FormElement {
|
|
|
2
2
|
protected _visible: boolean;
|
|
3
3
|
protected _visibleForced: boolean;
|
|
4
4
|
protected _isForced: boolean;
|
|
5
|
-
_formConfig: any;
|
|
6
5
|
disabled: boolean;
|
|
7
6
|
visibleStates: string[];
|
|
8
7
|
enabledStates: string[];
|
|
9
8
|
widget: any;
|
|
10
|
-
|
|
11
|
-
constructor(elementDefinition: any
|
|
9
|
+
type: string;
|
|
10
|
+
constructor(elementDefinition: any);
|
|
12
11
|
isField(): boolean;
|
|
13
12
|
isAction(): boolean;
|
|
14
13
|
isTable(): boolean;
|
|
@@ -4,41 +4,39 @@ export declare class FieldDescriptor extends FormElement {
|
|
|
4
4
|
private readonly _editionFinish;
|
|
5
5
|
private readonly _editionPartial;
|
|
6
6
|
private readonly _detailRequest;
|
|
7
|
-
private readonly _attributeChange;
|
|
8
|
-
private validateOnServer;
|
|
9
7
|
_fieldValue: any;
|
|
8
|
+
hasChanged: boolean;
|
|
9
|
+
outputOnly: boolean;
|
|
10
10
|
_minValue: any;
|
|
11
11
|
_maxValue: any;
|
|
12
12
|
_maxLength: number;
|
|
13
13
|
_onValidation: boolean;
|
|
14
14
|
_intrinsicErrorMessage: string;
|
|
15
15
|
fieldCode: string;
|
|
16
|
-
fieldInfo: string;
|
|
17
|
-
defaultValue: string;
|
|
18
|
-
defaultEditable: boolean;
|
|
19
|
-
customAttributes: any;
|
|
20
|
-
visibleLabel: boolean;
|
|
21
|
-
fieldRequired: boolean;
|
|
22
|
-
hasChanged: boolean;
|
|
23
|
-
outputOnly: boolean;
|
|
24
16
|
captureType: string;
|
|
25
17
|
fieldTitle: string;
|
|
26
18
|
fieldType: string;
|
|
27
19
|
fieldAlignment: string;
|
|
28
|
-
fieldFormat:
|
|
20
|
+
fieldFormat: string;
|
|
29
21
|
externalValue: any;
|
|
22
|
+
fieldInfo: string;
|
|
30
23
|
tooltipText: string;
|
|
24
|
+
defaultValue: string;
|
|
25
|
+
errorMessage: string;
|
|
31
26
|
errorType: string;
|
|
32
27
|
errorCode: string;
|
|
33
|
-
|
|
28
|
+
customAttributes: any;
|
|
29
|
+
validateOnServer: boolean;
|
|
30
|
+
visibleLabel: boolean;
|
|
31
|
+
defaultEditable: boolean;
|
|
32
|
+
fieldRequired: boolean;
|
|
34
33
|
fieldOptions: {
|
|
35
34
|
fieldOptionValue: string;
|
|
36
35
|
fieldOptionId: string;
|
|
37
36
|
}[];
|
|
38
|
-
constructor(inputFieldReceived: any
|
|
37
|
+
constructor(inputFieldReceived: any);
|
|
39
38
|
get name(): string;
|
|
40
39
|
get editionFinish(): Subject<any>;
|
|
41
|
-
get attributeChange(): Subject<any>;
|
|
42
40
|
get editionPartial(): Subject<any>;
|
|
43
41
|
get detailRequest(): Subject<string>;
|
|
44
42
|
get validating(): boolean;
|
|
@@ -54,20 +52,16 @@ export declare class FieldDescriptor extends FormElement {
|
|
|
54
52
|
set value(newValue: any);
|
|
55
53
|
notifyEditionPartial(): void;
|
|
56
54
|
notifyEditionFinish(): void;
|
|
57
|
-
setAttr(name: string, value: any): void;
|
|
58
55
|
notifyEditionDetailRequest(): void;
|
|
59
|
-
getCustomAttribute(name: any): any;
|
|
60
|
-
setVisibleLabel(visibleLabel: boolean): void;
|
|
61
56
|
showLabel(): void;
|
|
62
57
|
hideLabel(): void;
|
|
63
|
-
setChanged(hasChanged: boolean): void;
|
|
64
58
|
changed(): void;
|
|
65
59
|
getRawValue(): any;
|
|
66
60
|
setLabel(label: any): void;
|
|
67
61
|
clean(): void;
|
|
68
62
|
get backend(): boolean;
|
|
63
|
+
setVisibleLabel(visibleLabel: boolean): void;
|
|
69
64
|
setEditable(editable?: boolean): void;
|
|
70
|
-
hasError(): boolean;
|
|
71
65
|
setError(code: any, message: any, type?: string): void;
|
|
72
66
|
getError(): {
|
|
73
67
|
type: string;
|
|
@@ -97,5 +91,5 @@ export declare class FieldDescriptor extends FormElement {
|
|
|
97
91
|
setMaxValue(maxValue: any): void;
|
|
98
92
|
getFieldOptions(): any;
|
|
99
93
|
setFieldOptions(newOptions: any): any;
|
|
100
|
-
setValue(newValue: any, widgetUpdate?: boolean):
|
|
94
|
+
setValue(newValue: any, widgetUpdate?: boolean): void;
|
|
101
95
|
}
|
|
@@ -1,13 +1,39 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
export declare const componentConstants: {
|
|
2
|
+
recordsPerPage: number;
|
|
3
|
+
ELEMENTTYPE_ACTION: string;
|
|
4
|
+
ELEMENTTYPE_FIELD: string;
|
|
5
|
+
ELEMENTTYPE_TABLE: string;
|
|
6
|
+
FORMACTION_TABLEACTION: string;
|
|
7
|
+
FORMACTION_GETDATA: string;
|
|
8
|
+
FORMACTION_GETTABLEDATA: string;
|
|
9
|
+
FORMACTION_VALIDATE: string;
|
|
10
|
+
FORMERROR_VALIDATION_CODE: string;
|
|
11
|
+
FORMERROR_TYPE_WARNING: string;
|
|
12
|
+
FORMERROR_REQUIRED_FIELDS: string;
|
|
13
|
+
FORMERROR_VALIDATION_TITLE: string;
|
|
14
|
+
FORMERROR_VALIDATION_FIELDS: string;
|
|
15
|
+
FORMNAVIGATION_FIRST: string;
|
|
16
|
+
FORMNAVIGATION_PREVGROUP: string;
|
|
17
|
+
FORMNAVIGATION_NEXTGROUP: string;
|
|
18
|
+
FORMNAVIGATION_LAST: string;
|
|
19
|
+
FIELDTYPE_ARRAY: string;
|
|
20
|
+
FIELDTYPE_CHECK: string;
|
|
21
|
+
FIELDTYPE_DATE: string;
|
|
22
|
+
FIELDTYPE_MAP: string;
|
|
23
|
+
FIELDTYPE_CURRENCY: string;
|
|
24
|
+
FIELDTYPE_SELECT: string;
|
|
25
|
+
FIELDTYPE_TEXT: string;
|
|
26
|
+
FIELD_REQUIRED_MESSAGE: string;
|
|
27
|
+
FORMTABLEACTION_SORT: string;
|
|
28
|
+
FORMTABLEACTION_REFRESH: string;
|
|
29
|
+
FORMTABLEACTION_NAVIGATE: string;
|
|
30
|
+
FORMTABLEACTION_INLINE: string;
|
|
31
|
+
FORMTABLEACTION_GLOBAL: string;
|
|
32
|
+
FORMTABLEACTION_ROWSELECTION: string;
|
|
33
|
+
FORMTABLEACTION_SELECTION: string;
|
|
34
|
+
TABLE_SORT_ASCENDING: string;
|
|
35
|
+
TABLE_SORT_DESCENDING: string;
|
|
36
|
+
SERVICE_ERRORCODE_NOERROR: string;
|
|
11
37
|
};
|
|
12
38
|
export declare const operators: {
|
|
13
39
|
G: string;
|
|
@@ -20,3 +46,41 @@ export declare const operators: {
|
|
|
20
46
|
NOT_CONTENT: string;
|
|
21
47
|
BETWEEN: string;
|
|
22
48
|
};
|
|
49
|
+
export declare const tableFieldStyles: {
|
|
50
|
+
TEXT: {
|
|
51
|
+
'text-align': string;
|
|
52
|
+
};
|
|
53
|
+
TITLE: {
|
|
54
|
+
'text-align': string;
|
|
55
|
+
};
|
|
56
|
+
LABEL: {
|
|
57
|
+
'text-align': string;
|
|
58
|
+
};
|
|
59
|
+
MESSAGE: {
|
|
60
|
+
'text-align': string;
|
|
61
|
+
};
|
|
62
|
+
NUMBER: {
|
|
63
|
+
'text-align': string;
|
|
64
|
+
};
|
|
65
|
+
DATE: {
|
|
66
|
+
'text-align': string;
|
|
67
|
+
};
|
|
68
|
+
CHECK: {
|
|
69
|
+
'text-align': string;
|
|
70
|
+
};
|
|
71
|
+
ARRAY: {
|
|
72
|
+
'text-align': string;
|
|
73
|
+
};
|
|
74
|
+
SELECT: {
|
|
75
|
+
'text-align': string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
export declare const DEFAULT_STATE_FLOW: {
|
|
79
|
+
defaultState: string;
|
|
80
|
+
states: string[];
|
|
81
|
+
transitions: {
|
|
82
|
+
name: string;
|
|
83
|
+
origin: string;
|
|
84
|
+
destination: string;
|
|
85
|
+
}[];
|
|
86
|
+
};
|
|
@@ -5,7 +5,6 @@ import { RecordTable } from './table/table';
|
|
|
5
5
|
export declare class FormStructureAndData {
|
|
6
6
|
state: string;
|
|
7
7
|
_name: string;
|
|
8
|
-
_formConfig: any;
|
|
9
8
|
private _title;
|
|
10
9
|
private _stateFlow;
|
|
11
10
|
private _fields;
|
|
@@ -18,7 +17,7 @@ export declare class FormStructureAndData {
|
|
|
18
17
|
private _sectionsObj;
|
|
19
18
|
private _immutableData;
|
|
20
19
|
private _extraInfo;
|
|
21
|
-
constructor(definitionReceived: any
|
|
20
|
+
constructor(definitionReceived: any);
|
|
22
21
|
set immutableData(immutableData: {});
|
|
23
22
|
set extraInfo(extraInfo: {});
|
|
24
23
|
get defaultState(): string;
|
|
@@ -77,7 +76,7 @@ export declare class FormStructureAndData {
|
|
|
77
76
|
getFieldsValues(fieldCodesArray: any): {};
|
|
78
77
|
getFieldOptions(fieldCode: any): any;
|
|
79
78
|
setFieldValue(fieldCode: any, fieldValue: any): any;
|
|
80
|
-
setFieldError(code: any, message: any, type?: string): any;
|
|
79
|
+
setFieldError(fieldCode: any, code: any, message: any, type?: string): any;
|
|
81
80
|
setFieldIntrinsicErrorMessage(code: any, message: any): any;
|
|
82
81
|
setFieldRequired(fieldCode: any, required: any): any;
|
|
83
82
|
setFieldErrorMessage(fieldCode: any, errorMessage: any): any;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export declare class RecordTableColumn {
|
|
2
|
-
_formConfig: any;
|
|
3
2
|
fieldCode: string;
|
|
4
3
|
fieldTitle: string;
|
|
5
4
|
fieldType: string;
|
|
@@ -8,5 +7,5 @@ export declare class RecordTableColumn {
|
|
|
8
7
|
visible: boolean;
|
|
9
8
|
sortable: boolean;
|
|
10
9
|
customAttributes: any;
|
|
11
|
-
constructor(recTableColReceived: any
|
|
10
|
+
constructor(recTableColReceived: any);
|
|
12
11
|
}
|
|
@@ -61,7 +61,7 @@ export declare class RecordTable extends FormElement {
|
|
|
61
61
|
filterConfig: FieldSearch[];
|
|
62
62
|
filterObject: Filter;
|
|
63
63
|
customAttributes: any;
|
|
64
|
-
constructor(tableReceived: any
|
|
64
|
+
constructor(tableReceived: any);
|
|
65
65
|
get inlineActionTrigger(): Subject<TableEvent>;
|
|
66
66
|
get globalActionTrigger(): Subject<TableEvent>;
|
|
67
67
|
get selectionActionTrigger(): Subject<TableEvent>;
|
|
@@ -1,25 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FieldDescriptor } from '../../classes/forms/field';
|
|
3
3
|
export declare class FieldComponent implements OnInit {
|
|
4
|
-
|
|
5
|
-
code: string;
|
|
6
|
-
fieldInfo: string;
|
|
7
|
-
fieldAlignment: string;
|
|
8
|
-
tooltipText: string;
|
|
9
|
-
value: any;
|
|
10
|
-
maxLength: any;
|
|
11
|
-
onValidation: any;
|
|
12
|
-
captureType: any;
|
|
13
|
-
title: any;
|
|
14
|
-
type: any;
|
|
15
|
-
visibleLabel: any;
|
|
16
|
-
required: any;
|
|
17
|
-
options: any;
|
|
18
|
-
errorType: any;
|
|
19
|
-
errorCode: any;
|
|
20
|
-
errorMessage: any;
|
|
4
|
+
componentConstants: any;
|
|
21
5
|
fieldObject: FieldDescriptor;
|
|
22
6
|
disabled: boolean;
|
|
7
|
+
constructor();
|
|
23
8
|
ngOnInit(): void;
|
|
24
9
|
start(): void;
|
|
25
10
|
focus(): void;
|
|
@@ -3,7 +3,6 @@ import { TableRecordData } from '../../../classes/forms/table/row-data';
|
|
|
3
3
|
import { TableActionEvent } from '../../../classes/forms/table/table';
|
|
4
4
|
import { RecordTable, TableFilterEvent } from '../../../classes/forms/table/table';
|
|
5
5
|
export declare class LibTableComponent implements OnInit {
|
|
6
|
-
formConfig: any;
|
|
7
6
|
tableFieldStyles: any;
|
|
8
7
|
loaded: boolean;
|
|
9
8
|
selectable: boolean;
|
|
@@ -6,7 +6,6 @@ export declare class BasicFormComponent {
|
|
|
6
6
|
protected formManagerService: LibFormManagerService;
|
|
7
7
|
protected _eventManager: LibEventManagerService;
|
|
8
8
|
protected fileMgmtServices: LibFileManagementService;
|
|
9
|
-
formConfig: any;
|
|
10
9
|
name: string;
|
|
11
10
|
_formRoute: string;
|
|
12
11
|
formSubject: string;
|
|
@@ -18,6 +17,7 @@ export declare class BasicFormComponent {
|
|
|
18
17
|
transitionToken: any;
|
|
19
18
|
inputDataFields: any[];
|
|
20
19
|
extraData: any;
|
|
20
|
+
componentConstants: any;
|
|
21
21
|
definitionObtained: boolean;
|
|
22
22
|
formVisible: boolean;
|
|
23
23
|
inServerProcess: boolean;
|
|
@@ -36,7 +36,6 @@ export declare class BasicFormComponent {
|
|
|
36
36
|
tableGetDataFinish: {};
|
|
37
37
|
protected _eventEmiter: LibEventManagerService;
|
|
38
38
|
constructor(formManagerService: LibFormManagerService, _eventManager: LibEventManagerService, fileMgmtServices: LibFileManagementService);
|
|
39
|
-
setConfig(formConfig: any): void;
|
|
40
39
|
cleanStart(): void;
|
|
41
40
|
get currentState(): string;
|
|
42
41
|
set currentState(state: string);
|
|
@@ -62,7 +61,7 @@ export declare class BasicFormComponent {
|
|
|
62
61
|
setFieldValue(fieldCode: any, fieldValue: any): any;
|
|
63
62
|
setFieldRequired(fieldCode: any, required: boolean): any;
|
|
64
63
|
setFieldErrorMessage(fieldCode: any, errorMessage: any): any;
|
|
65
|
-
setFieldError(code: any, message: any, type?: string): any;
|
|
64
|
+
setFieldError(fieldCode: any, code: any, message: any, type?: string): any;
|
|
66
65
|
setFieldIntrinsicErrorMessage(code: any, message: any): any;
|
|
67
66
|
setFieldOptions(fieldCode: any, optionsArray: any, idAttribute: any, nameAttribute: any): void;
|
|
68
67
|
getFieldSet(filterFunc?: any, fieldArray?: any, sectionCode?: any, subSectionCode?: any): any;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"ActionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-action","template":"<ng-content></ng-content>"}]}],"members":{"actionObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":3}}]}],"formBusy":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":12,"character":3}}]}],"relatedField":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":13,"character":3}}]}],"style":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":15,"character":3}}]}],"showLabel":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":16,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"activate":[{"__symbolic":"method"}]}},"FieldComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":18,"character":1},"arguments":[{"selector":"lib-field","template":"<ng-content></ng-content>"}]}],"members":{"fieldObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":45,"character":3}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":46,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"focus":[{"__symbolic":"method"}],"onInputChange":[{"__symbolic":"method"}],"onChangeContent":[{"__symbolic":"method"}],"onShowInfo":[{"__symbolic":"method"}],"numberInputValidation":[{"__symbolic":"method"}]}},"ElementComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-element","template":"<ng-content></ng-content>"}]}],"members":{"formElement":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"FormErrorComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-form-error","template":"<ng-content></ng-content>"}]}],"members":{"errorTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":3}}]}],"errorMessage":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"errorType":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}]}},"FormHeaderComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-form-header","template":"<ng-content></ng-content>"}]}],"members":{"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":3}}]}],"goBackAction":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"showTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"headerActions":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"goBackEvent":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":11,"character":3}}]}],"goBackForm":[{"__symbolic":"method"}]}},"SectionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-section","template":"<ng-content></ng-content>"}]}],"members":{"sectionObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":3}}]}],"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"SubSectionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-subsection","template":"<ng-content></ng-content>"}]}],"members":{"subSection":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":3}}]}],"showHeader":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"LibTableFilterComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"lib-table-filter","template":"<ng-content></ng-content>"}]}],"members":{"simpleFilter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":3}}]}],"complexFilter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":21,"character":3}}]}],"complexFilterConfig":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":22,"character":3}}]}],"filterChanged":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":24,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"filterHasChanged":[{"__symbolic":"method"}],"selectField":[{"__symbolic":"method"}],"addFilterField":[{"__symbolic":"method"}],"clearFilterField":[{"__symbolic":"method"}],"removeFilterField":[{"__symbolic":"method"}]}},"LibTableRecordActionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":5,"character":1},"arguments":[{"selector":"lib-table-record-action","template":"<ng-content></ng-content>","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":8,"character":19},"member":"OnPush"}}]}],"members":{"recordId":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":12,"character":3}}]}],"recordData":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":13,"character":3}}]}],"action":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":3}}]}],"actionSelected":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":16,"character":3}}]}],"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"onActivate":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}]}},"LibTableRecordFieldComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-table-record-field","template":"<ng-content></ng-content>","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":5,"character":19},"member":"OnPush"}}]}],"members":{"fieldCode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"fieldType":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"fieldValue":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"LibTableComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":6,"character":1},"arguments":[{"selector":"lib-table","template":"<ng-content></ng-content>","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":9,"character":19},"member":"OnPush"}}]}],"members":{"tableObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":22,"character":3}}]}],"tableRecords":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":23,"character":3}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":24,"character":3}}]}],"currentState":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":25,"character":3}}]}],"waiting":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":26,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"tableGlobalAction":[{"__symbolic":"method"}],"tableSelectionAction":[{"__symbolic":"method"}],"tableActionSelected":[{"__symbolic":"method"}],"tableColumnSort":[{"__symbolic":"method"}],"changePage":[{"__symbolic":"method"}],"applyCurrentFilter":[{"__symbolic":"method"}],"tableSelectionToggle":[{"__symbolic":"method"}],"toggleSelectAll":[{"__symbolic":"method"}]}},"BasicFormComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":18,"character":1},"arguments":[{"template":"<ng-content></ng-content>"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"LibFormManagerService"},{"__symbolic":"reference","name":"LibEventManagerService"},{"__symbolic":"reference","name":"LibFileManagementService"}]}],"setConfig":[{"__symbolic":"method"}],"cleanStart":[{"__symbolic":"method"}],"supportState":[{"__symbolic":"method"}],"supportMode":[{"__symbolic":"method"}],"getTitle":[{"__symbolic":"method"}],"setTitle":[{"__symbolic":"method"}],"getImmutableElement":[{"__symbolic":"method"}],"getExtraInfo":[{"__symbolic":"method"}],"cleanData":[{"__symbolic":"method"}],"getFields":[{"__symbolic":"method"}],"getFieldNames":[{"__symbolic":"method"}],"getFieldObject":[{"__symbolic":"method"}],"getField":[{"__symbolic":"method"}],"enableField":[{"__symbolic":"method"}],"disableField":[{"__symbolic":"method"}],"getFieldValue":[{"__symbolic":"method"}],"getFieldsValues":[{"__symbolic":"method"}],"getFieldOptions":[{"__symbolic":"method"}],"setFieldValue":[{"__symbolic":"method"}],"setFieldRequired":[{"__symbolic":"method"}],"setFieldErrorMessage":[{"__symbolic":"method"}],"setFieldError":[{"__symbolic":"method"}],"setFieldIntrinsicErrorMessage":[{"__symbolic":"method"}],"setFieldOptions":[{"__symbolic":"method"}],"getFieldSet":[{"__symbolic":"method"}],"applyProcessToFieldSet":[{"__symbolic":"method"}],"applyProcessToAllFields":[{"__symbolic":"method"}],"cleanFields":[{"__symbolic":"method"}],"getRequiredFields":[{"__symbolic":"method"}],"getRequiredEmptyFields":[{"__symbolic":"method"}],"getChangedFields":[{"__symbolic":"method"}],"getFieldsWithValidationIssues":[{"__symbolic":"method"}],"tagFieldsWithError":[{"__symbolic":"method"}],"cleanErrorFields":[{"__symbolic":"method"}],"showLabelFields":[{"__symbolic":"method"}],"hideLabelFields":[{"__symbolic":"method"}],"enableFields":[{"__symbolic":"method"}],"disableFields":[{"__symbolic":"method"}],"enableEditFields":[{"__symbolic":"method"}],"disableEditFields":[{"__symbolic":"method"}],"showFields":[{"__symbolic":"method"}],"hideFields":[{"__symbolic":"method"}],"getHeaderActions":[{"__symbolic":"method"}],"getActionObject":[{"__symbolic":"method"}],"getAction":[{"__symbolic":"method"}],"getActionDefinition":[{"__symbolic":"method"}],"showAction":[{"__symbolic":"method"}],"hideAction":[{"__symbolic":"method"}],"showActions":[{"__symbolic":"method"}],"hideActions":[{"__symbolic":"method"}],"enableAction":[{"__symbolic":"method"}],"disableAction":[{"__symbolic":"method"}],"enableActions":[{"__symbolic":"method"}],"disableActions":[{"__symbolic":"method"}],"getStates":[{"__symbolic":"method"}],"getSections":[{"__symbolic":"method"}],"getSection":[{"__symbolic":"method"}],"activateSection":[{"__symbolic":"method"}],"getSubSection":[{"__symbolic":"method"}],"numSections":[{"__symbolic":"method"}],"getSectionsTitles":[{"__symbolic":"method"}],"getSectionObject":[{"__symbolic":"method"}],"showSection":[{"__symbolic":"method"}],"hideSection":[{"__symbolic":"method"}],"showSections":[{"__symbolic":"method"}],"hideSections":[{"__symbolic":"method"}],"showSubSection":[{"__symbolic":"method"}],"hideSubSection":[{"__symbolic":"method"}],"showSubSections":[{"__symbolic":"method"}],"hideSubSections":[{"__symbolic":"method"}],"getTables":[{"__symbolic":"method"}],"getTableObject":[{"__symbolic":"method"}],"getTable":[{"__symbolic":"method"}],"showTable":[{"__symbolic":"method"}],"hideTable":[{"__symbolic":"method"}],"showTables":[{"__symbolic":"method"}],"hideTables":[{"__symbolic":"method"}],"cleanTable":[{"__symbolic":"method"}],"getTableRecord":[{"__symbolic":"method"}],"customPreProcessing":[{"__symbolic":"method"}],"customFormStart":[{"__symbolic":"method"}],"displayActionServerError":[{"__symbolic":"method"}],"displayValidationServerError":[{"__symbolic":"method"}],"displayTableServerError":[{"__symbolic":"method"}],"showFieldInfo":[{"__symbolic":"method"}],"showModalDialog":[{"__symbolic":"method"}],"openUploadDialog":[{"__symbolic":"method"}],"subscribeAppEvent":[{"__symbolic":"method"}],"goToPage":[{"__symbolic":"method"}],"goToNewPage":[{"__symbolic":"method"}],"goToSubPage":[{"__symbolic":"method"}],"canGoBack":[{"__symbolic":"method"}],"goBack":[{"__symbolic":"method"}],"goBackForm":[{"__symbolic":"method"}],"getOriginDetail":[{"__symbolic":"method"}],"setError":[{"__symbolic":"method"}],"resetError":[{"__symbolic":"method"}],"getErrorType":[{"__symbolic":"method"}],"getErrorMessage":[{"__symbolic":"method"}],"getErrorDetail":[{"__symbolic":"method"}],"getErrorCode":[{"__symbolic":"method"}],"defineFormCode":[{"__symbolic":"method"}],"getCurrentState":[{"__symbolic":"method"}],"getCurrentMode":[{"__symbolic":"method"}],"getFormParameter":[{"__symbolic":"method"}],"getSubject":[{"__symbolic":"method"}],"getformSubject":[{"__symbolic":"method"}],"preocessInputParams":[{"__symbolic":"method"}],"subscribeSectionActivation":[{"__symbolic":"method"}],"subscribeFieldsSubjects":[{"__symbolic":"method"}],"subscribeActionSubjects":[{"__symbolic":"method"}],"subscribeTableSubjects":[{"__symbolic":"method"}],"formInit":[{"__symbolic":"method"}],"checkErrorRecordReceived":[{"__symbolic":"method"}],"errorOccured":[{"__symbolic":"method"}],"changeState":[{"__symbolic":"method"}],"changeFormMode":[{"__symbolic":"method"}],"requestFormAction":[{"__symbolic":"method"}],"updateFormWithServerData":[{"__symbolic":"method"}],"addSectionActivation":[{"__symbolic":"method"}],"addSectionInactivation":[{"__symbolic":"method"}],"addActionMethodStart":[{"__symbolic":"method"}],"addActionMethodFinish":[{"__symbolic":"method"}],"launchSectionActivation":[{"__symbolic":"method"}],"launchSectionInactivation":[{"__symbolic":"method"}],"startAction":[{"__symbolic":"method"}],"startServerAction":[{"__symbolic":"method"}],"finishAction":[{"__symbolic":"method"}],"completeGlobalAction":[{"__symbolic":"method"}],"addFieldInputValidation":[{"__symbolic":"method"}],"addFieldValidationStart":[{"__symbolic":"method"}],"addFieldValidationFinish":[{"__symbolic":"method"}],"startFieldInputValidation":[{"__symbolic":"method"}],"startFieldValidation":[{"__symbolic":"method"}],"startServerFieldValidation":[{"__symbolic":"method"}],"finishFieldValidation":[{"__symbolic":"method"}],"continueFieldValidation":[{"__symbolic":"method"}],"addTableActionStart":[{"__symbolic":"method"}],"addTableActionFinish":[{"__symbolic":"method"}],"addTableSelectionStart":[{"__symbolic":"method"}],"addTableSelectionFinish":[{"__symbolic":"method"}],"addTableGetDataStart":[{"__symbolic":"method"}],"addTableGetDataFinish":[{"__symbolic":"method"}],"startTableGlobalAction":[{"__symbolic":"method"}],"startTableServerGlobalAction":[{"__symbolic":"method"}],"finishTableGlobalAction":[{"__symbolic":"method"}],"startTableAction":[{"__symbolic":"method"}],"startTableServerAction":[{"__symbolic":"method"}],"completeInlineAction":[{"__symbolic":"method"}],"finishTableAction":[{"__symbolic":"method"}],"startTableRecordSelection":[{"__symbolic":"method"}],"startTableServerRecordSelection":[{"__symbolic":"method"}],"finishTableRecordSelection":[{"__symbolic":"method"}],"startTableSelectionAction":[{"__symbolic":"method"}],"startTableServerSelectionAction":[{"__symbolic":"method"}],"finishTableSelectionAction":[{"__symbolic":"method"}],"startTableGetData":[{"__symbolic":"method"}],"startTableServerGetData":[{"__symbolic":"method"}],"finishTableGetData":[{"__symbolic":"method"}],"checkSectionRequiredFields":[{"__symbolic":"method"}],"validateSectionConsistency":[{"__symbolic":"method"}],"copyTableRecordToFields":[{"__symbolic":"method"}],"defineEditionTable":[{"__symbolic":"method"}],"enableRecordEdition":[{"__symbolic":"method"}],"disableRecordEdition":[{"__symbolic":"method"}],"recordEditionValidate":[{"__symbolic":"method"}]}},"LibEventManagerService":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[null]}],"addEventName":[{"__symbolic":"method"}],"getEventNames":[{"__symbolic":"method"}],"getSubject":[{"__symbolic":"method"}],"subscribe":[{"__symbolic":"method"}],"next":[{"__symbolic":"method"}]}},"LibFormManagerService":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor"}],"getFormDefinition":[{"__symbolic":"method"}],"execServerAction":[{"__symbolic":"method"}],"goToRoute":[{"__symbolic":"method"}],"resetPageStack":[{"__symbolic":"method"}],"cleanStack":[{"__symbolic":"method"}],"loadStack":[{"__symbolic":"method"}],"saveStack":[{"__symbolic":"method"}],"stack":[{"__symbolic":"method"}],"unstack":[{"__symbolic":"method"}],"getInputData":[{"__symbolic":"method"}],"getOriginInfo":[{"__symbolic":"method"}],"changeForm":[{"__symbolic":"method"}],"changePreviousForm":[{"__symbolic":"method"}]}},"LibFileManagementService":{"__symbolic":"class","members":{"openFile":[{"__symbolic":"method"}],"saveFileFromURL":[{"__symbolic":"method"}],"saveFile":[{"__symbolic":"method"}]}},"TuainNgFormsLibModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":32,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"BasicFormComponent"},{"__symbolic":"reference","name":"ActionComponent"},{"__symbolic":"reference","name":"FieldComponent"},{"__symbolic":"reference","name":"ElementComponent"},{"__symbolic":"reference","name":"FormErrorComponent"},{"__symbolic":"reference","name":"FormHeaderComponent"},{"__symbolic":"reference","name":"SectionComponent"},{"__symbolic":"reference","name":"SubSectionComponent"},{"__symbolic":"reference","name":"LibTableFilterComponent"},{"__symbolic":"reference","name":"LibTableRecordActionComponent"},{"__symbolic":"reference","name":"LibTableRecordFieldComponent"},{"__symbolic":"reference","name":"LibTableComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":35,"character":4},{"__symbolic":"reference","module":"@angular/router","name":"RouterModule","line":36,"character":4},{"__symbolic":"reference","module":"@angular/forms","name":"FormsModule","line":37,"character":4}],"exports":[{"__symbolic":"reference","name":"BasicFormComponent"},{"__symbolic":"reference","name":"ActionComponent"},{"__symbolic":"reference","name":"FieldComponent"},{"__symbolic":"reference","name":"ElementComponent"},{"__symbolic":"reference","name":"FormErrorComponent"},{"__symbolic":"reference","name":"FormHeaderComponent"},{"__symbolic":"reference","name":"SectionComponent"},{"__symbolic":"reference","name":"SubSectionComponent"},{"__symbolic":"reference","name":"LibTableFilterComponent"},{"__symbolic":"reference","name":"LibTableRecordActionComponent"},{"__symbolic":"reference","name":"LibTableRecordFieldComponent"},{"__symbolic":"reference","name":"LibTableComponent"}]}]}],"members":{}}},"origins":{"ActionComponent":"./lib/components/elements/action.component","FieldComponent":"./lib/components/elements/field.component","ElementComponent":"./lib/components/elements/layout/element.component","FormErrorComponent":"./lib/components/elements/layout/form-error.component","FormHeaderComponent":"./lib/components/elements/layout/form-header.component","SectionComponent":"./lib/components/elements/layout/section.component","SubSectionComponent":"./lib/components/elements/layout/sub-section.component","LibTableFilterComponent":"./lib/components/elements/tables/table-filter.component","LibTableRecordActionComponent":"./lib/components/elements/tables/table-record-action.component","LibTableRecordFieldComponent":"./lib/components/elements/tables/table-record-field.component","LibTableComponent":"./lib/components/elements/tables/table.component","BasicFormComponent":"./lib/components/forms/basic-form","LibEventManagerService":"./lib/services/event-manager.service","LibFormManagerService":"./lib/services/form-manager.service","LibFileManagementService":"./lib/services/file-manager.service","TuainNgFormsLibModule":"./lib/tuain-ng-forms-lib.module"},"importAs":"tuain-ng-forms-lib"}
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"ActionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-action","template":"<ng-content></ng-content>"}]}],"members":{"actionObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"formBusy":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":3}}]}],"relatedField":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":12,"character":3}}]}],"style":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":3}}]}],"showLabel":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":15,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"activate":[{"__symbolic":"method"}]}},"FieldComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"lib-field","template":"<ng-content></ng-content>"}]}],"members":{"fieldObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":3}}]}],"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"focus":[{"__symbolic":"method"}],"onInputChange":[{"__symbolic":"method"}],"onChangeContent":[{"__symbolic":"method"}],"onShowInfo":[{"__symbolic":"method"}],"numberInputValidation":[{"__symbolic":"method"}]}},"ElementComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"lib-element","template":"<ng-content></ng-content>"}]}],"members":{"formElement":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":3}}]}],"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"FormErrorComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-form-error","template":"<ng-content></ng-content>"}]}],"members":{"errorTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"errorMessage":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"errorType":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}]}},"FormHeaderComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-form-header","template":"<ng-content></ng-content>"}]}],"members":{"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":3}}]}],"goBackAction":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"showTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"headerActions":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"goBackEvent":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":11,"character":3}}]}],"goBackForm":[{"__symbolic":"method"}]}},"SectionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-section","template":"<ng-content></ng-content>"}]}],"members":{"sectionObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":3}}]}],"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"SubSectionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-subsection","template":"<ng-content></ng-content>"}]}],"members":{"subSection":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":3}}]}],"showHeader":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":3}}]}],"formManager":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"LibTableFilterComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"lib-table-filter","template":"<ng-content></ng-content>"}]}],"members":{"simpleFilter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":3}}]}],"complexFilter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":21,"character":3}}]}],"complexFilterConfig":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":22,"character":3}}]}],"filterChanged":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":24,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"filterHasChanged":[{"__symbolic":"method"}],"selectField":[{"__symbolic":"method"}],"addFilterField":[{"__symbolic":"method"}],"clearFilterField":[{"__symbolic":"method"}],"removeFilterField":[{"__symbolic":"method"}]}},"LibTableRecordActionComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":5,"character":1},"arguments":[{"selector":"lib-table-record-action","template":"<ng-content></ng-content>","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":8,"character":19},"member":"OnPush"}}]}],"members":{"recordId":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":12,"character":3}}]}],"recordData":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":13,"character":3}}]}],"action":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":3}}]}],"actionSelected":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":16,"character":3}}]}],"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"onActivate":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}]}},"LibTableRecordFieldComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-table-record-field","template":"<ng-content></ng-content>","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":5,"character":19},"member":"OnPush"}}]}],"members":{"fieldCode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":3}}]}],"fieldType":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"fieldValue":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"LibTableComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":8,"character":1},"arguments":[{"selector":"lib-table","template":"<ng-content></ng-content>","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":11,"character":19},"member":"OnPush"}}]}],"members":{"tableObject":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":23,"character":3}}]}],"tableRecords":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":24,"character":3}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":25,"character":3}}]}],"currentState":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":26,"character":3}}]}],"waiting":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":27,"character":3}}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}],"tableGlobalAction":[{"__symbolic":"method"}],"tableSelectionAction":[{"__symbolic":"method"}],"tableActionSelected":[{"__symbolic":"method"}],"tableColumnSort":[{"__symbolic":"method"}],"changePage":[{"__symbolic":"method"}],"applyCurrentFilter":[{"__symbolic":"method"}],"tableSelectionToggle":[{"__symbolic":"method"}],"toggleSelectAll":[{"__symbolic":"method"}]}},"BasicFormComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":18,"character":1},"arguments":[{"template":"<ng-content></ng-content>"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"LibFormManagerService"},{"__symbolic":"reference","name":"LibEventManagerService"},{"__symbolic":"reference","name":"LibFileManagementService"}]}],"cleanStart":[{"__symbolic":"method"}],"supportState":[{"__symbolic":"method"}],"supportMode":[{"__symbolic":"method"}],"getTitle":[{"__symbolic":"method"}],"setTitle":[{"__symbolic":"method"}],"getImmutableElement":[{"__symbolic":"method"}],"getExtraInfo":[{"__symbolic":"method"}],"cleanData":[{"__symbolic":"method"}],"getFields":[{"__symbolic":"method"}],"getFieldNames":[{"__symbolic":"method"}],"getFieldObject":[{"__symbolic":"method"}],"getField":[{"__symbolic":"method"}],"enableField":[{"__symbolic":"method"}],"disableField":[{"__symbolic":"method"}],"getFieldValue":[{"__symbolic":"method"}],"getFieldsValues":[{"__symbolic":"method"}],"getFieldOptions":[{"__symbolic":"method"}],"setFieldValue":[{"__symbolic":"method"}],"setFieldRequired":[{"__symbolic":"method"}],"setFieldErrorMessage":[{"__symbolic":"method"}],"setFieldError":[{"__symbolic":"method"}],"setFieldIntrinsicErrorMessage":[{"__symbolic":"method"}],"setFieldOptions":[{"__symbolic":"method"}],"getFieldSet":[{"__symbolic":"method"}],"applyProcessToFieldSet":[{"__symbolic":"method"}],"applyProcessToAllFields":[{"__symbolic":"method"}],"cleanFields":[{"__symbolic":"method"}],"getRequiredFields":[{"__symbolic":"method"}],"getRequiredEmptyFields":[{"__symbolic":"method"}],"getChangedFields":[{"__symbolic":"method"}],"getFieldsWithValidationIssues":[{"__symbolic":"method"}],"tagFieldsWithError":[{"__symbolic":"method"}],"cleanErrorFields":[{"__symbolic":"method"}],"showLabelFields":[{"__symbolic":"method"}],"hideLabelFields":[{"__symbolic":"method"}],"enableFields":[{"__symbolic":"method"}],"disableFields":[{"__symbolic":"method"}],"enableEditFields":[{"__symbolic":"method"}],"disableEditFields":[{"__symbolic":"method"}],"showFields":[{"__symbolic":"method"}],"hideFields":[{"__symbolic":"method"}],"getHeaderActions":[{"__symbolic":"method"}],"getActionObject":[{"__symbolic":"method"}],"getAction":[{"__symbolic":"method"}],"getActionDefinition":[{"__symbolic":"method"}],"showAction":[{"__symbolic":"method"}],"hideAction":[{"__symbolic":"method"}],"showActions":[{"__symbolic":"method"}],"hideActions":[{"__symbolic":"method"}],"enableAction":[{"__symbolic":"method"}],"disableAction":[{"__symbolic":"method"}],"enableActions":[{"__symbolic":"method"}],"disableActions":[{"__symbolic":"method"}],"getStates":[{"__symbolic":"method"}],"getSections":[{"__symbolic":"method"}],"getSection":[{"__symbolic":"method"}],"activateSection":[{"__symbolic":"method"}],"getSubSection":[{"__symbolic":"method"}],"numSections":[{"__symbolic":"method"}],"getSectionsTitles":[{"__symbolic":"method"}],"getSectionObject":[{"__symbolic":"method"}],"showSection":[{"__symbolic":"method"}],"hideSection":[{"__symbolic":"method"}],"showSections":[{"__symbolic":"method"}],"hideSections":[{"__symbolic":"method"}],"showSubSection":[{"__symbolic":"method"}],"hideSubSection":[{"__symbolic":"method"}],"showSubSections":[{"__symbolic":"method"}],"hideSubSections":[{"__symbolic":"method"}],"getTables":[{"__symbolic":"method"}],"getTableObject":[{"__symbolic":"method"}],"getTable":[{"__symbolic":"method"}],"showTable":[{"__symbolic":"method"}],"hideTable":[{"__symbolic":"method"}],"showTables":[{"__symbolic":"method"}],"hideTables":[{"__symbolic":"method"}],"cleanTable":[{"__symbolic":"method"}],"getTableRecord":[{"__symbolic":"method"}],"customPreProcessing":[{"__symbolic":"method"}],"customFormStart":[{"__symbolic":"method"}],"displayActionServerError":[{"__symbolic":"method"}],"displayValidationServerError":[{"__symbolic":"method"}],"displayTableServerError":[{"__symbolic":"method"}],"showFieldInfo":[{"__symbolic":"method"}],"showModalDialog":[{"__symbolic":"method"}],"openUploadDialog":[{"__symbolic":"method"}],"subscribeAppEvent":[{"__symbolic":"method"}],"goToPage":[{"__symbolic":"method"}],"goToNewPage":[{"__symbolic":"method"}],"goToSubPage":[{"__symbolic":"method"}],"canGoBack":[{"__symbolic":"method"}],"goBack":[{"__symbolic":"method"}],"goBackForm":[{"__symbolic":"method"}],"getOriginDetail":[{"__symbolic":"method"}],"setError":[{"__symbolic":"method"}],"resetError":[{"__symbolic":"method"}],"getErrorType":[{"__symbolic":"method"}],"getErrorMessage":[{"__symbolic":"method"}],"getErrorDetail":[{"__symbolic":"method"}],"getErrorCode":[{"__symbolic":"method"}],"defineFormCode":[{"__symbolic":"method"}],"getCurrentState":[{"__symbolic":"method"}],"getCurrentMode":[{"__symbolic":"method"}],"getFormParameter":[{"__symbolic":"method"}],"getSubject":[{"__symbolic":"method"}],"getformSubject":[{"__symbolic":"method"}],"preocessInputParams":[{"__symbolic":"method"}],"subscribeSectionActivation":[{"__symbolic":"method"}],"subscribeFieldsSubjects":[{"__symbolic":"method"}],"subscribeActionSubjects":[{"__symbolic":"method"}],"subscribeTableSubjects":[{"__symbolic":"method"}],"formInit":[{"__symbolic":"method"}],"checkErrorRecordReceived":[{"__symbolic":"method"}],"errorOccured":[{"__symbolic":"method"}],"changeState":[{"__symbolic":"method"}],"changeFormMode":[{"__symbolic":"method"}],"requestFormAction":[{"__symbolic":"method"}],"updateFormWithServerData":[{"__symbolic":"method"}],"addSectionActivation":[{"__symbolic":"method"}],"addSectionInactivation":[{"__symbolic":"method"}],"addActionMethodStart":[{"__symbolic":"method"}],"addActionMethodFinish":[{"__symbolic":"method"}],"launchSectionActivation":[{"__symbolic":"method"}],"launchSectionInactivation":[{"__symbolic":"method"}],"startAction":[{"__symbolic":"method"}],"startServerAction":[{"__symbolic":"method"}],"finishAction":[{"__symbolic":"method"}],"completeGlobalAction":[{"__symbolic":"method"}],"addFieldInputValidation":[{"__symbolic":"method"}],"addFieldValidationStart":[{"__symbolic":"method"}],"addFieldValidationFinish":[{"__symbolic":"method"}],"startFieldInputValidation":[{"__symbolic":"method"}],"startFieldValidation":[{"__symbolic":"method"}],"startServerFieldValidation":[{"__symbolic":"method"}],"finishFieldValidation":[{"__symbolic":"method"}],"continueFieldValidation":[{"__symbolic":"method"}],"addTableActionStart":[{"__symbolic":"method"}],"addTableActionFinish":[{"__symbolic":"method"}],"addTableSelectionStart":[{"__symbolic":"method"}],"addTableSelectionFinish":[{"__symbolic":"method"}],"addTableGetDataStart":[{"__symbolic":"method"}],"addTableGetDataFinish":[{"__symbolic":"method"}],"startTableGlobalAction":[{"__symbolic":"method"}],"startTableServerGlobalAction":[{"__symbolic":"method"}],"finishTableGlobalAction":[{"__symbolic":"method"}],"startTableAction":[{"__symbolic":"method"}],"startTableServerAction":[{"__symbolic":"method"}],"completeInlineAction":[{"__symbolic":"method"}],"finishTableAction":[{"__symbolic":"method"}],"startTableRecordSelection":[{"__symbolic":"method"}],"startTableServerRecordSelection":[{"__symbolic":"method"}],"finishTableRecordSelection":[{"__symbolic":"method"}],"startTableSelectionAction":[{"__symbolic":"method"}],"startTableServerSelectionAction":[{"__symbolic":"method"}],"finishTableSelectionAction":[{"__symbolic":"method"}],"startTableGetData":[{"__symbolic":"method"}],"startTableServerGetData":[{"__symbolic":"method"}],"finishTableGetData":[{"__symbolic":"method"}],"checkSectionRequiredFields":[{"__symbolic":"method"}],"validateSectionConsistency":[{"__symbolic":"method"}],"copyTableRecordToFields":[{"__symbolic":"method"}],"defineEditionTable":[{"__symbolic":"method"}],"enableRecordEdition":[{"__symbolic":"method"}],"disableRecordEdition":[{"__symbolic":"method"}],"recordEditionValidate":[{"__symbolic":"method"}]}},"LibEventManagerService":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[null]}],"addEventName":[{"__symbolic":"method"}],"getEventNames":[{"__symbolic":"method"}],"getSubject":[{"__symbolic":"method"}],"subscribe":[{"__symbolic":"method"}],"next":[{"__symbolic":"method"}]}},"LibFormManagerService":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor"}],"getFormDefinition":[{"__symbolic":"method"}],"execServerAction":[{"__symbolic":"method"}],"goToRoute":[{"__symbolic":"method"}],"resetPageStack":[{"__symbolic":"method"}],"cleanStack":[{"__symbolic":"method"}],"loadStack":[{"__symbolic":"method"}],"saveStack":[{"__symbolic":"method"}],"stack":[{"__symbolic":"method"}],"unstack":[{"__symbolic":"method"}],"getInputData":[{"__symbolic":"method"}],"getOriginInfo":[{"__symbolic":"method"}],"changeForm":[{"__symbolic":"method"}],"changePreviousForm":[{"__symbolic":"method"}]}},"LibFileManagementService":{"__symbolic":"class","members":{"openFile":[{"__symbolic":"method"}],"saveFileFromURL":[{"__symbolic":"method"}],"saveFile":[{"__symbolic":"method"}]}},"TuainNgFormsLibModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":32,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"BasicFormComponent"},{"__symbolic":"reference","name":"ActionComponent"},{"__symbolic":"reference","name":"FieldComponent"},{"__symbolic":"reference","name":"ElementComponent"},{"__symbolic":"reference","name":"FormErrorComponent"},{"__symbolic":"reference","name":"FormHeaderComponent"},{"__symbolic":"reference","name":"SectionComponent"},{"__symbolic":"reference","name":"SubSectionComponent"},{"__symbolic":"reference","name":"LibTableFilterComponent"},{"__symbolic":"reference","name":"LibTableRecordActionComponent"},{"__symbolic":"reference","name":"LibTableRecordFieldComponent"},{"__symbolic":"reference","name":"LibTableComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":35,"character":4},{"__symbolic":"reference","module":"@angular/router","name":"RouterModule","line":36,"character":4},{"__symbolic":"reference","module":"@angular/forms","name":"FormsModule","line":37,"character":4}],"exports":[{"__symbolic":"reference","name":"BasicFormComponent"},{"__symbolic":"reference","name":"ActionComponent"},{"__symbolic":"reference","name":"FieldComponent"},{"__symbolic":"reference","name":"ElementComponent"},{"__symbolic":"reference","name":"FormErrorComponent"},{"__symbolic":"reference","name":"FormHeaderComponent"},{"__symbolic":"reference","name":"SectionComponent"},{"__symbolic":"reference","name":"SubSectionComponent"},{"__symbolic":"reference","name":"LibTableFilterComponent"},{"__symbolic":"reference","name":"LibTableRecordActionComponent"},{"__symbolic":"reference","name":"LibTableRecordFieldComponent"},{"__symbolic":"reference","name":"LibTableComponent"}]}]}],"members":{}}},"origins":{"ActionComponent":"./lib/components/elements/action.component","FieldComponent":"./lib/components/elements/field.component","ElementComponent":"./lib/components/elements/layout/element.component","FormErrorComponent":"./lib/components/elements/layout/form-error.component","FormHeaderComponent":"./lib/components/elements/layout/form-header.component","SectionComponent":"./lib/components/elements/layout/section.component","SubSectionComponent":"./lib/components/elements/layout/sub-section.component","LibTableFilterComponent":"./lib/components/elements/tables/table-filter.component","LibTableRecordActionComponent":"./lib/components/elements/tables/table-record-action.component","LibTableRecordFieldComponent":"./lib/components/elements/tables/table-record-field.component","LibTableComponent":"./lib/components/elements/tables/table.component","BasicFormComponent":"./lib/components/forms/basic-form","LibEventManagerService":"./lib/services/event-manager.service","LibFormManagerService":"./lib/services/form-manager.service","LibFileManagementService":"./lib/services/file-manager.service","TuainNgFormsLibModule":"./lib/tuain-ng-forms-lib.module"},"importAs":"tuain-ng-forms-lib"}
|