@visns-studio/visns-components 5.15.34 → 5.15.35

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/package.json CHANGED
@@ -94,7 +94,7 @@
94
94
  "react-dom": "^17.0.0 || ^18.0.0"
95
95
  },
96
96
  "name": "@visns-studio/visns-components",
97
- "version": "5.15.34",
97
+ "version": "5.15.35",
98
98
  "description": "Various packages to assist in the development of our Custom Applications.",
99
99
  "main": "src/index.js",
100
100
  "files": [
@@ -1380,6 +1380,7 @@ export const renderRelationArrayColumn = ({
1380
1380
  sortable: isSortable,
1381
1381
  filterEditor: filterEditor,
1382
1382
  filterEditorProps: filterEditorProps,
1383
+ className: 'cell-word-wrap',
1383
1384
  render: ({ data }) => {
1384
1385
  const relationValue = column.id.reduce(
1385
1386
  (acc, id) =>
@@ -1454,7 +1455,11 @@ export const renderRelationArrayColumn = ({
1454
1455
  }
1455
1456
 
1456
1457
  return (
1457
- <CellWithTooltip value={result} columnType="relationArray">
1458
+ <CellWithTooltip
1459
+ value={result}
1460
+ columnType="relationArray"
1461
+ wordWrap
1462
+ >
1458
1463
  <span>{parse(result)}</span>
1459
1464
  </CellWithTooltip>
1460
1465
  );
@@ -1479,7 +1484,11 @@ export const renderRelationArrayColumn = ({
1479
1484
  }
1480
1485
 
1481
1486
  return (
1482
- <CellWithTooltip value={result} columnType="relationArray">
1487
+ <CellWithTooltip
1488
+ value={result}
1489
+ columnType="relationArray"
1490
+ wordWrap
1491
+ >
1483
1492
  <span>{parse(result)}</span>
1484
1493
  </CellWithTooltip>
1485
1494
  );