Skip to content

Commit

Permalink
chore: release (#994)
Browse files Browse the repository at this point in the history
  • Loading branch information
lxfu1 authored Nov 24, 2021
1 parent 0ced3d2 commit 102ff34
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 13 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## 1.3.0

`2021-11-25`

- 🆕 新增流程图 [Flowchart](https://charts.ant.design/zh/examples/flowchart/basic#basic)

流程图除 `react``react-dom` 外,还依赖 `antd``@ant-design/icons``lodash`,使用时确保已经安装,同时记得引入样式文件 `import "@ant-design/flowchart/dist/index.css";`

```ts
"peerDependencies": {
"@ant-design/icons": "^4.6.0",
"antd": "^4.6.3",
"lodash": "^4.17.20",
"react": ">=16.8.4",
"react-dom": ">=16.8.4"
}
```

```tsx
import { Flowchart } from '@ant-design/charts';
import "@ant-design/flowchart/dist/index.css";
```

- 🆕 新增地理可视化 [Maps](https://charts.ant.design/zh/examples/map-area/division#chinese-provinces)
- 🆕 新增 CirclePacking
- 🆕 Ant Design Charts 完成拆包,推荐使用子包
- 统计图表:@ant-design/plots
- 流程图:@ant-design/flowchart
- 地理可视化:@ant-design/maps
- 关系图:@ant-design/graphs


## 1.2.4

`2021-07-27`
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"test": "lerna run test --stream",
"lint": "lerna run lint --stream",
"build": "lerna run build --stream --profile --profile-location=logs/profile/",
"flow": "lerna run build --stream --profile --scope=@ant-design/flowchart",
"site:build": "lerna run site:build --stream --scope=@ant-design/charts-site",
"profile": "webpack --config webpack.config.js --mode production --profile --json > stats.json",
"prettier": "prettier --write \"**/**.{js,jsx,tsx,ts,less,md,json}\"",
Expand Down
12 changes: 6 additions & 6 deletions packages/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": false,
"name": "@ant-design/charts",
"version": "1.3.0-beta.3",
"version": "1.3.0",
"description": "AntV upper level visual component library",
"bugs": {
"url": "https://github.com/ant-design/ant-design-charts/issues"
Expand All @@ -20,7 +20,7 @@
"/dist"
],
"scripts": {
"build": "run-s clean lib",
"build": "run-s clean lib dist",
"ci": "npm run build && npm run test:coverage",
"clean": "rimraf lib es dist",
"dist": "webpack --config webpack.config.js --mode production",
Expand All @@ -30,10 +30,10 @@
"lib:es": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir es"
},
"dependencies": {
"@ant-design/flowchart": "^1.0.0",
"@ant-design/graphs": "^1.0.0",
"@ant-design/maps": "^0.0.1",
"@ant-design/plots": "^1.0.0"
"@ant-design/flowchart": "^1.0.2",
"@ant-design/graphs": "^1.0.1",
"@ant-design/maps": "^0.0.3",
"@ant-design/plots": "^1.0.2"
},
"peerDependencies": {
"react": ">=16.8.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/graphs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ant-design/graphs",
"version": "1.0.0",
"version": "1.0.1",
"description": "Relation graph",
"bugs": {
"url": "https://github.com/ant-design/ant-design-charts/issues"
Expand All @@ -19,7 +19,7 @@
"/dist"
],
"scripts": {
"build": "run-s clean lib",
"build": "run-s clean lib dist",
"ci": "npm run build && npm run test:coverage",
"clean": "rimraf lib es dist",
"dist": "webpack --config webpack.config.js --mode production",
Expand Down
4 changes: 2 additions & 2 deletions packages/maps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ant-design/maps",
"version": "0.0.2",
"version": "0.0.3",
"description": "maps",
"bugs": {
"url": "https://github.com/ant-design/ant-design-charts/issues"
Expand All @@ -19,7 +19,7 @@
"/dist"
],
"scripts": {
"build": "run-s clean lib",
"build": "run-s clean lib dist",
"ci": "npm run build && npm run test:coverage",
"clean": "rimraf lib es dist",
"dist": "webpack --config webpack.config.js --mode production",
Expand Down
4 changes: 2 additions & 2 deletions packages/plots/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ant-design/plots",
"version": "1.0.1",
"version": "1.0.2",
"description": "G2Plot Statistical chart",
"bugs": {
"url": "https://github.com/ant-design/ant-design-charts/issues"
Expand All @@ -19,7 +19,7 @@
"/dist"
],
"scripts": {
"build": "run-s clean lib",
"build": "run-s clean lib dist",
"ci": "npm run build && npm run test:coverage",
"clean": "rimraf lib es dist",
"dist": "webpack --config webpack.config.js --mode production",
Expand Down

0 comments on commit 102ff34

Please sign in to comment.