@visactor/vchart-types 1.11.1-alpha.0 → 1.11.1-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.
@@ -55,4 +55,11 @@ export declare abstract class BaseMarker<T extends IMarkerSpec> extends BaseComp
55
55
  private _getFirstSeries;
56
56
  protected _getNeedClearVRenderComponents(): IGraphic[];
57
57
  onLayoutStart(layoutRect: IRect, chartViewRect: ILayoutRect, ctx: any): void;
58
+ _compareSpec(spec: T, prevSpec: T): {
59
+ change: boolean;
60
+ reMake: boolean;
61
+ reRender: boolean;
62
+ reSize: boolean;
63
+ reCompile: boolean;
64
+ };
58
65
  }
@@ -13,6 +13,7 @@ export declare abstract class BaseMarkLine extends BaseMarker<IMarkLineSpec> imp
13
13
  protected abstract _computeOptions(): IMarkProcessOptions;
14
14
  static _getMarkerCoordinateType(markerSpec: any): string;
15
15
  protected _createMarkerComponent(): IGroup;
16
+ protected _getUpdateMarkerAttrs(): any;
16
17
  protected _markerLayout(): void;
17
18
  protected _initDataView(): void;
18
19
  }
@@ -6,8 +6,8 @@ import type { ISeriesConstructor } from '../series/interface';
6
6
  import type { DimensionIndexOption, IChart, IChartConstructor, IChartOption, IChartSpecInfo } from '../chart/interface';
7
7
  import type { IComponentConstructor } from '../component/interface';
8
8
  import type { EventCallback, EventParams, EventQuery, EventType } from '../event/interface';
9
- import type { IParserOptions, Transform, DataView } from '@visactor/vdataset';
10
- import { DataSet } from '@visactor/vdataset';
9
+ import type { IParserOptions, Transform } from '@visactor/vdataset';
10
+ import { DataSet, DataView } from '@visactor/vdataset';
11
11
  import type { Stage } from '@visactor/vrender-core';
12
12
  import type { GeoSourceType } from '../typings/geo';
13
13
  import type { GeoSourceOption } from '../series/map/geo-source';