From 2bd2c9fd844282da32419719f41f8a16e2b296e5 Mon Sep 17 00:00:00 2001 From: xiaoluoHe Date: Thu, 27 Mar 2025 15:19:15 +0800 Subject: [PATCH 1/3] fix: prevent clearing animations for exit elements with preState is `exit` --- .../fix-exit-element-clear_2025-03-27-07-10.json | 10 ++++++++++ packages/vgrammar-core/src/graph/animation/animate.ts | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json diff --git a/common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json b/common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json new file mode 100644 index 000000000..2e05746bc --- /dev/null +++ b/common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@visactor/vgrammar-core", + "comment": "fix: prevent clearing animations for exit elements with preState is `exit`", + "type": "none" + } + ], + "packageName": "@visactor/vgrammar-core" +} \ No newline at end of file diff --git a/packages/vgrammar-core/src/graph/animation/animate.ts b/packages/vgrammar-core/src/graph/animation/animate.ts index bf51254c6..dbab67a17 100644 --- a/packages/vgrammar-core/src/graph/animation/animate.ts +++ b/packages/vgrammar-core/src/graph/animation/animate.ts @@ -84,7 +84,7 @@ export class Animate implements IAnimate { this.clearElementAnimation(element, false); } // clear animations for exit elements - else if (element.diffState === DiffState.exit) { + else if (element.diffState === DiffState.exit && prevElementState !== element.diffState) { this.clearElementAnimation(element, false); } }); From c85de2529289b7708313d2532814223bb9641e66 Mon Sep 17 00:00:00 2001 From: xile611 Date: Thu, 27 Mar 2025 07:30:30 +0000 Subject: [PATCH 2/3] docs: generate changelog of release v0.16.2 --- docs/site/assets/changelog/en/release.md | 15 +++++++++++++++ docs/site/assets/changelog/zh/release.md | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/docs/site/assets/changelog/en/release.md b/docs/site/assets/changelog/en/release.md index af37cce2f..3c1a28de8 100644 --- a/docs/site/assets/changelog/en/release.md +++ b/docs/site/assets/changelog/en/release.md @@ -1,3 +1,18 @@ +# v0.16.2 + +2025-03-27 + + +**What's Changed** + +* [Auto Sync] Sync the code from branch main to branch develop after release 0.16.1 by @github-actions in https://github.com/VisActor/VGrammar/pull/637 +* [Auto release] release 0.16.2 by @github-actions in https://github.com/VisActor/VGrammar/pull/638 + + +**Full Changelog**: https://github.com/VisActor/VGrammar/compare/v0.16.1...v0.16.2 + +[more detail about v0.16.2](https://github.com/VisActor/VGrammar/releases/tag/v0.16.2) + # v0.15.7 2025-02-27 diff --git a/docs/site/assets/changelog/zh/release.md b/docs/site/assets/changelog/zh/release.md index 367b579c5..96a118dab 100644 --- a/docs/site/assets/changelog/zh/release.md +++ b/docs/site/assets/changelog/zh/release.md @@ -1,3 +1,18 @@ +# v0.16.2 + +2025-03-27 + + +**What's Changed** + +* [Auto Sync] Sync the code from branch main to branch develop after release 0.16.1 by @github-actions in https://github.com/VisActor/VGrammar/pull/637 +* [Auto release] release 0.16.2 by @github-actions in https://github.com/VisActor/VGrammar/pull/638 + + +**Full Changelog**: https://github.com/VisActor/VGrammar/compare/v0.16.1...v0.16.2 + +[更多详情请查看 v0.16.2](https://github.com/VisActor/VGrammar/releases/tag/v0.16.2) + # v0.15.7 2025-02-27 From 3576ec8996b59e2c962b2c268252a43ff9d0f2c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 27 Mar 2025 09:17:27 +0000 Subject: [PATCH 3/3] build: release version 0.16.3 --- ...x-exit-element-clear_2025-03-27-07-10.json | 10 -- common/config/rush/pnpm-lock.yaml | 96 +++++++++---------- common/config/rush/version-policies.json | 2 +- docs/dev-demos/package.json | 20 ++-- docs/site/package.json | 22 ++--- packages/vgrammar-coordinate/package.json | 4 +- packages/vgrammar-core/CHANGELOG.json | 12 +++ packages/vgrammar-core/CHANGELOG.md | 9 +- packages/vgrammar-core/package.json | 6 +- packages/vgrammar-full/package.json | 18 ++-- packages/vgrammar-hierarchy/package.json | 6 +- packages/vgrammar-plot/package.json | 8 +- packages/vgrammar-projection/package.json | 6 +- packages/vgrammar-sankey/package.json | 6 +- packages/vgrammar-util/package.json | 2 +- packages/vgrammar-venn/package.json | 6 +- .../vgrammar-wordcloud-shape/package.json | 6 +- packages/vgrammar-wordcloud/package.json | 6 +- packages/vgrammar/package.json | 4 +- 19 files changed, 129 insertions(+), 120 deletions(-) delete mode 100644 common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json diff --git a/common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json b/common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json deleted file mode 100644 index 2e05746bc..000000000 --- a/common/changes/@visactor/vgrammar-core/fix-exit-element-clear_2025-03-27-07-10.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vgrammar-core", - "comment": "fix: prevent clearing animations for exit elements with preState is `exit`", - "type": "none" - } - ], - "packageName": "@visactor/vgrammar-core" -} \ No newline at end of file diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 4cea9b867..d2bb8359c 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -9,16 +9,16 @@ importers: specifiers: '@internal/eslint-config': workspace:* '@internal/ts-config': workspace:* - '@visactor/vgrammar': workspace:0.16.2 - '@visactor/vgrammar-coordinate': workspace:0.16.2 - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-hierarchy': workspace:0.16.2 - '@visactor/vgrammar-plot': workspace:0.16.2 - '@visactor/vgrammar-projection': workspace:0.16.2 - '@visactor/vgrammar-sankey': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 - '@visactor/vgrammar-wordcloud': workspace:0.16.2 - '@visactor/vgrammar-wordcloud-shape': workspace:0.16.2 + '@visactor/vgrammar': workspace:0.16.3 + '@visactor/vgrammar-coordinate': workspace:0.16.3 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-hierarchy': workspace:0.16.3 + '@visactor/vgrammar-plot': workspace:0.16.3 + '@visactor/vgrammar-projection': workspace:0.16.3 + '@visactor/vgrammar-sankey': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 + '@visactor/vgrammar-wordcloud': workspace:0.16.3 + '@visactor/vgrammar-wordcloud-shape': workspace:0.16.3 '@visactor/vrender': 0.22.6 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 @@ -60,17 +60,17 @@ importers: '@types/markdown-it': ^13.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vgrammar': workspace:0.16.2 - '@visactor/vgrammar-coordinate': workspace:0.16.2 - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-hierarchy': workspace:0.16.2 - '@visactor/vgrammar-plot': workspace:0.16.2 - '@visactor/vgrammar-projection': workspace:0.16.2 - '@visactor/vgrammar-sankey': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 - '@visactor/vgrammar-venn': workspace:0.16.2 - '@visactor/vgrammar-wordcloud': workspace:0.16.2 - '@visactor/vgrammar-wordcloud-shape': workspace:0.16.2 + '@visactor/vgrammar': workspace:0.16.3 + '@visactor/vgrammar-coordinate': workspace:0.16.3 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-hierarchy': workspace:0.16.3 + '@visactor/vgrammar-plot': workspace:0.16.3 + '@visactor/vgrammar-projection': workspace:0.16.3 + '@visactor/vgrammar-sankey': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 + '@visactor/vgrammar-venn': workspace:0.16.3 + '@visactor/vgrammar-wordcloud': workspace:0.16.3 + '@visactor/vgrammar-wordcloud-shape': workspace:0.16.3 '@visactor/vrender': 0.22.6 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 @@ -153,7 +153,7 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 d3-array: 1.x eslint: ~8.18.0 jest: ~29.5.0 @@ -191,7 +191,7 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vutils': ~0.19.4 eslint: ~8.18.0 jest: ~29.5.0 @@ -229,8 +229,8 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@visactor/vdataset': ~0.19.4 - '@visactor/vgrammar-coordinate': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-coordinate': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vrender-components': 0.22.6 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 @@ -279,14 +279,14 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@types/node-fetch': 2.6.4 - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-hierarchy': workspace:0.16.2 - '@visactor/vgrammar-plot': workspace:0.16.2 - '@visactor/vgrammar-projection': workspace:0.16.2 - '@visactor/vgrammar-sankey': workspace:0.16.2 - '@visactor/vgrammar-venn': workspace:0.16.2 - '@visactor/vgrammar-wordcloud': workspace:0.16.2 - '@visactor/vgrammar-wordcloud-shape': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-hierarchy': workspace:0.16.3 + '@visactor/vgrammar-plot': workspace:0.16.3 + '@visactor/vgrammar-projection': workspace:0.16.3 + '@visactor/vgrammar-sankey': workspace:0.16.3 + '@visactor/vgrammar-venn': workspace:0.16.3 + '@visactor/vgrammar-wordcloud': workspace:0.16.3 + '@visactor/vgrammar-wordcloud-shape': workspace:0.16.3 d3-array: 1.x eslint: ~8.18.0 form-data: ~4.0.0 @@ -338,8 +338,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 '@visactor/vutils': ~0.19.4 @@ -382,9 +382,9 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-coordinate': workspace:0.16.2 - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-coordinate': workspace:0.16.3 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vrender-components': 0.22.6 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 @@ -435,8 +435,8 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vutils': ~0.19.4 d3-array: 1.x d3-geo: ^1.12.1 @@ -479,8 +479,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 '@visactor/vutils': ~0.19.4 @@ -559,8 +559,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 '@visactor/vutils': ~0.19.4 @@ -602,8 +602,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 '@visactor/vutils': ~0.19.4 @@ -645,8 +645,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.16.2 - '@visactor/vgrammar-util': workspace:0.16.2 + '@visactor/vgrammar-core': workspace:0.16.3 + '@visactor/vgrammar-util': workspace:0.16.3 '@visactor/vrender-core': 0.22.6 '@visactor/vrender-kits': 0.22.6 '@visactor/vscale': ~0.19.4 diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 3a274a25f..5f6f1657f 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -1 +1 @@ -[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.16.2","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] +[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.16.3","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] diff --git a/docs/dev-demos/package.json b/docs/dev-demos/package.json index ffae8e76d..557db9a61 100644 --- a/docs/dev-demos/package.json +++ b/docs/dev-demos/package.json @@ -12,14 +12,14 @@ "@internal/eslint-config": "workspace:*", "@internal/ts-config": "workspace:*", "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar": "workspace:0.16.2", - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-hierarchy": "workspace:0.16.2", - "@visactor/vgrammar-sankey": "workspace:0.16.2", - "@visactor/vgrammar-projection": "workspace:0.16.2", - "@visactor/vgrammar-wordcloud": "workspace:0.16.2", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.16.2", - "@visactor/vgrammar-plot": "workspace:0.16.2", + "@visactor/vgrammar": "workspace:0.16.3", + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-hierarchy": "workspace:0.16.3", + "@visactor/vgrammar-sankey": "workspace:0.16.3", + "@visactor/vgrammar-projection": "workspace:0.16.3", + "@visactor/vgrammar-wordcloud": "workspace:0.16.3", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.16.3", + "@visactor/vgrammar-plot": "workspace:0.16.3", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6", "@visactor/vrender": "0.22.6", @@ -27,8 +27,8 @@ "lodash": "4.17.21", "typescript": "4.9.5", "vite": "3.2.6", - "@visactor/vgrammar-util": "workspace:0.16.2", - "@visactor/vgrammar-coordinate": "workspace:0.16.2", + "@visactor/vgrammar-util": "workspace:0.16.3", + "@visactor/vgrammar-coordinate": "workspace:0.16.3", "@vitejs/plugin-react": "3.1.0" } } diff --git a/docs/site/package.json b/docs/site/package.json index 6044359c5..533ff43f6 100644 --- a/docs/site/package.json +++ b/docs/site/package.json @@ -14,17 +14,17 @@ "dependencies": { "@arco-design/web-react": "2.46.1", "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar": "workspace:0.16.2", - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-hierarchy": "workspace:0.16.2", - "@visactor/vgrammar-sankey": "workspace:0.16.2", - "@visactor/vgrammar-projection": "workspace:0.16.2", - "@visactor/vgrammar-wordcloud": "workspace:0.16.2", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.16.2", - "@visactor/vgrammar-plot": "workspace:0.16.2", - "@visactor/vgrammar-util": "workspace:0.16.2", - "@visactor/vgrammar-coordinate": "workspace:0.16.2", - "@visactor/vgrammar-venn": "workspace:0.16.2", + "@visactor/vgrammar": "workspace:0.16.3", + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-hierarchy": "workspace:0.16.3", + "@visactor/vgrammar-sankey": "workspace:0.16.3", + "@visactor/vgrammar-projection": "workspace:0.16.3", + "@visactor/vgrammar-wordcloud": "workspace:0.16.3", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.16.3", + "@visactor/vgrammar-plot": "workspace:0.16.3", + "@visactor/vgrammar-util": "workspace:0.16.3", + "@visactor/vgrammar-coordinate": "workspace:0.16.3", + "@visactor/vgrammar-venn": "workspace:0.16.3", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6", "@visactor/vrender": "0.22.6", diff --git a/packages/vgrammar-coordinate/package.json b/packages/vgrammar-coordinate/package.json index a3825ad9b..25544070d 100644 --- a/packages/vgrammar-coordinate/package.json +++ b/packages/vgrammar-coordinate/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-coordinate", - "version": "0.16.2", + "version": "0.16.3", "description": "Coordinates for VGrammar", "keywords": [ "coordinate", @@ -35,7 +35,7 @@ }, "dependencies": { "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar-util": "workspace:0.16.2" + "@visactor/vgrammar-util": "workspace:0.16.3" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-core/CHANGELOG.json b/packages/vgrammar-core/CHANGELOG.json index 657804d60..df38ec617 100644 --- a/packages/vgrammar-core/CHANGELOG.json +++ b/packages/vgrammar-core/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@visactor/vgrammar-core", "entries": [ + { + "version": "0.16.3", + "tag": "@visactor/vgrammar-core_v0.16.3", + "date": "Thu, 27 Mar 2025 09:08:56 GMT", + "comments": { + "none": [ + { + "comment": "fix: prevent clearing animations for exit elements with preState is `exit`" + } + ] + } + }, { "version": "0.16.2", "tag": "@visactor/vgrammar-core_v0.16.2", diff --git a/packages/vgrammar-core/CHANGELOG.md b/packages/vgrammar-core/CHANGELOG.md index 50c0c7409..3cf57b287 100644 --- a/packages/vgrammar-core/CHANGELOG.md +++ b/packages/vgrammar-core/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @visactor/vgrammar-core -This log was last generated on Fri, 21 Mar 2025 08:52:21 GMT and should not be manually modified. +This log was last generated on Thu, 27 Mar 2025 09:08:56 GMT and should not be manually modified. + +## 0.16.3 +Thu, 27 Mar 2025 09:08:56 GMT + +### Updates + +- fix: prevent clearing animations for exit elements with preState is `exit` ## 0.16.2 Fri, 21 Mar 2025 08:52:21 GMT diff --git a/packages/vgrammar-core/package.json b/packages/vgrammar-core/package.json index 5ab5599fa..2a620c533 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-core", - "version": "0.16.2", + "version": "0.16.3", "description": "VGrammar is a visual grammar library", "keywords": [ "grammar", @@ -37,8 +37,8 @@ "dependencies": { "@visactor/vutils": "~0.19.4", "@visactor/vdataset": "~0.19.4", - "@visactor/vgrammar-coordinate": "workspace:0.16.2", - "@visactor/vgrammar-util": "workspace:0.16.2", + "@visactor/vgrammar-coordinate": "workspace:0.16.3", + "@visactor/vgrammar-util": "workspace:0.16.3", "@visactor/vscale": "~0.19.4", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6", diff --git a/packages/vgrammar-full/package.json b/packages/vgrammar-full/package.json index 14b17e8df..c7d3ede6f 100644 --- a/packages/vgrammar-full/package.json +++ b/packages/vgrammar-full/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-full", - "version": "0.16.2", + "version": "0.16.3", "description": "full packages of vgrammar.", "keywords": [ "visualization", @@ -33,14 +33,14 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-hierarchy": "workspace:0.16.2", - "@visactor/vgrammar-plot": "workspace:0.16.2", - "@visactor/vgrammar-projection": "workspace:0.16.2", - "@visactor/vgrammar-sankey": "workspace:0.16.2", - "@visactor/vgrammar-wordcloud": "workspace:0.16.2", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.16.2", - "@visactor/vgrammar-venn": "workspace:0.16.2" + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-hierarchy": "workspace:0.16.3", + "@visactor/vgrammar-plot": "workspace:0.16.3", + "@visactor/vgrammar-projection": "workspace:0.16.3", + "@visactor/vgrammar-sankey": "workspace:0.16.3", + "@visactor/vgrammar-wordcloud": "workspace:0.16.3", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.16.3", + "@visactor/vgrammar-venn": "workspace:0.16.3" }, "devDependencies": { "d3-array": "1.x", diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index 69e8c9e5e..491344593 100644 --- a/packages/vgrammar-hierarchy/package.json +++ b/packages/vgrammar-hierarchy/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-hierarchy", - "version": "0.16.2", + "version": "0.16.3", "description": "Layout of hierarchical data for VGrammar", "keywords": [ "hierarchy", @@ -39,8 +39,8 @@ }, "dependencies": { "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-util": "workspace:0.16.2", + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-util": "workspace:0.16.3", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6" }, diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index 282db1580..e502963e5 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-plot", - "version": "0.16.2", + "version": "0.16.3", "description": "Plots of vgrammar.", "keywords": [ "plot", @@ -36,9 +36,9 @@ "dependencies": { "@visactor/vscale": "~0.19.4", "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar-util": "workspace:0.16.2", - "@visactor/vgrammar-coordinate": "workspace:0.16.2", - "@visactor/vgrammar-core": "workspace:0.16.2", + "@visactor/vgrammar-util": "workspace:0.16.3", + "@visactor/vgrammar-coordinate": "workspace:0.16.3", + "@visactor/vgrammar-core": "workspace:0.16.3", "@visactor/vrender-components": "0.22.6", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6" diff --git a/packages/vgrammar-projection/package.json b/packages/vgrammar-projection/package.json index c5216aff9..2540f020f 100644 --- a/packages/vgrammar-projection/package.json +++ b/packages/vgrammar-projection/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-projection", - "version": "0.16.2", + "version": "0.16.3", "description": "Projections for map, used in VGrammar.", "keywords": [ "projection", @@ -35,8 +35,8 @@ }, "dependencies": { "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar-util": "workspace:0.16.2", - "@visactor/vgrammar-core": "workspace:0.16.2", + "@visactor/vgrammar-util": "workspace:0.16.3", + "@visactor/vgrammar-core": "workspace:0.16.3", "d3-geo": "^1.12.1" }, "devDependencies": { diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index a1a5f0266..45008226a 100644 --- a/packages/vgrammar-sankey/package.json +++ b/packages/vgrammar-sankey/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-sankey", - "version": "0.16.2", + "version": "0.16.3", "description": "Layout of sankey chart, used by VGrammar", "keywords": [ "sankey", @@ -37,8 +37,8 @@ }, "dependencies": { "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-util": "workspace:0.16.2", + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-util": "workspace:0.16.3", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6" }, diff --git a/packages/vgrammar-util/package.json b/packages/vgrammar-util/package.json index 1860f293d..6913277a4 100644 --- a/packages/vgrammar-util/package.json +++ b/packages/vgrammar-util/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-util", - "version": "0.16.2", + "version": "0.16.3", "description": "The common utils functions of VGrammar", "keywords": [ "utils", diff --git a/packages/vgrammar-venn/package.json b/packages/vgrammar-venn/package.json index 765a10071..c3fa73bea 100644 --- a/packages/vgrammar-venn/package.json +++ b/packages/vgrammar-venn/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-venn", - "version": "0.16.2", + "version": "0.16.3", "description": "Venn layout transform for VGrammar", "keywords": [ "venn", @@ -34,8 +34,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-util": "workspace:0.16.2", + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-util": "workspace:0.16.3", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6", "@visactor/vutils": "~0.19.4" diff --git a/packages/vgrammar-wordcloud-shape/package.json b/packages/vgrammar-wordcloud-shape/package.json index 03799533b..7e0ca1ec3 100644 --- a/packages/vgrammar-wordcloud-shape/package.json +++ b/packages/vgrammar-wordcloud-shape/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-wordcloud-shape", - "version": "0.16.2", + "version": "0.16.3", "description": "Layout WordCloud in specified shape, this is a transform for VGrammar.", "keywords": [ "wordcloud", @@ -36,8 +36,8 @@ "dependencies": { "@visactor/vutils": "~0.19.4", "@visactor/vscale": "~0.19.4", - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-util": "workspace:0.16.2", + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-util": "workspace:0.16.3", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6" }, diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index a0cfbd243..aa065ff1e 100644 --- a/packages/vgrammar-wordcloud/package.json +++ b/packages/vgrammar-wordcloud/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-wordcloud", - "version": "0.16.2", + "version": "0.16.3", "description": "WordCloud layout transform for VGrammar", "keywords": [ "wordcloud", @@ -35,8 +35,8 @@ }, "dependencies": { "@visactor/vutils": "~0.19.4", - "@visactor/vgrammar-core": "workspace:0.16.2", - "@visactor/vgrammar-util": "workspace:0.16.2", + "@visactor/vgrammar-core": "workspace:0.16.3", + "@visactor/vgrammar-util": "workspace:0.16.3", "@visactor/vrender-core": "0.22.6", "@visactor/vrender-kits": "0.22.6" }, diff --git a/packages/vgrammar/package.json b/packages/vgrammar/package.json index c6d6acd52..7a7ad48c7 100644 --- a/packages/vgrammar/package.json +++ b/packages/vgrammar/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar", - "version": "0.16.2", + "version": "0.16.3", "description": "simple package of vgrammar.", "keywords": [ "visualization", @@ -30,7 +30,7 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.16.2" + "@visactor/vgrammar-core": "workspace:0.16.3" }, "devDependencies": { "d3-array": "1.x",