@synerise/ds-table 0.59.1 → 0.59.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,17 @@
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
+ ## [0.59.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@0.59.1...@synerise/ds-table@0.59.2) (2024-10-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **table:** scrollwidth table calc ([d766422](https://github.com/synerise/synerise-design/commit/d7664229c8f046263afd703d760203157814f00b))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.59.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@0.59.0...@synerise/ds-table@0.59.1) (2024-10-23)
7
18
 
8
19
  **Note:** Version bump only for package @synerise/ds-table
@@ -567,7 +567,7 @@ var VirtualTable = function VirtualTable(props, forwardedRef) {
567
567
  headerElement && setScrollWidth(headerElement.scrollWidth);
568
568
  titleElement && setTitleBarHeight(titleElement.clientHeight);
569
569
  }
570
- }, [tableWidth, mergedColumns.length, dataSource.length]);
570
+ }, [tableWidth, mergedColumns.length, dataSource.length, loading]);
571
571
 
572
572
  var _useElementInView = useElementInView({
573
573
  rootMargin: "0px 0px 12px 0px",
@@ -593,8 +593,7 @@ var VirtualTable = function VirtualTable(props, forwardedRef) {
593
593
  sticky: dataSource.length ? sticky : undefined,
594
594
  loading: loading,
595
595
  scroll: scrollValue,
596
- className: classNames // @ts-ignore
597
- ,
596
+ className: classNames,
598
597
  columns: finalColumns,
599
598
  pagination: false,
600
599
  components: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-table",
3
- "version": "0.59.1",
3
+ "version": "0.59.2",
4
4
  "description": "Table UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -77,5 +77,5 @@
77
77
  "react": ">=16.9.0 <= 17.0.2",
78
78
  "styled-components": "5.0.1"
79
79
  },
80
- "gitHead": "c45f411bd0eac69ae70b6c948da1c530539b01d6"
80
+ "gitHead": "dc8111aba945c022fc4c8598773c9c40de1a6171"
81
81
  }