@visactor/vseed 0.1.3 → 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 +4 -2
- package/dist/dataReshape/foldMeasures.d.ts +2 -2
- package/dist/index.cjs +520 -370
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +533 -383
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/chart/pipes/init/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/init/utils.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/measures/index.d.ts +1 -0
- package/dist/types/advancedVSeed.d.ts +16 -5
- package/dist/types/chartType/area/zArea.d.ts +16 -5
- package/dist/types/chartType/areaPercent/zAreaPercent.d.ts +16 -5
- package/dist/types/chartType/bar/zBar.d.ts +16 -5
- package/dist/types/chartType/barParallel/zBarParallel.d.ts +16 -5
- package/dist/types/chartType/barPercent/zBarPercent.d.ts +16 -5
- package/dist/types/chartType/column/zColumn.d.ts +16 -5
- package/dist/types/chartType/columnParallel/zColumnParallel.d.ts +16 -5
- package/dist/types/chartType/columnPercent/zColumnPercent.d.ts +16 -5
- package/dist/types/chartType/donut/zDonut.d.ts +16 -5
- package/dist/types/chartType/dualAxis/zDualAxis.d.ts +36 -25
- package/dist/types/chartType/funnel/zFunnel.d.ts +16 -5
- package/dist/types/chartType/heatmap/zHeatmap.d.ts +16 -5
- package/dist/types/chartType/line/zLine.d.ts +16 -5
- package/dist/types/chartType/pie/zPie.d.ts +16 -5
- package/dist/types/chartType/pivotTable/zPivotTable.d.ts +16 -5
- package/dist/types/chartType/radar/zRadar.d.ts +16 -5
- package/dist/types/chartType/rose/zRose.d.ts +16 -5
- package/dist/types/chartType/roseParallel/zRoseParallel.d.ts +16 -5
- package/dist/types/chartType/scatter/zScatter.d.ts +36 -25
- package/dist/types/chartType/table/zTable.d.ts +16 -5
- package/dist/types/properties/dimensions/dimensions.d.ts +16 -0
- package/dist/types/properties/dimensions/zDimensions.d.ts +33 -0
- package/dist/types/properties/measures/zDualMeasures.d.ts +40 -40
- package/dist/types/properties/measures/zMeasures.d.ts +15 -15
- package/dist/types/properties/measures/zScatterMeasures.d.ts +40 -40
- package/dist/types/zVseed.d.ts +360 -140
- package/dist/umd/index.js +534 -370
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
@@ -35,16 +35,16 @@ export declare const zMeasure: z.ZodObject<{
|
|
35
35
|
}>>>;
|
36
36
|
}, z.core.$strip>>>;
|
37
37
|
encoding: z.ZodOptional<z.ZodEnum<{
|
38
|
-
primaryYAxis: "primaryYAxis";
|
39
|
-
secondaryYAxis: "secondaryYAxis";
|
40
38
|
xAxis: "xAxis";
|
41
39
|
yAxis: "yAxis";
|
42
40
|
angle: "angle";
|
43
|
-
radius: "radius";
|
44
|
-
size: "size";
|
45
41
|
color: "color";
|
46
|
-
label: "label";
|
47
42
|
tooltip: "tooltip";
|
43
|
+
label: "label";
|
44
|
+
primaryYAxis: "primaryYAxis";
|
45
|
+
secondaryYAxis: "secondaryYAxis";
|
46
|
+
radius: "radius";
|
47
|
+
size: "size";
|
48
48
|
}>>;
|
49
49
|
parentId: z.ZodOptional<z.ZodString>;
|
50
50
|
}, z.core.$strip>;
|
@@ -84,16 +84,16 @@ export declare const zMeasures: z.ZodArray<z.ZodObject<{
|
|
84
84
|
}>>>;
|
85
85
|
}, z.core.$strip>>>;
|
86
86
|
encoding: z.ZodOptional<z.ZodEnum<{
|
87
|
-
primaryYAxis: "primaryYAxis";
|
88
|
-
secondaryYAxis: "secondaryYAxis";
|
89
87
|
xAxis: "xAxis";
|
90
88
|
yAxis: "yAxis";
|
91
89
|
angle: "angle";
|
92
|
-
radius: "radius";
|
93
|
-
size: "size";
|
94
90
|
color: "color";
|
95
|
-
label: "label";
|
96
91
|
tooltip: "tooltip";
|
92
|
+
label: "label";
|
93
|
+
primaryYAxis: "primaryYAxis";
|
94
|
+
secondaryYAxis: "secondaryYAxis";
|
95
|
+
radius: "radius";
|
96
|
+
size: "size";
|
97
97
|
}>>;
|
98
98
|
parentId: z.ZodOptional<z.ZodString>;
|
99
99
|
}, z.core.$strip>>;
|
@@ -132,16 +132,16 @@ export declare const zMeasureTree: z.ZodArray<z.ZodUnion<[z.ZodType<MeasureGroup
|
|
132
132
|
}>>>;
|
133
133
|
}, z.core.$strip>>>;
|
134
134
|
encoding: z.ZodOptional<z.ZodEnum<{
|
135
|
-
primaryYAxis: "primaryYAxis";
|
136
|
-
secondaryYAxis: "secondaryYAxis";
|
137
135
|
xAxis: "xAxis";
|
138
136
|
yAxis: "yAxis";
|
139
137
|
angle: "angle";
|
140
|
-
radius: "radius";
|
141
|
-
size: "size";
|
142
138
|
color: "color";
|
143
|
-
label: "label";
|
144
139
|
tooltip: "tooltip";
|
140
|
+
label: "label";
|
141
|
+
primaryYAxis: "primaryYAxis";
|
142
|
+
secondaryYAxis: "secondaryYAxis";
|
143
|
+
radius: "radius";
|
144
|
+
size: "size";
|
145
145
|
}>>;
|
146
146
|
parentId: z.ZodOptional<z.ZodString>;
|
147
147
|
}, z.core.$strip>]>>;
|
@@ -36,16 +36,16 @@ export declare const zScatterMeasure: z.ZodObject<{
|
|
36
36
|
}>>>;
|
37
37
|
}, z.core.$strip>>>;
|
38
38
|
encoding: z.ZodOptional<z.ZodEnum<{
|
39
|
-
primaryYAxis: "primaryYAxis";
|
40
|
-
secondaryYAxis: "secondaryYAxis";
|
41
39
|
xAxis: "xAxis";
|
42
40
|
yAxis: "yAxis";
|
43
41
|
angle: "angle";
|
44
|
-
radius: "radius";
|
45
|
-
size: "size";
|
46
42
|
color: "color";
|
47
|
-
label: "label";
|
48
43
|
tooltip: "tooltip";
|
44
|
+
label: "label";
|
45
|
+
primaryYAxis: "primaryYAxis";
|
46
|
+
secondaryYAxis: "secondaryYAxis";
|
47
|
+
radius: "radius";
|
48
|
+
size: "size";
|
49
49
|
}>>;
|
50
50
|
parentId: z.ZodOptional<z.ZodString>;
|
51
51
|
}, z.core.$strip>>, z.ZodObject<{
|
@@ -83,16 +83,16 @@ export declare const zScatterMeasure: z.ZodObject<{
|
|
83
83
|
}>>>;
|
84
84
|
}, z.core.$strip>>>;
|
85
85
|
encoding: z.ZodOptional<z.ZodEnum<{
|
86
|
-
primaryYAxis: "primaryYAxis";
|
87
|
-
secondaryYAxis: "secondaryYAxis";
|
88
86
|
xAxis: "xAxis";
|
89
87
|
yAxis: "yAxis";
|
90
88
|
angle: "angle";
|
91
|
-
radius: "radius";
|
92
|
-
size: "size";
|
93
89
|
color: "color";
|
94
|
-
label: "label";
|
95
90
|
tooltip: "tooltip";
|
91
|
+
label: "label";
|
92
|
+
primaryYAxis: "primaryYAxis";
|
93
|
+
secondaryYAxis: "secondaryYAxis";
|
94
|
+
radius: "radius";
|
95
|
+
size: "size";
|
96
96
|
}>>;
|
97
97
|
parentId: z.ZodOptional<z.ZodString>;
|
98
98
|
}, z.core.$strip>]>>;
|
@@ -131,16 +131,16 @@ export declare const zScatterMeasure: z.ZodObject<{
|
|
131
131
|
}>>>;
|
132
132
|
}, z.core.$strip>>>;
|
133
133
|
encoding: z.ZodOptional<z.ZodEnum<{
|
134
|
-
primaryYAxis: "primaryYAxis";
|
135
|
-
secondaryYAxis: "secondaryYAxis";
|
136
134
|
xAxis: "xAxis";
|
137
135
|
yAxis: "yAxis";
|
138
136
|
angle: "angle";
|
139
|
-
radius: "radius";
|
140
|
-
size: "size";
|
141
137
|
color: "color";
|
142
|
-
label: "label";
|
143
138
|
tooltip: "tooltip";
|
139
|
+
label: "label";
|
140
|
+
primaryYAxis: "primaryYAxis";
|
141
|
+
secondaryYAxis: "secondaryYAxis";
|
142
|
+
radius: "radius";
|
143
|
+
size: "size";
|
144
144
|
}>>;
|
145
145
|
parentId: z.ZodOptional<z.ZodString>;
|
146
146
|
}, z.core.$strip>>, z.ZodObject<{
|
@@ -178,16 +178,16 @@ export declare const zScatterMeasure: z.ZodObject<{
|
|
178
178
|
}>>>;
|
179
179
|
}, z.core.$strip>>>;
|
180
180
|
encoding: z.ZodOptional<z.ZodEnum<{
|
181
|
-
primaryYAxis: "primaryYAxis";
|
182
|
-
secondaryYAxis: "secondaryYAxis";
|
183
181
|
xAxis: "xAxis";
|
184
182
|
yAxis: "yAxis";
|
185
183
|
angle: "angle";
|
186
|
-
radius: "radius";
|
187
|
-
size: "size";
|
188
184
|
color: "color";
|
189
|
-
label: "label";
|
190
185
|
tooltip: "tooltip";
|
186
|
+
label: "label";
|
187
|
+
primaryYAxis: "primaryYAxis";
|
188
|
+
secondaryYAxis: "secondaryYAxis";
|
189
|
+
radius: "radius";
|
190
|
+
size: "size";
|
191
191
|
}>>;
|
192
192
|
parentId: z.ZodOptional<z.ZodString>;
|
193
193
|
}, z.core.$strip>]>>;
|
@@ -229,16 +229,16 @@ export declare const zScatterMeasures: z.ZodArray<z.ZodObject<{
|
|
229
229
|
}>>>;
|
230
230
|
}, z.core.$strip>>>;
|
231
231
|
encoding: z.ZodOptional<z.ZodEnum<{
|
232
|
-
primaryYAxis: "primaryYAxis";
|
233
|
-
secondaryYAxis: "secondaryYAxis";
|
234
232
|
xAxis: "xAxis";
|
235
233
|
yAxis: "yAxis";
|
236
234
|
angle: "angle";
|
237
|
-
radius: "radius";
|
238
|
-
size: "size";
|
239
235
|
color: "color";
|
240
|
-
label: "label";
|
241
236
|
tooltip: "tooltip";
|
237
|
+
label: "label";
|
238
|
+
primaryYAxis: "primaryYAxis";
|
239
|
+
secondaryYAxis: "secondaryYAxis";
|
240
|
+
radius: "radius";
|
241
|
+
size: "size";
|
242
242
|
}>>;
|
243
243
|
parentId: z.ZodOptional<z.ZodString>;
|
244
244
|
}, z.core.$strip>>, z.ZodObject<{
|
@@ -276,16 +276,16 @@ export declare const zScatterMeasures: z.ZodArray<z.ZodObject<{
|
|
276
276
|
}>>>;
|
277
277
|
}, z.core.$strip>>>;
|
278
278
|
encoding: z.ZodOptional<z.ZodEnum<{
|
279
|
-
primaryYAxis: "primaryYAxis";
|
280
|
-
secondaryYAxis: "secondaryYAxis";
|
281
279
|
xAxis: "xAxis";
|
282
280
|
yAxis: "yAxis";
|
283
281
|
angle: "angle";
|
284
|
-
radius: "radius";
|
285
|
-
size: "size";
|
286
282
|
color: "color";
|
287
|
-
label: "label";
|
288
283
|
tooltip: "tooltip";
|
284
|
+
label: "label";
|
285
|
+
primaryYAxis: "primaryYAxis";
|
286
|
+
secondaryYAxis: "secondaryYAxis";
|
287
|
+
radius: "radius";
|
288
|
+
size: "size";
|
289
289
|
}>>;
|
290
290
|
parentId: z.ZodOptional<z.ZodString>;
|
291
291
|
}, z.core.$strip>]>>;
|
@@ -324,16 +324,16 @@ export declare const zScatterMeasures: z.ZodArray<z.ZodObject<{
|
|
324
324
|
}>>>;
|
325
325
|
}, z.core.$strip>>>;
|
326
326
|
encoding: z.ZodOptional<z.ZodEnum<{
|
327
|
-
primaryYAxis: "primaryYAxis";
|
328
|
-
secondaryYAxis: "secondaryYAxis";
|
329
327
|
xAxis: "xAxis";
|
330
328
|
yAxis: "yAxis";
|
331
329
|
angle: "angle";
|
332
|
-
radius: "radius";
|
333
|
-
size: "size";
|
334
330
|
color: "color";
|
335
|
-
label: "label";
|
336
331
|
tooltip: "tooltip";
|
332
|
+
label: "label";
|
333
|
+
primaryYAxis: "primaryYAxis";
|
334
|
+
secondaryYAxis: "secondaryYAxis";
|
335
|
+
radius: "radius";
|
336
|
+
size: "size";
|
337
337
|
}>>;
|
338
338
|
parentId: z.ZodOptional<z.ZodString>;
|
339
339
|
}, z.core.$strip>>, z.ZodObject<{
|
@@ -371,16 +371,16 @@ export declare const zScatterMeasures: z.ZodArray<z.ZodObject<{
|
|
371
371
|
}>>>;
|
372
372
|
}, z.core.$strip>>>;
|
373
373
|
encoding: z.ZodOptional<z.ZodEnum<{
|
374
|
-
primaryYAxis: "primaryYAxis";
|
375
|
-
secondaryYAxis: "secondaryYAxis";
|
376
374
|
xAxis: "xAxis";
|
377
375
|
yAxis: "yAxis";
|
378
376
|
angle: "angle";
|
379
|
-
radius: "radius";
|
380
|
-
size: "size";
|
381
377
|
color: "color";
|
382
|
-
label: "label";
|
383
378
|
tooltip: "tooltip";
|
379
|
+
label: "label";
|
380
|
+
primaryYAxis: "primaryYAxis";
|
381
|
+
secondaryYAxis: "secondaryYAxis";
|
382
|
+
radius: "radius";
|
383
|
+
size: "size";
|
384
384
|
}>>;
|
385
385
|
parentId: z.ZodOptional<z.ZodString>;
|
386
386
|
}, z.core.$strip>]>>;
|