@visactor/vseed 0.0.7 → 0.0.9
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 +5998 -109
- package/dist/dataReshape/constant.d.ts +1 -0
- package/dist/dataReshape/index.d.ts +1 -0
- package/dist/dataSelector/index.d.ts +1 -0
- package/dist/dataSelector/selector.d.ts +7 -0
- package/dist/index.cjs +1468 -241
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1427 -242
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/pipes/config/config.d.ts +11 -0
- package/dist/pipeline/advanced/pipes/config/index.d.ts +1 -0
- package/dist/pipeline/advanced/pipes/index.d.ts +3 -1
- package/dist/pipeline/advanced/pipes/markStyle/index.d.ts +1 -0
- package/dist/pipeline/advanced/pipes/{encoding/encodingXY copy.d.ts → markStyle/markStyle.d.ts} +1 -1
- package/dist/pipeline/spec/pipes/index.d.ts +1 -0
- package/dist/pipeline/spec/pipes/legend/{pivotLegend.d.ts → discreteLegend.d.ts} +1 -1
- package/dist/pipeline/spec/pipes/legend/index.d.ts +2 -2
- package/dist/pipeline/spec/pipes/legend/pivotDiscreteLegend.d.ts +2 -0
- package/dist/pipeline/spec/pipes/{init/line copy.d.ts → markStyle/barStyle.d.ts} +1 -1
- package/dist/pipeline/spec/pipes/markStyle/index.d.ts +1 -0
- package/dist/pipeline/spec/pipes/stack/index.d.ts +1 -1
- package/dist/pipeline/spec/pipes/stack/stack.d.ts +2 -2
- package/dist/types/advancedVSeed.d.ts +1567 -0
- package/dist/types/chartType/area/area.d.ts +11 -1
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +11 -1
- package/dist/types/chartType/bar/bar.d.ts +20 -1
- package/dist/types/chartType/barParallel/barParallel.d.ts +20 -1
- package/dist/types/chartType/barPercent/barPercent.d.ts +20 -1
- package/dist/types/chartType/column/column.d.ts +20 -1
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +20 -1
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +20 -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 +11 -1
- package/dist/types/chartType/pie/pie.d.ts +4 -4
- package/dist/types/chartType/pivotTable/pivotTable.d.ts +1 -1
- package/dist/types/chartType/rose/rose.d.ts +4 -4
- package/dist/types/chartType/table/table.d.ts +1 -1
- package/dist/types/dataSelector/index.d.ts +1 -0
- package/dist/types/dataSelector/selector.d.ts +34 -0
- package/dist/types/properties/baseConfig/baseConfig.d.ts +102 -0
- package/dist/types/properties/baseConfig/legend.d.ts +101 -4
- package/dist/types/properties/chartType/index.d.ts +2 -2
- package/dist/types/properties/config/axis.d.ts +257 -0
- package/dist/types/properties/config/bandAxis.d.ts +82 -0
- package/dist/types/properties/config/config.d.ts +721 -0
- package/dist/types/properties/config/index.d.ts +4 -0
- package/dist/types/properties/config/linearAxis.d.ts +80 -0
- package/dist/types/properties/index.d.ts +2 -0
- package/dist/types/properties/markStyle/barStyle.d.ts +114 -0
- package/dist/types/properties/markStyle/index.d.ts +2 -0
- package/dist/types/properties/markStyle/markStyle.d.ts +29 -0
- package/dist/types/properties/theme/customTheme.d.ts +1540 -0
- package/package.json +1 -1
- package/dist/pipeline/advanced/pipeline/line copy.d.ts +0 -2
- package/dist/pipeline/spec/pipes/legend/legend.d.ts +0 -2
- package/dist/pipeline/spec/pipes/pivotChart/pivotGridStyle copy.d.ts +0 -2
- package/dist/pipeline/spec/pipes/pivotChart/pivotRowDimensions copy.d.ts +0 -2
- /package/dist/types/properties/chartType/{zChartType.d.ts → chartType.d.ts} +0 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
import type { AdvancedPipe } from '../../../../types';
|
2
|
+
export declare const lineConfig: AdvancedPipe;
|
3
|
+
export declare const pieConfig: AdvancedPipe;
|
4
|
+
export declare const barConfig: AdvancedPipe;
|
5
|
+
export declare const barParallelConfig: AdvancedPipe;
|
6
|
+
export declare const barPercentConfig: AdvancedPipe;
|
7
|
+
export declare const columnConfig: AdvancedPipe;
|
8
|
+
export declare const columnParallelConfig: AdvancedPipe;
|
9
|
+
export declare const columnPercentConfig: AdvancedPipe;
|
10
|
+
export declare const areaConfig: AdvancedPipe;
|
11
|
+
export declare const areaPercentConfig: AdvancedPipe;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './config';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { markStyle } from './markStyle';
|
package/dist/pipeline/advanced/pipes/{encoding/encodingXY copy.d.ts → markStyle/markStyle.d.ts}
RENAMED
@@ -1,2 +1,2 @@
|
|
1
1
|
import type { AdvancedPipe } from '../../../../types';
|
2
|
-
export declare const
|
2
|
+
export declare const markStyle: AdvancedPipe;
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import type { SpecPipe } from '../../../../types';
|
2
|
-
export declare const
|
2
|
+
export declare const discreteLegend: SpecPipe;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export {
|
2
|
-
export {
|
1
|
+
export { discreteLegend } from './discreteLegend';
|
2
|
+
export { pivotDiscreteLegend } from './pivotDiscreteLegend';
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import type { SpecPipe } from '../../../../types';
|
2
|
-
export declare const
|
2
|
+
export declare const barStyle: SpecPipe;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { barStyle } from './barStyle';
|
@@ -1 +1 @@
|
|
1
|
-
export {
|
1
|
+
export { stackInverse } from './stack';
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { SpecPipe } from '../../../../types';
|
2
|
-
export declare const
|
1
|
+
import type { SpecPipe } from '../../../../types';
|
2
|
+
export declare const stackInverse: SpecPipe;
|