tuain-ng-forms-lib 12.0.7 → 12.0.8
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 +12 -1
- package/bundles/tuain-ng-forms-lib.umd.js.map +1 -1
- package/esm2015/lib/classes/forms/form.js +4 -1
- package/esm2015/lib/components/forms/basic-form.js +2 -2
- package/fesm2015/tuain-ng-forms-lib.js +4 -1
- package/fesm2015/tuain-ng-forms-lib.js.map +1 -1
- package/lib/classes/forms/form.d.ts +1 -0
- package/lib/components/forms/basic-form.d.ts +1 -0
- package/package.json +1 -1
|
@@ -47,6 +47,7 @@ export declare class FormStructureAndData {
|
|
|
47
47
|
sections(): RecordFormSection[];
|
|
48
48
|
sectionTitles(): string[];
|
|
49
49
|
getSections(): RecordFormSection[];
|
|
50
|
+
get visibleSections(): RecordFormSection[];
|
|
50
51
|
numSections(): number;
|
|
51
52
|
getSectionsTitles(): string[];
|
|
52
53
|
getSectionObject(elementId: any): any;
|
|
@@ -98,6 +98,7 @@ export declare class BasicFormComponent {
|
|
|
98
98
|
disableActions(actionArray: any): void;
|
|
99
99
|
getStates(): string[];
|
|
100
100
|
getSections(): import("../../classes/forms/section").RecordFormSection[];
|
|
101
|
+
get visibleSections(): import("../../classes/forms/section").RecordFormSection[];
|
|
101
102
|
getSection(sectionCode: any): any;
|
|
102
103
|
activateSection(sectionCode: any): any;
|
|
103
104
|
getSubSection(sectionCode: any, subsectionCode: any): any;
|