@sumaris-net/ngx-components 18.2.35-alpha2 → 18.2.35-alpha3
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/esm2022/src/app/core/form/entity/entity-editor.class.mjs +9 -6
- package/esm2022/src/app/core/form/entity/tab-editor.class.mjs +11 -8
- package/fesm2022/sumaris-net.ngx-components.mjs +18 -12
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/entity/entity-editor.class.d.ts +1 -1
- package/src/app/core/form/entity/tab-editor.class.d.ts +1 -0
package/package.json
CHANGED
|
@@ -186,7 +186,7 @@ export declare abstract class AppEntityEditor<T extends Entity<T, ID>, S extends
|
|
|
186
186
|
* @param queryParams
|
|
187
187
|
* @protected
|
|
188
188
|
*/
|
|
189
|
-
protected updateRoute(data
|
|
189
|
+
protected updateRoute(data?: T, queryParams?: any): Promise<boolean>;
|
|
190
190
|
/**
|
|
191
191
|
* Open the first tab that is invalid
|
|
192
192
|
*/
|
|
@@ -60,6 +60,7 @@ export declare abstract class AppTabEditor<T = any, ID = number, O = any> extend
|
|
|
60
60
|
emitEvent?: boolean;
|
|
61
61
|
}): Promise<void>;
|
|
62
62
|
protected abstract getFirstInvalidTabIndex(): number;
|
|
63
|
+
protected updateRoute(): Promise<boolean>;
|
|
63
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppTabEditor<any, any, any>, [{ optional: true; }, null, null, null, null, { optional: true; }]>;
|
|
64
65
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AppTabEditor<any, any, any>, never, never, { "queryTabIndexParamName": { "alias": "queryTabIndexParamName"; "required": false; }; "selectedTabIndex": { "alias": "selectedTabIndex"; "required": false; }; }, { "selectedTabIndexChange": "selectedTabIndexChange"; }, never, never, false, never>;
|
|
65
66
|
}
|