@visactor/vchart-types 2.0.20-alpha.1 → 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.
@@ -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[];
@@ -188,5 +188,4 @@ export declare class BaseMark<T extends ICommonSpec> extends GrammarItem impleme
188
188
  hasAnimationByState(state: AnimationStateValues): boolean;
189
189
  hasAnimation(): boolean;
190
190
  runAnimation(): void;
191
- clearBeforeReInit(): void;
192
191
  }
@@ -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 {