@malloydata/malloy-explorer 0.0.331-dev260122023015 → 0.0.337-dev260213014950

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.
@@ -32341,7 +32341,7 @@ function Visualization({
32341
32341
  }) {
32342
32342
  const {
32343
32343
  tag
32344
- } = malloyTag.Tag.fromTagLines(annotations.map((annotation) => annotation.value));
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
  }