@malloydata/render 0.0.212-dev241112205312 → 0.0.212-dev241113161329

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.
@@ -7,7 +7,8 @@ export type RendererProps = {
7
7
  tag: Tag;
8
8
  customProps?: Record<string, Record<string, unknown>>;
9
9
  };
10
- export declare function shouldRenderAs(f: Field | Explore, tagOverride?: Tag): "table" | "dashboard" | "image" | "list" | "cell" | "link" | "chart" | "legacy_chart";
10
+ export declare function shouldRenderAs(f: Field | Explore, tagOverride?: Tag): "table" | "dashboard" | "image" | "list" | "scatter_chart" | "segment_map" | "shape_map" | "cell" | "link" | "chart";
11
+ export declare const NULL_SYMBOL = "\u2205";
11
12
  export declare function applyRenderer(props: RendererProps): {
12
13
  renderAs: string;
13
14
  renderValue: import("solid-js").JSX.Element;
@@ -1,4 +1,5 @@
1
1
  import { ChartTooltipEntry } from '../types';
2
+ import '../table/table.css';
2
3
  export declare function DefaultChartTooltip(props: {
3
4
  data: ChartTooltipEntry;
4
5
  }): import("solid-js").JSX.Element;