tuain-ng-forms-lib 12.0.46 → 12.0.47

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.
@@ -122,7 +122,7 @@ export declare class FormStructureAndData {
122
122
  showSubSections(code: string, subCodes: string[] | string): void;
123
123
  hideSubSections(code: string, subCodes: string[] | string): void;
124
124
  getSectionActions(code: any): FormAction[];
125
- getSectionActionNames(code: any): FormAction[];
125
+ getSectionActionNames(code: any): string[];
126
126
  activateSection(code: string): void;
127
127
  execOnSections(codes: string[] | string, functionName: string): void;
128
128
  execOnSubSections(code: string, subNames: string[] | string, functionName: string): void;
@@ -1,4 +1,5 @@
1
1
  import { Subject } from 'rxjs';
2
+ import { FormAction } from './action';
2
3
  import { RecordFormSubSection } from './subsection';
3
4
  export declare class RecordFormSection {
4
5
  private readonly _activation;
@@ -28,8 +29,8 @@ export declare class RecordFormSection {
28
29
  getVisibleSubsections(state: any): RecordFormSubSection[];
29
30
  getSubsection(subSectionCode: any): any;
30
31
  getFields(): any[];
31
- getActions(): any[];
32
- getActionNames(): any[];
32
+ getActions(): FormAction[];
33
+ getActionNames(): string[];
33
34
  getFieldNames(): any[];
34
35
  getField(name: any): any;
35
36
  supportState(state: any): boolean;
@@ -1,3 +1,4 @@
1
+ import { FormAction } from './action';
1
2
  export declare class RecordFormSubSection {
2
3
  visible: boolean;
3
4
  _customRender: string;
@@ -18,8 +19,8 @@ export declare class RecordFormSubSection {
18
19
  getField(name: any): any;
19
20
  getFields(): any[];
20
21
  getFieldNames(): any[];
21
- getActions(): any[];
22
- getActionNames(): any[];
22
+ getActions(): FormAction[];
23
+ getActionNames(): string[];
23
24
  viewOnState(state: any): boolean;
24
25
  supportMode(state: any): boolean;
25
26
  }
@@ -116,7 +116,7 @@ export declare class BasicFormComponent {
116
116
  showSubSections(code: string, subCodes: string[] | string): void;
117
117
  hideSubSections(code: string, subCodes: string[] | string): void;
118
118
  getSectionActions(code: string): FormAction[];
119
- getSectionActionNames(code: string): FormAction[];
119
+ getSectionActionNames(code: string): string[];
120
120
  getTables(): RecordTable[];
121
121
  showTables(codes: string[] | string): void;
122
122
  hideTables(codes: string[] | string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuain-ng-forms-lib",
3
- "version": "12.0.46",
3
+ "version": "12.0.47",
4
4
  "description": "Componentes y Clases Angular para la gestión de formularios TUAIN",
5
5
  "author": "Mauricio Méndez, Imix Consulting",
6
6
  "license": "MIT",