Skip to content

Commit

Permalink
fix: 紧急修复 韦恩图 引用路径问题
Browse files Browse the repository at this point in the history
  • Loading branch information
visiky committed Sep 26, 2021
1 parent a8ada33 commit b5dbfa4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### 2.3.34 (2021-09-26)
#### 2.3.35 (2021-09-26)

##### Chores

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@antv/g2plot",
"version": "2.3.34",
"description": "An interactive and responsive charting library",
"version": "2.3.35",
"description": "An nteractive and responsive charting library",
"keywords": [
"chart",
"plot",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const version = '2.3.34';
export const version = '2.3.35';

// G2 自定义能力透出
import * as G2 from '@antv/g2';
Expand Down
2 changes: 1 addition & 1 deletion src/plots/venn/adaptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
resolveAllPadding,
} from '../../utils';
import { Datum } from '../../types';
import { log, LEVEL } from '../../../src/utils';
import { log, LEVEL } from '../../utils';
import { getColorMap, layoutVennData, islegalSets } from './utils';
import { CustomInfo, VennData, VennOptions } from './types';
import { ID_FIELD } from './constant';
Expand Down
2 changes: 1 addition & 1 deletion src/plots/venn/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assign, memoize } from '@antv/util';
import { blend } from '../../utils/color/blend';
import { log, LEVEL } from '../../../src/utils';
import { log, LEVEL } from '../../utils';
import { venn, scaleSolution } from './layout/layout';
import { intersectionAreaPath, computeTextCentres } from './layout/diagram';
import { ID_FIELD, PATH_FIELD } from './constant';
Expand Down

0 comments on commit b5dbfa4

Please sign in to comment.