@visactor/vchart-types 2.0.20-alpha.0 → 2.0.20-alpha.2
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/compile/compiler.d.ts +2 -0
- package/types/compile/mark/interface.d.ts +0 -1
- package/types/compile/mark/mark-state-manager.d.ts +0 -1
- package/types/mark/base/base-mark.d.ts +0 -1
- package/types/mark/interface/common.d.ts +0 -1
|
@@ -47,6 +47,8 @@ export declare class Compiler implements ICompiler {
|
|
|
47
47
|
updateLayoutTag(): void;
|
|
48
48
|
protected handleLayoutEnd: () => void;
|
|
49
49
|
protected handleStageRender: () => void;
|
|
50
|
+
private _isGeoRegionRoamDragEnabled;
|
|
51
|
+
private _shouldDisableCanvasTouchAction;
|
|
50
52
|
private _setCanvasStyle;
|
|
51
53
|
compile(ctx: {
|
|
52
54
|
chart: IChart;
|
|
@@ -32,7 +32,6 @@ export interface IMarkStateManager {
|
|
|
32
32
|
addStateInfo: (stateInfo: IStateInfo) => void;
|
|
33
33
|
changeStateInfo: (stateInfo: Partial<IStateInfo>) => void;
|
|
34
34
|
clearStateInfo: (stateValues: StateValue[]) => void;
|
|
35
|
-
clearAllStateInfo: () => void;
|
|
36
35
|
checkOneState: (renderNode: IMarkGraphic, datum: Datum[], state: IStateInfo) => 'in' | 'out' | 'skip';
|
|
37
36
|
checkState: (renderNode: IMarkGraphic, datum: Datum[]) => StateValue[];
|
|
38
37
|
getStateMap: () => StateValueMap;
|
|
@@ -14,7 +14,6 @@ export declare class MarkStateManager extends StateManager implements IMarkState
|
|
|
14
14
|
private _clearStateBeforeSet;
|
|
15
15
|
changeStateInfo(stateInfo: Partial<IStateInfo>): void;
|
|
16
16
|
clearStateInfo(stateValues: StateValue[]): void;
|
|
17
|
-
clearAllStateInfo(): void;
|
|
18
17
|
protected _isMultiMark(): boolean;
|
|
19
18
|
checkOneState(renderNode: IMarkGraphic, datum: Datum[], state: IStateInfo): 'in' | 'out' | 'skip';
|
|
20
19
|
checkState(renderNode: IMarkGraphic, datum: Datum[]): StateValue[];
|
|
@@ -99,7 +99,6 @@ export interface IMarkRaw<T extends ICommonSpec> extends ICompilableMark {
|
|
|
99
99
|
needClear?: boolean;
|
|
100
100
|
disableAnimationByState: (state: string | string[]) => void;
|
|
101
101
|
enableAnimationByState: (state: string | string[]) => void;
|
|
102
|
-
clearBeforeReInit: () => void;
|
|
103
102
|
}
|
|
104
103
|
export type IMark = IMarkRaw<ICommonSpec>;
|
|
105
104
|
export interface ICompileMarkConfig extends IMarkConfig {
|