@visactor/vseed 0.0.32 → 0.0.34
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 +2795 -4888
- package/dist/builder/register/chartType/dualAxis.d.ts +1 -0
- package/dist/builder/register/chartType/index.d.ts +12 -11
- package/dist/dataReshape/constant.d.ts +3 -1
- package/dist/index.cjs +1392 -236
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1325 -196
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/chart/pipeline/dualAxis.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipeline/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/config/dualAxis.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/config/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/encoding/encodingAreaRange.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/encoding/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/init/autoDualMeasures.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/reshape/index.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/reshape/pivotReshapeTo2D2M.d.ts +8 -0
- package/dist/pipeline/advanced/chart/pipes/reshape/reshapeTo2D2M.d.ts +8 -0
- package/dist/pipeline/spec/chart/pipeline/dualAxis.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipeline/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/axes/index.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/axes/yLinearPrimary.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/axes/yLinearSecondary.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/dataset/datasetDualAxis.d.ts +3 -0
- package/dist/pipeline/spec/chart/pipes/dataset/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/dual/dualChartType.d.ts +3 -0
- package/dist/pipeline/spec/chart/pipes/dual/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/init/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/init/initDualAxis.d.ts +3 -0
- package/dist/pipeline/spec/chart/pipes/label/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/label/labelDualAxis.d.ts +3 -0
- package/dist/pipeline/spec/chart/pipes/tooltip/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/tooltip/tooltipDualAxis.d.ts +3 -0
- package/dist/pipeline/utils/chatType.d.ts +2 -2
- package/dist/pipeline/utils/measures/depth.d.ts +8 -0
- package/dist/pipeline/utils/measures/index.d.ts +1 -0
- package/dist/types/advancedVSeed.d.ts +547 -54
- package/dist/types/builder/builder.d.ts +16 -15
- package/dist/types/chartType/area/area.d.ts +0 -1494
- package/dist/types/chartType/area/index.d.ts +2 -1
- package/dist/types/chartType/area/zArea.d.ts +1494 -0
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +0 -1494
- package/dist/types/chartType/areaPercent/index.d.ts +2 -1
- package/dist/types/chartType/areaPercent/zAreaPercent.d.ts +1494 -0
- package/dist/types/chartType/areaRange/areaRange.d.ts +0 -1433
- package/dist/types/chartType/areaRange/index.d.ts +2 -1
- package/dist/types/chartType/areaRange/zAreaRange.d.ts +1433 -0
- package/dist/types/chartType/bar/bar.d.ts +40 -40
- package/dist/types/chartType/barParallel/barParallel.d.ts +40 -40
- package/dist/types/chartType/barPercent/barPercent.d.ts +40 -40
- package/dist/types/chartType/column/column.d.ts +40 -40
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +40 -40
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +40 -40
- package/dist/types/chartType/dualAxis/dualAxis.d.ts +123 -23
- package/dist/types/chartType/dualAxis/index.d.ts +1 -0
- package/dist/types/chartType/dualAxis/zDualAxis.d.ts +1963 -0
- package/dist/types/chartType/index.d.ts +1 -1
- package/dist/types/chartType/line/line.d.ts +40 -40
- package/dist/types/chartType/scatter/scatter.d.ts +40 -40
- package/dist/types/properties/annotation/annotation.d.ts +40 -40
- package/dist/types/properties/annotation/annotationArea.d.ts +27 -34
- package/dist/types/properties/annotation/annotationHorizontalLine.d.ts +7 -7
- package/dist/types/properties/annotation/annotationPoint.d.ts +24 -22
- package/dist/types/properties/annotation/annotationVerticalLine.d.ts +7 -7
- package/dist/types/properties/chartType/dualChartType.d.ts +22 -0
- package/dist/types/properties/chartType/index.d.ts +2 -0
- package/dist/types/properties/config/config.d.ts +493 -7
- package/dist/types/properties/datasetReshapeInfo/datasetReshapeInfo.d.ts +7 -0
- package/dist/types/properties/measures/dualMeasures.d.ts +8 -0
- package/dist/types/properties/measures/index.d.ts +4 -1
- package/dist/types/properties/measures/measures.d.ts +0 -107
- package/dist/types/properties/measures/zDualMeasures.d.ts +287 -0
- package/dist/types/properties/measures/zMeasures.d.ts +108 -0
- package/dist/types/properties/theme/customTheme.d.ts +500 -14
- package/dist/types/vseed.d.ts +2401 -440
- package/dist/umd/index.js +1316 -178
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
@@ -16,3 +16,4 @@ export { funnelAdvancedPipeline } from './funnel';
|
|
16
16
|
export { scatterAdvancedPipeline } from './scatter';
|
17
17
|
export { heatmapAdvancedPipeline } from './heatmap';
|
18
18
|
export { radarAdvancedPipeline } from './radar';
|
19
|
+
export { dualAxisAdvancedPipeline } from './dualAxis';
|
@@ -2,6 +2,7 @@ export { encodingXY } from './encodingXY';
|
|
2
2
|
export { encodingYX } from './encodingYX';
|
3
3
|
export { encodingYY } from './encodingYY';
|
4
4
|
export { encodingXYY } from './encodingXYY';
|
5
|
+
export { encodingAreaRange } from './encodingAreaRange';
|
5
6
|
export { encodingRose } from './encodingRose';
|
6
7
|
export { encodingPie } from './encodingPie';
|
7
8
|
export { encodingAR } from './encodingAR';
|
@@ -3,8 +3,10 @@ export { reshapeTo2D1M0Name } from './reshapeTo2D1M0Name';
|
|
3
3
|
export { reshapeTo1D1M } from './reshapeTo1D1M';
|
4
4
|
export { reshapeTo1D2M } from './reshapeTo1D2M';
|
5
5
|
export { reshapeTo1D } from './reshapeTo1D';
|
6
|
+
export { reshapeTo2D2M } from './reshapeTo2D2M';
|
6
7
|
export { pivotReshapeTo2D1M } from './pivotReshapeTo2D1M';
|
7
8
|
export { pivotReshapeTo2D1M0Name } from './pivotReshapeTo2D1M0Name';
|
8
9
|
export { pivotReshapeTo1D1M } from './pivotReshapeTo1D1M';
|
9
10
|
export { pivotReshapeTo1D2M } from './pivotReshapeTo1D2M';
|
10
11
|
export { pivotReshapeTo1D } from './pivotReshapeTo1D';
|
12
|
+
export { pivotReshapeTo2D2M } from './pivotReshapeTo2D2M';
|
@@ -9,6 +9,7 @@ export { areaSpecPipeline } from './area';
|
|
9
9
|
export { areaPercentSpecPipeline } from './areaPercent';
|
10
10
|
export { areaRangeSpecPipeline } from './areaRange';
|
11
11
|
export { scatterSpecPipeline } from './scatter';
|
12
|
+
export { dualAxisSpecPipeline } from './dualAxis';
|
12
13
|
export { pieSpecPipeline } from './pie';
|
13
14
|
export { donutSpecPipeline } from './donut';
|
14
15
|
export { roseSpecPipeline } from './rose';
|
@@ -2,6 +2,8 @@ export { xBand } from './xBand';
|
|
2
2
|
export { xLinear } from './xLinear';
|
3
3
|
export { yBand } from './yBand';
|
4
4
|
export { yLinear } from './yLinear';
|
5
|
+
export { yLinearPrimary } from './yLinearPrimary';
|
6
|
+
export { yLinearSecondary } from './yLinearSecondary';
|
5
7
|
export { radiusAxis } from './radius';
|
6
8
|
export { angleAxis } from './angle';
|
7
9
|
export { radarAngleAxis } from './radarAngle';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { dualChartTypePrimary, dualChartTypeSecondary } from './dualChartType';
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import type {
|
1
|
+
import type { VSeed } from '../../types';
|
2
2
|
export declare const isTable: (vseed: VSeed) => vseed is import("../../types").Table;
|
3
3
|
export declare const isPivotTable: (vseed: VSeed) => vseed is import("../../types").PivotTable;
|
4
4
|
export declare const isVTable: (vseed: VSeed) => boolean;
|
5
5
|
export declare const isVChart: (vseed: VSeed) => boolean;
|
6
|
-
export declare const isPivotChart: (vseed: VSeed) => boolean
|
6
|
+
export declare const isPivotChart: (vseed: VSeed) => boolean;
|