@sumaris-net/ngx-components 0.26.1 → 0.26.2
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 +6 -2
- 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/entity-editor.class.js +7 -3
- package/fesm2015/sumaris-net.ngx-components.js +6 -2
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/entity-editor.class.d.ts +4 -0
package/package.json
CHANGED
|
@@ -129,6 +129,10 @@ export declare abstract class AppEntityEditor<T extends Entity<T, ID>, S extends
|
|
|
129
129
|
protected abstract get form(): FormGroup;
|
|
130
130
|
protected abstract getFirstInvalidTabIndex(): number;
|
|
131
131
|
protected abstract canUserWrite(data: T): boolean;
|
|
132
|
+
/**
|
|
133
|
+
* Return undefined to keep same tab
|
|
134
|
+
* @protected
|
|
135
|
+
*/
|
|
132
136
|
protected computeNextTabIndex(): number | undefined;
|
|
133
137
|
unload(): Promise<void>;
|
|
134
138
|
protected onBeforeEntityLoad(): Promise<void>;
|