@visactor/vchart-types 2.1.2-alpha.3 → 2.1.2-alpha.4
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/types/index.d.ts
CHANGED
|
@@ -31,7 +31,12 @@ export * from './interaction';
|
|
|
31
31
|
export { createImage, createPath, createArc3d, createPyramid3d, createRect3d, registerDirectionalLight, registerOrthoCamera, registerViewTransform3dPlugin, graphicCreator, type IGraphic, type IGlyph, type IGroup, type IText, type ILine, type IArea, type IRect, type INode, type IStage, type EasingType, type ILineGraphicAttribute, type ITextGraphicAttribute, type IRectGraphicAttribute, type IGroupGraphicAttribute, type TextAlignType, type TextBaselineType, type GraphicEventType, type IAreaGraphicAttribute, type ISymbolGraphicAttribute } from '@visactor/vrender-core';
|
|
32
32
|
export { ACustomAnimate, AnimateExecutor, RotateBySphereAnimate } from '@visactor/vrender-animate';
|
|
33
33
|
export { AbstractComponent, Segment, MarkPoint, type SegmentAttributes, type Point } from '@visactor/vrender-components';
|
|
34
|
-
export { registerLine
|
|
34
|
+
export { registerLine } from '@visactor/vrender-kits/register/register-line';
|
|
35
|
+
export { registerRect } from '@visactor/vrender-kits/register/register-rect';
|
|
36
|
+
export { registerArc3d } from '@visactor/vrender-kits/register/register-arc3d';
|
|
37
|
+
export { registerPyramid3d } from '@visactor/vrender-kits/register/register-pyramid3d';
|
|
38
|
+
export { registerRect3d } from '@visactor/vrender-kits/register/register-rect3d';
|
|
39
|
+
export { registerShadowRoot } from '@visactor/vrender-kits/register/register-shadowRoot';
|
|
35
40
|
export * from '@visactor/vlayouts';
|
|
36
41
|
export { DataView, DataSet, svgParser } from '@visactor/vdataset';
|
|
37
42
|
export type { SVGParsedElement, SVGParserResult, ISVGSourceOption } from '@visactor/vdataset';
|
|
@@ -167,7 +167,6 @@ export declare class BaseMark<T extends ICommonSpec> extends GrammarItem impleme
|
|
|
167
167
|
protected _runEncoder(graphics: IMarkGraphic[], noGroupEncode?: boolean): void;
|
|
168
168
|
protected _excludeStateControlledDiffAttrs(g: IMarkGraphic, diffAttrs: Record<string, any>): Record<string, any>;
|
|
169
169
|
protected _hasDiffAttrs(g: IMarkGraphic): boolean;
|
|
170
|
-
protected _commitPreventedAnimationStaticAttrs(g: IMarkGraphic, attrs: Record<string, any>): void;
|
|
171
170
|
protected _runApplyGraphic(graphics: IMarkGraphic[]): void;
|
|
172
171
|
protected _updateEncoderByState(): void;
|
|
173
172
|
protected _runState(graphics: IMarkGraphic[]): void;
|