Skip to content

Commit

Permalink
fix: fix incorrect type import path (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarebecca authored Sep 6, 2024
1 parent c828752 commit 51ba842
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/ui/title/types.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit 51ba842

Please sign in to comment.