@visactor/vseed 0.0.2 → 0.0.3
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/buildAdvanced.d.ts +1 -1
- package/dist/builder/builder/buildSpec.d.ts +1 -1
- package/dist/builder/builder/builder.d.ts +4 -202
- package/dist/builder/register/register.d.ts +7 -0
- package/dist/dataReshape/dataReshapeFor1D1M.d.ts +1 -1
- package/dist/dataReshape/dataReshapeFor2D1M.d.ts +1 -1
- package/dist/dataReshape/foldMeasures.d.ts +2 -2
- package/dist/dataReshape/unfoldDimensions.d.ts +2 -2
- package/dist/index.cjs +300 -23
- package/dist/index.js +244 -9
- package/dist/pipeline/advanced/pipeline/area.d.ts +2 -0
- package/dist/pipeline/advanced/pipeline/areaPercent.d.ts +2 -0
- package/dist/pipeline/advanced/pipeline/bar.d.ts +1 -1
- package/dist/pipeline/advanced/pipeline/barParallel.d.ts +2 -0
- package/dist/pipeline/advanced/pipeline/barPercent.d.ts +2 -0
- package/dist/pipeline/advanced/pipeline/column.d.ts +1 -1
- package/dist/pipeline/advanced/pipeline/columnParallel.d.ts +2 -0
- package/dist/pipeline/advanced/pipeline/columnPercent.d.ts +2 -0
- package/dist/pipeline/advanced/pipeline/index.d.ts +7 -0
- package/dist/pipeline/advanced/pipeline/line.d.ts +2 -0
- package/dist/pipeline/advanced/pipes/encoding/encodingCartesian.d.ts +3 -2
- package/dist/pipeline/advanced/pipes/encoding/index.d.ts +1 -1
- package/dist/pipeline/advanced/pipes/index.d.ts +1 -0
- package/dist/pipeline/advanced/pipes/init/index.d.ts +1 -0
- package/dist/pipeline/advanced/pipes/init/initAdvancedVSeed.d.ts +2 -0
- package/dist/pipeline/advanced/pipes/reshape/reshapeTo1D1M.d.ts +1 -1
- package/dist/pipeline/advanced/pipes/reshape/reshapeTo2D1M.d.ts +1 -1
- package/dist/pipeline/spec/pipeline/area.d.ts +2 -0
- package/dist/pipeline/spec/pipeline/areaPercent.d.ts +2 -0
- package/dist/pipeline/spec/pipeline/bar.d.ts +1 -1
- package/dist/pipeline/spec/pipeline/barParallel.d.ts +2 -0
- package/dist/pipeline/spec/pipeline/barPercent.d.ts +2 -0
- package/dist/pipeline/spec/pipeline/column.d.ts +1 -1
- package/dist/pipeline/spec/pipeline/columnParallel.d.ts +2 -0
- package/dist/pipeline/spec/pipeline/columnPercent.d.ts +2 -0
- package/dist/pipeline/spec/pipeline/index.d.ts +7 -0
- package/dist/pipeline/spec/pipeline/line.d.ts +2 -0
- package/dist/pipeline/spec/pipes/axes/xBand.d.ts +1 -1
- package/dist/pipeline/spec/pipes/axes/xLinear.d.ts +1 -1
- package/dist/pipeline/spec/pipes/axes/yBand.d.ts +1 -1
- package/dist/pipeline/spec/pipes/axes/yLinear.d.ts +1 -1
- package/dist/pipeline/spec/pipes/dataset/dataset.d.ts +1 -1
- package/dist/pipeline/spec/pipes/index.d.ts +2 -0
- package/dist/pipeline/spec/pipes/init/area.d.ts +2 -0
- package/dist/pipeline/spec/pipes/init/bar.d.ts +1 -1
- package/dist/pipeline/spec/pipes/init/barParallel.d.ts +2 -0
- package/dist/pipeline/spec/pipes/init/column.d.ts +1 -1
- package/dist/pipeline/spec/pipes/init/columnParallel.d.ts +2 -0
- package/dist/pipeline/spec/pipes/init/index.d.ts +4 -0
- package/dist/pipeline/spec/pipes/init/line.d.ts +2 -0
- package/dist/pipeline/spec/pipes/percent/index.d.ts +1 -0
- package/dist/pipeline/spec/pipes/percent/percent.d.ts +2 -0
- package/dist/pipeline/spec/pipes/stack/index.d.ts +1 -0
- package/dist/pipeline/spec/pipes/stack/stack.d.ts +2 -0
- package/dist/pipeline/utils/pipeline.d.ts +1 -1
- package/dist/types/chartType/area/area.d.ts +1 -1
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +1 -1
- package/dist/types/chartType/bar/bar.d.ts +1 -1
- package/dist/types/chartType/barParallel/barParallel.d.ts +1 -1
- package/dist/types/chartType/barPercent/barPercent.d.ts +1 -1
- package/dist/types/chartType/column/column.d.ts +1 -1
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +1 -1
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +1 -1
- package/dist/types/chartType/donut/donut.d.ts +1 -1
- package/dist/types/chartType/dualAxis/dualAxis.d.ts +1 -1
- package/dist/types/chartType/line/line.d.ts +1 -1
- package/dist/types/chartType/pie/pie.d.ts +1 -1
- package/dist/types/chartType/pivotTable/pivotTable.d.ts +1 -1
- package/dist/types/chartType/rose/rose.d.ts +1 -1
- package/dist/types/chartType/table/table.d.ts +1 -1
- package/dist/types/properties/advancedVSeed.d.ts +8 -8
- package/dist/types/properties/chartType/zChartType.d.ts +8 -8
- package/dist/types/properties/vseed.d.ts +8 -8
- package/package.json +1 -1
- package/dist/pipeline/spec/pipes/axes/xBand copy.d.ts +0 -0
- package/dist/pipeline/spec/pipes/axes/xLinear copy.d.ts +0 -0
- package/dist/pipeline/spec/pipes/axes/yLinear copy.d.ts +0 -0
@@ -1,19 +1,19 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
export declare const zAdvancedVSeed: z.ZodObject<{
|
3
3
|
chartType: z.ZodEnum<{
|
4
|
-
|
5
|
-
pivotTable: "pivotTable";
|
4
|
+
area: "area";
|
6
5
|
line: "line";
|
6
|
+
bar: "bar";
|
7
|
+
pie: "pie";
|
8
|
+
rose: "rose";
|
7
9
|
column: "column";
|
10
|
+
areaPercent: "areaPercent";
|
11
|
+
barPercent: "barPercent";
|
8
12
|
columnPercent: "columnPercent";
|
9
13
|
columnParallel: "columnParallel";
|
10
|
-
bar: "bar";
|
11
|
-
barPercent: "barPercent";
|
12
14
|
barParallel: "barParallel";
|
13
|
-
|
14
|
-
|
15
|
-
rose: "rose";
|
16
|
-
pie: "pie";
|
15
|
+
table: "table";
|
16
|
+
pivotTable: "pivotTable";
|
17
17
|
donut: "donut";
|
18
18
|
dualAxis: "dualAxis";
|
19
19
|
}>;
|
@@ -18,19 +18,19 @@ export declare enum ChartTypeEnum {
|
|
18
18
|
DualAxis = "dualAxis"
|
19
19
|
}
|
20
20
|
export declare const zChartType: z.ZodEnum<{
|
21
|
-
|
22
|
-
pivotTable: "pivotTable";
|
21
|
+
area: "area";
|
23
22
|
line: "line";
|
23
|
+
bar: "bar";
|
24
|
+
pie: "pie";
|
25
|
+
rose: "rose";
|
24
26
|
column: "column";
|
27
|
+
areaPercent: "areaPercent";
|
28
|
+
barPercent: "barPercent";
|
25
29
|
columnPercent: "columnPercent";
|
26
30
|
columnParallel: "columnParallel";
|
27
|
-
bar: "bar";
|
28
|
-
barPercent: "barPercent";
|
29
31
|
barParallel: "barParallel";
|
30
|
-
|
31
|
-
|
32
|
-
rose: "rose";
|
33
|
-
pie: "pie";
|
32
|
+
table: "table";
|
33
|
+
pivotTable: "pivotTable";
|
34
34
|
donut: "donut";
|
35
35
|
dualAxis: "dualAxis";
|
36
36
|
}>;
|
@@ -5,19 +5,19 @@ import type { Dimensions } from './dimensions';
|
|
5
5
|
import type { Measures } from './measures';
|
6
6
|
export declare const zVSeed: z.ZodObject<{
|
7
7
|
chartType: z.ZodEnum<{
|
8
|
-
|
9
|
-
pivotTable: "pivotTable";
|
8
|
+
area: "area";
|
10
9
|
line: "line";
|
10
|
+
bar: "bar";
|
11
|
+
pie: "pie";
|
12
|
+
rose: "rose";
|
11
13
|
column: "column";
|
14
|
+
areaPercent: "areaPercent";
|
15
|
+
barPercent: "barPercent";
|
12
16
|
columnPercent: "columnPercent";
|
13
17
|
columnParallel: "columnParallel";
|
14
|
-
bar: "bar";
|
15
|
-
barPercent: "barPercent";
|
16
18
|
barParallel: "barParallel";
|
17
|
-
|
18
|
-
|
19
|
-
rose: "rose";
|
20
|
-
pie: "pie";
|
19
|
+
table: "table";
|
20
|
+
pivotTable: "pivotTable";
|
21
21
|
donut: "donut";
|
22
22
|
dualAxis: "dualAxis";
|
23
23
|
}>;
|
package/package.json
CHANGED
File without changes
|
File without changes
|
File without changes
|