Skip to content

Commit 18c75bb

Browse files
committed
upgrade hyparquet and hightable, and publish versions of packages
1 parent 901d95a commit 18c75bb

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

apps/hightable-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"typecheck": "tsc"
1515
},
1616
"dependencies": {
17-
"hightable": "0.7.3",
17+
"hightable": "0.8.0",
1818
"react": "18.3.1",
1919
"react-dom": "18.3.1"
2020
}

apps/hyparquet-demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"typecheck": "tsc"
1515
},
1616
"dependencies": {
17-
"@hyparam/components": "0.1.11",
18-
"hightable": "0.7.3",
19-
"hyparquet": "1.6.4",
17+
"@hyparam/components": "0.1.12",
18+
"hightable": "0.8.0",
19+
"hyparquet": "1.8.0",
2020
"hyparquet-compressors": "1.0.0",
2121
"react": "18.3.1",
2222
"react-dom": "18.3.1"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
},
1717
"overrides": {
1818
"highlight.js": "11.10.0",
19-
"hightable": "0.7.3",
20-
"hyparquet": "1.6.4",
19+
"hightable": "0.8.0",
20+
"hyparquet": "1.8.0",
2121
"hyparquet-compressors": "1.0.0",
2222
"react": "18.3.1",
2323
"react-dom": "18.3.1"

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperparam",
3-
"version": "0.2.14",
3+
"version": "0.2.15",
44
"description": "Hyperparam CLI",
55
"author": "Hyperparam",
66
"homepage": "https://hyperparam.app",
@@ -29,7 +29,7 @@
2929
},
3030
"dependencies": {
3131
"highlight.js": "11.10.0",
32-
"@hyparam/components": "0.1.11",
32+
"@hyparam/components": "0.1.12",
3333
"react": "18.3.1",
3434
"react-dom": "18.3.1"
3535
},

packages/components/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyparam/components",
3-
"version": "0.1.11",
3+
"version": "0.1.12",
44
"description": "React components for hyparam apps",
55
"keywords": [
66
"component",
@@ -40,8 +40,8 @@
4040
"typecheck": "tsc"
4141
},
4242
"dependencies": {
43-
"hightable": "0.7.3",
44-
"hyparquet": "1.6.4",
43+
"hightable": "0.8.0",
44+
"hyparquet": "1.8.0",
4545
"hyparquet-compressors": "1.0.0"
4646
},
4747
"peerDependencies": {

packages/components/src/components/viewers/ParquetView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default function ParquetView({ source, setProgress, setError, config }: V
8989
return appendSearchParams({ col: col.toString(), row: row.toString() })
9090
}, [config, sourceId])
9191

92-
const onDoubleClickCell = useCallback((col: number, row: number) => {
92+
const onDoubleClickCell = useCallback((_event: React.MouseEvent, col: number, row: number) => {
9393
if (cell?.col === col && cell.row === row) {
9494
setCell(undefined)
9595
} else {

0 commit comments

Comments
 (0)