@malloydata/render 0.0.218-dev241120185317 → 0.0.218-dev241120211046

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.
@@ -20,6 +20,7 @@ export type VegaChartProps = {
20
20
  totalWidth: number;
21
21
  totalHeight: number;
22
22
  chartType: string;
23
+ chartTag: Tag;
23
24
  mapMalloyDataToChartData: MalloyDataToChartDataHandler;
24
25
  getTooltipData?: (item: Item, view: View) => ChartTooltipEntry | null;
25
26
  };
@@ -1,47 +1,5 @@
1
+ /// <reference path="../../../src/vega.d.ts" />
2
+ import { Config } from 'vega';
1
3
  export declare const grayMedium = "#727883";
2
4
  export declare const gridGray = "#E5E7EB";
3
- export declare const baseVegaConfig: () => {
4
- range: {
5
- category: string[];
6
- diverging: string[];
7
- heatmap: string[];
8
- ordinal: string[];
9
- ramp: string[];
10
- };
11
- axisY: {
12
- gridColor: string;
13
- grid: boolean;
14
- tickColor: string;
15
- domain: boolean;
16
- labelFont: string;
17
- labelFontSize: number;
18
- labelFontWeight: string;
19
- labelColor: string;
20
- labelPadding: number;
21
- titleColor: string;
22
- titleFont: string;
23
- titleFontSize: number;
24
- titleFontWeight: number;
25
- titlePadding: number;
26
- labelOverlap: boolean;
27
- };
28
- axisX: {
29
- gridColor: string;
30
- tickColor: string;
31
- tickSize: number;
32
- domain: boolean;
33
- labelFont: string;
34
- labelFontSize: number;
35
- labelFontWeight: string;
36
- labelPadding: number;
37
- labelColor: string;
38
- titleColor: string;
39
- titleFont: string;
40
- titleFontSize: number;
41
- titleFontWeight: number;
42
- titlePadding: number;
43
- };
44
- view: {
45
- strokeWidth: number;
46
- };
47
- };
5
+ export declare const baseVegaConfig: () => Config;