@visactor/vseed 0.1.4 → 0.1.6
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 +2 -2
- package/dist/index.cjs +851 -703
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +851 -703
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/chart/pipes/{init/autoDimensions.d.ts → default/defaultDimensions.d.ts} +1 -1
- package/dist/pipeline/advanced/chart/pipes/default/defaultMeasureName.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/default/defaultMeasures.d.ts +5 -0
- package/dist/pipeline/advanced/chart/pipes/default/index.d.ts +3 -0
- package/dist/pipeline/advanced/chart/pipes/encoding/column.d.ts +19 -0
- package/dist/pipeline/advanced/chart/pipes/encoding/line.d.ts +17 -0
- package/dist/pipeline/advanced/chart/pipes/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/init/index.d.ts +0 -2
- package/dist/pipeline/advanced/chart/pipes/measures/utils.d.ts +3 -18
- package/dist/pipeline/advanced/table/pipes/reshape/index.d.ts +1 -0
- package/dist/pipeline/advanced/table/pipes/reshape/reshapePivotTable.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorCellStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorFunnelStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorPieStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorRoseStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/index.d.ts +4 -0
- package/dist/pipeline/spec/chart/pipes/markStyle/cellStyle.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/markStyle/funnelStyle.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/markStyle/index.d.ts +5 -1
- package/dist/pipeline/spec/chart/pipes/markStyle/pieStyle.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/markStyle/roseStyle.d.ts +2 -0
- package/dist/types/advancedVSeed.d.ts +2 -0
- package/dist/types/chartType/area/area.d.ts +20 -3
- package/dist/types/chartType/area/zArea.d.ts +2 -0
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +16 -0
- package/dist/types/chartType/areaPercent/zAreaPercent.d.ts +2 -0
- package/dist/types/chartType/bar/zBar.d.ts +2 -0
- package/dist/types/chartType/barParallel/zBarParallel.d.ts +2 -0
- package/dist/types/chartType/barPercent/zBarPercent.d.ts +2 -0
- package/dist/types/chartType/column/column.d.ts +17 -1
- package/dist/types/chartType/column/zColumn.d.ts +2 -0
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +17 -0
- package/dist/types/chartType/columnParallel/zColumnParallel.d.ts +2 -0
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +17 -1
- package/dist/types/chartType/columnPercent/zColumnPercent.d.ts +2 -0
- package/dist/types/chartType/donut/zDonut.d.ts +2 -0
- package/dist/types/chartType/dualAxis/zDualAxis.d.ts +10 -0
- package/dist/types/chartType/funnel/zFunnel.d.ts +2 -0
- package/dist/types/chartType/heatmap/zHeatmap.d.ts +2 -0
- package/dist/types/chartType/line/line.d.ts +16 -0
- package/dist/types/chartType/line/zLine.d.ts +2 -0
- package/dist/types/chartType/pie/zPie.d.ts +2 -0
- package/dist/types/chartType/pivotTable/zPivotTable.d.ts +2 -0
- package/dist/types/chartType/radar/zRadar.d.ts +2 -0
- package/dist/types/chartType/rose/zRose.d.ts +2 -0
- package/dist/types/chartType/roseParallel/zRoseParallel.d.ts +2 -0
- package/dist/types/chartType/scatter/zScatter.d.ts +10 -0
- package/dist/types/chartType/table/zTable.d.ts +2 -0
- package/dist/types/properties/measures/measures.d.ts +3 -1
- package/dist/types/properties/measures/zDualMeasures.d.ts +16 -0
- package/dist/types/properties/measures/zMeasures.d.ts +6 -0
- package/dist/types/properties/measures/zScatterMeasures.d.ts +16 -0
- package/dist/types/zVseed.d.ts +56 -0
- package/dist/umd/index.js +872 -724
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/pipeline/advanced/chart/pipes/init/utils.d.ts +0 -2
package/dist/types/zVseed.d.ts
CHANGED
@@ -57,10 +57,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
57
57
|
}>>>;
|
58
58
|
}, z.core.$strip>>>;
|
59
59
|
encoding: z.ZodOptional<z.ZodEnum<{
|
60
|
+
column: "column";
|
60
61
|
xAxis: "xAxis";
|
61
62
|
yAxis: "yAxis";
|
62
63
|
angle: "angle";
|
63
64
|
color: "color";
|
65
|
+
detail: "detail";
|
64
66
|
tooltip: "tooltip";
|
65
67
|
label: "label";
|
66
68
|
primaryYAxis: "primaryYAxis";
|
@@ -147,10 +149,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
147
149
|
}>>>;
|
148
150
|
}, z.core.$strip>>>;
|
149
151
|
encoding: z.ZodOptional<z.ZodEnum<{
|
152
|
+
column: "column";
|
150
153
|
xAxis: "xAxis";
|
151
154
|
yAxis: "yAxis";
|
152
155
|
angle: "angle";
|
153
156
|
color: "color";
|
157
|
+
detail: "detail";
|
154
158
|
tooltip: "tooltip";
|
155
159
|
label: "label";
|
156
160
|
primaryYAxis: "primaryYAxis";
|
@@ -251,10 +255,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
251
255
|
}>>>;
|
252
256
|
}, z.core.$strip>>>;
|
253
257
|
encoding: z.ZodOptional<z.ZodEnum<{
|
258
|
+
column: "column";
|
254
259
|
xAxis: "xAxis";
|
255
260
|
yAxis: "yAxis";
|
256
261
|
angle: "angle";
|
257
262
|
color: "color";
|
263
|
+
detail: "detail";
|
258
264
|
tooltip: "tooltip";
|
259
265
|
label: "label";
|
260
266
|
primaryYAxis: "primaryYAxis";
|
@@ -1645,10 +1651,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1645
1651
|
}>>>;
|
1646
1652
|
}, z.core.$strip>>>;
|
1647
1653
|
encoding: z.ZodOptional<z.ZodEnum<{
|
1654
|
+
column: "column";
|
1648
1655
|
xAxis: "xAxis";
|
1649
1656
|
yAxis: "yAxis";
|
1650
1657
|
angle: "angle";
|
1651
1658
|
color: "color";
|
1659
|
+
detail: "detail";
|
1652
1660
|
tooltip: "tooltip";
|
1653
1661
|
label: "label";
|
1654
1662
|
primaryYAxis: "primaryYAxis";
|
@@ -2855,10 +2863,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2855
2863
|
}>>>;
|
2856
2864
|
}, z.core.$strip>>>;
|
2857
2865
|
encoding: z.ZodOptional<z.ZodEnum<{
|
2866
|
+
column: "column";
|
2858
2867
|
xAxis: "xAxis";
|
2859
2868
|
yAxis: "yAxis";
|
2860
2869
|
angle: "angle";
|
2861
2870
|
color: "color";
|
2871
|
+
detail: "detail";
|
2862
2872
|
tooltip: "tooltip";
|
2863
2873
|
label: "label";
|
2864
2874
|
primaryYAxis: "primaryYAxis";
|
@@ -4065,10 +4075,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4065
4075
|
}>>>;
|
4066
4076
|
}, z.core.$strip>>>;
|
4067
4077
|
encoding: z.ZodOptional<z.ZodEnum<{
|
4078
|
+
column: "column";
|
4068
4079
|
xAxis: "xAxis";
|
4069
4080
|
yAxis: "yAxis";
|
4070
4081
|
angle: "angle";
|
4071
4082
|
color: "color";
|
4083
|
+
detail: "detail";
|
4072
4084
|
tooltip: "tooltip";
|
4073
4085
|
label: "label";
|
4074
4086
|
primaryYAxis: "primaryYAxis";
|
@@ -5275,10 +5287,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5275
5287
|
}>>>;
|
5276
5288
|
}, z.core.$strip>>>;
|
5277
5289
|
encoding: z.ZodOptional<z.ZodEnum<{
|
5290
|
+
column: "column";
|
5278
5291
|
xAxis: "xAxis";
|
5279
5292
|
yAxis: "yAxis";
|
5280
5293
|
angle: "angle";
|
5281
5294
|
color: "color";
|
5295
|
+
detail: "detail";
|
5282
5296
|
tooltip: "tooltip";
|
5283
5297
|
label: "label";
|
5284
5298
|
primaryYAxis: "primaryYAxis";
|
@@ -6485,10 +6499,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6485
6499
|
}>>>;
|
6486
6500
|
}, z.core.$strip>>>;
|
6487
6501
|
encoding: z.ZodOptional<z.ZodEnum<{
|
6502
|
+
column: "column";
|
6488
6503
|
xAxis: "xAxis";
|
6489
6504
|
yAxis: "yAxis";
|
6490
6505
|
angle: "angle";
|
6491
6506
|
color: "color";
|
6507
|
+
detail: "detail";
|
6492
6508
|
tooltip: "tooltip";
|
6493
6509
|
label: "label";
|
6494
6510
|
primaryYAxis: "primaryYAxis";
|
@@ -7695,10 +7711,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7695
7711
|
}>>>;
|
7696
7712
|
}, z.core.$strip>>>;
|
7697
7713
|
encoding: z.ZodOptional<z.ZodEnum<{
|
7714
|
+
column: "column";
|
7698
7715
|
xAxis: "xAxis";
|
7699
7716
|
yAxis: "yAxis";
|
7700
7717
|
angle: "angle";
|
7701
7718
|
color: "color";
|
7719
|
+
detail: "detail";
|
7702
7720
|
tooltip: "tooltip";
|
7703
7721
|
label: "label";
|
7704
7722
|
primaryYAxis: "primaryYAxis";
|
@@ -8905,10 +8923,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8905
8923
|
}>>>;
|
8906
8924
|
}, z.core.$strip>>>;
|
8907
8925
|
encoding: z.ZodOptional<z.ZodEnum<{
|
8926
|
+
column: "column";
|
8908
8927
|
xAxis: "xAxis";
|
8909
8928
|
yAxis: "yAxis";
|
8910
8929
|
angle: "angle";
|
8911
8930
|
color: "color";
|
8931
|
+
detail: "detail";
|
8912
8932
|
tooltip: "tooltip";
|
8913
8933
|
label: "label";
|
8914
8934
|
primaryYAxis: "primaryYAxis";
|
@@ -10430,10 +10450,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10430
10450
|
}>>>;
|
10431
10451
|
}, z.core.$strip>>>;
|
10432
10452
|
encoding: z.ZodOptional<z.ZodEnum<{
|
10453
|
+
column: "column";
|
10433
10454
|
xAxis: "xAxis";
|
10434
10455
|
yAxis: "yAxis";
|
10435
10456
|
angle: "angle";
|
10436
10457
|
color: "color";
|
10458
|
+
detail: "detail";
|
10437
10459
|
tooltip: "tooltip";
|
10438
10460
|
label: "label";
|
10439
10461
|
primaryYAxis: "primaryYAxis";
|
@@ -11955,10 +11977,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11955
11977
|
}>>>;
|
11956
11978
|
}, z.core.$strip>>>;
|
11957
11979
|
encoding: z.ZodOptional<z.ZodEnum<{
|
11980
|
+
column: "column";
|
11958
11981
|
xAxis: "xAxis";
|
11959
11982
|
yAxis: "yAxis";
|
11960
11983
|
angle: "angle";
|
11961
11984
|
color: "color";
|
11985
|
+
detail: "detail";
|
11962
11986
|
tooltip: "tooltip";
|
11963
11987
|
label: "label";
|
11964
11988
|
primaryYAxis: "primaryYAxis";
|
@@ -12005,10 +12029,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12005
12029
|
}>>>;
|
12006
12030
|
}, z.core.$strip>>>;
|
12007
12031
|
encoding: z.ZodOptional<z.ZodEnum<{
|
12032
|
+
column: "column";
|
12008
12033
|
xAxis: "xAxis";
|
12009
12034
|
yAxis: "yAxis";
|
12010
12035
|
angle: "angle";
|
12011
12036
|
color: "color";
|
12037
|
+
detail: "detail";
|
12012
12038
|
tooltip: "tooltip";
|
12013
12039
|
label: "label";
|
12014
12040
|
primaryYAxis: "primaryYAxis";
|
@@ -12052,10 +12078,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12052
12078
|
}>>>;
|
12053
12079
|
}, z.core.$strip>>>;
|
12054
12080
|
encoding: z.ZodOptional<z.ZodEnum<{
|
12081
|
+
column: "column";
|
12055
12082
|
xAxis: "xAxis";
|
12056
12083
|
yAxis: "yAxis";
|
12057
12084
|
angle: "angle";
|
12058
12085
|
color: "color";
|
12086
|
+
detail: "detail";
|
12059
12087
|
tooltip: "tooltip";
|
12060
12088
|
label: "label";
|
12061
12089
|
primaryYAxis: "primaryYAxis";
|
@@ -12100,10 +12128,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12100
12128
|
}>>>;
|
12101
12129
|
}, z.core.$strip>>>;
|
12102
12130
|
encoding: z.ZodOptional<z.ZodEnum<{
|
12131
|
+
column: "column";
|
12103
12132
|
xAxis: "xAxis";
|
12104
12133
|
yAxis: "yAxis";
|
12105
12134
|
angle: "angle";
|
12106
12135
|
color: "color";
|
12136
|
+
detail: "detail";
|
12107
12137
|
tooltip: "tooltip";
|
12108
12138
|
label: "label";
|
12109
12139
|
primaryYAxis: "primaryYAxis";
|
@@ -12147,10 +12177,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12147
12177
|
}>>>;
|
12148
12178
|
}, z.core.$strip>>>;
|
12149
12179
|
encoding: z.ZodOptional<z.ZodEnum<{
|
12180
|
+
column: "column";
|
12150
12181
|
xAxis: "xAxis";
|
12151
12182
|
yAxis: "yAxis";
|
12152
12183
|
angle: "angle";
|
12153
12184
|
color: "color";
|
12185
|
+
detail: "detail";
|
12154
12186
|
tooltip: "tooltip";
|
12155
12187
|
label: "label";
|
12156
12188
|
primaryYAxis: "primaryYAxis";
|
@@ -13352,10 +13384,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13352
13384
|
}>>>;
|
13353
13385
|
}, z.core.$strip>>>;
|
13354
13386
|
encoding: z.ZodOptional<z.ZodEnum<{
|
13387
|
+
column: "column";
|
13355
13388
|
xAxis: "xAxis";
|
13356
13389
|
yAxis: "yAxis";
|
13357
13390
|
angle: "angle";
|
13358
13391
|
color: "color";
|
13392
|
+
detail: "detail";
|
13359
13393
|
tooltip: "tooltip";
|
13360
13394
|
label: "label";
|
13361
13395
|
primaryYAxis: "primaryYAxis";
|
@@ -13402,10 +13436,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13402
13436
|
}>>>;
|
13403
13437
|
}, z.core.$strip>>>;
|
13404
13438
|
encoding: z.ZodOptional<z.ZodEnum<{
|
13439
|
+
column: "column";
|
13405
13440
|
xAxis: "xAxis";
|
13406
13441
|
yAxis: "yAxis";
|
13407
13442
|
angle: "angle";
|
13408
13443
|
color: "color";
|
13444
|
+
detail: "detail";
|
13409
13445
|
tooltip: "tooltip";
|
13410
13446
|
label: "label";
|
13411
13447
|
primaryYAxis: "primaryYAxis";
|
@@ -13449,10 +13485,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13449
13485
|
}>>>;
|
13450
13486
|
}, z.core.$strip>>>;
|
13451
13487
|
encoding: z.ZodOptional<z.ZodEnum<{
|
13488
|
+
column: "column";
|
13452
13489
|
xAxis: "xAxis";
|
13453
13490
|
yAxis: "yAxis";
|
13454
13491
|
angle: "angle";
|
13455
13492
|
color: "color";
|
13493
|
+
detail: "detail";
|
13456
13494
|
tooltip: "tooltip";
|
13457
13495
|
label: "label";
|
13458
13496
|
primaryYAxis: "primaryYAxis";
|
@@ -13497,10 +13535,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13497
13535
|
}>>>;
|
13498
13536
|
}, z.core.$strip>>>;
|
13499
13537
|
encoding: z.ZodOptional<z.ZodEnum<{
|
13538
|
+
column: "column";
|
13500
13539
|
xAxis: "xAxis";
|
13501
13540
|
yAxis: "yAxis";
|
13502
13541
|
angle: "angle";
|
13503
13542
|
color: "color";
|
13543
|
+
detail: "detail";
|
13504
13544
|
tooltip: "tooltip";
|
13505
13545
|
label: "label";
|
13506
13546
|
primaryYAxis: "primaryYAxis";
|
@@ -13544,10 +13584,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13544
13584
|
}>>>;
|
13545
13585
|
}, z.core.$strip>>>;
|
13546
13586
|
encoding: z.ZodOptional<z.ZodEnum<{
|
13587
|
+
column: "column";
|
13547
13588
|
xAxis: "xAxis";
|
13548
13589
|
yAxis: "yAxis";
|
13549
13590
|
angle: "angle";
|
13550
13591
|
color: "color";
|
13592
|
+
detail: "detail";
|
13551
13593
|
tooltip: "tooltip";
|
13552
13594
|
label: "label";
|
13553
13595
|
primaryYAxis: "primaryYAxis";
|
@@ -15391,10 +15433,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15391
15433
|
}>>>;
|
15392
15434
|
}, z.core.$strip>>>;
|
15393
15435
|
encoding: z.ZodOptional<z.ZodEnum<{
|
15436
|
+
column: "column";
|
15394
15437
|
xAxis: "xAxis";
|
15395
15438
|
yAxis: "yAxis";
|
15396
15439
|
angle: "angle";
|
15397
15440
|
color: "color";
|
15441
|
+
detail: "detail";
|
15398
15442
|
tooltip: "tooltip";
|
15399
15443
|
label: "label";
|
15400
15444
|
primaryYAxis: "primaryYAxis";
|
@@ -15547,10 +15591,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15547
15591
|
}>>>;
|
15548
15592
|
}, z.core.$strip>>>;
|
15549
15593
|
encoding: z.ZodOptional<z.ZodEnum<{
|
15594
|
+
column: "column";
|
15550
15595
|
xAxis: "xAxis";
|
15551
15596
|
yAxis: "yAxis";
|
15552
15597
|
angle: "angle";
|
15553
15598
|
color: "color";
|
15599
|
+
detail: "detail";
|
15554
15600
|
tooltip: "tooltip";
|
15555
15601
|
label: "label";
|
15556
15602
|
primaryYAxis: "primaryYAxis";
|
@@ -15703,10 +15749,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15703
15749
|
}>>>;
|
15704
15750
|
}, z.core.$strip>>>;
|
15705
15751
|
encoding: z.ZodOptional<z.ZodEnum<{
|
15752
|
+
column: "column";
|
15706
15753
|
xAxis: "xAxis";
|
15707
15754
|
yAxis: "yAxis";
|
15708
15755
|
angle: "angle";
|
15709
15756
|
color: "color";
|
15757
|
+
detail: "detail";
|
15710
15758
|
tooltip: "tooltip";
|
15711
15759
|
label: "label";
|
15712
15760
|
primaryYAxis: "primaryYAxis";
|
@@ -15859,10 +15907,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15859
15907
|
}>>>;
|
15860
15908
|
}, z.core.$strip>>>;
|
15861
15909
|
encoding: z.ZodOptional<z.ZodEnum<{
|
15910
|
+
column: "column";
|
15862
15911
|
xAxis: "xAxis";
|
15863
15912
|
yAxis: "yAxis";
|
15864
15913
|
angle: "angle";
|
15865
15914
|
color: "color";
|
15915
|
+
detail: "detail";
|
15866
15916
|
tooltip: "tooltip";
|
15867
15917
|
label: "label";
|
15868
15918
|
primaryYAxis: "primaryYAxis";
|
@@ -16015,10 +16065,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16015
16065
|
}>>>;
|
16016
16066
|
}, z.core.$strip>>>;
|
16017
16067
|
encoding: z.ZodOptional<z.ZodEnum<{
|
16068
|
+
column: "column";
|
16018
16069
|
xAxis: "xAxis";
|
16019
16070
|
yAxis: "yAxis";
|
16020
16071
|
angle: "angle";
|
16021
16072
|
color: "color";
|
16073
|
+
detail: "detail";
|
16022
16074
|
tooltip: "tooltip";
|
16023
16075
|
label: "label";
|
16024
16076
|
primaryYAxis: "primaryYAxis";
|
@@ -16171,10 +16223,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16171
16223
|
}>>>;
|
16172
16224
|
}, z.core.$strip>>>;
|
16173
16225
|
encoding: z.ZodOptional<z.ZodEnum<{
|
16226
|
+
column: "column";
|
16174
16227
|
xAxis: "xAxis";
|
16175
16228
|
yAxis: "yAxis";
|
16176
16229
|
angle: "angle";
|
16177
16230
|
color: "color";
|
16231
|
+
detail: "detail";
|
16178
16232
|
tooltip: "tooltip";
|
16179
16233
|
label: "label";
|
16180
16234
|
primaryYAxis: "primaryYAxis";
|
@@ -16284,10 +16338,12 @@ export declare const zVSeed: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16284
16338
|
}>>>;
|
16285
16339
|
}, z.core.$strip>>>;
|
16286
16340
|
encoding: z.ZodOptional<z.ZodEnum<{
|
16341
|
+
column: "column";
|
16287
16342
|
xAxis: "xAxis";
|
16288
16343
|
yAxis: "yAxis";
|
16289
16344
|
angle: "angle";
|
16290
16345
|
color: "color";
|
16346
|
+
detail: "detail";
|
16291
16347
|
tooltip: "tooltip";
|
16292
16348
|
label: "label";
|
16293
16349
|
primaryYAxis: "primaryYAxis";
|