@malloydata/malloy-explorer 0.0.269-dev250430213122 → 0.0.269-dev250430234249
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/@flowtypes/components/QueryPanel/{QueryActionBar.flow.js → QueryPanel.flow.js} +4 -3
- package/dist/cjs/index.cjs +17 -18
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +17 -18
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/gen_flow.ts +1 -2
- package/@flowtypes/components/QueryPanel/QueryEditor.flow.js +0 -3
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as Malloy from "@malloydata/malloy-interfaces";
|
|
2
|
-
|
|
2
|
+
interface QueryPanelProps {
|
|
3
3
|
runQuery: (source: Malloy.SourceInfo, query: Malloy.Query) => void;
|
|
4
4
|
}
|
|
5
|
-
declare export function
|
|
6
|
-
$$param0$:
|
|
5
|
+
declare export default function QueryPanel(
|
|
6
|
+
$$param0$: QueryPanelProps,
|
|
7
7
|
): $Exports<"react/jsx-runtime">["JSX"]["Element"];
|
|
8
|
+
declare export {};
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -34583,25 +34583,26 @@ function QueryEditor() {
|
|
|
34583
34583
|
console.error("Missing <MalloyExplorerProvider>");
|
|
34584
34584
|
return null;
|
|
34585
34585
|
}
|
|
34586
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
34587
|
-
|
|
34588
|
-
|
|
34589
|
-
|
|
34590
|
-
|
|
34591
|
-
|
|
34592
|
-
|
|
34593
|
-
|
|
34594
|
-
|
|
34595
|
-
|
|
34596
|
-
|
|
34597
|
-
})]
|
|
34598
|
-
})
|
|
34586
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
34587
|
+
..._stylex.props(fontStyles.body, styles$8.main),
|
|
34588
|
+
children: [/* @__PURE__ */ jsxRuntime.jsx(Source, {
|
|
34589
|
+
rootQuery
|
|
34590
|
+
}), /* @__PURE__ */ jsxRuntime.jsx(Parameters, {
|
|
34591
|
+
rootQuery
|
|
34592
|
+
}), /* @__PURE__ */ jsxRuntime.jsx(Query, {
|
|
34593
|
+
rootQuery,
|
|
34594
|
+
query: rootQuery,
|
|
34595
|
+
setQuery
|
|
34596
|
+
})]
|
|
34599
34597
|
});
|
|
34600
34598
|
}
|
|
34601
34599
|
const styles$8 = {
|
|
34602
34600
|
main: {
|
|
34603
34601
|
display: "mly78zum5",
|
|
34604
34602
|
flexDirection: "mlydt5ytf",
|
|
34603
|
+
overflow: "mlyysyzu8",
|
|
34604
|
+
overflowX: null,
|
|
34605
|
+
overflowY: null,
|
|
34605
34606
|
gap: "mly167g77z",
|
|
34606
34607
|
rowGap: null,
|
|
34607
34608
|
columnGap: null,
|
|
@@ -34622,13 +34623,11 @@ function QueryPanel({
|
|
|
34622
34623
|
}) {
|
|
34623
34624
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
34624
34625
|
...{
|
|
34625
|
-
className: "mly78zum5 mlydt5ytf
|
|
34626
|
+
className: "mly78zum5 mlydt5ytf mly5yr21d mlyotlr4g mly1roky18"
|
|
34626
34627
|
},
|
|
34627
34628
|
children: [/* @__PURE__ */ jsxRuntime.jsx(QueryActionBar, {
|
|
34628
34629
|
runQuery
|
|
34629
|
-
}), /* @__PURE__ */ jsxRuntime.jsx(
|
|
34630
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(QueryEditor, {})
|
|
34631
|
-
})]
|
|
34630
|
+
}), /* @__PURE__ */ jsxRuntime.jsx(QueryEditor, {})]
|
|
34632
34631
|
});
|
|
34633
34632
|
}
|
|
34634
34633
|
function BookmarkedView({
|
|
@@ -36330,7 +36329,7 @@ function ResizableCollapsiblePanel({
|
|
|
36330
36329
|
width: `${width}px`
|
|
36331
36330
|
},
|
|
36332
36331
|
children: [children, /* @__PURE__ */ jsxRuntime.jsx(ResizeBar, {
|
|
36333
|
-
width
|
|
36332
|
+
width,
|
|
36334
36333
|
minWidth,
|
|
36335
36334
|
onWidthChange: setWidth
|
|
36336
36335
|
})]
|