Skip to content

Commit

Permalink
upgrade hyparquet and hightable, and publish versions of packages
Browse files Browse the repository at this point in the history
  • Loading branch information
severo committed Jan 10, 2025
1 parent 901d95a commit 18c75bb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion apps/hightable-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.7.3",
"hightable": "0.8.0",
"react": "18.3.1",
"react-dom": "18.3.1"
}
Expand Down
6 changes: 3 additions & 3 deletions apps/hyparquet-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"typecheck": "tsc"
},
"dependencies": {
"@hyparam/components": "0.1.11",
"hightable": "0.7.3",
"hyparquet": "1.6.4",
"@hyparam/components": "0.1.12",
"hightable": "0.8.0",
"hyparquet": "1.8.0",
"hyparquet-compressors": "1.0.0",
"react": "18.3.1",
"react-dom": "18.3.1"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
},
"overrides": {
"highlight.js": "11.10.0",
"hightable": "0.7.3",
"hyparquet": "1.6.4",
"hightable": "0.8.0",
"hyparquet": "1.8.0",
"hyparquet-compressors": "1.0.0",
"react": "18.3.1",
"react-dom": "18.3.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperparam",
"version": "0.2.14",
"version": "0.2.15",
"description": "Hyperparam CLI",
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"highlight.js": "11.10.0",
"@hyparam/components": "0.1.11",
"@hyparam/components": "0.1.12",
"react": "18.3.1",
"react-dom": "18.3.1"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyparam/components",
"version": "0.1.11",
"version": "0.1.12",
"description": "React components for hyparam apps",
"keywords": [
"component",
Expand Down Expand Up @@ -40,8 +40,8 @@
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.7.3",
"hyparquet": "1.6.4",
"hightable": "0.8.0",
"hyparquet": "1.8.0",
"hyparquet-compressors": "1.0.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/viewers/ParquetView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function ParquetView({ source, setProgress, setError, config }: V
return appendSearchParams({ col: col.toString(), row: row.toString() })
}, [config, sourceId])

const onDoubleClickCell = useCallback((col: number, row: number) => {
const onDoubleClickCell = useCallback((_event: React.MouseEvent, col: number, row: number) => {
if (cell?.col === col && cell.row === row) {
setCell(undefined)
} else {
Expand Down

0 comments on commit 18c75bb

Please sign in to comment.