@sumaris-net/ngx-components 1.23.1 → 1.23.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 +24 -38
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/table/entities-table-datasource.class.js +11 -18
- package/esm2015/src/app/core/table/table.class.js +14 -20
- package/fesm2015/sumaris-net.ngx-components.js +23 -36
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/entities-table-datasource.class.d.ts +1 -1
- package/src/app/core/table/table.class.d.ts +1 -4
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -25,7 +25,6 @@ export declare class EntitiesTableDataSource<T extends IEntity<T, ID>, F = any,
|
|
|
25
25
|
protected _creating: boolean;
|
|
26
26
|
protected _saving: boolean;
|
|
27
27
|
protected _stopWatching$: Subject<any>;
|
|
28
|
-
protected _editingRowCount: number;
|
|
29
28
|
protected _fetchMoreFn: FetchMoreFn<LoadResult<T>>;
|
|
30
29
|
loadingSubject: BehaviorSubject<boolean>;
|
|
31
30
|
/**
|
|
@@ -71,6 +70,7 @@ export declare class EntitiesTableDataSource<T extends IEntity<T, ID>, F = any,
|
|
|
71
70
|
deleteAll(rows: TableElement<T>[]): Promise<any>;
|
|
72
71
|
getRow(id: number): TableElement<T>;
|
|
73
72
|
getRows(): TableElement<T>[];
|
|
73
|
+
hasSomeEditingRow(): boolean;
|
|
74
74
|
createNew(insertAt?: number, options?: {
|
|
75
75
|
editing: boolean;
|
|
76
76
|
}): Promise<TableElement<T> | undefined>;
|
|
@@ -89,7 +89,6 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
89
89
|
* @deprecated
|
|
90
90
|
*/
|
|
91
91
|
get saving$(): Observable<boolean>;
|
|
92
|
-
isRateLimitReached: boolean;
|
|
93
92
|
selection: SelectionModel<TableElement<T>>;
|
|
94
93
|
editedRow: TableElement<T>;
|
|
95
94
|
autocompleteFields: {
|
|
@@ -235,9 +234,7 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
235
234
|
confirmAndAdd(event?: Event, row?: TableElement<T>): boolean;
|
|
236
235
|
confirmAndBackward(event?: Event, row?: TableElement<T>): boolean;
|
|
237
236
|
confirmAndForward(event?: Event, row?: TableElement<T>): boolean | Promise<boolean>;
|
|
238
|
-
editRowById
|
|
239
|
-
focusColumn?: string;
|
|
240
|
-
}): Promise<void>;
|
|
237
|
+
private editRowById;
|
|
241
238
|
/**
|
|
242
239
|
* Confirm the creation of the given row, or if not specified the currently edited row
|
|
243
240
|
*
|