From 9926b5bd4f6c2833ab7a2f944110b4414abcd42e Mon Sep 17 00:00:00 2001 From: xile611 Date: Sun, 4 Feb 2024 06:29:11 +0000 Subject: [PATCH 1/6] docs: generate changelog of release v0.11.10 --- docs/site/assets/changelog/en/release.md | 13 +++++++++++++ docs/site/assets/changelog/zh/release.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/docs/site/assets/changelog/en/release.md b/docs/site/assets/changelog/en/release.md index 815bf5838..9387f9b96 100644 --- a/docs/site/assets/changelog/en/release.md +++ b/docs/site/assets/changelog/en/release.md @@ -1,3 +1,16 @@ +# v0.11.10 + +2024-02-04 + + +**🐛 Bug fix** + +- **@visactor/vgrammar-core**: fix render error when update marks + + + +[more detail about v0.11.10](https://github.com/VisActor/VGrammar/releases/tag/v0.11.10) + # v0.11.9 2024-02-04 diff --git a/docs/site/assets/changelog/zh/release.md b/docs/site/assets/changelog/zh/release.md index 79c977444..9cda6a833 100644 --- a/docs/site/assets/changelog/zh/release.md +++ b/docs/site/assets/changelog/zh/release.md @@ -1,3 +1,16 @@ +# v0.11.10 + +2024-02-04 + + +**🐛 功能修复** + +- **@visactor/vgrammar-core**: fix render error when update marks + + + +[更多详情请查看 v0.11.10](https://github.com/VisActor/VGrammar/releases/tag/v0.11.10) + # v0.11.9 2024-02-04 From 04ab53b3f96165182fe2615560d7b0e43470ee71 Mon Sep 17 00:00:00 2001 From: xile611 Date: Sun, 4 Feb 2024 16:38:02 +0800 Subject: [PATCH 2/6] feat: support `clipPath` of mark group --- docs/dev-demos/src/api/stack.ts | 47 +++++++++++++++++++++++- packages/vgrammar-core/src/types/mark.ts | 4 +- packages/vgrammar-core/src/view/mark.ts | 8 +++- 3 files changed, 56 insertions(+), 3 deletions(-) diff --git a/docs/dev-demos/src/api/stack.ts b/docs/dev-demos/src/api/stack.ts index 390ba1965..b09622cef 100644 --- a/docs/dev-demos/src/api/stack.ts +++ b/docs/dev-demos/src/api/stack.ts @@ -1,7 +1,8 @@ /* eslint-disable no-console */ -import type { IView } from '@visactor/vgrammar'; +import type { IElement, IView } from '@visactor/vgrammar'; import type { IBandLikeScale } from '@visactor/vscale'; import { category10 } from '../color-utils'; +import { createRect, IGraphic } from '@visactor/vrender' const originData = [ { category: 'A', amount: 28, index: 0, type: 'First' }, @@ -95,6 +96,50 @@ export const runner = (view: IView) => { state: { duration: 1000 } + }).configure({ + clip: true, + clipPath: (elements: IElement[]) => { + const stackMaps = {}; + + elements.forEach(el => { + const stack = el.getDatum().category; + + if (!stackMaps[stack]) { + stackMaps[stack] = []; + } + + stackMaps[stack].push(el); + }); + + const paths: IGraphic[] = []; + + Object.keys(stackMaps).forEach(key => { + const children = stackMaps[key]; + const x = children[0].getGraphicAttribute('x'); + const width = children[0].getGraphicAttribute('width'); + const ys: number[] = []; + + children.forEach(child => { + ys.push(child.getGraphicAttribute('y')); + ys.push(child.getGraphicAttribute('y1')); + }) + + console.log(x, width, ys) + + paths.push( + createRect({ + x, + y: Math.min.apply(null, ys), + y1: Math.max.apply(null, ys), + width, + cornerRadius: [10, 10, 0, 0], + fill: 'white' + }) + ); + }); + + return paths; + } }); const label = view .label(container) diff --git a/packages/vgrammar-core/src/types/mark.ts b/packages/vgrammar-core/src/types/mark.ts index 7cb927a3a..4f57cb349 100644 --- a/packages/vgrammar-core/src/types/mark.ts +++ b/packages/vgrammar-core/src/types/mark.ts @@ -17,7 +17,8 @@ import type { ITextGraphicAttribute, IGraphicAttribute, IGroupGraphicAttribute, - IRichTextGraphicAttribute + IRichTextGraphicAttribute, + IGraphic } from '@visactor/vrender-core'; import type { Bounds, IPointLike } from '@visactor/vutils'; import type { IAnimationConfig, IStateAnimationConfig } from './animate'; @@ -213,6 +214,7 @@ export type MarkLayoutCallback = ( ) => void; export interface IMarkConfig { + clipPath?: IGraphic[] | ((elements: IElement[]) => IGraphic[]); clip?: boolean; zIndex?: number; interactive?: boolean; diff --git a/packages/vgrammar-core/src/view/mark.ts b/packages/vgrammar-core/src/view/mark.ts index 07227c86e..4e55c8d11 100644 --- a/packages/vgrammar-core/src/view/mark.ts +++ b/packages/vgrammar-core/src/view/mark.ts @@ -1,5 +1,5 @@ import type { IGroup, INode } from '@visactor/vrender-core'; -import { isNil, isString } from '@visactor/vutils'; +import { isArray, isNil, isString } from '@visactor/vutils'; import { BridgeElementKey, CollectionMarkType, DefaultKey, DefaultMarkData, Mark3DType } from '../graph/constants'; import { DiffState, @@ -473,6 +473,7 @@ export class Mark extends GrammarBase implements IMark { configure(config: IMarkConfig | Nil): this { const keys = [ 'clip', + 'clipPath', 'zIndex', 'interactive', 'context', @@ -669,6 +670,11 @@ export class Mark extends GrammarBase implements IMark { if (!isNil(spec.clip)) { this.graphicItem.setAttribute('clip', spec.clip); } + + if (!isNil(spec.clipPath)) { + this.graphicItem.setAttribute('path', isArray(spec.clipPath) ? spec.clipPath : spec.clipPath(this.elements)); + } + // only update interactive this.elementMap.forEach(element => { element.updateGraphicItem({ From 419dbc7e007edd8155a67147fdc779997afb866f Mon Sep 17 00:00:00 2001 From: xile611 Date: Sun, 4 Feb 2024 16:41:31 +0800 Subject: [PATCH 3/6] feat: group-mark can also set clip path --- packages/vgrammar-core/src/graph/element.ts | 10 +++++++++- packages/vgrammar-core/src/view/mark.ts | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/vgrammar-core/src/graph/element.ts b/packages/vgrammar-core/src/graph/element.ts index 1a9a97d34..455c96532 100644 --- a/packages/vgrammar-core/src/graph/element.ts +++ b/packages/vgrammar-core/src/graph/element.ts @@ -115,10 +115,18 @@ export class Element implements IElement { if (!this.graphicItem) { return; } - + // only works for group mark if (!isNil(config.clip)) { this.graphicItem.setAttribute('clip', config.clip); } + // only works for group mark + if (!isNil(config.zIndex)) { + this.graphicItem.setAttribute('zIndex', config.zIndex); + } + // only works for group mark + if (!isNil(config.clipPath)) { + this.graphicItem.setAttribute('path', isArray(config.clipPath) ? config.clipPath : config.clipPath([this])); + } if (!isNil(config.interactive)) { this.graphicItem.setAttribute('pickable', config.interactive); } diff --git a/packages/vgrammar-core/src/view/mark.ts b/packages/vgrammar-core/src/view/mark.ts index 4e55c8d11..215151035 100644 --- a/packages/vgrammar-core/src/view/mark.ts +++ b/packages/vgrammar-core/src/view/mark.ts @@ -670,7 +670,6 @@ export class Mark extends GrammarBase implements IMark { if (!isNil(spec.clip)) { this.graphicItem.setAttribute('clip', spec.clip); } - if (!isNil(spec.clipPath)) { this.graphicItem.setAttribute('path', isArray(spec.clipPath) ? spec.clipPath : spec.clipPath(this.elements)); } @@ -687,7 +686,8 @@ export class Mark extends GrammarBase implements IMark { element.updateGraphicItem({ clip: spec.clip, zIndex: spec.zIndex, - interactive: spec.interactive + interactive: spec.interactive, + clipPath: spec.clipPath }); }); } From 433818e3f9283512c9a896b450d6a206c89fb22f Mon Sep 17 00:00:00 2001 From: xile611 Date: Sun, 4 Feb 2024 16:51:18 +0800 Subject: [PATCH 4/6] docs: update changelog of rush --- .../feat-clip-path-group_2024-02-04-08-51.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json diff --git a/common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json b/common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json new file mode 100644 index 000000000..5d526bdaf --- /dev/null +++ b/common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@visactor/vgrammar-core", + "comment": "feat: support `clipPath` in mark", + "type": "none" + } + ], + "packageName": "@visactor/vgrammar-core" +} \ No newline at end of file From 513dcca75d2d62bfcd0a8cda2f4e27a1410ae71e Mon Sep 17 00:00:00 2001 From: xile611 Date: Mon, 5 Feb 2024 11:10:56 +0800 Subject: [PATCH 5/6] fix: upgrade vrender to 0.17.23 to fix the bug of area single points --- common/config/rush/pnpm-lock.yaml | 106 +++++++++--------- docs/dev-demos/package.json | 6 +- docs/site/package.json | 6 +- packages/vgrammar-core/package.json | 6 +- packages/vgrammar-hierarchy/package.json | 4 +- packages/vgrammar-plot/package.json | 6 +- packages/vgrammar-sankey/package.json | 4 +- .../vgrammar-wordcloud-shape/package.json | 4 +- packages/vgrammar-wordcloud/package.json | 4 +- 9 files changed, 73 insertions(+), 73 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index ed41ccc62..686cbcdaa 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -19,9 +19,9 @@ importers: '@visactor/vgrammar-util': workspace:0.11.10 '@visactor/vgrammar-wordcloud': workspace:0.11.10 '@visactor/vgrammar-wordcloud-shape': workspace:0.11.10 - '@visactor/vrender': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 '@vitejs/plugin-react': 3.1.0 d3-scale-chromatic: ^3.0.0 @@ -41,9 +41,9 @@ importers: '@visactor/vgrammar-util': link:../../packages/vgrammar-util '@visactor/vgrammar-wordcloud': link:../../packages/vgrammar-wordcloud '@visactor/vgrammar-wordcloud-shape': link:../../packages/vgrammar-wordcloud-shape - '@visactor/vrender': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': 0.17.4 '@vitejs/plugin-react': 3.1.0_vite@3.2.6 d3-scale-chromatic: 3.0.0 @@ -70,9 +70,9 @@ importers: '@visactor/vgrammar-util': workspace:0.11.10 '@visactor/vgrammar-wordcloud': workspace:0.11.10 '@visactor/vgrammar-wordcloud-shape': workspace:0.11.10 - '@visactor/vrender': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 '@vitejs/plugin-react': 3.1.0 axios: ^1.4.0 @@ -107,9 +107,9 @@ importers: '@visactor/vgrammar-util': link:../../packages/vgrammar-util '@visactor/vgrammar-wordcloud': link:../../packages/vgrammar-wordcloud '@visactor/vgrammar-wordcloud-shape': link:../../packages/vgrammar-wordcloud-shape - '@visactor/vrender': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': 0.17.4 axios: 1.6.2 highlight.js: 11.9.0 @@ -229,9 +229,9 @@ importers: '@visactor/vdataset': ~0.17.4 '@visactor/vgrammar-coordinate': workspace:0.11.10 '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vrender-components': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-components': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': ~0.17.4 '@visactor/vutils': ~0.17.4 eslint: ~8.18.0 @@ -244,9 +244,9 @@ importers: '@visactor/vdataset': 0.17.4 '@visactor/vgrammar-coordinate': link:../vgrammar-coordinate '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-components': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-components': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': 0.17.4 '@visactor/vutils': 0.17.4 devDependencies: @@ -336,8 +336,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.11.10 '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 eslint: ~8.18.0 jest: ~29.5.0 @@ -348,8 +348,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': 0.17.4 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -381,9 +381,9 @@ importers: '@visactor/vgrammar-coordinate': workspace:0.11.10 '@visactor/vgrammar-core': workspace:0.11.10 '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vrender-components': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-components': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': ~0.17.4 '@visactor/vutils': ~0.17.4 d3-array: 1.x @@ -397,9 +397,9 @@ importers: '@visactor/vgrammar-coordinate': link:../vgrammar-coordinate '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-components': 0.17.22 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-components': 0.17.23 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': 0.17.4 '@visactor/vutils': 0.17.4 devDependencies: @@ -477,8 +477,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.11.10 '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 eslint: ~8.18.0 jest: ~29.5.0 @@ -489,8 +489,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': 0.17.4 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -555,8 +555,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.11.10 '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 eslint: ~8.18.0 jest: ~29.5.0 @@ -567,8 +567,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': 0.17.4 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -598,8 +598,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.11.10 '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': ~0.17.4 '@visactor/vutils': ~0.17.4 eslint: ~8.18.0 @@ -611,8 +611,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': 0.17.4 '@visactor/vutils': 0.17.4 devDependencies: @@ -3369,34 +3369,34 @@ packages: topojson-client: 3.1.0 dev: false - /@visactor/vrender-components/0.17.22: - resolution: {integrity: sha512-s9AXZ/EJ6bm/ZoL/qOcAfbKeOGb6rUIBEJC5omQe1oP6TZKDjMd/nBAgXcvuoZ35QgF9E83WRXrMrxE2EHm0lg==} + /@visactor/vrender-components/0.17.23: + resolution: {integrity: sha512-unFzLVodABDVh5RQA3ls/eR6mLHoy/nx6yyoMm6VibuHZUYORI7W3x30vgFHn+POo7yPV3aVjB56Y2IUH7FrtQ==} dependencies: - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': 0.17.4 '@visactor/vutils': 0.17.4 dev: false - /@visactor/vrender-core/0.17.22: - resolution: {integrity: sha512-XV4C3jhkAOfsgNBcH45c/Ap5fK+hWIs37bsNl15tR58YsPex8eDCBwMOFDbxXh427RrN77+vFMoCAs1Z2ofZuA==} + /@visactor/vrender-core/0.17.23: + resolution: {integrity: sha512-3m7p63TV7JvNCsoeb7oqsNPP3noUCNI1BJxl99mTBn6fu5DW5Wb/fTlRZ3VYo1hCGEkTk76d5kj1HhDEJvUC/w==} dependencies: '@visactor/vutils': 0.17.4 color-convert: 2.0.1 - /@visactor/vrender-kits/0.17.22: - resolution: {integrity: sha512-yJR/iNbCQyD3JXPF9OJa+ZQgouFWyBElCWR0O5nJq4GM+QtjkoiNDVHXGVdm1Sq6VVcINbBCQOixVjT1sOCxow==} + /@visactor/vrender-kits/0.17.23: + resolution: {integrity: sha512-3Mnr5y62ZTeZweaEGNLMM8Wf3vkf2K8aTiW4kinXkk0Am0k78v/0kdkwaYEnNM89uJ4zRVXPkkLG6h+/4KMo8Q==} dependencies: '@resvg/resvg-js': 2.4.1 - '@visactor/vrender-core': 0.17.22 + '@visactor/vrender-core': 0.17.23 '@visactor/vutils': 0.17.4 roughjs: 4.5.2 - /@visactor/vrender/0.17.22: - resolution: {integrity: sha512-HAfoV2fQKxnir0gQOelLC13ztmuFeC4SSlDSFb5Lg12Q84Jrkq0/drQQUj0Wi6voSYRjCUv7mb9l1/H9QxDoUw==} + /@visactor/vrender/0.17.23: + resolution: {integrity: sha512-nvfWh91uUOUByOUU7b6/I+0NmjZD/TjsGRHC0RtmPCRDifsfr+UMYgDKGdvCPigSP4GjpV8ozGZlqbgfU5xNrA==} dependencies: - '@visactor/vrender-core': 0.17.22 - '@visactor/vrender-kits': 0.17.22 + '@visactor/vrender-core': 0.17.23 + '@visactor/vrender-kits': 0.17.23 /@visactor/vscale/0.17.4: resolution: {integrity: sha512-gF9SWmduQxat8ct8BkDwT3C/E7aWxsqKctJ6zI+XZzL/wLD4NELnA7zUSiuRmyAunjaH87B9jNtiPcBRMviVEw==} diff --git a/docs/dev-demos/package.json b/docs/dev-demos/package.json index ebb49b602..c97f7f267 100644 --- a/docs/dev-demos/package.json +++ b/docs/dev-demos/package.json @@ -20,9 +20,9 @@ "@visactor/vgrammar-wordcloud-shape": "workspace:0.11.10", "@visactor/vgrammar-plot": "workspace:0.11.10", "@visactor/vutils": "~0.17.4", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22", - "@visactor/vrender": "0.17.22", + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23", + "@visactor/vrender": "0.17.23", "d3-scale-chromatic": "^3.0.0", "lodash": "4.17.21", "typescript": "4.9.5", diff --git a/docs/site/package.json b/docs/site/package.json index f52798aa4..024f16da8 100644 --- a/docs/site/package.json +++ b/docs/site/package.json @@ -24,9 +24,9 @@ "@visactor/vgrammar-util": "workspace:0.11.10", "@visactor/vgrammar-coordinate": "workspace:0.11.10", "@visactor/vutils": "~0.17.4", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22", - "@visactor/vrender": "0.17.22", + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23", + "@visactor/vrender": "0.17.23", "markdown-it": "^13.0.0", "highlight.js": "^11.8.0", "axios": "^1.4.0", diff --git a/packages/vgrammar-core/package.json b/packages/vgrammar-core/package.json index 79bedccca..8b243f428 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -38,9 +38,9 @@ "@visactor/vgrammar-coordinate": "workspace:0.11.10", "@visactor/vgrammar-util": "workspace:0.11.10", "@visactor/vscale": "~0.17.4", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22", - "@visactor/vrender-components": "0.17.22", + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23", + "@visactor/vrender-components": "0.17.23", "@visactor/vutils": "~0.17.4", "@visactor/vdataset": "~0.17.4" }, diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index 65261f7b3..efb62ef62 100644 --- a/packages/vgrammar-hierarchy/package.json +++ b/packages/vgrammar-hierarchy/package.json @@ -41,8 +41,8 @@ "@visactor/vgrammar-core": "workspace:0.11.10", "@visactor/vgrammar-util": "workspace:0.11.10", "@visactor/vutils": "~0.17.4", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22" + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index cb63f3203..3dc8acd5c 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -38,9 +38,9 @@ "@visactor/vgrammar-coordinate": "workspace:0.11.10", "@visactor/vgrammar-core": "workspace:0.11.10", "@visactor/vscale": "~0.17.4", - "@visactor/vrender-components": "0.17.22", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22", + "@visactor/vrender-components": "0.17.23", + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23", "@visactor/vutils": "~0.17.4" }, "devDependencies": { diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index 98a4fdaf0..f62f5b944 100644 --- a/packages/vgrammar-sankey/package.json +++ b/packages/vgrammar-sankey/package.json @@ -38,8 +38,8 @@ "dependencies": { "@visactor/vgrammar-core": "workspace:0.11.10", "@visactor/vgrammar-util": "workspace:0.11.10", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22", + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23", "@visactor/vutils": "~0.17.4" }, "devDependencies": { diff --git a/packages/vgrammar-wordcloud-shape/package.json b/packages/vgrammar-wordcloud-shape/package.json index 22b7e65e1..0740f2a93 100644 --- a/packages/vgrammar-wordcloud-shape/package.json +++ b/packages/vgrammar-wordcloud-shape/package.json @@ -38,8 +38,8 @@ "@visactor/vgrammar-util": "workspace:0.11.10", "@visactor/vutils": "~0.17.4", "@visactor/vscale": "~0.17.4", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22" + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index 32e3cd028..a8040b83a 100644 --- a/packages/vgrammar-wordcloud/package.json +++ b/packages/vgrammar-wordcloud/package.json @@ -36,8 +36,8 @@ "dependencies": { "@visactor/vgrammar-core": "workspace:0.11.10", "@visactor/vgrammar-util": "workspace:0.11.10", - "@visactor/vrender-core": "0.17.22", - "@visactor/vrender-kits": "0.17.22", + "@visactor/vrender-core": "0.17.23", + "@visactor/vrender-kits": "0.17.23", "@visactor/vutils": "~0.17.4" }, "devDependencies": { From f446c8b3f85c503c2d9cc9ac4be998e502a00aea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 5 Feb 2024 04:11:39 +0000 Subject: [PATCH 6/6] build: release version 0.11.11 --- ...feat-clip-path-group_2024-02-04-08-51.json | 10 --- common/config/rush/pnpm-lock.yaml | 88 +++++++++---------- common/config/rush/version-policies.json | 2 +- docs/dev-demos/package.json | 20 ++--- docs/site/package.json | 20 ++--- 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 | 16 ++-- 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 +- .../vgrammar-wordcloud-shape/package.json | 6 +- packages/vgrammar-wordcloud/package.json | 6 +- packages/vgrammar/package.json | 4 +- 18 files changed, 120 insertions(+), 111 deletions(-) delete mode 100644 common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json diff --git a/common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json b/common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json deleted file mode 100644 index 5d526bdaf..000000000 --- a/common/changes/@visactor/vgrammar-core/feat-clip-path-group_2024-02-04-08-51.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vgrammar-core", - "comment": "feat: support `clipPath` in mark", - "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 686cbcdaa..a8993de69 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.11.10 - '@visactor/vgrammar-coordinate': workspace:0.11.10 - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-hierarchy': workspace:0.11.10 - '@visactor/vgrammar-plot': workspace:0.11.10 - '@visactor/vgrammar-projection': workspace:0.11.10 - '@visactor/vgrammar-sankey': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vgrammar-wordcloud': workspace:0.11.10 - '@visactor/vgrammar-wordcloud-shape': workspace:0.11.10 + '@visactor/vgrammar': workspace:0.11.11 + '@visactor/vgrammar-coordinate': workspace:0.11.11 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-hierarchy': workspace:0.11.11 + '@visactor/vgrammar-plot': workspace:0.11.11 + '@visactor/vgrammar-projection': workspace:0.11.11 + '@visactor/vgrammar-sankey': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 + '@visactor/vgrammar-wordcloud': workspace:0.11.11 + '@visactor/vgrammar-wordcloud-shape': workspace:0.11.11 '@visactor/vrender': 0.17.23 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 @@ -60,16 +60,16 @@ importers: '@types/markdown-it': ^13.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vgrammar': workspace:0.11.10 - '@visactor/vgrammar-coordinate': workspace:0.11.10 - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-hierarchy': workspace:0.11.10 - '@visactor/vgrammar-plot': workspace:0.11.10 - '@visactor/vgrammar-projection': workspace:0.11.10 - '@visactor/vgrammar-sankey': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 - '@visactor/vgrammar-wordcloud': workspace:0.11.10 - '@visactor/vgrammar-wordcloud-shape': workspace:0.11.10 + '@visactor/vgrammar': workspace:0.11.11 + '@visactor/vgrammar-coordinate': workspace:0.11.11 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-hierarchy': workspace:0.11.11 + '@visactor/vgrammar-plot': workspace:0.11.11 + '@visactor/vgrammar-projection': workspace:0.11.11 + '@visactor/vgrammar-sankey': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 + '@visactor/vgrammar-wordcloud': workspace:0.11.11 + '@visactor/vgrammar-wordcloud-shape': workspace:0.11.11 '@visactor/vrender': 0.17.23 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 @@ -151,7 +151,7 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.11.10 + '@visactor/vgrammar-core': workspace:0.11.11 d3-array: 1.x eslint: ~8.18.0 jest: ~29.5.0 @@ -189,7 +189,7 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vutils': ~0.17.4 eslint: ~8.18.0 jest: ~29.5.0 @@ -227,8 +227,8 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@visactor/vdataset': ~0.17.4 - '@visactor/vgrammar-coordinate': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-coordinate': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vrender-components': 0.17.23 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 @@ -277,13 +277,13 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@types/node-fetch': 2.6.4 - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-hierarchy': workspace:0.11.10 - '@visactor/vgrammar-plot': workspace:0.11.10 - '@visactor/vgrammar-projection': workspace:0.11.10 - '@visactor/vgrammar-sankey': workspace:0.11.10 - '@visactor/vgrammar-wordcloud': workspace:0.11.10 - '@visactor/vgrammar-wordcloud-shape': workspace:0.11.10 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-hierarchy': workspace:0.11.11 + '@visactor/vgrammar-plot': workspace:0.11.11 + '@visactor/vgrammar-projection': workspace:0.11.11 + '@visactor/vgrammar-sankey': workspace:0.11.11 + '@visactor/vgrammar-wordcloud': workspace:0.11.11 + '@visactor/vgrammar-wordcloud-shape': workspace:0.11.11 d3-array: 1.x eslint: ~8.18.0 form-data: ~4.0.0 @@ -334,8 +334,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 @@ -378,9 +378,9 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-coordinate': workspace:0.11.10 - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-coordinate': workspace:0.11.11 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vrender-components': 0.17.23 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 @@ -431,8 +431,8 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vutils': ~0.17.4 d3-array: 1.x d3-geo: ^1.12.1 @@ -475,8 +475,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 @@ -553,8 +553,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 '@visactor/vutils': ~0.17.4 @@ -596,8 +596,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.11.10 - '@visactor/vgrammar-util': workspace:0.11.10 + '@visactor/vgrammar-core': workspace:0.11.11 + '@visactor/vgrammar-util': workspace:0.11.11 '@visactor/vrender-core': 0.17.23 '@visactor/vrender-kits': 0.17.23 '@visactor/vscale': ~0.17.4 diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 193e23e1f..91bb48256 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -1 +1 @@ -[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.11.10","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] +[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.11.11","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] diff --git a/docs/dev-demos/package.json b/docs/dev-demos/package.json index c97f7f267..916c22664 100644 --- a/docs/dev-demos/package.json +++ b/docs/dev-demos/package.json @@ -11,14 +11,14 @@ "devDependencies": { "@internal/eslint-config": "workspace:*", "@internal/ts-config": "workspace:*", - "@visactor/vgrammar": "workspace:0.11.10", - "@visactor/vgrammar-core": "workspace:0.11.10", - "@visactor/vgrammar-hierarchy": "workspace:0.11.10", - "@visactor/vgrammar-sankey": "workspace:0.11.10", - "@visactor/vgrammar-projection": "workspace:0.11.10", - "@visactor/vgrammar-wordcloud": "workspace:0.11.10", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.11.10", - "@visactor/vgrammar-plot": "workspace:0.11.10", + "@visactor/vgrammar": "workspace:0.11.11", + "@visactor/vgrammar-core": "workspace:0.11.11", + "@visactor/vgrammar-hierarchy": "workspace:0.11.11", + "@visactor/vgrammar-sankey": "workspace:0.11.11", + "@visactor/vgrammar-projection": "workspace:0.11.11", + "@visactor/vgrammar-wordcloud": "workspace:0.11.11", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.11.11", + "@visactor/vgrammar-plot": "workspace:0.11.11", "@visactor/vutils": "~0.17.4", "@visactor/vrender-core": "0.17.23", "@visactor/vrender-kits": "0.17.23", @@ -27,8 +27,8 @@ "lodash": "4.17.21", "typescript": "4.9.5", "vite": "3.2.6", - "@visactor/vgrammar-util": "workspace:0.11.10", - "@visactor/vgrammar-coordinate": "workspace:0.11.10", + "@visactor/vgrammar-util": "workspace:0.11.11", + "@visactor/vgrammar-coordinate": "workspace:0.11.11", "@vitejs/plugin-react": "3.1.0" } } diff --git a/docs/site/package.json b/docs/site/package.json index 024f16da8..90ab3e998 100644 --- a/docs/site/package.json +++ b/docs/site/package.json @@ -13,16 +13,16 @@ }, "dependencies": { "@arco-design/web-react": "2.46.1", - "@visactor/vgrammar": "workspace:0.11.10", - "@visactor/vgrammar-core": "workspace:0.11.10", - "@visactor/vgrammar-hierarchy": "workspace:0.11.10", - "@visactor/vgrammar-sankey": "workspace:0.11.10", - "@visactor/vgrammar-projection": "workspace:0.11.10", - "@visactor/vgrammar-wordcloud": "workspace:0.11.10", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.11.10", - "@visactor/vgrammar-plot": "workspace:0.11.10", - "@visactor/vgrammar-util": "workspace:0.11.10", - "@visactor/vgrammar-coordinate": "workspace:0.11.10", + "@visactor/vgrammar": "workspace:0.11.11", + "@visactor/vgrammar-core": "workspace:0.11.11", + "@visactor/vgrammar-hierarchy": "workspace:0.11.11", + "@visactor/vgrammar-sankey": "workspace:0.11.11", + "@visactor/vgrammar-projection": "workspace:0.11.11", + "@visactor/vgrammar-wordcloud": "workspace:0.11.11", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.11.11", + "@visactor/vgrammar-plot": "workspace:0.11.11", + "@visactor/vgrammar-util": "workspace:0.11.11", + "@visactor/vgrammar-coordinate": "workspace:0.11.11", "@visactor/vutils": "~0.17.4", "@visactor/vrender-core": "0.17.23", "@visactor/vrender-kits": "0.17.23", diff --git a/packages/vgrammar-coordinate/package.json b/packages/vgrammar-coordinate/package.json index 28017c137..57e01a91b 100644 --- a/packages/vgrammar-coordinate/package.json +++ b/packages/vgrammar-coordinate/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-coordinate", - "version": "0.11.10", + "version": "0.11.11", "description": "Coordinates for VGrammar", "keywords": [ "coordinate", @@ -34,7 +34,7 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-util": "workspace:0.11.10", + "@visactor/vgrammar-util": "workspace:0.11.11", "@visactor/vutils": "~0.17.4" }, "devDependencies": { diff --git a/packages/vgrammar-core/CHANGELOG.json b/packages/vgrammar-core/CHANGELOG.json index f4b7a7f6e..ab75c6721 100644 --- a/packages/vgrammar-core/CHANGELOG.json +++ b/packages/vgrammar-core/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@visactor/vgrammar-core", "entries": [ + { + "version": "0.11.11", + "tag": "@visactor/vgrammar-core_v0.11.11", + "date": "Mon, 05 Feb 2024 04:06:45 GMT", + "comments": { + "none": [ + { + "comment": "feat: support `clipPath` in mark" + } + ] + } + }, { "version": "0.11.10", "tag": "@visactor/vgrammar-core_v0.11.10", diff --git a/packages/vgrammar-core/CHANGELOG.md b/packages/vgrammar-core/CHANGELOG.md index 35aea6e93..ac43f4adc 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 Sun, 04 Feb 2024 05:45:15 GMT and should not be manually modified. +This log was last generated on Mon, 05 Feb 2024 04:06:45 GMT and should not be manually modified. + +## 0.11.11 +Mon, 05 Feb 2024 04:06:45 GMT + +### Updates + +- feat: support `clipPath` in mark ## 0.11.10 Sun, 04 Feb 2024 05:45:15 GMT diff --git a/packages/vgrammar-core/package.json b/packages/vgrammar-core/package.json index 8b243f428..1d422df54 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-core", - "version": "0.11.10", + "version": "0.11.11", "description": "VGrammar is a visual grammar library", "keywords": [ "grammar", @@ -35,8 +35,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-coordinate": "workspace:0.11.10", - "@visactor/vgrammar-util": "workspace:0.11.10", + "@visactor/vgrammar-coordinate": "workspace:0.11.11", + "@visactor/vgrammar-util": "workspace:0.11.11", "@visactor/vscale": "~0.17.4", "@visactor/vrender-core": "0.17.23", "@visactor/vrender-kits": "0.17.23", diff --git a/packages/vgrammar-full/package.json b/packages/vgrammar-full/package.json index 00fa23a37..ccdbbb40f 100644 --- a/packages/vgrammar-full/package.json +++ b/packages/vgrammar-full/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-full", - "version": "0.11.10", + "version": "0.11.11", "description": "full packages of vgrammar.", "keywords": [ "visualization", @@ -33,13 +33,13 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.11.10", - "@visactor/vgrammar-hierarchy": "workspace:0.11.10", - "@visactor/vgrammar-plot": "workspace:0.11.10", - "@visactor/vgrammar-projection": "workspace:0.11.10", - "@visactor/vgrammar-sankey": "workspace:0.11.10", - "@visactor/vgrammar-wordcloud": "workspace:0.11.10", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.11.10" + "@visactor/vgrammar-core": "workspace:0.11.11", + "@visactor/vgrammar-hierarchy": "workspace:0.11.11", + "@visactor/vgrammar-plot": "workspace:0.11.11", + "@visactor/vgrammar-projection": "workspace:0.11.11", + "@visactor/vgrammar-sankey": "workspace:0.11.11", + "@visactor/vgrammar-wordcloud": "workspace:0.11.11", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.11.11" }, "devDependencies": { "d3-array": "1.x", diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index efb62ef62..e5df99f95 100644 --- a/packages/vgrammar-hierarchy/package.json +++ b/packages/vgrammar-hierarchy/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-hierarchy", - "version": "0.11.10", + "version": "0.11.11", "description": "Layout of hierarchical data for VGrammar", "keywords": [ "hierarchy", @@ -38,8 +38,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.11.10", - "@visactor/vgrammar-util": "workspace:0.11.10", + "@visactor/vgrammar-core": "workspace:0.11.11", + "@visactor/vgrammar-util": "workspace:0.11.11", "@visactor/vutils": "~0.17.4", "@visactor/vrender-core": "0.17.23", "@visactor/vrender-kits": "0.17.23" diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index 3dc8acd5c..85c87c47e 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-plot", - "version": "0.11.10", + "version": "0.11.11", "description": "Plots of vgrammar.", "keywords": [ "plot", @@ -34,9 +34,9 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-util": "workspace:0.11.10", - "@visactor/vgrammar-coordinate": "workspace:0.11.10", - "@visactor/vgrammar-core": "workspace:0.11.10", + "@visactor/vgrammar-util": "workspace:0.11.11", + "@visactor/vgrammar-coordinate": "workspace:0.11.11", + "@visactor/vgrammar-core": "workspace:0.11.11", "@visactor/vscale": "~0.17.4", "@visactor/vrender-components": "0.17.23", "@visactor/vrender-core": "0.17.23", diff --git a/packages/vgrammar-projection/package.json b/packages/vgrammar-projection/package.json index 218164ea3..a71900f52 100644 --- a/packages/vgrammar-projection/package.json +++ b/packages/vgrammar-projection/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-projection", - "version": "0.11.10", + "version": "0.11.11", "description": "Projections for map, used in VGrammar.", "keywords": [ "projection", @@ -34,8 +34,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-util": "workspace:0.11.10", - "@visactor/vgrammar-core": "workspace:0.11.10", + "@visactor/vgrammar-util": "workspace:0.11.11", + "@visactor/vgrammar-core": "workspace:0.11.11", "@visactor/vutils": "~0.17.4", "d3-geo": "^1.12.1" }, diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index f62f5b944..03ff76d12 100644 --- a/packages/vgrammar-sankey/package.json +++ b/packages/vgrammar-sankey/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-sankey", - "version": "0.11.10", + "version": "0.11.11", "description": "Layout of sankey chart, used by VGrammar", "keywords": [ "sankey", @@ -36,8 +36,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.11.10", - "@visactor/vgrammar-util": "workspace:0.11.10", + "@visactor/vgrammar-core": "workspace:0.11.11", + "@visactor/vgrammar-util": "workspace:0.11.11", "@visactor/vrender-core": "0.17.23", "@visactor/vrender-kits": "0.17.23", "@visactor/vutils": "~0.17.4" diff --git a/packages/vgrammar-util/package.json b/packages/vgrammar-util/package.json index f65760e33..a26911f36 100644 --- a/packages/vgrammar-util/package.json +++ b/packages/vgrammar-util/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-util", - "version": "0.11.10", + "version": "0.11.11", "description": "The common utils functions of VGrammar", "keywords": [ "utils", diff --git a/packages/vgrammar-wordcloud-shape/package.json b/packages/vgrammar-wordcloud-shape/package.json index 0740f2a93..52d8ffcc3 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.11.10", + "version": "0.11.11", "description": "Layout WordCloud in specified shape, this is a transform for VGrammar.", "keywords": [ "wordcloud", @@ -34,8 +34,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.11.10", - "@visactor/vgrammar-util": "workspace:0.11.10", + "@visactor/vgrammar-core": "workspace:0.11.11", + "@visactor/vgrammar-util": "workspace:0.11.11", "@visactor/vutils": "~0.17.4", "@visactor/vscale": "~0.17.4", "@visactor/vrender-core": "0.17.23", diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index a8040b83a..19495fbed 100644 --- a/packages/vgrammar-wordcloud/package.json +++ b/packages/vgrammar-wordcloud/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-wordcloud", - "version": "0.11.10", + "version": "0.11.11", "description": "WordCloud layout transform for VGrammar", "keywords": [ "wordcloud", @@ -34,8 +34,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.11.10", - "@visactor/vgrammar-util": "workspace:0.11.10", + "@visactor/vgrammar-core": "workspace:0.11.11", + "@visactor/vgrammar-util": "workspace:0.11.11", "@visactor/vrender-core": "0.17.23", "@visactor/vrender-kits": "0.17.23", "@visactor/vutils": "~0.17.4" diff --git a/packages/vgrammar/package.json b/packages/vgrammar/package.json index d432ee7e8..3738644de 100644 --- a/packages/vgrammar/package.json +++ b/packages/vgrammar/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar", - "version": "0.11.10", + "version": "0.11.11", "description": "simple package of vgrammar.", "keywords": [ "visualization", @@ -30,7 +30,7 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.11.10" + "@visactor/vgrammar-core": "workspace:0.11.11" }, "devDependencies": { "d3-array": "1.x",