@malloydata/render 0.0.179-dev240904142610 → 0.0.179-dev240904150848

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.
@@ -1,4 +1,4 @@
1
- import { Explore, ExploreField, Field } from '@malloydata/malloy';
1
+ import { Explore, ExploreField, Field, Tag } from '@malloydata/malloy';
2
2
  import { RenderResultMetadata } from './types';
3
3
  export type ChartSettings = {
4
4
  plotWidth: number;
@@ -31,4 +31,4 @@ export type ChartSettings = {
31
31
  totalWidth: number;
32
32
  totalHeight: number;
33
33
  };
34
- export declare function getChartSettings(field: Explore | ExploreField, metadata: RenderResultMetadata): ChartSettings;
34
+ export declare function getChartSettings(field: Explore | ExploreField, metadata: RenderResultMetadata, chartTag: Tag): ChartSettings;
@@ -1,4 +1,4 @@
1
- import { Explore, ExploreField } from '@malloydata/malloy';
1
+ import { Explore, ExploreField, Tag } from '@malloydata/malloy';
2
2
  import { PlotSpec } from './plot-spec';
3
3
  import { RenderResultMetadata, VegaChartProps } from '../types';
4
4
  export declare const grayMedium = "#727883";
@@ -6,4 +6,5 @@ export declare const gridGray = "#E5E7EB";
6
6
  export declare function plotToVega(plotSpec: PlotSpec, options: {
7
7
  field: Explore | ExploreField;
8
8
  metadata: RenderResultMetadata;
9
+ chartTag: Tag;
9
10
  }): VegaChartProps;