@trudb/tru-common-lib 0.2.304 → 0.2.305

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.
@@ -8136,8 +8136,12 @@ class TruDataGrid {
8136
8136
  }
8137
8137
  };
8138
8138
  onCellClicked = (cellData) => {
8139
+ cellData.event.stopPropagation();
8140
+ cellData.event.preventDefault();
8139
8141
  };
8140
8142
  onRowClicked = (rowData) => {
8143
+ rowData.event.stopPropagation();
8144
+ rowData.event.preventDefault();
8141
8145
  };
8142
8146
  onCellDoubleClicked = (gridConfig) => {
8143
8147
  if (gridConfig.colDef.cellClass === 'ag-pk-aligned-cell')