@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.
Files changed (59) hide show
  1. package/dist/builder/builder/builder.d.ts +5998 -109
  2. package/dist/dataReshape/constant.d.ts +1 -0
  3. package/dist/dataReshape/index.d.ts +1 -0
  4. package/dist/dataSelector/index.d.ts +1 -0
  5. package/dist/dataSelector/selector.d.ts +7 -0
  6. package/dist/index.cjs +1468 -241
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.js +1427 -242
  9. package/dist/index.js.map +1 -1
  10. package/dist/pipeline/advanced/pipes/config/config.d.ts +11 -0
  11. package/dist/pipeline/advanced/pipes/config/index.d.ts +1 -0
  12. package/dist/pipeline/advanced/pipes/index.d.ts +3 -1
  13. package/dist/pipeline/advanced/pipes/markStyle/index.d.ts +1 -0
  14. package/dist/pipeline/advanced/pipes/{encoding/encodingXY copy.d.ts → markStyle/markStyle.d.ts} +1 -1
  15. package/dist/pipeline/spec/pipes/index.d.ts +1 -0
  16. package/dist/pipeline/spec/pipes/legend/{pivotLegend.d.ts → discreteLegend.d.ts} +1 -1
  17. package/dist/pipeline/spec/pipes/legend/index.d.ts +2 -2
  18. package/dist/pipeline/spec/pipes/legend/pivotDiscreteLegend.d.ts +2 -0
  19. package/dist/pipeline/spec/pipes/{init/line copy.d.ts → markStyle/barStyle.d.ts} +1 -1
  20. package/dist/pipeline/spec/pipes/markStyle/index.d.ts +1 -0
  21. package/dist/pipeline/spec/pipes/stack/index.d.ts +1 -1
  22. package/dist/pipeline/spec/pipes/stack/stack.d.ts +2 -2
  23. package/dist/types/advancedVSeed.d.ts +1567 -0
  24. package/dist/types/chartType/area/area.d.ts +11 -1
  25. package/dist/types/chartType/areaPercent/areaPercent.d.ts +11 -1
  26. package/dist/types/chartType/bar/bar.d.ts +20 -1
  27. package/dist/types/chartType/barParallel/barParallel.d.ts +20 -1
  28. package/dist/types/chartType/barPercent/barPercent.d.ts +20 -1
  29. package/dist/types/chartType/column/column.d.ts +20 -1
  30. package/dist/types/chartType/columnParallel/columnParallel.d.ts +20 -1
  31. package/dist/types/chartType/columnPercent/columnPercent.d.ts +20 -1
  32. package/dist/types/chartType/donut/donut.d.ts +1 -1
  33. package/dist/types/chartType/dualAxis/dualAxis.d.ts +1 -1
  34. package/dist/types/chartType/line/line.d.ts +11 -1
  35. package/dist/types/chartType/pie/pie.d.ts +4 -4
  36. package/dist/types/chartType/pivotTable/pivotTable.d.ts +1 -1
  37. package/dist/types/chartType/rose/rose.d.ts +4 -4
  38. package/dist/types/chartType/table/table.d.ts +1 -1
  39. package/dist/types/dataSelector/index.d.ts +1 -0
  40. package/dist/types/dataSelector/selector.d.ts +34 -0
  41. package/dist/types/properties/baseConfig/baseConfig.d.ts +102 -0
  42. package/dist/types/properties/baseConfig/legend.d.ts +101 -4
  43. package/dist/types/properties/chartType/index.d.ts +2 -2
  44. package/dist/types/properties/config/axis.d.ts +257 -0
  45. package/dist/types/properties/config/bandAxis.d.ts +82 -0
  46. package/dist/types/properties/config/config.d.ts +721 -0
  47. package/dist/types/properties/config/index.d.ts +4 -0
  48. package/dist/types/properties/config/linearAxis.d.ts +80 -0
  49. package/dist/types/properties/index.d.ts +2 -0
  50. package/dist/types/properties/markStyle/barStyle.d.ts +114 -0
  51. package/dist/types/properties/markStyle/index.d.ts +2 -0
  52. package/dist/types/properties/markStyle/markStyle.d.ts +29 -0
  53. package/dist/types/properties/theme/customTheme.d.ts +1540 -0
  54. package/package.json +1 -1
  55. package/dist/pipeline/advanced/pipeline/line copy.d.ts +0 -2
  56. package/dist/pipeline/spec/pipes/legend/legend.d.ts +0 -2
  57. package/dist/pipeline/spec/pipes/pivotChart/pivotGridStyle copy.d.ts +0 -2
  58. package/dist/pipeline/spec/pipes/pivotChart/pivotRowDimensions copy.d.ts +0 -2
  59. /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';
@@ -1,6 +1,8 @@
1
+ export * from './init';
1
2
  export * from './reshape';
2
3
  export * from './encoding';
3
- export * from './init';
4
4
  export * from './baseConfig';
5
+ export * from './config';
5
6
  export * from './theme';
6
7
  export * from './pivot';
8
+ export * from './markStyle';
@@ -0,0 +1 @@
1
+ export { markStyle } from './markStyle';
@@ -1,2 +1,2 @@
1
1
  import type { AdvancedPipe } from '../../../../types';
2
- export declare const encodingXY: AdvancedPipe;
2
+ export declare const markStyle: AdvancedPipe;
@@ -9,3 +9,4 @@ export * from './label';
9
9
  export * from './legend';
10
10
  export * from './color';
11
11
  export * from './pivotChart';
12
+ export * from './markStyle';
@@ -1,2 +1,2 @@
1
1
  import type { SpecPipe } from '../../../../types';
2
- export declare const pivotLegend: SpecPipe;
2
+ export declare const discreteLegend: SpecPipe;
@@ -1,2 +1,2 @@
1
- export { legend } from './legend';
2
- export { pivotLegend } from './pivotLegend';
1
+ export { discreteLegend } from './discreteLegend';
2
+ export { pivotDiscreteLegend } from './pivotDiscreteLegend';
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../types';
2
+ export declare const pivotDiscreteLegend: SpecPipe;
@@ -1,2 +1,2 @@
1
1
  import type { SpecPipe } from '../../../../types';
2
- export declare const initLine: SpecPipe;
2
+ export declare const barStyle: SpecPipe;
@@ -0,0 +1 @@
1
+ export { barStyle } from './barStyle';
@@ -1 +1 @@
1
- export { stack } from './stack';
1
+ export { stackInverse } from './stack';
@@ -1,2 +1,2 @@
1
- import { SpecPipe } from '../../../../types';
2
- export declare const stack: SpecPipe;
1
+ import type { SpecPipe } from '../../../../types';
2
+ export declare const stackInverse: SpecPipe;