@visactor/vseed 0.1.2 → 0.1.4
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/builder/builder/builder.d.ts +6 -28
- package/dist/dataReshape/dataReshapeByEncoding.d.ts +1 -0
- package/dist/dataReshape/foldMeasures.d.ts +6 -5
- package/dist/index.cjs +844 -609
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +857 -619
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/chart/pipes/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/init/index.d.ts +1 -3
- package/dist/pipeline/advanced/chart/pipes/init/utils.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/{init/autoMeasures.d.ts → measures/buildMeasures.d.ts} +1 -1
- package/dist/pipeline/advanced/chart/pipes/measures/buildMeasuresForDualAxis.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/measures/buildMeasuresForScatter.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/measures/index.d.ts +4 -0
- package/dist/pipeline/advanced/chart/pipes/measures/utils.d.ts +28 -0
- package/dist/pipeline/spec/chart/pipes/color/colorAdapter.d.ts +2 -1
- package/dist/pipeline/spec/chart/pipes/color/index.d.ts +2 -1
- package/dist/pipeline/spec/chart/pipes/color/linearColorForDualAxis.d.ts +2 -0
- package/dist/pipeline/utils/chatType.d.ts +1 -1
- package/dist/types/advancedVSeed.d.ts +24 -14
- package/dist/types/chartType/area/zArea.d.ts +24 -0
- package/dist/types/chartType/areaPercent/zAreaPercent.d.ts +24 -0
- package/dist/types/chartType/bar/zBar.d.ts +24 -0
- package/dist/types/chartType/barParallel/zBarParallel.d.ts +24 -0
- package/dist/types/chartType/barPercent/zBarPercent.d.ts +24 -0
- package/dist/types/chartType/column/zColumn.d.ts +24 -0
- package/dist/types/chartType/columnParallel/zColumnParallel.d.ts +24 -0
- package/dist/types/chartType/columnPercent/zColumnPercent.d.ts +24 -0
- package/dist/types/chartType/donut/zDonut.d.ts +24 -0
- package/dist/types/chartType/dualAxis/zDualAxis.d.ts +76 -0
- package/dist/types/chartType/funnel/zFunnel.d.ts +24 -0
- package/dist/types/chartType/heatmap/zHeatmap.d.ts +24 -0
- package/dist/types/chartType/line/line.d.ts +0 -1
- package/dist/types/chartType/line/zLine.d.ts +24 -0
- package/dist/types/chartType/pie/zPie.d.ts +24 -0
- package/dist/types/chartType/pivotTable/zPivotTable.d.ts +24 -0
- package/dist/types/chartType/radar/zRadar.d.ts +24 -0
- package/dist/types/chartType/rose/zRose.d.ts +24 -0
- package/dist/types/chartType/roseParallel/zRoseParallel.d.ts +24 -0
- package/dist/types/chartType/scatter/zScatter.d.ts +76 -0
- package/dist/types/chartType/table/zTable.d.ts +24 -0
- package/dist/types/properties/dimensions/dimensions.d.ts +16 -0
- package/dist/types/properties/dimensions/zDimensions.d.ts +33 -0
- package/dist/types/properties/encoding/encoding.d.ts +0 -1
- package/dist/types/properties/encoding/index.d.ts +2 -2
- package/dist/types/properties/encoding/zEncoding.d.ts +0 -14
- package/dist/types/properties/measures/dualMeasures.d.ts +1 -0
- package/dist/types/properties/measures/measures.d.ts +19 -0
- package/dist/types/properties/measures/scatterMeasures.d.ts +1 -0
- package/dist/types/properties/measures/zDualMeasures.d.ts +104 -0
- package/dist/types/properties/measures/zMeasures.d.ts +39 -0
- package/dist/types/properties/measures/zScatterMeasures.d.ts +104 -0
- package/dist/types/zVseed.d.ts +584 -0
- package/dist/umd/index.js +858 -607
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/pipeline/advanced/chart/pipes/init/autoDualMeasures.d.ts +0 -2
- package/dist/pipeline/advanced/chart/pipes/init/autoScatterMeasures.d.ts +0 -2
package/dist/types/zVseed.d.ts
CHANGED
@@ -10,6 +10,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[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;
|
@@ -45,6 +56,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
45
56
|
halfEven: "halfEven";
|
46
57
|
}>>>;
|
47
58
|
}, z.core.$strip>>>;
|
59
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
60
|
+
xAxis: "xAxis";
|
61
|
+
yAxis: "yAxis";
|
62
|
+
angle: "angle";
|
63
|
+
color: "color";
|
64
|
+
tooltip: "tooltip";
|
65
|
+
label: "label";
|
66
|
+
primaryYAxis: "primaryYAxis";
|
67
|
+
secondaryYAxis: "secondaryYAxis";
|
68
|
+
radius: "radius";
|
69
|
+
size: "size";
|
70
|
+
}>>;
|
71
|
+
parentId: z.ZodOptional<z.ZodString>;
|
48
72
|
}, z.core.$strip>]>>>>;
|
49
73
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
50
74
|
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -76,6 +100,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
76
100
|
rowDimension: "rowDimension";
|
77
101
|
columnDimension: "columnDimension";
|
78
102
|
}>>;
|
103
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
104
|
+
column: "column";
|
105
|
+
xAxis: "xAxis";
|
106
|
+
yAxis: "yAxis";
|
107
|
+
angle: "angle";
|
108
|
+
color: "color";
|
109
|
+
detail: "detail";
|
110
|
+
tooltip: "tooltip";
|
111
|
+
label: "label";
|
112
|
+
row: "row";
|
113
|
+
}>>;
|
79
114
|
}, z.core.$strip>>>>;
|
80
115
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
81
116
|
id: z.ZodString;
|
@@ -111,6 +146,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
111
146
|
halfEven: "halfEven";
|
112
147
|
}>>>;
|
113
148
|
}, z.core.$strip>>>;
|
149
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
150
|
+
xAxis: "xAxis";
|
151
|
+
yAxis: "yAxis";
|
152
|
+
angle: "angle";
|
153
|
+
color: "color";
|
154
|
+
tooltip: "tooltip";
|
155
|
+
label: "label";
|
156
|
+
primaryYAxis: "primaryYAxis";
|
157
|
+
secondaryYAxis: "secondaryYAxis";
|
158
|
+
radius: "radius";
|
159
|
+
size: "size";
|
160
|
+
}>>;
|
161
|
+
parentId: z.ZodOptional<z.ZodString>;
|
114
162
|
}, z.core.$strip>>>>;
|
115
163
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
116
164
|
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -156,6 +204,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
156
204
|
rowDimension: "rowDimension";
|
157
205
|
columnDimension: "columnDimension";
|
158
206
|
}>>;
|
207
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
208
|
+
column: "column";
|
209
|
+
xAxis: "xAxis";
|
210
|
+
yAxis: "yAxis";
|
211
|
+
angle: "angle";
|
212
|
+
color: "color";
|
213
|
+
detail: "detail";
|
214
|
+
tooltip: "tooltip";
|
215
|
+
label: "label";
|
216
|
+
row: "row";
|
217
|
+
}>>;
|
159
218
|
}, z.core.$strip>>>>;
|
160
219
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
161
220
|
id: z.ZodString;
|
@@ -191,6 +250,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
191
250
|
halfEven: "halfEven";
|
192
251
|
}>>>;
|
193
252
|
}, z.core.$strip>>>;
|
253
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
254
|
+
xAxis: "xAxis";
|
255
|
+
yAxis: "yAxis";
|
256
|
+
angle: "angle";
|
257
|
+
color: "color";
|
258
|
+
tooltip: "tooltip";
|
259
|
+
label: "label";
|
260
|
+
primaryYAxis: "primaryYAxis";
|
261
|
+
secondaryYAxis: "secondaryYAxis";
|
262
|
+
radius: "radius";
|
263
|
+
size: "size";
|
264
|
+
}>>;
|
265
|
+
parentId: z.ZodOptional<z.ZodString>;
|
194
266
|
}, z.core.$strip>]>>>>;
|
195
267
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
196
268
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -1526,6 +1598,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1526
1598
|
rowDimension: "rowDimension";
|
1527
1599
|
columnDimension: "columnDimension";
|
1528
1600
|
}>>;
|
1601
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
1602
|
+
column: "column";
|
1603
|
+
xAxis: "xAxis";
|
1604
|
+
yAxis: "yAxis";
|
1605
|
+
angle: "angle";
|
1606
|
+
color: "color";
|
1607
|
+
detail: "detail";
|
1608
|
+
tooltip: "tooltip";
|
1609
|
+
label: "label";
|
1610
|
+
row: "row";
|
1611
|
+
}>>;
|
1529
1612
|
}, z.core.$strip>>>>;
|
1530
1613
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
1531
1614
|
id: z.ZodString;
|
@@ -1561,6 +1644,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1561
1644
|
halfEven: "halfEven";
|
1562
1645
|
}>>>;
|
1563
1646
|
}, z.core.$strip>>>;
|
1647
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
1648
|
+
xAxis: "xAxis";
|
1649
|
+
yAxis: "yAxis";
|
1650
|
+
angle: "angle";
|
1651
|
+
color: "color";
|
1652
|
+
tooltip: "tooltip";
|
1653
|
+
label: "label";
|
1654
|
+
primaryYAxis: "primaryYAxis";
|
1655
|
+
secondaryYAxis: "secondaryYAxis";
|
1656
|
+
radius: "radius";
|
1657
|
+
size: "size";
|
1658
|
+
}>>;
|
1659
|
+
parentId: z.ZodOptional<z.ZodString>;
|
1564
1660
|
}, z.core.$strip>]>>>>;
|
1565
1661
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
1566
1662
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -2712,6 +2808,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2712
2808
|
rowDimension: "rowDimension";
|
2713
2809
|
columnDimension: "columnDimension";
|
2714
2810
|
}>>;
|
2811
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
2812
|
+
column: "column";
|
2813
|
+
xAxis: "xAxis";
|
2814
|
+
yAxis: "yAxis";
|
2815
|
+
angle: "angle";
|
2816
|
+
color: "color";
|
2817
|
+
detail: "detail";
|
2818
|
+
tooltip: "tooltip";
|
2819
|
+
label: "label";
|
2820
|
+
row: "row";
|
2821
|
+
}>>;
|
2715
2822
|
}, z.core.$strip>>>>;
|
2716
2823
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
2717
2824
|
id: z.ZodString;
|
@@ -2747,6 +2854,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2747
2854
|
halfEven: "halfEven";
|
2748
2855
|
}>>>;
|
2749
2856
|
}, z.core.$strip>>>;
|
2857
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
2858
|
+
xAxis: "xAxis";
|
2859
|
+
yAxis: "yAxis";
|
2860
|
+
angle: "angle";
|
2861
|
+
color: "color";
|
2862
|
+
tooltip: "tooltip";
|
2863
|
+
label: "label";
|
2864
|
+
primaryYAxis: "primaryYAxis";
|
2865
|
+
secondaryYAxis: "secondaryYAxis";
|
2866
|
+
radius: "radius";
|
2867
|
+
size: "size";
|
2868
|
+
}>>;
|
2869
|
+
parentId: z.ZodOptional<z.ZodString>;
|
2750
2870
|
}, z.core.$strip>]>>>>;
|
2751
2871
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
2752
2872
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -3898,6 +4018,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3898
4018
|
rowDimension: "rowDimension";
|
3899
4019
|
columnDimension: "columnDimension";
|
3900
4020
|
}>>;
|
4021
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
4022
|
+
column: "column";
|
4023
|
+
xAxis: "xAxis";
|
4024
|
+
yAxis: "yAxis";
|
4025
|
+
angle: "angle";
|
4026
|
+
color: "color";
|
4027
|
+
detail: "detail";
|
4028
|
+
tooltip: "tooltip";
|
4029
|
+
label: "label";
|
4030
|
+
row: "row";
|
4031
|
+
}>>;
|
3901
4032
|
}, z.core.$strip>>>>;
|
3902
4033
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
3903
4034
|
id: z.ZodString;
|
@@ -3933,6 +4064,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3933
4064
|
halfEven: "halfEven";
|
3934
4065
|
}>>>;
|
3935
4066
|
}, z.core.$strip>>>;
|
4067
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
4068
|
+
xAxis: "xAxis";
|
4069
|
+
yAxis: "yAxis";
|
4070
|
+
angle: "angle";
|
4071
|
+
color: "color";
|
4072
|
+
tooltip: "tooltip";
|
4073
|
+
label: "label";
|
4074
|
+
primaryYAxis: "primaryYAxis";
|
4075
|
+
secondaryYAxis: "secondaryYAxis";
|
4076
|
+
radius: "radius";
|
4077
|
+
size: "size";
|
4078
|
+
}>>;
|
4079
|
+
parentId: z.ZodOptional<z.ZodString>;
|
3936
4080
|
}, z.core.$strip>]>>>>;
|
3937
4081
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
3938
4082
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -5084,6 +5228,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5084
5228
|
rowDimension: "rowDimension";
|
5085
5229
|
columnDimension: "columnDimension";
|
5086
5230
|
}>>;
|
5231
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
5232
|
+
column: "column";
|
5233
|
+
xAxis: "xAxis";
|
5234
|
+
yAxis: "yAxis";
|
5235
|
+
angle: "angle";
|
5236
|
+
color: "color";
|
5237
|
+
detail: "detail";
|
5238
|
+
tooltip: "tooltip";
|
5239
|
+
label: "label";
|
5240
|
+
row: "row";
|
5241
|
+
}>>;
|
5087
5242
|
}, z.core.$strip>>>>;
|
5088
5243
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
5089
5244
|
id: z.ZodString;
|
@@ -5119,6 +5274,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5119
5274
|
halfEven: "halfEven";
|
5120
5275
|
}>>>;
|
5121
5276
|
}, z.core.$strip>>>;
|
5277
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
5278
|
+
xAxis: "xAxis";
|
5279
|
+
yAxis: "yAxis";
|
5280
|
+
angle: "angle";
|
5281
|
+
color: "color";
|
5282
|
+
tooltip: "tooltip";
|
5283
|
+
label: "label";
|
5284
|
+
primaryYAxis: "primaryYAxis";
|
5285
|
+
secondaryYAxis: "secondaryYAxis";
|
5286
|
+
radius: "radius";
|
5287
|
+
size: "size";
|
5288
|
+
}>>;
|
5289
|
+
parentId: z.ZodOptional<z.ZodString>;
|
5122
5290
|
}, z.core.$strip>]>>>>;
|
5123
5291
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
5124
5292
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -6270,6 +6438,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6270
6438
|
rowDimension: "rowDimension";
|
6271
6439
|
columnDimension: "columnDimension";
|
6272
6440
|
}>>;
|
6441
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
6442
|
+
column: "column";
|
6443
|
+
xAxis: "xAxis";
|
6444
|
+
yAxis: "yAxis";
|
6445
|
+
angle: "angle";
|
6446
|
+
color: "color";
|
6447
|
+
detail: "detail";
|
6448
|
+
tooltip: "tooltip";
|
6449
|
+
label: "label";
|
6450
|
+
row: "row";
|
6451
|
+
}>>;
|
6273
6452
|
}, z.core.$strip>>>>;
|
6274
6453
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
6275
6454
|
id: z.ZodString;
|
@@ -6305,6 +6484,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6305
6484
|
halfEven: "halfEven";
|
6306
6485
|
}>>>;
|
6307
6486
|
}, z.core.$strip>>>;
|
6487
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
6488
|
+
xAxis: "xAxis";
|
6489
|
+
yAxis: "yAxis";
|
6490
|
+
angle: "angle";
|
6491
|
+
color: "color";
|
6492
|
+
tooltip: "tooltip";
|
6493
|
+
label: "label";
|
6494
|
+
primaryYAxis: "primaryYAxis";
|
6495
|
+
secondaryYAxis: "secondaryYAxis";
|
6496
|
+
radius: "radius";
|
6497
|
+
size: "size";
|
6498
|
+
}>>;
|
6499
|
+
parentId: z.ZodOptional<z.ZodString>;
|
6308
6500
|
}, z.core.$strip>]>>>>;
|
6309
6501
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
6310
6502
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -7456,6 +7648,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7456
7648
|
rowDimension: "rowDimension";
|
7457
7649
|
columnDimension: "columnDimension";
|
7458
7650
|
}>>;
|
7651
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
7652
|
+
column: "column";
|
7653
|
+
xAxis: "xAxis";
|
7654
|
+
yAxis: "yAxis";
|
7655
|
+
angle: "angle";
|
7656
|
+
color: "color";
|
7657
|
+
detail: "detail";
|
7658
|
+
tooltip: "tooltip";
|
7659
|
+
label: "label";
|
7660
|
+
row: "row";
|
7661
|
+
}>>;
|
7459
7662
|
}, z.core.$strip>>>>;
|
7460
7663
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
7461
7664
|
id: z.ZodString;
|
@@ -7491,6 +7694,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7491
7694
|
halfEven: "halfEven";
|
7492
7695
|
}>>>;
|
7493
7696
|
}, z.core.$strip>>>;
|
7697
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
7698
|
+
xAxis: "xAxis";
|
7699
|
+
yAxis: "yAxis";
|
7700
|
+
angle: "angle";
|
7701
|
+
color: "color";
|
7702
|
+
tooltip: "tooltip";
|
7703
|
+
label: "label";
|
7704
|
+
primaryYAxis: "primaryYAxis";
|
7705
|
+
secondaryYAxis: "secondaryYAxis";
|
7706
|
+
radius: "radius";
|
7707
|
+
size: "size";
|
7708
|
+
}>>;
|
7709
|
+
parentId: z.ZodOptional<z.ZodString>;
|
7494
7710
|
}, z.core.$strip>]>>>>;
|
7495
7711
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
7496
7712
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -8642,6 +8858,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8642
8858
|
rowDimension: "rowDimension";
|
8643
8859
|
columnDimension: "columnDimension";
|
8644
8860
|
}>>;
|
8861
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
8862
|
+
column: "column";
|
8863
|
+
xAxis: "xAxis";
|
8864
|
+
yAxis: "yAxis";
|
8865
|
+
angle: "angle";
|
8866
|
+
color: "color";
|
8867
|
+
detail: "detail";
|
8868
|
+
tooltip: "tooltip";
|
8869
|
+
label: "label";
|
8870
|
+
row: "row";
|
8871
|
+
}>>;
|
8645
8872
|
}, z.core.$strip>>>>;
|
8646
8873
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
8647
8874
|
id: z.ZodString;
|
@@ -8677,6 +8904,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8677
8904
|
halfEven: "halfEven";
|
8678
8905
|
}>>>;
|
8679
8906
|
}, z.core.$strip>>>;
|
8907
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
8908
|
+
xAxis: "xAxis";
|
8909
|
+
yAxis: "yAxis";
|
8910
|
+
angle: "angle";
|
8911
|
+
color: "color";
|
8912
|
+
tooltip: "tooltip";
|
8913
|
+
label: "label";
|
8914
|
+
primaryYAxis: "primaryYAxis";
|
8915
|
+
secondaryYAxis: "secondaryYAxis";
|
8916
|
+
radius: "radius";
|
8917
|
+
size: "size";
|
8918
|
+
}>>;
|
8919
|
+
parentId: z.ZodOptional<z.ZodString>;
|
8680
8920
|
}, z.core.$strip>]>>>>;
|
8681
8921
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
8682
8922
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -10143,6 +10383,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10143
10383
|
rowDimension: "rowDimension";
|
10144
10384
|
columnDimension: "columnDimension";
|
10145
10385
|
}>>;
|
10386
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
10387
|
+
column: "column";
|
10388
|
+
xAxis: "xAxis";
|
10389
|
+
yAxis: "yAxis";
|
10390
|
+
angle: "angle";
|
10391
|
+
color: "color";
|
10392
|
+
detail: "detail";
|
10393
|
+
tooltip: "tooltip";
|
10394
|
+
label: "label";
|
10395
|
+
row: "row";
|
10396
|
+
}>>;
|
10146
10397
|
}, z.core.$strip>>>>;
|
10147
10398
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
10148
10399
|
id: z.ZodString;
|
@@ -10178,6 +10429,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10178
10429
|
halfEven: "halfEven";
|
10179
10430
|
}>>>;
|
10180
10431
|
}, z.core.$strip>>>;
|
10432
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
10433
|
+
xAxis: "xAxis";
|
10434
|
+
yAxis: "yAxis";
|
10435
|
+
angle: "angle";
|
10436
|
+
color: "color";
|
10437
|
+
tooltip: "tooltip";
|
10438
|
+
label: "label";
|
10439
|
+
primaryYAxis: "primaryYAxis";
|
10440
|
+
secondaryYAxis: "secondaryYAxis";
|
10441
|
+
radius: "radius";
|
10442
|
+
size: "size";
|
10443
|
+
}>>;
|
10444
|
+
parentId: z.ZodOptional<z.ZodString>;
|
10181
10445
|
}, z.core.$strip>]>>>>;
|
10182
10446
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
10183
10447
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -11644,6 +11908,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11644
11908
|
rowDimension: "rowDimension";
|
11645
11909
|
columnDimension: "columnDimension";
|
11646
11910
|
}>>;
|
11911
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
11912
|
+
column: "column";
|
11913
|
+
xAxis: "xAxis";
|
11914
|
+
yAxis: "yAxis";
|
11915
|
+
angle: "angle";
|
11916
|
+
color: "color";
|
11917
|
+
detail: "detail";
|
11918
|
+
tooltip: "tooltip";
|
11919
|
+
label: "label";
|
11920
|
+
row: "row";
|
11921
|
+
}>>;
|
11647
11922
|
}, z.core.$strip>>>>;
|
11648
11923
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
11649
11924
|
id: z.ZodString;
|
@@ -11679,6 +11954,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11679
11954
|
halfEven: "halfEven";
|
11680
11955
|
}>>>;
|
11681
11956
|
}, z.core.$strip>>>;
|
11957
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
11958
|
+
xAxis: "xAxis";
|
11959
|
+
yAxis: "yAxis";
|
11960
|
+
angle: "angle";
|
11961
|
+
color: "color";
|
11962
|
+
tooltip: "tooltip";
|
11963
|
+
label: "label";
|
11964
|
+
primaryYAxis: "primaryYAxis";
|
11965
|
+
secondaryYAxis: "secondaryYAxis";
|
11966
|
+
radius: "radius";
|
11967
|
+
size: "size";
|
11968
|
+
}>>;
|
11969
|
+
parentId: z.ZodOptional<z.ZodString>;
|
11682
11970
|
}, z.core.$strip>]>>>>;
|
11683
11971
|
scatterMeasures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
11684
11972
|
id: z.ZodString;
|
@@ -11716,6 +12004,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11716
12004
|
halfEven: "halfEven";
|
11717
12005
|
}>>>;
|
11718
12006
|
}, z.core.$strip>>>;
|
12007
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
12008
|
+
xAxis: "xAxis";
|
12009
|
+
yAxis: "yAxis";
|
12010
|
+
angle: "angle";
|
12011
|
+
color: "color";
|
12012
|
+
tooltip: "tooltip";
|
12013
|
+
label: "label";
|
12014
|
+
primaryYAxis: "primaryYAxis";
|
12015
|
+
secondaryYAxis: "secondaryYAxis";
|
12016
|
+
radius: "radius";
|
12017
|
+
size: "size";
|
12018
|
+
}>>;
|
12019
|
+
parentId: z.ZodOptional<z.ZodString>;
|
11719
12020
|
}, z.core.$strip>>, z.ZodObject<{
|
11720
12021
|
id: z.ZodString;
|
11721
12022
|
alias: z.ZodOptional<z.ZodString>;
|
@@ -11750,6 +12051,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11750
12051
|
halfEven: "halfEven";
|
11751
12052
|
}>>>;
|
11752
12053
|
}, z.core.$strip>>>;
|
12054
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
12055
|
+
xAxis: "xAxis";
|
12056
|
+
yAxis: "yAxis";
|
12057
|
+
angle: "angle";
|
12058
|
+
color: "color";
|
12059
|
+
tooltip: "tooltip";
|
12060
|
+
label: "label";
|
12061
|
+
primaryYAxis: "primaryYAxis";
|
12062
|
+
secondaryYAxis: "secondaryYAxis";
|
12063
|
+
radius: "radius";
|
12064
|
+
size: "size";
|
12065
|
+
}>>;
|
12066
|
+
parentId: z.ZodOptional<z.ZodString>;
|
11753
12067
|
}, z.core.$strip>]>>;
|
11754
12068
|
yMeasures: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
11755
12069
|
id: z.ZodString;
|
@@ -11785,6 +12099,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11785
12099
|
halfEven: "halfEven";
|
11786
12100
|
}>>>;
|
11787
12101
|
}, z.core.$strip>>>;
|
12102
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
12103
|
+
xAxis: "xAxis";
|
12104
|
+
yAxis: "yAxis";
|
12105
|
+
angle: "angle";
|
12106
|
+
color: "color";
|
12107
|
+
tooltip: "tooltip";
|
12108
|
+
label: "label";
|
12109
|
+
primaryYAxis: "primaryYAxis";
|
12110
|
+
secondaryYAxis: "secondaryYAxis";
|
12111
|
+
radius: "radius";
|
12112
|
+
size: "size";
|
12113
|
+
}>>;
|
12114
|
+
parentId: z.ZodOptional<z.ZodString>;
|
11788
12115
|
}, z.core.$strip>>, z.ZodObject<{
|
11789
12116
|
id: z.ZodString;
|
11790
12117
|
alias: z.ZodOptional<z.ZodString>;
|
@@ -11819,6 +12146,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11819
12146
|
halfEven: "halfEven";
|
11820
12147
|
}>>>;
|
11821
12148
|
}, z.core.$strip>>>;
|
12149
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
12150
|
+
xAxis: "xAxis";
|
12151
|
+
yAxis: "yAxis";
|
12152
|
+
angle: "angle";
|
12153
|
+
color: "color";
|
12154
|
+
tooltip: "tooltip";
|
12155
|
+
label: "label";
|
12156
|
+
primaryYAxis: "primaryYAxis";
|
12157
|
+
secondaryYAxis: "secondaryYAxis";
|
12158
|
+
radius: "radius";
|
12159
|
+
size: "size";
|
12160
|
+
}>>;
|
12161
|
+
parentId: z.ZodOptional<z.ZodString>;
|
11822
12162
|
}, z.core.$strip>]>>;
|
11823
12163
|
}, z.core.$strip>>>>;
|
11824
12164
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
@@ -12965,6 +13305,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12965
13305
|
rowDimension: "rowDimension";
|
12966
13306
|
columnDimension: "columnDimension";
|
12967
13307
|
}>>;
|
13308
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
13309
|
+
column: "column";
|
13310
|
+
xAxis: "xAxis";
|
13311
|
+
yAxis: "yAxis";
|
13312
|
+
angle: "angle";
|
13313
|
+
color: "color";
|
13314
|
+
detail: "detail";
|
13315
|
+
tooltip: "tooltip";
|
13316
|
+
label: "label";
|
13317
|
+
row: "row";
|
13318
|
+
}>>;
|
12968
13319
|
}, z.core.$strip>>>>;
|
12969
13320
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
12970
13321
|
id: z.ZodString;
|
@@ -13000,6 +13351,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13000
13351
|
halfEven: "halfEven";
|
13001
13352
|
}>>>;
|
13002
13353
|
}, z.core.$strip>>>;
|
13354
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
13355
|
+
xAxis: "xAxis";
|
13356
|
+
yAxis: "yAxis";
|
13357
|
+
angle: "angle";
|
13358
|
+
color: "color";
|
13359
|
+
tooltip: "tooltip";
|
13360
|
+
label: "label";
|
13361
|
+
primaryYAxis: "primaryYAxis";
|
13362
|
+
secondaryYAxis: "secondaryYAxis";
|
13363
|
+
radius: "radius";
|
13364
|
+
size: "size";
|
13365
|
+
}>>;
|
13366
|
+
parentId: z.ZodOptional<z.ZodString>;
|
13003
13367
|
}, z.core.$strip>]>>>>;
|
13004
13368
|
dualMeasures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
13005
13369
|
id: z.ZodString;
|
@@ -13037,6 +13401,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13037
13401
|
halfEven: "halfEven";
|
13038
13402
|
}>>>;
|
13039
13403
|
}, z.core.$strip>>>;
|
13404
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
13405
|
+
xAxis: "xAxis";
|
13406
|
+
yAxis: "yAxis";
|
13407
|
+
angle: "angle";
|
13408
|
+
color: "color";
|
13409
|
+
tooltip: "tooltip";
|
13410
|
+
label: "label";
|
13411
|
+
primaryYAxis: "primaryYAxis";
|
13412
|
+
secondaryYAxis: "secondaryYAxis";
|
13413
|
+
radius: "radius";
|
13414
|
+
size: "size";
|
13415
|
+
}>>;
|
13416
|
+
parentId: z.ZodOptional<z.ZodString>;
|
13040
13417
|
}, z.core.$strip>>, z.ZodObject<{
|
13041
13418
|
id: z.ZodString;
|
13042
13419
|
alias: z.ZodOptional<z.ZodString>;
|
@@ -13071,6 +13448,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13071
13448
|
halfEven: "halfEven";
|
13072
13449
|
}>>>;
|
13073
13450
|
}, z.core.$strip>>>;
|
13451
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
13452
|
+
xAxis: "xAxis";
|
13453
|
+
yAxis: "yAxis";
|
13454
|
+
angle: "angle";
|
13455
|
+
color: "color";
|
13456
|
+
tooltip: "tooltip";
|
13457
|
+
label: "label";
|
13458
|
+
primaryYAxis: "primaryYAxis";
|
13459
|
+
secondaryYAxis: "secondaryYAxis";
|
13460
|
+
radius: "radius";
|
13461
|
+
size: "size";
|
13462
|
+
}>>;
|
13463
|
+
parentId: z.ZodOptional<z.ZodString>;
|
13074
13464
|
}, z.core.$strip>]>>;
|
13075
13465
|
secondaryMeasures: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
13076
13466
|
id: z.ZodString;
|
@@ -13106,6 +13496,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13106
13496
|
halfEven: "halfEven";
|
13107
13497
|
}>>>;
|
13108
13498
|
}, z.core.$strip>>>;
|
13499
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
13500
|
+
xAxis: "xAxis";
|
13501
|
+
yAxis: "yAxis";
|
13502
|
+
angle: "angle";
|
13503
|
+
color: "color";
|
13504
|
+
tooltip: "tooltip";
|
13505
|
+
label: "label";
|
13506
|
+
primaryYAxis: "primaryYAxis";
|
13507
|
+
secondaryYAxis: "secondaryYAxis";
|
13508
|
+
radius: "radius";
|
13509
|
+
size: "size";
|
13510
|
+
}>>;
|
13511
|
+
parentId: z.ZodOptional<z.ZodString>;
|
13109
13512
|
}, z.core.$strip>>, z.ZodObject<{
|
13110
13513
|
id: z.ZodString;
|
13111
13514
|
alias: z.ZodOptional<z.ZodString>;
|
@@ -13140,6 +13543,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13140
13543
|
halfEven: "halfEven";
|
13141
13544
|
}>>>;
|
13142
13545
|
}, z.core.$strip>>>;
|
13546
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
13547
|
+
xAxis: "xAxis";
|
13548
|
+
yAxis: "yAxis";
|
13549
|
+
angle: "angle";
|
13550
|
+
color: "color";
|
13551
|
+
tooltip: "tooltip";
|
13552
|
+
label: "label";
|
13553
|
+
primaryYAxis: "primaryYAxis";
|
13554
|
+
secondaryYAxis: "secondaryYAxis";
|
13555
|
+
radius: "radius";
|
13556
|
+
size: "size";
|
13557
|
+
}>>;
|
13558
|
+
parentId: z.ZodOptional<z.ZodString>;
|
13143
13559
|
}, z.core.$strip>]>>;
|
13144
13560
|
}, z.core.$strip>>>>;
|
13145
13561
|
dualChartType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
@@ -14928,6 +15344,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14928
15344
|
rowDimension: "rowDimension";
|
14929
15345
|
columnDimension: "columnDimension";
|
14930
15346
|
}>>;
|
15347
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15348
|
+
column: "column";
|
15349
|
+
xAxis: "xAxis";
|
15350
|
+
yAxis: "yAxis";
|
15351
|
+
angle: "angle";
|
15352
|
+
color: "color";
|
15353
|
+
detail: "detail";
|
15354
|
+
tooltip: "tooltip";
|
15355
|
+
label: "label";
|
15356
|
+
row: "row";
|
15357
|
+
}>>;
|
14931
15358
|
}, z.core.$strip>>>>;
|
14932
15359
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
14933
15360
|
id: z.ZodString;
|
@@ -14963,6 +15390,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14963
15390
|
halfEven: "halfEven";
|
14964
15391
|
}>>>;
|
14965
15392
|
}, z.core.$strip>>>;
|
15393
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15394
|
+
xAxis: "xAxis";
|
15395
|
+
yAxis: "yAxis";
|
15396
|
+
angle: "angle";
|
15397
|
+
color: "color";
|
15398
|
+
tooltip: "tooltip";
|
15399
|
+
label: "label";
|
15400
|
+
primaryYAxis: "primaryYAxis";
|
15401
|
+
secondaryYAxis: "secondaryYAxis";
|
15402
|
+
radius: "radius";
|
15403
|
+
size: "size";
|
15404
|
+
}>>;
|
15405
|
+
parentId: z.ZodOptional<z.ZodString>;
|
14966
15406
|
}, z.core.$strip>]>>>>;
|
14967
15407
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
14968
15408
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -15060,6 +15500,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15060
15500
|
rowDimension: "rowDimension";
|
15061
15501
|
columnDimension: "columnDimension";
|
15062
15502
|
}>>;
|
15503
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15504
|
+
column: "column";
|
15505
|
+
xAxis: "xAxis";
|
15506
|
+
yAxis: "yAxis";
|
15507
|
+
angle: "angle";
|
15508
|
+
color: "color";
|
15509
|
+
detail: "detail";
|
15510
|
+
tooltip: "tooltip";
|
15511
|
+
label: "label";
|
15512
|
+
row: "row";
|
15513
|
+
}>>;
|
15063
15514
|
}, z.core.$strip>>>>;
|
15064
15515
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
15065
15516
|
id: z.ZodString;
|
@@ -15095,6 +15546,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15095
15546
|
halfEven: "halfEven";
|
15096
15547
|
}>>>;
|
15097
15548
|
}, z.core.$strip>>>;
|
15549
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15550
|
+
xAxis: "xAxis";
|
15551
|
+
yAxis: "yAxis";
|
15552
|
+
angle: "angle";
|
15553
|
+
color: "color";
|
15554
|
+
tooltip: "tooltip";
|
15555
|
+
label: "label";
|
15556
|
+
primaryYAxis: "primaryYAxis";
|
15557
|
+
secondaryYAxis: "secondaryYAxis";
|
15558
|
+
radius: "radius";
|
15559
|
+
size: "size";
|
15560
|
+
}>>;
|
15561
|
+
parentId: z.ZodOptional<z.ZodString>;
|
15098
15562
|
}, z.core.$strip>]>>>>;
|
15099
15563
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
15100
15564
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -15192,6 +15656,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15192
15656
|
rowDimension: "rowDimension";
|
15193
15657
|
columnDimension: "columnDimension";
|
15194
15658
|
}>>;
|
15659
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15660
|
+
column: "column";
|
15661
|
+
xAxis: "xAxis";
|
15662
|
+
yAxis: "yAxis";
|
15663
|
+
angle: "angle";
|
15664
|
+
color: "color";
|
15665
|
+
detail: "detail";
|
15666
|
+
tooltip: "tooltip";
|
15667
|
+
label: "label";
|
15668
|
+
row: "row";
|
15669
|
+
}>>;
|
15195
15670
|
}, z.core.$strip>>>>;
|
15196
15671
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
15197
15672
|
id: z.ZodString;
|
@@ -15227,6 +15702,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15227
15702
|
halfEven: "halfEven";
|
15228
15703
|
}>>>;
|
15229
15704
|
}, z.core.$strip>>>;
|
15705
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15706
|
+
xAxis: "xAxis";
|
15707
|
+
yAxis: "yAxis";
|
15708
|
+
angle: "angle";
|
15709
|
+
color: "color";
|
15710
|
+
tooltip: "tooltip";
|
15711
|
+
label: "label";
|
15712
|
+
primaryYAxis: "primaryYAxis";
|
15713
|
+
secondaryYAxis: "secondaryYAxis";
|
15714
|
+
radius: "radius";
|
15715
|
+
size: "size";
|
15716
|
+
}>>;
|
15717
|
+
parentId: z.ZodOptional<z.ZodString>;
|
15230
15718
|
}, z.core.$strip>]>>>>;
|
15231
15719
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
15232
15720
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -15324,6 +15812,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15324
15812
|
rowDimension: "rowDimension";
|
15325
15813
|
columnDimension: "columnDimension";
|
15326
15814
|
}>>;
|
15815
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15816
|
+
column: "column";
|
15817
|
+
xAxis: "xAxis";
|
15818
|
+
yAxis: "yAxis";
|
15819
|
+
angle: "angle";
|
15820
|
+
color: "color";
|
15821
|
+
detail: "detail";
|
15822
|
+
tooltip: "tooltip";
|
15823
|
+
label: "label";
|
15824
|
+
row: "row";
|
15825
|
+
}>>;
|
15327
15826
|
}, z.core.$strip>>>>;
|
15328
15827
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
15329
15828
|
id: z.ZodString;
|
@@ -15359,6 +15858,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15359
15858
|
halfEven: "halfEven";
|
15360
15859
|
}>>>;
|
15361
15860
|
}, z.core.$strip>>>;
|
15861
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15862
|
+
xAxis: "xAxis";
|
15863
|
+
yAxis: "yAxis";
|
15864
|
+
angle: "angle";
|
15865
|
+
color: "color";
|
15866
|
+
tooltip: "tooltip";
|
15867
|
+
label: "label";
|
15868
|
+
primaryYAxis: "primaryYAxis";
|
15869
|
+
secondaryYAxis: "secondaryYAxis";
|
15870
|
+
radius: "radius";
|
15871
|
+
size: "size";
|
15872
|
+
}>>;
|
15873
|
+
parentId: z.ZodOptional<z.ZodString>;
|
15362
15874
|
}, z.core.$strip>]>>>>;
|
15363
15875
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
15364
15876
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -15456,6 +15968,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15456
15968
|
rowDimension: "rowDimension";
|
15457
15969
|
columnDimension: "columnDimension";
|
15458
15970
|
}>>;
|
15971
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
15972
|
+
column: "column";
|
15973
|
+
xAxis: "xAxis";
|
15974
|
+
yAxis: "yAxis";
|
15975
|
+
angle: "angle";
|
15976
|
+
color: "color";
|
15977
|
+
detail: "detail";
|
15978
|
+
tooltip: "tooltip";
|
15979
|
+
label: "label";
|
15980
|
+
row: "row";
|
15981
|
+
}>>;
|
15459
15982
|
}, z.core.$strip>>>>;
|
15460
15983
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
15461
15984
|
id: z.ZodString;
|
@@ -15491,6 +16014,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15491
16014
|
halfEven: "halfEven";
|
15492
16015
|
}>>>;
|
15493
16016
|
}, z.core.$strip>>>;
|
16017
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
16018
|
+
xAxis: "xAxis";
|
16019
|
+
yAxis: "yAxis";
|
16020
|
+
angle: "angle";
|
16021
|
+
color: "color";
|
16022
|
+
tooltip: "tooltip";
|
16023
|
+
label: "label";
|
16024
|
+
primaryYAxis: "primaryYAxis";
|
16025
|
+
secondaryYAxis: "secondaryYAxis";
|
16026
|
+
radius: "radius";
|
16027
|
+
size: "size";
|
16028
|
+
}>>;
|
16029
|
+
parentId: z.ZodOptional<z.ZodString>;
|
15494
16030
|
}, z.core.$strip>]>>>>;
|
15495
16031
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
15496
16032
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -15588,6 +16124,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15588
16124
|
rowDimension: "rowDimension";
|
15589
16125
|
columnDimension: "columnDimension";
|
15590
16126
|
}>>;
|
16127
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
16128
|
+
column: "column";
|
16129
|
+
xAxis: "xAxis";
|
16130
|
+
yAxis: "yAxis";
|
16131
|
+
angle: "angle";
|
16132
|
+
color: "color";
|
16133
|
+
detail: "detail";
|
16134
|
+
tooltip: "tooltip";
|
16135
|
+
label: "label";
|
16136
|
+
row: "row";
|
16137
|
+
}>>;
|
15591
16138
|
}, z.core.$strip>>>>;
|
15592
16139
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
15593
16140
|
id: z.ZodString;
|
@@ -15623,6 +16170,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15623
16170
|
halfEven: "halfEven";
|
15624
16171
|
}>>>;
|
15625
16172
|
}, z.core.$strip>>>;
|
16173
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
16174
|
+
xAxis: "xAxis";
|
16175
|
+
yAxis: "yAxis";
|
16176
|
+
angle: "angle";
|
16177
|
+
color: "color";
|
16178
|
+
tooltip: "tooltip";
|
16179
|
+
label: "label";
|
16180
|
+
primaryYAxis: "primaryYAxis";
|
16181
|
+
secondaryYAxis: "secondaryYAxis";
|
16182
|
+
radius: "radius";
|
16183
|
+
size: "size";
|
16184
|
+
}>>;
|
16185
|
+
parentId: z.ZodOptional<z.ZodString>;
|
15626
16186
|
}, z.core.$strip>]>>>>;
|
15627
16187
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
15628
16188
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
@@ -15677,6 +16237,17 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15677
16237
|
rowDimension: "rowDimension";
|
15678
16238
|
columnDimension: "columnDimension";
|
15679
16239
|
}>>;
|
16240
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
16241
|
+
column: "column";
|
16242
|
+
xAxis: "xAxis";
|
16243
|
+
yAxis: "yAxis";
|
16244
|
+
angle: "angle";
|
16245
|
+
color: "color";
|
16246
|
+
detail: "detail";
|
16247
|
+
tooltip: "tooltip";
|
16248
|
+
label: "label";
|
16249
|
+
row: "row";
|
16250
|
+
}>>;
|
15680
16251
|
}, z.core.$strip>>>>;
|
15681
16252
|
measures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").MeasureGroup, unknown, z.core.$ZodTypeInternals<import("./properties").MeasureGroup, unknown>>, z.ZodObject<{
|
15682
16253
|
id: z.ZodString;
|
@@ -15712,6 +16283,19 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15712
16283
|
halfEven: "halfEven";
|
15713
16284
|
}>>>;
|
15714
16285
|
}, z.core.$strip>>>;
|
16286
|
+
encoding: z.ZodOptional<z.ZodEnum<{
|
16287
|
+
xAxis: "xAxis";
|
16288
|
+
yAxis: "yAxis";
|
16289
|
+
angle: "angle";
|
16290
|
+
color: "color";
|
16291
|
+
tooltip: "tooltip";
|
16292
|
+
label: "label";
|
16293
|
+
primaryYAxis: "primaryYAxis";
|
16294
|
+
secondaryYAxis: "secondaryYAxis";
|
16295
|
+
radius: "radius";
|
16296
|
+
size: "size";
|
16297
|
+
}>>;
|
16298
|
+
parentId: z.ZodOptional<z.ZodString>;
|
15715
16299
|
}, z.core.$strip>]>>>>;
|
15716
16300
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
|
15717
16301
|
color: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|