@malloydata/render 0.0.218-dev241120185317 → 0.0.218-dev241122201503
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/component/types.d.ts +1 -0
- package/dist/component/vega/base-vega-config.d.ts +3 -45
- package/dist/module/index.mjs +14550 -14765
- package/dist/module/index.umd.js +252 -252
- package/dist/register/register.mjs +8208 -8149
- package/dist/register/register.umd.js +105 -87
- package/dist/webcomponent/malloy-render.mjs +8208 -8149
- package/dist/webcomponent/malloy-render.umd.js +105 -87
- package/package.json +2 -2
|
@@ -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;
|