From a04444b36d81f53dbbc8df71fe769e614a402ac4 Mon Sep 17 00:00:00 2001 From: xile611 Date: Mon, 25 Mar 2024 07:03:14 +0000 Subject: [PATCH 1/4] docs: generate changelog of release v0.12.6 --- docs/site/assets/changelog/en/release.md | 18 ++++++++++++++++++ docs/site/assets/changelog/zh/release.md | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/docs/site/assets/changelog/en/release.md b/docs/site/assets/changelog/en/release.md index dec73e84..4cec7651 100644 --- a/docs/site/assets/changelog/en/release.md +++ b/docs/site/assets/changelog/en/release.md @@ -1,3 +1,21 @@ +# v0.12.6 + +2024-03-25 + + +**🆕 New feature** + +- **@visactor/vgrammar-core**: support `ReactDOM` in view options + +**🐛 Bug fix** + +- **@visactor/vgrammar-core**: prevent animation attributes when binding +- **@visactor/vgrammar-core**: fix error of component when the graphic component is not registered + + + +[more detail about v0.12.6](https://github.com/VisActor/VGrammar/releases/tag/v0.12.6) + # v0.12.5 2024-03-20 diff --git a/docs/site/assets/changelog/zh/release.md b/docs/site/assets/changelog/zh/release.md index 5bd009b9..6d4bfdf0 100644 --- a/docs/site/assets/changelog/zh/release.md +++ b/docs/site/assets/changelog/zh/release.md @@ -1,3 +1,21 @@ +# v0.12.6 + +2024-03-25 + + +**🆕 新增功能** + +- **@visactor/vgrammar-core**: support `ReactDOM` in view options + +**🐛 功能修复** + +- **@visactor/vgrammar-core**: prevent animation attributes when binding +- **@visactor/vgrammar-core**: fix error of component when the graphic component is not registered + + + +[更多详情请查看 v0.12.6](https://github.com/VisActor/VGrammar/releases/tag/v0.12.6) + # v0.12.5 2024-03-20 From a6b8071e0b2d36366872230c01f5bf9d7d9f3d00 Mon Sep 17 00:00:00 2001 From: xile611 Date: Mon, 25 Mar 2024 17:28:18 +0800 Subject: [PATCH 2/4] feat: interaction app new api `getStarState()` --- packages/vgrammar-core/src/interactions/base.ts | 4 ++++ packages/vgrammar-core/src/interactions/brush-active.ts | 4 ++++ packages/vgrammar-core/src/interactions/brush-highlight.ts | 4 ++++ .../src/interactions/element-active-by-legend.ts | 4 ++++ packages/vgrammar-core/src/interactions/element-active.ts | 4 ++++ .../src/interactions/element-highlight-by-group.ts | 4 ++++ .../src/interactions/element-highlight-by-key.ts | 4 ++++ .../src/interactions/element-highlight-by-legend.ts | 4 ++++ .../src/interactions/element-highlight-by-name.ts | 4 ++++ packages/vgrammar-core/src/interactions/element-highlight.ts | 4 ++++ packages/vgrammar-core/src/interactions/element-select.ts | 4 ++++ packages/vgrammar-core/src/types/interaction.ts | 1 + 12 files changed, 45 insertions(+) diff --git a/packages/vgrammar-core/src/interactions/base.ts b/packages/vgrammar-core/src/interactions/base.ts index 7c3d9324..3532e1e2 100644 --- a/packages/vgrammar-core/src/interactions/base.ts +++ b/packages/vgrammar-core/src/interactions/base.ts @@ -24,6 +24,10 @@ export abstract class BaseInteraction { protected abstract getEvents(): Array<{ type: string | string[]; handler: InteractionEventHandler }>; + getStartState(): string { + return null; + } + depend(grammar: IGrammarBase[] | IGrammarBase | string[] | string) { this.references.clear(); array(grammar) diff --git a/packages/vgrammar-core/src/interactions/brush-active.ts b/packages/vgrammar-core/src/interactions/brush-active.ts index 7f045b99..f385b772 100644 --- a/packages/vgrammar-core/src/interactions/brush-active.ts +++ b/packages/vgrammar-core/src/interactions/brush-active.ts @@ -16,6 +16,10 @@ export class BrushActive extends BrushBase { super(view, Object.assign({}, BrushActive.defaultOptions, option)); } + getStartState(): string { + return this.options.state; + } + handleBrushUpdate = (event: { type: string; detail: { diff --git a/packages/vgrammar-core/src/interactions/brush-highlight.ts b/packages/vgrammar-core/src/interactions/brush-highlight.ts index ab95bc62..044036a5 100644 --- a/packages/vgrammar-core/src/interactions/brush-highlight.ts +++ b/packages/vgrammar-core/src/interactions/brush-highlight.ts @@ -18,6 +18,10 @@ export class BrushHighlight extends BrushBase { super(view, Object.assign({}, BrushHighlight.defaultOptions, option)); } + getStartState(): string { + return this.options.highlightState; + } + handleBrushUpdate = (event: { type: string; detail: { diff --git a/packages/vgrammar-core/src/interactions/element-active-by-legend.ts b/packages/vgrammar-core/src/interactions/element-active-by-legend.ts index 8259c788..ad96cd20 100644 --- a/packages/vgrammar-core/src/interactions/element-active-by-legend.ts +++ b/packages/vgrammar-core/src/interactions/element-active-by-legend.ts @@ -36,6 +36,10 @@ export class ElementActiveByLegend extends BaseInteraction { ]; } + getStartState(): string { + return this.options.state; + } + start(element: InteractionEvent['element']) { if (element) { if (this._marks && this._marks.includes(element.mark)) { diff --git a/packages/vgrammar-core/src/interactions/element-highlight-by-group.ts b/packages/vgrammar-core/src/interactions/element-highlight-by-group.ts index 66c84226..a15155cc 100644 --- a/packages/vgrammar-core/src/interactions/element-highlight-by-group.ts +++ b/packages/vgrammar-core/src/interactions/element-highlight-by-group.ts @@ -23,6 +23,10 @@ export class ElementHighlightByGroup extends BaseInteraction { this._stateMarks = groupMarksByState(this._marks, [this.options.highlightState, this.options.blurState]); } + getStartState(): string { + return this.options.highlightState; + } + protected getEvents() { const triggerOff = this.options.triggerOff; const trigger = this.options.trigger; diff --git a/packages/vgrammar-core/src/interactions/element-select.ts b/packages/vgrammar-core/src/interactions/element-select.ts index 9c64aa72..4991ad52 100644 --- a/packages/vgrammar-core/src/interactions/element-select.ts +++ b/packages/vgrammar-core/src/interactions/element-select.ts @@ -37,6 +37,10 @@ export class ElementSelect extends BaseInteraction { this._stateMarks = groupMarksByState(this._marks, [this.options.state, this.options.reverseState]); } + getStartState(): string { + return this.options.state; + } + protected getEvents() { const triggerOff = this.options.triggerOff; const trigger = this.options.trigger; diff --git a/packages/vgrammar-core/src/types/interaction.ts b/packages/vgrammar-core/src/types/interaction.ts index f92cade4..ee26245f 100644 --- a/packages/vgrammar-core/src/types/interaction.ts +++ b/packages/vgrammar-core/src/types/interaction.ts @@ -50,6 +50,7 @@ export interface IInteraction { unbind: () => void; start: (element: IElement | IGlyphElement | string | any) => void; reset: (element?: IElement | IGlyphElement) => void; + getStartState: () => string; } export interface IInteractionConstructor { From 8108f23463d2830068e7bf41bd8021fa48c08fe7 Mon Sep 17 00:00:00 2001 From: xile611 Date: Mon, 25 Mar 2024 17:29:57 +0800 Subject: [PATCH 3/4] docs: update changlog of rush --- ...rt-start-event-ofinteraction_2024-03-25-09-29.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json diff --git a/common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json b/common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json new file mode 100644 index 00000000..656a4ee4 --- /dev/null +++ b/common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "feat: interaction app new api `getStarState()`\n\n", + "type": "none", + "packageName": "@visactor/vgrammar-core" + } + ], + "packageName": "@visactor/vgrammar-core", + "email": "dingling112@gmail.com" +} \ No newline at end of file From 88535aa7d948311f5201466aa80f4973b497a837 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 25 Mar 2024 10:50:40 +0000 Subject: [PATCH 4/4] build: release version 0.12.7 --- ...-event-ofinteraction_2024-03-25-09-29.json | 11 --- 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 | 11 ++- 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, 122 insertions(+), 112 deletions(-) delete mode 100644 common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json diff --git a/common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json b/common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json deleted file mode 100644 index 656a4ee4..00000000 --- a/common/changes/@visactor/vgrammar-core/feat-support-start-event-ofinteraction_2024-03-25-09-29.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "feat: interaction app new api `getStarState()`\n\n", - "type": "none", - "packageName": "@visactor/vgrammar-core" - } - ], - "packageName": "@visactor/vgrammar-core", - "email": "dingling112@gmail.com" -} \ No newline at end of file diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 8587be5d..98367684 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.12.6 - '@visactor/vgrammar-coordinate': workspace:0.12.6 - '@visactor/vgrammar-core': workspace:0.12.6 - '@visactor/vgrammar-hierarchy': workspace:0.12.6 - '@visactor/vgrammar-plot': workspace:0.12.6 - '@visactor/vgrammar-projection': workspace:0.12.6 - '@visactor/vgrammar-sankey': workspace:0.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 - '@visactor/vgrammar-wordcloud': workspace:0.12.6 - '@visactor/vgrammar-wordcloud-shape': workspace:0.12.6 + '@visactor/vgrammar': workspace:0.12.7 + '@visactor/vgrammar-coordinate': workspace:0.12.7 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-hierarchy': workspace:0.12.7 + '@visactor/vgrammar-plot': workspace:0.12.7 + '@visactor/vgrammar-projection': workspace:0.12.7 + '@visactor/vgrammar-sankey': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 + '@visactor/vgrammar-wordcloud': workspace:0.12.7 + '@visactor/vgrammar-wordcloud-shape': workspace:0.12.7 '@visactor/vrender': 0.18.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 @@ -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.12.6 - '@visactor/vgrammar-coordinate': workspace:0.12.6 - '@visactor/vgrammar-core': workspace:0.12.6 - '@visactor/vgrammar-hierarchy': workspace:0.12.6 - '@visactor/vgrammar-plot': workspace:0.12.6 - '@visactor/vgrammar-projection': workspace:0.12.6 - '@visactor/vgrammar-sankey': workspace:0.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 - '@visactor/vgrammar-wordcloud': workspace:0.12.6 - '@visactor/vgrammar-wordcloud-shape': workspace:0.12.6 + '@visactor/vgrammar': workspace:0.12.7 + '@visactor/vgrammar-coordinate': workspace:0.12.7 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-hierarchy': workspace:0.12.7 + '@visactor/vgrammar-plot': workspace:0.12.7 + '@visactor/vgrammar-projection': workspace:0.12.7 + '@visactor/vgrammar-sankey': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 + '@visactor/vgrammar-wordcloud': workspace:0.12.7 + '@visactor/vgrammar-wordcloud-shape': workspace:0.12.7 '@visactor/vrender': 0.18.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 @@ -151,7 +151,7 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.12.6 + '@visactor/vgrammar-core': workspace:0.12.7 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.12.6 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vutils': ~0.18.1 eslint: ~8.18.0 jest: ~29.5.0 @@ -227,8 +227,8 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@visactor/vdataset': ~0.18.1 - '@visactor/vgrammar-coordinate': workspace:0.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 + '@visactor/vgrammar-coordinate': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vrender-components': 0.18.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 @@ -277,13 +277,13 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@types/node-fetch': 2.6.4 - '@visactor/vgrammar-core': workspace:0.12.6 - '@visactor/vgrammar-hierarchy': workspace:0.12.6 - '@visactor/vgrammar-plot': workspace:0.12.6 - '@visactor/vgrammar-projection': workspace:0.12.6 - '@visactor/vgrammar-sankey': workspace:0.12.6 - '@visactor/vgrammar-wordcloud': workspace:0.12.6 - '@visactor/vgrammar-wordcloud-shape': workspace:0.12.6 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-hierarchy': workspace:0.12.7 + '@visactor/vgrammar-plot': workspace:0.12.7 + '@visactor/vgrammar-projection': workspace:0.12.7 + '@visactor/vgrammar-sankey': workspace:0.12.7 + '@visactor/vgrammar-wordcloud': workspace:0.12.7 + '@visactor/vgrammar-wordcloud-shape': workspace:0.12.7 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.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 '@visactor/vutils': ~0.18.1 @@ -378,9 +378,9 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-coordinate': workspace:0.12.6 - '@visactor/vgrammar-core': workspace:0.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 + '@visactor/vgrammar-coordinate': workspace:0.12.7 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vrender-components': 0.18.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 @@ -431,8 +431,8 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vutils': ~0.18.1 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.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 '@visactor/vutils': ~0.18.1 @@ -553,8 +553,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 '@visactor/vutils': ~0.18.1 @@ -596,8 +596,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.12.6 - '@visactor/vgrammar-util': workspace:0.12.6 + '@visactor/vgrammar-core': workspace:0.12.7 + '@visactor/vgrammar-util': workspace:0.12.7 '@visactor/vrender-core': 0.18.7 '@visactor/vrender-kits': 0.18.7 '@visactor/vscale': ~0.18.1 diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index e93fa7fe..e6e723fb 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -1 +1 @@ -[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.12.6","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] +[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.12.7","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] diff --git a/docs/dev-demos/package.json b/docs/dev-demos/package.json index be31f5e6..8a29a460 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.12.6", - "@visactor/vgrammar-core": "workspace:0.12.6", - "@visactor/vgrammar-hierarchy": "workspace:0.12.6", - "@visactor/vgrammar-sankey": "workspace:0.12.6", - "@visactor/vgrammar-projection": "workspace:0.12.6", - "@visactor/vgrammar-wordcloud": "workspace:0.12.6", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.12.6", - "@visactor/vgrammar-plot": "workspace:0.12.6", + "@visactor/vgrammar": "workspace:0.12.7", + "@visactor/vgrammar-core": "workspace:0.12.7", + "@visactor/vgrammar-hierarchy": "workspace:0.12.7", + "@visactor/vgrammar-sankey": "workspace:0.12.7", + "@visactor/vgrammar-projection": "workspace:0.12.7", + "@visactor/vgrammar-wordcloud": "workspace:0.12.7", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.12.7", + "@visactor/vgrammar-plot": "workspace:0.12.7", "@visactor/vutils": "~0.18.1", "@visactor/vrender-core": "0.18.7", "@visactor/vrender-kits": "0.18.7", @@ -27,8 +27,8 @@ "lodash": "4.17.21", "typescript": "4.9.5", "vite": "3.2.6", - "@visactor/vgrammar-util": "workspace:0.12.6", - "@visactor/vgrammar-coordinate": "workspace:0.12.6", + "@visactor/vgrammar-util": "workspace:0.12.7", + "@visactor/vgrammar-coordinate": "workspace:0.12.7", "@vitejs/plugin-react": "3.1.0" } } diff --git a/docs/site/package.json b/docs/site/package.json index 9e988e8a..c89c9591 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.12.6", - "@visactor/vgrammar-core": "workspace:0.12.6", - "@visactor/vgrammar-hierarchy": "workspace:0.12.6", - "@visactor/vgrammar-sankey": "workspace:0.12.6", - "@visactor/vgrammar-projection": "workspace:0.12.6", - "@visactor/vgrammar-wordcloud": "workspace:0.12.6", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.12.6", - "@visactor/vgrammar-plot": "workspace:0.12.6", - "@visactor/vgrammar-util": "workspace:0.12.6", - "@visactor/vgrammar-coordinate": "workspace:0.12.6", + "@visactor/vgrammar": "workspace:0.12.7", + "@visactor/vgrammar-core": "workspace:0.12.7", + "@visactor/vgrammar-hierarchy": "workspace:0.12.7", + "@visactor/vgrammar-sankey": "workspace:0.12.7", + "@visactor/vgrammar-projection": "workspace:0.12.7", + "@visactor/vgrammar-wordcloud": "workspace:0.12.7", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.12.7", + "@visactor/vgrammar-plot": "workspace:0.12.7", + "@visactor/vgrammar-util": "workspace:0.12.7", + "@visactor/vgrammar-coordinate": "workspace:0.12.7", "@visactor/vutils": "~0.18.1", "@visactor/vrender-core": "0.18.7", "@visactor/vrender-kits": "0.18.7", diff --git a/packages/vgrammar-coordinate/package.json b/packages/vgrammar-coordinate/package.json index 4106a9ff..3eabbcdd 100644 --- a/packages/vgrammar-coordinate/package.json +++ b/packages/vgrammar-coordinate/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-coordinate", - "version": "0.12.6", + "version": "0.12.7", "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.12.6", + "@visactor/vgrammar-util": "workspace:0.12.7", "@visactor/vutils": "~0.18.1" }, "devDependencies": { diff --git a/packages/vgrammar-core/CHANGELOG.json b/packages/vgrammar-core/CHANGELOG.json index 9371c345..f1d0990c 100644 --- a/packages/vgrammar-core/CHANGELOG.json +++ b/packages/vgrammar-core/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@visactor/vgrammar-core", "entries": [ + { + "version": "0.12.7", + "tag": "@visactor/vgrammar-core_v0.12.7", + "date": "Mon, 25 Mar 2024 10:45:05 GMT", + "comments": { + "none": [ + { + "comment": "feat: interaction app new api `getStarState()`\n\n" + } + ] + } + }, { "version": "0.12.6", "tag": "@visactor/vgrammar-core_v0.12.6", diff --git a/packages/vgrammar-core/CHANGELOG.md b/packages/vgrammar-core/CHANGELOG.md index 1a5abfd7..bd4caffb 100644 --- a/packages/vgrammar-core/CHANGELOG.md +++ b/packages/vgrammar-core/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log - @visactor/vgrammar-core -This log was last generated on Fri, 22 Mar 2024 09:09:47 GMT and should not be manually modified. +This log was last generated on Mon, 25 Mar 2024 10:45:05 GMT and should not be manually modified. + +## 0.12.7 +Mon, 25 Mar 2024 10:45:05 GMT + +### Updates + +- feat: interaction app new api `getStarState()` + + ## 0.12.6 Fri, 22 Mar 2024 09:09:47 GMT diff --git a/packages/vgrammar-core/package.json b/packages/vgrammar-core/package.json index 6494ebf4..88519c5d 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-core", - "version": "0.12.6", + "version": "0.12.7", "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.12.6", - "@visactor/vgrammar-util": "workspace:0.12.6", + "@visactor/vgrammar-coordinate": "workspace:0.12.7", + "@visactor/vgrammar-util": "workspace:0.12.7", "@visactor/vscale": "~0.18.1", "@visactor/vrender-core": "0.18.7", "@visactor/vrender-kits": "0.18.7", diff --git a/packages/vgrammar-full/package.json b/packages/vgrammar-full/package.json index a923a146..fd29ea1e 100644 --- a/packages/vgrammar-full/package.json +++ b/packages/vgrammar-full/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-full", - "version": "0.12.6", + "version": "0.12.7", "description": "full packages of vgrammar.", "keywords": [ "visualization", @@ -33,13 +33,13 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.12.6", - "@visactor/vgrammar-hierarchy": "workspace:0.12.6", - "@visactor/vgrammar-plot": "workspace:0.12.6", - "@visactor/vgrammar-projection": "workspace:0.12.6", - "@visactor/vgrammar-sankey": "workspace:0.12.6", - "@visactor/vgrammar-wordcloud": "workspace:0.12.6", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.12.6" + "@visactor/vgrammar-core": "workspace:0.12.7", + "@visactor/vgrammar-hierarchy": "workspace:0.12.7", + "@visactor/vgrammar-plot": "workspace:0.12.7", + "@visactor/vgrammar-projection": "workspace:0.12.7", + "@visactor/vgrammar-sankey": "workspace:0.12.7", + "@visactor/vgrammar-wordcloud": "workspace:0.12.7", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.12.7" }, "devDependencies": { "d3-array": "1.x", diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index 85d66087..3359640e 100644 --- a/packages/vgrammar-hierarchy/package.json +++ b/packages/vgrammar-hierarchy/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-hierarchy", - "version": "0.12.6", + "version": "0.12.7", "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.12.6", - "@visactor/vgrammar-util": "workspace:0.12.6", + "@visactor/vgrammar-core": "workspace:0.12.7", + "@visactor/vgrammar-util": "workspace:0.12.7", "@visactor/vutils": "~0.18.1", "@visactor/vrender-core": "0.18.7", "@visactor/vrender-kits": "0.18.7" diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index 710116bd..a18156c8 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-plot", - "version": "0.12.6", + "version": "0.12.7", "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.12.6", - "@visactor/vgrammar-coordinate": "workspace:0.12.6", - "@visactor/vgrammar-core": "workspace:0.12.6", + "@visactor/vgrammar-util": "workspace:0.12.7", + "@visactor/vgrammar-coordinate": "workspace:0.12.7", + "@visactor/vgrammar-core": "workspace:0.12.7", "@visactor/vscale": "~0.18.1", "@visactor/vrender-components": "0.18.7", "@visactor/vrender-core": "0.18.7", diff --git a/packages/vgrammar-projection/package.json b/packages/vgrammar-projection/package.json index e724f4b6..5b3527d7 100644 --- a/packages/vgrammar-projection/package.json +++ b/packages/vgrammar-projection/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-projection", - "version": "0.12.6", + "version": "0.12.7", "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.12.6", - "@visactor/vgrammar-core": "workspace:0.12.6", + "@visactor/vgrammar-util": "workspace:0.12.7", + "@visactor/vgrammar-core": "workspace:0.12.7", "@visactor/vutils": "~0.18.1", "d3-geo": "^1.12.1" }, diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index 9efbef5a..2b63a34e 100644 --- a/packages/vgrammar-sankey/package.json +++ b/packages/vgrammar-sankey/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-sankey", - "version": "0.12.6", + "version": "0.12.7", "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.12.6", - "@visactor/vgrammar-util": "workspace:0.12.6", + "@visactor/vgrammar-core": "workspace:0.12.7", + "@visactor/vgrammar-util": "workspace:0.12.7", "@visactor/vrender-core": "0.18.7", "@visactor/vrender-kits": "0.18.7", "@visactor/vutils": "~0.18.1" diff --git a/packages/vgrammar-util/package.json b/packages/vgrammar-util/package.json index b09e0355..73dab858 100644 --- a/packages/vgrammar-util/package.json +++ b/packages/vgrammar-util/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-util", - "version": "0.12.6", + "version": "0.12.7", "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 0258ade1..20d14fc6 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.12.6", + "version": "0.12.7", "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.12.6", - "@visactor/vgrammar-util": "workspace:0.12.6", + "@visactor/vgrammar-core": "workspace:0.12.7", + "@visactor/vgrammar-util": "workspace:0.12.7", "@visactor/vutils": "~0.18.1", "@visactor/vscale": "~0.18.1", "@visactor/vrender-core": "0.18.7", diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index 915f83c5..de69a3a3 100644 --- a/packages/vgrammar-wordcloud/package.json +++ b/packages/vgrammar-wordcloud/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-wordcloud", - "version": "0.12.6", + "version": "0.12.7", "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.12.6", - "@visactor/vgrammar-util": "workspace:0.12.6", + "@visactor/vgrammar-core": "workspace:0.12.7", + "@visactor/vgrammar-util": "workspace:0.12.7", "@visactor/vrender-core": "0.18.7", "@visactor/vrender-kits": "0.18.7", "@visactor/vutils": "~0.18.1" diff --git a/packages/vgrammar/package.json b/packages/vgrammar/package.json index 2af4469e..2bec5455 100644 --- a/packages/vgrammar/package.json +++ b/packages/vgrammar/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar", - "version": "0.12.6", + "version": "0.12.7", "description": "simple package of vgrammar.", "keywords": [ "visualization", @@ -30,7 +30,7 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.12.6" + "@visactor/vgrammar-core": "workspace:0.12.7" }, "devDependencies": { "d3-array": "1.x",