@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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vseed",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -1,2 +0,0 @@
1
- import type { AdvancedPipeline } from '../../../types';
2
- export declare const lineAdvancedPipeline: AdvancedPipeline;
@@ -1,2 +0,0 @@
1
- import type { SpecPipe } from '../../../../types';
2
- export declare const legend: SpecPipe;
@@ -1,2 +0,0 @@
1
- import type { SpecPipe } from '../../../../types';
2
- export declare const pivotGridStyle: SpecPipe;
@@ -1,2 +0,0 @@
1
- import type { SpecPipe } from '../../../../types';
2
- export declare const pivotGridStyle: SpecPipe;