@esfaenza/es-table 11.2.83-beta5 → 11.2.83-beta6
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/esfaenza-es-table.umd.js +2 -1
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +3 -2
- package/fesm2015/esfaenza-es-table.js +2 -1
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +1 -1
|
@@ -4628,8 +4628,9 @@ class EsTableComponent {
|
|
|
4628
4628
|
return { id: "", description: "" };
|
|
4629
4629
|
}
|
|
4630
4630
|
mousedown(event, rowItem, item) {
|
|
4631
|
+
var _a;
|
|
4631
4632
|
// Tutti i click su una cella già in edit non devono effettuare la selezione della riga
|
|
4632
|
-
if ((this.DynamicRowColumnsDefinition.length > 0 && rowItem.edits[item._hash]._editing) ||
|
|
4633
|
+
if ((this.DynamicRowColumnsDefinition.length > 0 && rowItem.edits && ((_a = rowItem.edits[item._hash]) === null || _a === void 0 ? void 0 : _a._editing)) ||
|
|
4633
4634
|
rowItem._editing)
|
|
4634
4635
|
return;
|
|
4635
4636
|
var id = event.currentTarget.id;
|