@synerise/ds-table 1.8.1 → 1.8.2

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.8.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.8.1...@synerise/ds-table@1.8.2) (2026-01-21)
7
+
8
+ ### Bug Fixes
9
+
10
+ - release patch ([4c43595](https://github.com/synerise/synerise-design/commit/4c43595d0fff3d547189a4e80c40d5872381d17b))
11
+
6
12
  ## [1.8.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.8.0...@synerise/ds-table@1.8.1) (2026-01-20)
7
13
 
8
14
  **Note:** Version bump only for package @synerise/ds-table
@@ -4,6 +4,9 @@ import Tooltip from '@synerise/ds-tooltip';
4
4
  import { EXPANDED_ROW_PROPERTY } from '../VirtualTable/constants';
5
5
  import { getValueFromPath } from './getValueFromPath';
6
6
  export var columnWithCellTooltip = function columnWithCellTooltip(column) {
7
+ if (!column.getCellTooltipProps) {
8
+ return column;
9
+ }
7
10
  var renderColumn = function renderColumn(value, rowData, columnIndex) {
8
11
  var cellTooltip = column.getCellTooltipProps == null ? void 0 : column.getCellTooltipProps(rowData);
9
12
  if (rowData[EXPANDED_ROW_PROPERTY] && column.childRender) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-table",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "Table UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -41,22 +41,24 @@
41
41
  "@synerise/ds-button-group": "^1.1.29",
42
42
  "@synerise/ds-checkbox": "^1.2.6",
43
43
  "@synerise/ds-copy-icon": "^1.0.6",
44
- "@synerise/ds-dropdown": "^1.1.9",
44
+ "@synerise/ds-dropdown": "^1.1.10",
45
45
  "@synerise/ds-flag": "^1.0.6",
46
46
  "@synerise/ds-icon": "^1.10.0",
47
47
  "@synerise/ds-input": "^1.5.6",
48
48
  "@synerise/ds-input-number": "^1.2.21",
49
- "@synerise/ds-list-item": "^1.3.0",
49
+ "@synerise/ds-list-item": "^1.3.1",
50
50
  "@synerise/ds-loader": "^1.0.11",
51
- "@synerise/ds-menu": "^1.3.0",
51
+ "@synerise/ds-menu": "^1.3.1",
52
52
  "@synerise/ds-modal": "^1.2.22",
53
+ "@synerise/ds-pagination": "^1.0.39",
53
54
  "@synerise/ds-result": "^1.0.35",
54
55
  "@synerise/ds-scrollbar": "^1.2.5",
55
- "@synerise/ds-search": "^1.4.0",
56
+ "@synerise/ds-search": "^1.4.1",
57
+ "@synerise/ds-select": "^1.3.6",
56
58
  "@synerise/ds-skeleton": "^1.0.30",
57
59
  "@synerise/ds-status": "^1.3.5",
58
60
  "@synerise/ds-tag": "^1.4.5",
59
- "@synerise/ds-tags": "^1.5.10",
61
+ "@synerise/ds-tags": "^1.5.11",
60
62
  "@synerise/ds-tooltip": "^1.3.5",
61
63
  "@synerise/ds-typography": "^1.0.28",
62
64
  "@synerise/ds-utils": "^1.5.3",
@@ -82,5 +84,5 @@
82
84
  "react-intl": ">=3.12.0 <= 6.8",
83
85
  "styled-components": "^5.3.3"
84
86
  },
85
- "gitHead": "db758824923a2a231a0de460f0d6d10739514cda"
87
+ "gitHead": "1ab50150aadeb21d9464b1558d0d1ea8808b85e5"
86
88
  }