@gridsuite/commons-ui 0.51.0 → 0.52.0

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.
@@ -392,8 +392,8 @@ class MuiVirtualizedTable extends PureComponent {
392
392
  );
393
393
  });
394
394
  __publicField(this, "onClickableRowClick", (event) => {
395
- var _a;
396
- if (!(((_a = event.rowData) == null ? void 0 : _a.notClickable) === true)) {
395
+ var _a, _b, _c;
396
+ if (((_a = event.rowData) == null ? void 0 : _a.notClickable) !== true || ((_b = event.event) == null ? void 0 : _b.shiftKey) || ((_c = event.event) == null ? void 0 : _c.ctrlKey)) {
397
397
  this.props.onRowClick(event);
398
398
  }
399
399
  });
@@ -11,7 +11,8 @@ const styles = {
11
11
  marginBottom: "8px"
12
12
  },
13
13
  title: {
14
- marginLeft: "18px"
14
+ marginLeft: "18px",
15
+ display: { xs: "none", lg: "block" }
15
16
  },
16
17
  clickable: {
17
18
  cursor: "pointer"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.51.0",
3
+ "version": "0.52.0",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "engines": {
6
6
  "npm": ">=9",