Skip to content

Commit 9d6d66f

Browse files
authored
Malloy 0.0.285 (#271)
1 parent 8efa931 commit 9d6d66f

File tree

3 files changed

+47
-41
lines changed

3 files changed

+47
-41
lines changed

dev/Query.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,19 @@ const App = () => {
6060
setQuery(queries[queryIdx]);
6161
}, [queryIdx]);
6262

63+
const [focusedNestViewPath, setFocusedNestViewPath] = React.useState<
64+
string[]
65+
>([]);
66+
6367
return (
6468
<React.StrictMode>
6569
<MalloyExplorerProvider
6670
source={source}
6771
query={query}
68-
setQuery={setQuery}
72+
onQueryChange={setQuery}
6973
topValues={topValues}
74+
onFocusedNestViewPathChange={setFocusedNestViewPath}
75+
focusedNestViewPath={focusedNestViewPath}
7076
>
7177
<div style={{gap: 8, display: 'flex'}}>
7278
<div style={{padding: 8, width: 500}}>

package-lock.json

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@malloydata/malloy-explorer",
3-
"version": "0.0.284",
3+
"version": "0.0.285",
44
"description": "Malloy visual query builder",
55
"main": "dist/cjs/index.cjs",
66
"types": "dist/types/index.d.ts",
@@ -113,11 +113,11 @@
113113
"vite-plugin-svgr": "^4.3.0"
114114
},
115115
"peerDependencies": {
116-
"@malloydata/malloy-filter": ">= 0.0.284",
117-
"@malloydata/malloy-interfaces": ">= 0.0.284",
118-
"@malloydata/malloy-query-builder": ">= 0.0.284",
119-
"@malloydata/malloy-tag": ">= 0.0.284",
120-
"@malloydata/render": ">= 0.0.284",
116+
"@malloydata/malloy-filter": ">= 0.0.285",
117+
"@malloydata/malloy-interfaces": ">= 0.0.285",
118+
"@malloydata/malloy-query-builder": ">= 0.0.285",
119+
"@malloydata/malloy-tag": ">= 0.0.285",
120+
"@malloydata/render": ">= 0.0.285",
121121
"react": ">= 19.0.0",
122122
"react-dom": ">= 19.0.0"
123123
}

0 commit comments

Comments
 (0)