@visactor/vseed 0.0.9 → 0.0.11

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 (38) hide show
  1. package/dist/builder/builder/builder.d.ts +1035 -36
  2. package/dist/index.cjs +923 -66
  3. package/dist/index.cjs.map +1 -1
  4. package/dist/index.js +905 -63
  5. package/dist/index.js.map +1 -1
  6. package/dist/pipeline/advanced/pipes/annotation/annotation.d.ts +2 -0
  7. package/dist/pipeline/advanced/pipes/annotation/index.d.ts +1 -0
  8. package/dist/pipeline/advanced/pipes/index.d.ts +1 -0
  9. package/dist/pipeline/spec/pipes/annotation/annotationArea.d.ts +2 -0
  10. package/dist/pipeline/spec/pipes/annotation/annotationAreaBand.d.ts +2 -0
  11. package/dist/pipeline/spec/pipes/annotation/annotationHorizontalLine.d.ts +2 -0
  12. package/dist/pipeline/spec/pipes/annotation/annotationPoint.d.ts +2 -0
  13. package/dist/pipeline/spec/pipes/annotation/annotationVerticalLine.d.ts +2 -0
  14. package/dist/pipeline/spec/pipes/annotation/index.d.ts +5 -0
  15. package/dist/pipeline/spec/pipes/annotation/utils.d.ts +2 -0
  16. package/dist/pipeline/spec/pipes/index.d.ts +1 -0
  17. package/dist/types/advancedVSeed.d.ts +886 -12
  18. package/dist/types/builder/builder.d.ts +3 -0
  19. package/dist/types/chartType/area/area.d.ts +21 -1
  20. package/dist/types/chartType/areaPercent/areaPercent.d.ts +21 -1
  21. package/dist/types/chartType/bar/bar.d.ts +21 -1
  22. package/dist/types/chartType/barParallel/barParallel.d.ts +21 -1
  23. package/dist/types/chartType/barPercent/barPercent.d.ts +21 -1
  24. package/dist/types/chartType/column/column.d.ts +21 -1
  25. package/dist/types/chartType/columnParallel/columnParallel.d.ts +21 -1
  26. package/dist/types/chartType/columnPercent/columnPercent.d.ts +21 -1
  27. package/dist/types/chartType/line/line.d.ts +21 -1
  28. package/dist/types/dataSelector/selector.d.ts +60 -6
  29. package/dist/types/properties/annotation/annotation.d.ts +824 -0
  30. package/dist/types/properties/annotation/annotationArea.d.ts +248 -0
  31. package/dist/types/properties/annotation/annotationHorizontalLine.d.ts +253 -0
  32. package/dist/types/properties/annotation/annotationPoint.d.ts +199 -0
  33. package/dist/types/properties/annotation/annotationVerticalLine.d.ts +253 -0
  34. package/dist/types/properties/annotation/index.d.ts +5 -0
  35. package/dist/types/properties/index.d.ts +1 -0
  36. package/dist/types/properties/markStyle/barStyle.d.ts +65 -13
  37. package/dist/types/properties/markStyle/markStyle.d.ts +64 -12
  38. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ import type { AdvancedPipe } from '../../../../types';
2
+ export declare const annotation: AdvancedPipe;
@@ -0,0 +1 @@
1
+ export { annotation } from './annotation';
@@ -6,3 +6,4 @@ export * from './config';
6
6
  export * from './theme';
7
7
  export * from './pivot';
8
8
  export * from './markStyle';
9
+ export * from './annotation';
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../types';
2
+ export declare const annotationArea: SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../types';
2
+ export declare const annotationAreaBand: SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../types';
2
+ export declare const annotationHorizontalLine: SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../types';
2
+ export declare const annotationPoint: SpecPipe;
@@ -0,0 +1,2 @@
1
+ import type { SpecPipe } from '../../../../types';
2
+ export declare const annotationVerticalLine: SpecPipe;
@@ -0,0 +1,5 @@
1
+ export { annotationPoint } from './annotationPoint';
2
+ export { annotationVerticalLine } from './annotationVerticalLine';
3
+ export { annotationHorizontalLine } from './annotationHorizontalLine';
4
+ export { annotationArea } from './annotationArea';
5
+ export { annotationAreaBand } from './annotationAreaBand';
@@ -0,0 +1,2 @@
1
+ import type { Datum } from "../../../../types";
2
+ export declare const isSubset: (sub: Datum, obj: Datum) => boolean;
@@ -10,3 +10,4 @@ export * from './legend';
10
10
  export * from './color';
11
11
  export * from './pivotChart';
12
12
  export * from './markStyle';
13
+ export * from './annotation';