@malloydata/malloy-explorer 0.0.331-dev260122023015 → 0.0.338-dev260215172810
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/dist/cjs/index.cjs +4 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +5 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/types/components/CodeEditor/lsp/stub_compile.d.ts +1 -0
- package/dist/types/components/primitives/Badge.spec.d.ts +3 -0
- package/jest.config.cjs +1 -1
- package/package.json +10 -10
package/dist/cjs/index.cjs
CHANGED
|
@@ -32341,7 +32341,7 @@ function Visualization({
|
|
|
32341
32341
|
}) {
|
|
32342
32342
|
const {
|
|
32343
32343
|
tag
|
|
32344
|
-
} = malloyTag.
|
|
32344
|
+
} = malloyTag.parseTag(annotations.map((annotation) => annotation.value));
|
|
32345
32345
|
const renderer = tagToRenderer(tag) ?? "table";
|
|
32346
32346
|
return /* @__PURE__ */ jsxRuntime.jsx(Token, {
|
|
32347
32347
|
label: snakeToTitle(renderer),
|
|
@@ -36185,6 +36185,9 @@ class StubConnection extends connection$1.BaseConnection {
|
|
|
36185
36185
|
this.name = "stub";
|
|
36186
36186
|
this.dialectName = dialectName;
|
|
36187
36187
|
}
|
|
36188
|
+
getDigest() {
|
|
36189
|
+
return "stub";
|
|
36190
|
+
}
|
|
36188
36191
|
runSQL() {
|
|
36189
36192
|
throw new Error("Stub connection cannot run SQL.");
|
|
36190
36193
|
}
|