tuain-ng-forms-lib 15.0.27 → 15.0.30

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.
@@ -13,6 +13,7 @@ interface Transition {
13
13
  interface StateFlow {
14
14
  defaultState: string;
15
15
  states: string[];
16
+ stateDescriptions: string[];
16
17
  transitions: Transition[];
17
18
  }
18
19
  export interface FieldPayload {
@@ -52,22 +53,27 @@ export declare class FormStructureAndData {
52
53
  private _immutableData;
53
54
  private _extraInfo;
54
55
  private _exclusiveSectionsByAttr;
56
+ customAttributes: any;
55
57
  constructor();
56
58
  setConfig(formConfig: any): void;
57
59
  cleanForm(): void;
58
60
  loadDefinition(definitionReceived: any): void;
59
61
  get defaultState(): string;
60
62
  get states(): any[];
63
+ get stateDescriptions(): any[];
61
64
  supportState(state?: string): boolean;
62
65
  changeState(newState: string): boolean;
63
66
  get stateChange(): Subject<any>;
64
- setStateFlow(states?: any, transitions?: any, defaultState?: string): void;
67
+ setStateFlow(states?: any, transitions?: any, defaultState?: string, stateDescriptions?: any[]): void;
65
68
  getImmutableElement(name: string): any;
66
69
  set immutableData(immutableData: any);
67
70
  get immutableData(): any;
68
71
  getExtraInfo(name: string): any;
69
72
  set extraInfo(extraInfo: any);
70
73
  get extraInfo(): any;
74
+ getCustomAttribute(name: string): any;
75
+ setCustomAttribute(name: string, value: any): void;
76
+ setCustomAttributes(attributes: any): void;
71
77
  get fieldNames(): string[];
72
78
  getFields(): FieldDescriptor[];
73
79
  getFieldNames(): string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuain-ng-forms-lib",
3
- "version": "15.0.27",
3
+ "version": "15.0.30",
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",