@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/bundles/sumaris-net.ngx-components.umd.js +16 -1
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/editor.class.js +13 -2
- package/fesm2015/sumaris-net.ngx-components.js +12 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/editor.class.d.ts +3 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -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)[]):
|
|
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;
|