diff --git a/package.json b/package.json index 760d7915..5f592436 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antv/component", - "version": "2.0.4", + "version": "2.0.5", "description": "Visualization components for AntV, based on G.", "license": "MIT", "main": "lib/index.js", diff --git a/src/ui/title/types.ts b/src/ui/title/types.ts index 91a9e51e..f3ee7f34 100644 --- a/src/ui/title/types.ts +++ b/src/ui/title/types.ts @@ -1,6 +1,6 @@ -import { ExtendDisplayObject } from 'src/types'; import type { ComponentOptions } from '../../core/types'; import type { GroupStyleProps, TextStyleProps } from '../../shapes'; +import type { ExtendDisplayObject } from '../../types'; import type { SeriesAttr } from '../../util'; export type PositionAbbr = 't' | 'r' | 'l' | 'b' | 'lt' | 'tl' | 'rt' | 'tr' | 'lb' | 'bl' | 'rb' | 'br' | 'i';