@simple-table/react 3.8.1 → 3.8.3

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.
@@ -17,7 +17,7 @@ export interface ContentHeightConfig {
17
17
  /**
18
18
  * Converts a height value (string or number) to pixels
19
19
  */
20
- export declare const convertHeightToPixels: (heightValue: string | number) => number;
20
+ export declare const convertHeightToPixels: (heightValue: string | number, container?: Element | null) => number;
21
21
  /**
22
22
  * Calculates the content height for the table.
23
23
  * This is a pure function alternative to the useContentHeight hook.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simple-table/react",
3
- "version": "3.8.1",
3
+ "version": "3.8.3",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/types/react/src/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  "react-dom": ">=18.0.0"
30
30
  },
31
31
  "dependencies": {
32
- "simple-table-core": "3.8.1"
32
+ "simple-table-core": "3.8.3"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@rollup/plugin-alias": "^4.0.4",