@sumaris-net/ngx-components 1.21.6 → 1.21.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.21.6",
4
+ "version": "1.21.7",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -88,6 +88,7 @@ export declare abstract class AppEditor<T = any, ID = number, O = any> implement
88
88
  content: IonContent;
89
89
  get tables(): AppTable<any>[];
90
90
  get forms(): AppForm<any>[];
91
+ get editors(): AppEditor<any>[];
91
92
  get dirty(): boolean;
92
93
  /**
93
94
  * Is valid (tables and forms)
@@ -106,7 +107,8 @@ export declare abstract class AppEditor<T = any, ID = number, O = any> implement
106
107
  ngAfterViewInit(): void;
107
108
  ngOnDestroy(): void;
108
109
  addChildForm(form: IAppForm | IAppFormGetter): this;
109
- addChildForms(forms: (IAppForm | IAppFormGetter)[]): AppEditor<T, ID, O>;
110
+ addChildForms(forms: (IAppForm | IAppFormGetter)[]): void;
111
+ removeChildForm(form: IAppForm | IAppFormGetter): IAppForm | IAppFormGetter;
110
112
  disable(opts?: {
111
113
  onlySelf?: boolean;
112
114
  emitEvent?: boolean;