@sumaris-net/ngx-components 1.20.33 → 1.20.34
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 +4 -4
- 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/doc/changelog.md +3 -0
- package/esm2015/src/app/core/table/table.class.js +5 -5
- package/fesm2015/sumaris-net.ngx-components.js +4 -4
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/table.class.d.ts +2 -4
package/package.json
CHANGED
|
@@ -264,22 +264,20 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
264
264
|
* @param event
|
|
265
265
|
* @param row
|
|
266
266
|
* @param opts Use interactive=false to avoid user interaction (e.g. user confirmation)
|
|
267
|
-
*
|
|
267
|
+
* And to force deletion even if table is busy
|
|
268
268
|
*/
|
|
269
269
|
deleteRow(event: UIEvent | null, row: TableElement<T>, opts?: {
|
|
270
270
|
interactive?: boolean;
|
|
271
|
-
skipIfLoading?: boolean;
|
|
272
271
|
}): Promise<boolean>;
|
|
273
272
|
/**
|
|
274
273
|
*
|
|
275
274
|
* @param event
|
|
276
275
|
* @param rows
|
|
277
276
|
* @param opts Use interactive=false to avoid user interaction (e.g. user confirmation)
|
|
278
|
-
*
|
|
277
|
+
* And to force deletion even if table is busy
|
|
279
278
|
*/
|
|
280
279
|
deleteRows(event: UIEvent | null, rows: TableElement<T>[], opts?: {
|
|
281
280
|
interactive?: boolean;
|
|
282
|
-
skipIfLoading?: boolean;
|
|
283
281
|
}): Promise<number>;
|
|
284
282
|
selectRowById(id: number): Promise<boolean>;
|
|
285
283
|
/**
|