tuain-ng-forms-lib 15.1.2 → 15.1.5

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.
@@ -73,7 +73,7 @@ export declare class FormStructureAndData {
73
73
  get extraInfo(): any;
74
74
  getCustomAttribute(name: string): any;
75
75
  setCustomAttribute(name: string, value: any): void;
76
- setCustomAttributes(attributes: any): void;
76
+ setCustomAttributes(attributes: any): FormStructureAndData;
77
77
  get fieldNames(): string[];
78
78
  getFields(): FieldDescriptor[];
79
79
  getFieldNames(): string[];
@@ -4,6 +4,7 @@ export declare class FormPiece {
4
4
  protected _isForced: boolean;
5
5
  protected _absoluteVisible: boolean;
6
6
  protected _absoluteDisabled: boolean;
7
+ protected _widget: any;
7
8
  protected visibleStates: string[];
8
9
  protected enabledStates: string[];
9
10
  _form: any;
@@ -14,7 +15,7 @@ export declare class FormPiece {
14
15
  constructor(pieceDefinition: any, formConfig: any);
15
16
  getCustomAttribute(name: string): any;
16
17
  setCustomAttribute(name: string, value: any): void;
17
- setCustomAttributes(attributes: any): void;
18
+ setCustomAttributes(attributes: any): FormPiece;
18
19
  matchAttribute(name: string, value: string): boolean;
19
20
  setVisibleStates(newStates: any): void;
20
21
  addVisibleState(state: string): void;
@@ -43,4 +44,6 @@ export declare class FormPiece {
43
44
  formStateChangeCustomSubscribe(form: any, formChangeSubject: any): void;
44
45
  formStateChange(state: any): void;
45
46
  connectWithParentForm(form: any, formChangeSubject: any): void;
47
+ set widget(widget: any);
48
+ get widget(): any;
46
49
  }
@@ -37,7 +37,6 @@ export declare class RecordTable extends FormElement {
37
37
  selectionBackend: boolean;
38
38
  selectionField: string;
39
39
  allSelected: boolean;
40
- widget: any;
41
40
  tableCode: string;
42
41
  tableTitle: string;
43
42
  currentPage: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuain-ng-forms-lib",
3
- "version": "15.1.2",
3
+ "version": "15.1.5",
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",