@visactor/vseed 0.1.3 → 0.1.5

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.
Files changed (49) hide show
  1. package/dist/builder/builder/builder.d.ts +4 -2
  2. package/dist/dataReshape/foldMeasures.d.ts +2 -2
  3. package/dist/index.cjs +1001 -765
  4. package/dist/index.cjs.map +1 -1
  5. package/dist/index.js +1014 -778
  6. package/dist/index.js.map +1 -1
  7. package/dist/pipeline/advanced/chart/pipes/init/index.d.ts +1 -0
  8. package/dist/pipeline/advanced/chart/pipes/init/utils.d.ts +2 -0
  9. package/dist/pipeline/advanced/chart/pipes/measures/index.d.ts +1 -0
  10. package/dist/pipeline/spec/chart/pipes/color/colorCellStyleFill.d.ts +2 -0
  11. package/dist/pipeline/spec/chart/pipes/color/colorFunnelStyleFill.d.ts +2 -0
  12. package/dist/pipeline/spec/chart/pipes/color/colorPieStyleFill.d.ts +2 -0
  13. package/dist/pipeline/spec/chart/pipes/color/colorRoseStyleFill.d.ts +2 -0
  14. package/dist/pipeline/spec/chart/pipes/color/index.d.ts +4 -0
  15. package/dist/pipeline/spec/chart/pipes/markStyle/cellStyle.d.ts +2 -0
  16. package/dist/pipeline/spec/chart/pipes/markStyle/funnelStyle.d.ts +2 -0
  17. package/dist/pipeline/spec/chart/pipes/markStyle/index.d.ts +5 -1
  18. package/dist/pipeline/spec/chart/pipes/markStyle/pieStyle.d.ts +2 -0
  19. package/dist/pipeline/spec/chart/pipes/markStyle/roseStyle.d.ts +2 -0
  20. package/dist/types/advancedVSeed.d.ts +16 -5
  21. package/dist/types/chartType/area/zArea.d.ts +16 -5
  22. package/dist/types/chartType/areaPercent/zAreaPercent.d.ts +16 -5
  23. package/dist/types/chartType/bar/zBar.d.ts +16 -5
  24. package/dist/types/chartType/barParallel/zBarParallel.d.ts +16 -5
  25. package/dist/types/chartType/barPercent/zBarPercent.d.ts +16 -5
  26. package/dist/types/chartType/column/zColumn.d.ts +16 -5
  27. package/dist/types/chartType/columnParallel/zColumnParallel.d.ts +16 -5
  28. package/dist/types/chartType/columnPercent/zColumnPercent.d.ts +16 -5
  29. package/dist/types/chartType/donut/zDonut.d.ts +16 -5
  30. package/dist/types/chartType/dualAxis/zDualAxis.d.ts +36 -25
  31. package/dist/types/chartType/funnel/zFunnel.d.ts +16 -5
  32. package/dist/types/chartType/heatmap/zHeatmap.d.ts +16 -5
  33. package/dist/types/chartType/line/zLine.d.ts +16 -5
  34. package/dist/types/chartType/pie/zPie.d.ts +16 -5
  35. package/dist/types/chartType/pivotTable/zPivotTable.d.ts +16 -5
  36. package/dist/types/chartType/radar/zRadar.d.ts +16 -5
  37. package/dist/types/chartType/rose/zRose.d.ts +16 -5
  38. package/dist/types/chartType/roseParallel/zRoseParallel.d.ts +16 -5
  39. package/dist/types/chartType/scatter/zScatter.d.ts +36 -25
  40. package/dist/types/chartType/table/zTable.d.ts +16 -5
  41. package/dist/types/properties/dimensions/dimensions.d.ts +16 -0
  42. package/dist/types/properties/dimensions/zDimensions.d.ts +33 -0
  43. package/dist/types/properties/measures/zDualMeasures.d.ts +40 -40
  44. package/dist/types/properties/measures/zMeasures.d.ts +15 -15
  45. package/dist/types/properties/measures/zScatterMeasures.d.ts +40 -40
  46. package/dist/types/zVseed.d.ts +360 -140
  47. package/dist/umd/index.js +953 -703
  48. package/dist/umd/index.js.map +1 -1
  49. package/package.json +1 -1
@@ -1,2 +1,3 @@
1
1
  export { initAdvancedVSeed } from './initAdvancedVSeed';
2
2
  export { autoDimensions } from './autoDimensions';
3
+ export { getBasicDimensions } from './utils';
@@ -0,0 +1,2 @@
1
+ import type { Dimensions, VSeed } from '../../../../../types';
2
+ export declare const getBasicDimensions: (vseed: VSeed) => Dimensions;
@@ -1,3 +1,4 @@
1
1
  export { buildMeasuresForDualAxis } from './buildMeasuresForDualAxis';
2
2
  export { buildMeasures } from './buildMeasures';
3
3
  export { buildMeasuresForScatter } from './buildMeasuresForScatter';
4
+ export * from './utils';
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const colorCellStyleFill: (stylePipe: SpecPipe) => SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const colorFunnelStyleFill: (stylePipe: SpecPipe) => SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const colorPieStyleFill: (stylePipe: SpecPipe) => SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const colorRoseStyleFill: (stylePipe: SpecPipe) => SpecPipe;
@@ -6,3 +6,7 @@ export { colorBarStyleFill } from './colorBarStyleFill';
6
6
  export { colorLineStyleFill } from './colorLineStyleFill';
7
7
  export { colorPointStyleFill } from './colorPointStyleFill';
8
8
  export { colorAreaStyleFill } from './colorAreaStyleFill';
9
+ export { colorCellStyleFill } from './colorCellStyleFill';
10
+ export { colorFunnelStyleFill } from './colorFunnelStyleFill';
11
+ export { colorPieStyleFill } from './colorPieStyleFill';
12
+ export { colorRoseStyleFill } from './colorRoseStyleFill';
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const cellStyle: SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const funnelStyle: SpecPipe;
@@ -1,5 +1,9 @@
1
+ export * from './pointState';
1
2
  export { barStyle } from './barStyle';
2
3
  export { pointStyle } from './pointStyle';
3
- export * from './pointState';
4
4
  export { lineStyle } from './lineStyle';
5
5
  export { areaStyle } from './areaStyle';
6
+ export { cellStyle } from './cellStyle';
7
+ export { funnelStyle } from './funnelStyle';
8
+ export { pieStyle } from './pieStyle';
9
+ export { roseStyle } from './roseStyle';
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const pieStyle: SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../../types';
2
+ export declare const roseStyle: SpecPipe;
@@ -61,6 +61,17 @@ export declare const zAdvancedVSeed: z.ZodObject<{
61
61
  rowDimension: "rowDimension";
62
62
  columnDimension: "columnDimension";
63
63
  }>>;
64
+ encoding: z.ZodOptional<z.ZodEnum<{
65
+ column: "column";
66
+ xAxis: "xAxis";
67
+ yAxis: "yAxis";
68
+ angle: "angle";
69
+ color: "color";
70
+ detail: "detail";
71
+ tooltip: "tooltip";
72
+ label: "label";
73
+ row: "row";
74
+ }>>;
64
75
  }, z.core.$strip>]>>;
65
76
  measures: z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
66
77
  id: z.ZodString;
@@ -97,16 +108,16 @@ export declare const zAdvancedVSeed: z.ZodObject<{
97
108
  }>>>;
98
109
  }, z.core.$strip>>>;
99
110
  encoding: z.ZodOptional<z.ZodEnum<{
100
- primaryYAxis: "primaryYAxis";
101
- secondaryYAxis: "secondaryYAxis";
102
111
  xAxis: "xAxis";
103
112
  yAxis: "yAxis";
104
113
  angle: "angle";
105
- radius: "radius";
106
- size: "size";
107
114
  color: "color";
108
- label: "label";
109
115
  tooltip: "tooltip";
116
+ label: "label";
117
+ primaryYAxis: "primaryYAxis";
118
+ secondaryYAxis: "secondaryYAxis";
119
+ radius: "radius";
120
+ size: "size";
110
121
  }>>;
111
122
  parentId: z.ZodOptional<z.ZodString>;
112
123
  }, z.core.$strip>]>>;
@@ -24,6 +24,17 @@ export declare const zArea: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zArea: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zAreaPercent: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zAreaPercent: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zBar: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zBar: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zBarParallel: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zBarParallel: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zBarPercent: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zBarPercent: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zColumn: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zColumn: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zColumnParallel: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zColumnParallel: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zColumnPercent: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zColumnPercent: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -24,6 +24,17 @@ export declare const zDonut: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zDonut: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;
@@ -10,6 +10,17 @@ export declare const zDualAxis: z.ZodObject<{
10
10
  rowDimension: "rowDimension";
11
11
  columnDimension: "columnDimension";
12
12
  }>>;
13
+ encoding: z.ZodOptional<z.ZodEnum<{
14
+ column: "column";
15
+ xAxis: "xAxis";
16
+ yAxis: "yAxis";
17
+ angle: "angle";
18
+ color: "color";
19
+ detail: "detail";
20
+ tooltip: "tooltip";
21
+ label: "label";
22
+ row: "row";
23
+ }>>;
13
24
  }, z.core.$strip>>>>;
14
25
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../../properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../../properties").MeasureGroup, unknown>>, z.ZodObject<{
15
26
  id: z.ZodString;
@@ -46,16 +57,16 @@ export declare const zDualAxis: z.ZodObject<{
46
57
  }>>>;
47
58
  }, z.core.$strip>>>;
48
59
  encoding: z.ZodOptional<z.ZodEnum<{
49
- primaryYAxis: "primaryYAxis";
50
- secondaryYAxis: "secondaryYAxis";
51
60
  xAxis: "xAxis";
52
61
  yAxis: "yAxis";
53
62
  angle: "angle";
54
- radius: "radius";
55
- size: "size";
56
63
  color: "color";
57
- label: "label";
58
64
  tooltip: "tooltip";
65
+ label: "label";
66
+ primaryYAxis: "primaryYAxis";
67
+ secondaryYAxis: "secondaryYAxis";
68
+ radius: "radius";
69
+ size: "size";
59
70
  }>>;
60
71
  parentId: z.ZodOptional<z.ZodString>;
61
72
  }, z.core.$strip>]>>>>;
@@ -96,16 +107,16 @@ export declare const zDualAxis: z.ZodObject<{
96
107
  }>>>;
97
108
  }, z.core.$strip>>>;
98
109
  encoding: z.ZodOptional<z.ZodEnum<{
99
- primaryYAxis: "primaryYAxis";
100
- secondaryYAxis: "secondaryYAxis";
101
110
  xAxis: "xAxis";
102
111
  yAxis: "yAxis";
103
112
  angle: "angle";
104
- radius: "radius";
105
- size: "size";
106
113
  color: "color";
107
- label: "label";
108
114
  tooltip: "tooltip";
115
+ label: "label";
116
+ primaryYAxis: "primaryYAxis";
117
+ secondaryYAxis: "secondaryYAxis";
118
+ radius: "radius";
119
+ size: "size";
109
120
  }>>;
110
121
  parentId: z.ZodOptional<z.ZodString>;
111
122
  }, z.core.$strip>>, z.ZodObject<{
@@ -143,16 +154,16 @@ export declare const zDualAxis: z.ZodObject<{
143
154
  }>>>;
144
155
  }, z.core.$strip>>>;
145
156
  encoding: z.ZodOptional<z.ZodEnum<{
146
- primaryYAxis: "primaryYAxis";
147
- secondaryYAxis: "secondaryYAxis";
148
157
  xAxis: "xAxis";
149
158
  yAxis: "yAxis";
150
159
  angle: "angle";
151
- radius: "radius";
152
- size: "size";
153
160
  color: "color";
154
- label: "label";
155
161
  tooltip: "tooltip";
162
+ label: "label";
163
+ primaryYAxis: "primaryYAxis";
164
+ secondaryYAxis: "secondaryYAxis";
165
+ radius: "radius";
166
+ size: "size";
156
167
  }>>;
157
168
  parentId: z.ZodOptional<z.ZodString>;
158
169
  }, z.core.$strip>]>>;
@@ -191,16 +202,16 @@ export declare const zDualAxis: z.ZodObject<{
191
202
  }>>>;
192
203
  }, z.core.$strip>>>;
193
204
  encoding: z.ZodOptional<z.ZodEnum<{
194
- primaryYAxis: "primaryYAxis";
195
- secondaryYAxis: "secondaryYAxis";
196
205
  xAxis: "xAxis";
197
206
  yAxis: "yAxis";
198
207
  angle: "angle";
199
- radius: "radius";
200
- size: "size";
201
208
  color: "color";
202
- label: "label";
203
209
  tooltip: "tooltip";
210
+ label: "label";
211
+ primaryYAxis: "primaryYAxis";
212
+ secondaryYAxis: "secondaryYAxis";
213
+ radius: "radius";
214
+ size: "size";
204
215
  }>>;
205
216
  parentId: z.ZodOptional<z.ZodString>;
206
217
  }, z.core.$strip>>, z.ZodObject<{
@@ -238,16 +249,16 @@ export declare const zDualAxis: z.ZodObject<{
238
249
  }>>>;
239
250
  }, z.core.$strip>>>;
240
251
  encoding: z.ZodOptional<z.ZodEnum<{
241
- primaryYAxis: "primaryYAxis";
242
- secondaryYAxis: "secondaryYAxis";
243
252
  xAxis: "xAxis";
244
253
  yAxis: "yAxis";
245
254
  angle: "angle";
246
- radius: "radius";
247
- size: "size";
248
255
  color: "color";
249
- label: "label";
250
256
  tooltip: "tooltip";
257
+ label: "label";
258
+ primaryYAxis: "primaryYAxis";
259
+ secondaryYAxis: "secondaryYAxis";
260
+ radius: "radius";
261
+ size: "size";
251
262
  }>>;
252
263
  parentId: z.ZodOptional<z.ZodString>;
253
264
  }, z.core.$strip>]>>;
@@ -24,6 +24,17 @@ export declare const zFunnel: z.ZodObject<{
24
24
  rowDimension: "rowDimension";
25
25
  columnDimension: "columnDimension";
26
26
  }>>;
27
+ encoding: z.ZodOptional<z.ZodEnum<{
28
+ column: "column";
29
+ xAxis: "xAxis";
30
+ yAxis: "yAxis";
31
+ angle: "angle";
32
+ color: "color";
33
+ detail: "detail";
34
+ tooltip: "tooltip";
35
+ label: "label";
36
+ row: "row";
37
+ }>>;
27
38
  }, z.core.$strip>>>>;
28
39
  measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("../..").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("../..").MeasureGroup, unknown>>, z.ZodObject<{
29
40
  id: z.ZodString;
@@ -60,16 +71,16 @@ export declare const zFunnel: z.ZodObject<{
60
71
  }>>>;
61
72
  }, z.core.$strip>>>;
62
73
  encoding: z.ZodOptional<z.ZodEnum<{
63
- primaryYAxis: "primaryYAxis";
64
- secondaryYAxis: "secondaryYAxis";
65
74
  xAxis: "xAxis";
66
75
  yAxis: "yAxis";
67
76
  angle: "angle";
68
- radius: "radius";
69
- size: "size";
70
77
  color: "color";
71
- label: "label";
72
78
  tooltip: "tooltip";
79
+ label: "label";
80
+ primaryYAxis: "primaryYAxis";
81
+ secondaryYAxis: "secondaryYAxis";
82
+ radius: "radius";
83
+ size: "size";
73
84
  }>>;
74
85
  parentId: z.ZodOptional<z.ZodString>;
75
86
  }, z.core.$strip>]>>>>;