@visactor/vchart-types 2.1.0-alpha.13 → 2.1.0-alpha.15
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/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/types/chart/base/base-chart-transformer.d.ts +0 -3
- package/types/chart/base/base-chart.d.ts +9 -25
- package/types/chart/interface/chart.d.ts +0 -1
- package/types/chart/util.d.ts +1 -4
- package/types/compile/compiler.d.ts +0 -2
- package/types/compile/data/compilable-data.d.ts +1 -1
- package/types/compile/grammar-item.d.ts +1 -1
- package/types/compile/interface/compilable-item.d.ts +1 -1
- package/types/compile/interface/compiler.d.ts +1 -4
- package/types/component/axis/base-axis.d.ts +7 -2
- package/types/component/axis/cartesian/band-axis.d.ts +7 -1
- package/types/component/axis/polar/band-axis.d.ts +0 -2
- package/types/component/base/base-component.d.ts +7 -7
- package/types/component/brush/brush.d.ts +7 -3
- package/types/component/crosshair/base.d.ts +7 -4
- package/types/component/custom-mark/custom-mark.d.ts +7 -4
- package/types/component/data-zoom/data-filter-base-component.d.ts +7 -3
- package/types/component/data-zoom/data-zoom/data-zoom.d.ts +0 -1
- package/types/component/data-zoom/scroll-bar/scroll-bar.d.ts +0 -1
- package/types/component/geo/geo-coordinate.d.ts +7 -1
- package/types/component/indicator/indicator.d.ts +0 -1
- package/types/component/indicator/util.d.ts +3 -4
- package/types/component/label/base-label.d.ts +7 -1
- package/types/component/legend/base-legend.d.ts +7 -2
- package/types/component/marker/base-marker.d.ts +7 -14
- package/types/component/marker/utils.d.ts +4 -4
- package/types/component/player/player.d.ts +0 -1
- package/types/component/title/title.d.ts +7 -1
- package/types/component/tooltip/tooltip.d.ts +0 -1
- package/types/core/vchart.d.ts +1 -5
- package/types/data/transforms/box-plot.d.ts +1 -4
- package/types/data/transforms/correlation-center.d.ts +4 -10
- package/types/data/transforms/correlation.d.ts +15 -18
- package/types/data/transforms/funnel.d.ts +8 -10
- package/types/data/transforms/lookup.d.ts +3 -3
- package/types/data/transforms/map.d.ts +2 -8
- package/types/data/transforms/sankey.d.ts +4 -12
- package/types/data/transforms/stack-split.d.ts +1 -2
- package/types/data/transforms/treemap.d.ts +3 -5
- package/types/data/transforms/venn.d.ts +2 -4
- package/types/data/transforms/waterfall.d.ts +2 -4
- package/types/event/event.d.ts +0 -4
- package/types/mark/base/base-mark.d.ts +2 -13
- package/types/mark/component.d.ts +0 -9
- package/types/mark/interface/mark.d.ts +0 -2
- package/types/model/base-model.d.ts +15 -3
- package/types/model/interface.d.ts +0 -13
- package/types/region/region.d.ts +7 -1
- package/types/scale/color-ordinal-scale.d.ts +0 -1
- package/types/series/area/area.d.ts +0 -2
- package/types/series/bar/bar.d.ts +0 -3
- package/types/series/base/base-series.d.ts +7 -10
- package/types/series/base/constant.d.ts +0 -3
- package/types/series/box-plot/box-plot.d.ts +0 -2
- package/types/series/dot/dot.d.ts +0 -12
- package/types/series/heatmap/heatmap.d.ts +0 -2
- package/types/series/line/line.d.ts +0 -2
- package/types/series/mixin/line-mixin.d.ts +0 -1
- package/types/series/pie/pie.d.ts +7 -3
- package/types/series/polar/progress-like/progress-like.d.ts +0 -2
- package/types/series/polar/rose-like/rose-like.d.ts +0 -2
- package/types/series/progress/circular/circular.d.ts +0 -2
- package/types/series/progress/linear/linear.d.ts +0 -2
- package/types/series/scatter/scatter.d.ts +0 -2
- package/types/series/waterfall/waterfall.d.ts +0 -2
- package/types/compile/stage-app.d.ts +0 -23
- package/types/component/base/release-vrender-component.d.ts +0 -10
- package/types/data/data-view-utils.d.ts +0 -5
- package/types/util/graphic-state.d.ts +0 -4
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { IGraphic } from '@visactor/vrender-core';
|
|
2
|
-
type ReleaseVRenderComponentOptions = {
|
|
3
|
-
enableExitAnimation?: boolean;
|
|
4
|
-
removeFromParent?: boolean;
|
|
5
|
-
onComplete?: () => void;
|
|
6
|
-
};
|
|
7
|
-
export declare const releaseVRenderComponentSync: (component: IGraphic, removeFromParent?: boolean) => void;
|
|
8
|
-
export declare const collectVRenderComponents: (component: IGraphic) => IGraphic[];
|
|
9
|
-
export declare const releaseVRenderComponent: (component: IGraphic, options?: ReleaseVRenderComponentOptions) => boolean;
|
|
10
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { DataView } from '@visactor/vdataset';
|
|
2
|
-
export declare const detachDataViewDependencies: (dataView?: DataView | null) => void;
|
|
3
|
-
export declare const releaseDataViews: (dataViews: Array<DataView | null | undefined>) => void;
|
|
4
|
-
export declare const releaseDataView: (dataView?: DataView | null) => void;
|
|
5
|
-
export declare const releaseDataViewWithDependencies: (dataView: DataView | null | undefined, shouldReleaseDependency: (dataView: DataView) => boolean) => void;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import type { IMarkGraphic } from '../mark/interface';
|
|
2
|
-
export declare const setGraphicStates: (graphic: IMarkGraphic, nextStates?: string[] | null, hasAnimation?: boolean) => void;
|
|
3
|
-
export declare const addGraphicState: (graphic: IMarkGraphic, state: string, keepCurrentStates?: boolean, hasAnimation?: boolean) => void;
|
|
4
|
-
export declare const removeGraphicState: (graphic: IMarkGraphic, state: string | string[], hasAnimation?: boolean) => void;
|