@sumaris-net/ngx-components 2.4.0-rc3 → 2.4.0-rc5
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/esm2020/src/app/core/table/async-table.class.mjs +2 -2
- package/esm2020/src/app/core/table/entities-async-table-datasource.class.mjs +1 -1
- package/esm2020/src/app/core/table/entities-table-datasource.class.mjs +1 -1
- package/esm2020/src/app/core/table/table.model.mjs +1 -1
- package/fesm2015/sumaris-net.ngx-components.mjs +1 -1
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/entities-async-table-datasource.class.d.ts +2 -1
- package/src/app/core/table/entities-table-datasource.class.d.ts +2 -1
- package/src/app/core/table/table.model.d.ts +3 -0
|
@@ -30606,7 +30606,7 @@ class AppAsyncTable {
|
|
|
30606
30606
|
const confirmed = (!opts || opts.interactive !== false);
|
|
30607
30607
|
// Ask user confirmation, if cancel
|
|
30608
30608
|
if (!confirmed && row.dirty && (this.confirmBeforeCancel || this.onBeforeCancelRows.observers.length > 0)) {
|
|
30609
|
-
event
|
|
30609
|
+
event?.stopPropagation();
|
|
30610
30610
|
if (!await this.canCancelRows([row], opts)) {
|
|
30611
30611
|
return;
|
|
30612
30612
|
}
|