From 2314348ae2595a211222e5c4879ca7ba2b2d0e43 Mon Sep 17 00:00:00 2001 From: Xingzhao Chang Date: Thu, 22 Feb 2024 11:57:19 +0000 Subject: [PATCH 1/8] feat:improve comment for getSchemaFromFieldInfo --- packages/vmind/src/common/schema.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/vmind/src/common/schema.ts b/packages/vmind/src/common/schema.ts index e7c2298a..35454892 100644 --- a/packages/vmind/src/common/schema.ts +++ b/packages/vmind/src/common/schema.ts @@ -1,9 +1,9 @@ import { LOCATION, SimpleFieldInfo, VizSchema } from '../typings'; /** - * generate vizSchema from fieldInfo - * @param fieldInfo SimpleFieldInfo - * @returns + * Generate a vizSchema from fieldInfo + * @param fieldInfo SimpleFieldInfo[] - An array of field information, each element contains the field name, description, type, and role, etc. + * @returns Partial - Returns a partial VizSchema object, containing the transformed field information. */ export const getSchemaFromFieldInfo = (fieldInfo: SimpleFieldInfo[]): Partial => { const schema = { From 25750afee474d0d0866ebb1d531a0f7e88d5fb7d Mon Sep 17 00:00:00 2001 From: xuanhun <717532978@qq.com> Date: Fri, 1 Mar 2024 12:11:03 +0800 Subject: [PATCH 2/8] docs: update description of demo --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f5c1e9c5..56e15922 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ The main features of `@visactor/vmind` include: ## Development Guide -### Demo Page +### Docs Page -Enter the VChart repository and execute: +Enter the VMind repository and execute: ```bash # Install dependencies @@ -28,11 +28,10 @@ $ rush update $ rush docs ``` -Select VMind from the top navigation bar, enter your OpenAI Key, click generate chart, and you can experience VMind. ### Start the Development Page -Enter the VChart repository and execute: +Enter the VMind repository and execute: ```bash # Install dependencies From a95cd4803e1eaf1760933afe40826d2cf313a3b9 Mon Sep 17 00:00:00 2001 From: xuanhun <717532978@qq.com> Date: Wed, 20 Mar 2024 12:20:28 +0800 Subject: [PATCH 3/8] docs: add npm info to readme --- README.md | 40 +++++++++++++++++++++++++++++++++++++++- readme-zh.md | 25 +++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56e15922..350a4380 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,40 @@ -# @visactor/vmind + +
+ + VisActor Logo + + + VisActor Logo + +
+ +
+

VMind

+
+ +
+ +Not just automatic, but also fantastic.Open-source solution for intelligent visualization. + +

+ Introduction • + Demo • + Tutorial • + API• + OpenApi +

+ +![](https://github.com/visactor/vmind/actions/workflows/bug-server.yml/badge.svg) +![](https://github.com/visactor/vmind/actions/workflows/unit-test.yml/badge.svg) +[![npm Version](https://img.shields.io/npm/v/@visactor/vmind.svg)](https://www.npmjs.com/package/@visactor/vmind) +[![npm Download](https://img.shields.io/npm/dm/@visactor/vmind.svg)](https://www.npmjs.com/package/@visactor/vmind) +[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/VisActor/VMind/blob/main/CONTRIBUTING.md#your-first-pull-request) + +![](https://img.shields.io/badge/language-TypeScript-red.svg) [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/visactor/vmind/blob/main/LICENSE) + +
+ +
@@ -6,6 +42,8 @@ English | [简体中文](readme-zh.md)
+## 简介 + `@visactor/vmind` is an intelligent chart component based on LLM provided by [VisActor](https://www.visactor.io/), including dialog-based chart generation and editing capabilities. It provides a natural language interaction interface, allowing you to easily create chart narrative works with `@visactor/VMind` with just one sentence, and edit them through continuous dialogue, greatly improving your efficiency in creating data visualization works. The main features of `@visactor/vmind` include: diff --git a/readme-zh.md b/readme-zh.md index b5411b54..8e970345 100644 --- a/readme-zh.md +++ b/readme-zh.md @@ -6,6 +6,31 @@ + +
+ +不仅自动,还很智能.开源智能可视化解决方案. + +

+ Introduction • + Demo • + Tutorial • + API• + OpenApi +

+ +![](https://github.com/visactor/vmind/actions/workflows/bug-server.yml/badge.svg) +![](https://github.com/visactor/vmind/actions/workflows/unit-test.yml/badge.svg) +[![npm Version](https://img.shields.io/npm/v/@visactor/vmind.svg)](https://www.npmjs.com/package/@visactor/vmind) +[![npm Download](https://img.shields.io/npm/dm/@visactor/vmind.svg)](https://www.npmjs.com/package/@visactor/vmind) +[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/VisActor/VMind/blob/main/CONTRIBUTING.md#your-first-pull-request) + +![](https://img.shields.io/badge/language-TypeScript-red.svg) [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/visactor/vmind/blob/main/LICENSE) + +
+ +## 简介 + `@visactor/vmind` 是由 [VisActor](https://www.visactor.io/) 为您提供的基于大模型的图表智能组件,包括对话式的图表智能生成与编辑能力。它提供了一个自然语言交互接口,仅需一句话,您就能够轻松使用`@visactor/vmind` 创建图表叙事作品,并通过连续的对话进行编辑,极大地提高您创作数据可视化作品的效率。 `@visactor/vmind` 的主要特点包括: From 5a4847da3ddf2ceee5118bc02c248f08b65b9f7a Mon Sep 17 00:00:00 2001 From: da730 Date: Tue, 26 Mar 2024 17:19:49 +0800 Subject: [PATCH 4/8] feat: chart-advisor docs --- .../guide/en/Basic_Tutorial/Chart_Advisor.md | 84 +++++++++++++++++++ .../guide/zh/Basic_Tutorial/Chart_Advisor.md | 84 +++++++++++++++++++ packages/chart-advisor/src/score.ts | 8 +- 3 files changed, 172 insertions(+), 4 deletions(-) create mode 100644 docs/assets/guide/en/Basic_Tutorial/Chart_Advisor.md create mode 100644 docs/assets/guide/zh/Basic_Tutorial/Chart_Advisor.md diff --git a/docs/assets/guide/en/Basic_Tutorial/Chart_Advisor.md b/docs/assets/guide/en/Basic_Tutorial/Chart_Advisor.md new file mode 100644 index 00000000..9be1c510 --- /dev/null +++ b/docs/assets/guide/en/Basic_Tutorial/Chart_Advisor.md @@ -0,0 +1,84 @@ +# Rule-based Chart Generation +VMind can automatically generate charts based on the current dataset in combination with the built-in @visactor/chart-advisor. Chart-advisor is fully dependent on visualization rules and does not need to call large language models. When you use generateChart, and the large model cannot successfully generate a chart, VMind will use chart-advisor as an alternative to create a chart. + +You can also actively choose to use chart-advisor to generate charts, just set the model type to chart-advisor when initializing the VMind object: +```ts +import VMind, { Model } from '@visactor/vmind' + +const vmind = new VMind({ +model: Model.CHART_ADVISOR, +}) +const userPrompt = ''; +const advisorResult = await vmind.generateChart(userPrompt, fieldInfo, dataset); +``` +Since chart-advisor does not rely on large language models, userPrompt can be set to empty. +You can learn more about fieldInfo and dataset in the [Data Format and Data Processing](./Data_Process) section. + +Chart-advisor will generate several available charts based on a series of rules, at which time generateChart will return a list containing chart types, scores, and spec. + +## Example +Here is an example of a chart generated by chart-advisor using product sales data: + +```ts +const dataset = [ +{ +"Product name": "Coke", +"Sales": 2350 +}, +{ +"Product name": "Sprite", +"total_sales": 1056 +}, +{ +"Product name": "Fanta", +"total_sales": 4778 +}, +{ +"Product name": "Mirinda", +"total_sales": 3336 +} +// ...more data +] + +const fieldInfo = [ +{ +"fieldName": "Product name", +"type": "string", +"role": "dimension" +}, +{ +"fieldName": "Sales", +"type": "int", +"role": "measure" +} +] + +const advisorResult = await vmind.generateChart(userPrompt, fieldInfo, dataset); + +``` +The advisorResult result is as follows: +```json +[ +{ +"chartSource": "chartAdvisor", // Chart source +"spec": ..., // Generated chart spec +"chartType": "BAR CHART", // Chart type +"score": 1, // Current chart score +}, +{ +"chartSource": "chartAdvisor", +"spec": ..., // Generated chart spec +"chartType": "RADAR CHART", // Chart type +"score": 0.16666666666666666 // Current chart score +} +] +``` + +Here, score represents the degree of fit between the current chart type and the input data, the higher the score means that the chart type is more suitable for displaying the current data. + + +The generated chart is as follows: + +![](https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/vmind/tutorials/VMind_advisor.png) + +According to the characteristics of the input data and the field information in fieldInfo, chart-advisor will score each type of chart based on a full set of visualization rules and sort each type of chart based on the score. These rules ensure the accuracy and aesthetics of the visualization results and minimize visual confusion and visual errors in the chart. diff --git a/docs/assets/guide/zh/Basic_Tutorial/Chart_Advisor.md b/docs/assets/guide/zh/Basic_Tutorial/Chart_Advisor.md new file mode 100644 index 00000000..0da2e0ce --- /dev/null +++ b/docs/assets/guide/zh/Basic_Tutorial/Chart_Advisor.md @@ -0,0 +1,84 @@ +# 基于规则的图表生成 +VMind可以结合内建的@visactor/chart-advisor,自动根据当前数据集生成图表。chart-advisor完整依赖于可视化规则,不需要调用大型语言模型。当你使用generateChart,而大模型无法成功生成图表时,VMind会使用chart-advisor作为备选方案来创建一个图表。 + +你同样可以主动选择使用chart-advisor来生成图表,只需在初始化VMind对象时,将模型类型设置为chart-advisor: +```ts +import VMind, { Model } from '@visactor/vmind' + +const vmind = new VMind({ +model: Model.CHART_ADVISOR, +}) +const userPrompt = ''; +const advisorResult = await vmind.generateChart(userPrompt, fieldInfo, dataset); +``` +由于chart-advisor不依赖大型模型,userPrompt可以设为空。 +你可以在[数据格式与数据处理](./Data_Process)章节了解fieldInfo和dataset的更多相关信息。 + +chart-advisor会根据一系列规则生成几种可用的图表,此时generateChart将返回包含图表类型、得分以及spec的列表。 + +## 示例 +下面是一个使用商品销售额数据,通过chart-advisor生成图表的示例: + +```ts +const dataset = [ +{ +"Product name": "Coke", +"Sales": 2350 +}, +{ +"Product name": "Sprite", +"total_sales": 1056 +}, +{ +"Product name": "Fanta", +"total_sales": 4778 +}, +{ +"Product name": "Mirinda", +"total_sales": 3336 +} +// ...more data +] + +const fieldInfo = [ +{ +"fieldName": "Product name", +"type": "string", +"role": "dimension" +}, +{ +"fieldName": "Sales", +"type": "int", +"role": "measure" +} +] + +const advisorResult = await vmind.generateChart(userPrompt, fieldInfo, dataset); + +``` +advisorResult结果如下: +```json +[ +{ +"chartSource": "chartAdvisor", //图表来源 +"spec": ..., //生成的图表spec +"chartType": "BAR CHART", //图表类型 +"score": 1, //当前图表得分 +}, +{ +"chartSource": "chartAdvisor", +"spec": ..., //生成的图表spec +"chartType": "RADAR CHART", //图表类型 +"score": 0.16666666666666666 //当前图表得分 +} +] +``` + +其中,score表示当前图表类型与输入数据的匹配程度,分数越高表示该类型的图表越适用于展示当前数据。 + + +生成的图表如下: + +![](https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/vmind/tutorials/VMind_advisor.png) + +根据输入数据的特性以及fieldInfo中的字段信息,chart-advisor会基于一整套可视化规则,为每种图表类型打分,并依分数将各图表类型排序。这些规则确保了可视化结果的准确度和美观性,并尽可能地减少图表中的视觉混乱和视觉错误。 diff --git a/packages/chart-advisor/src/score.ts b/packages/chart-advisor/src/score.ts index 8833a1a2..62d008c0 100644 --- a/packages/chart-advisor/src/score.ts +++ b/packages/chart-advisor/src/score.ts @@ -1183,17 +1183,17 @@ export const scorer: Scorer = params => { calBar, calBarPercent, calBarParallel, - calCombination, + //calCombination, calScatterplot, calLineChart, // calLineChartCombine, calPieChart, - calMeasureCard, + //calMeasureCard, calRadar, calWordCloud, calFunnelChart, - calDualAxis, - calTable + calDualAxis + //calTable ]; return scoreCalculators; From dc43596f1092009def337256d27a5b6de4ea2b46 Mon Sep 17 00:00:00 2001 From: da730 Date: Tue, 26 Mar 2024 17:23:57 +0800 Subject: [PATCH 5/8] docs: update changlog of rush --- .../@visactor/vmind/feat-docs_2024-03-26-09-23.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json diff --git a/common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json b/common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json new file mode 100644 index 00000000..d9dbb560 --- /dev/null +++ b/common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "feat: chart-advisor docs\n\n", + "type": "none", + "packageName": "@visactor/vmind" + } + ], + "packageName": "@visactor/vmind", + "email": "sduchd@gmail.com" +} \ No newline at end of file From e8fbd874e4ecdcc8b51b7f3e6a8efad3decfc8cc Mon Sep 17 00:00:00 2001 From: da730 Date: Tue, 26 Mar 2024 17:39:16 +0800 Subject: [PATCH 6/8] feat: update chart generation docs --- docs/assets/api/en/dataQuery.md | 1 + docs/assets/api/en/generateChart.md | 6 +++++- docs/assets/api/zh/dataQuery.md | 1 + docs/assets/api/zh/generateChart.md | 5 ++++- docs/assets/guide/en/Basic_Tutorial/Data_Aggregation.md | 1 - docs/assets/guide/menu.json | 9 ++++++++- docs/assets/guide/zh/Basic_Tutorial/Data_Aggregation.md | 1 - 7 files changed, 19 insertions(+), 5 deletions(-) diff --git a/docs/assets/api/en/dataQuery.md b/docs/assets/api/en/dataQuery.md index bf552161..bf3e4270 100644 --- a/docs/assets/api/en/dataQuery.md +++ b/docs/assets/api/en/dataQuery.md @@ -7,6 +7,7 @@ The dataQuery function is a powerful data aggregation tool. It takes three param ## Supported Models: - GPT-3.5 - GPT-4 +- [skylark2-pro](https://www.volcengine.com/product/yunque) ## Interface Parameters: diff --git a/docs/assets/api/en/generateChart.md b/docs/assets/api/en/generateChart.md index ed507497..2932f37f 100644 --- a/docs/assets/api/en/generateChart.md +++ b/docs/assets/api/en/generateChart.md @@ -8,6 +8,7 @@ The generateChart function is used for intelligent chart generation. - GPT-3.5 - GPT-4 - [skylark2-pro](https://www.volcengine.com/product/yunque) +- [chart-advisor](../guide/Basic_tutorial/Chart_Advisor) ## Interface Parameters: @@ -65,6 +66,9 @@ const { spec, time } = await vmind.generateChart(userPrompt, fieldInfo, dataset, - The generateChart method will pass the userPrompt and fieldInfo to the large language model for chart generation, but the detailed data in the dataset will not be passed. - In the process of generating the chart, VMind will first use the large language model, according to the userPrompt and fieldInfo, to recommend a suitable chart type. Then, it will map the fields in the fieldInfo to the x-axis, y-axis, color, size and other visual channels of the chart. - VMind will add an entrance animation to the generated chart by default, so it will also return the duration of the chart animation time. If you want to turn off the chart animation, you can set spec.animation to false. +- When the model type is set to chart-advisor, it will not call a large language model to generate charts. The results generated will include multiple types of charts. For details, please refer to [Rule-based Chart Generation](../guide/Basic_Tutorial/Chart_Advisor). ## Related Tutorials -[Intelligent Chart Generation](../guide/Basic_Tutorial/Chart_Generation) +- [Intelligent Chart Generation](../guide/Basic_Tutorial/Chart_Generation) +- [Rule-based Chart Generation](../guide/Basic_Tutorial/Chart_Advisor) + diff --git a/docs/assets/api/zh/dataQuery.md b/docs/assets/api/zh/dataQuery.md index f2c64ee3..0af00a75 100644 --- a/docs/assets/api/zh/dataQuery.md +++ b/docs/assets/api/zh/dataQuery.md @@ -6,6 +6,7 @@ dataQuery函数是一个强大的数据聚合工具,它接收三个参数: ## 支持模型: - GPT-3.5 - GPT-4 +- [skylark2-pro](https://www.volcengine.com/product/yunque) ## 接口参数: diff --git a/docs/assets/api/zh/generateChart.md b/docs/assets/api/zh/generateChart.md index e810ece2..94dbd06c 100644 --- a/docs/assets/api/zh/generateChart.md +++ b/docs/assets/api/zh/generateChart.md @@ -8,6 +8,7 @@ generateChart函数用于图表智能生成。 - GPT-3.5 - GPT-4 - [skylark2-pro](https://www.volcengine.com/product/yunque) +- [chart-advisor](../guide/Basic_tutorial/Chart_Advisor) ## 接口参数: @@ -65,6 +66,8 @@ const { spec, time } = await vmind.generateChart(userPrompt, fieldInfo, dataset, - generateChart方法会将userPrompt和fieldInfo传递给大语言模型用于生成图表,但是dataset中的详细数据并不会被传递。 - 在生成图表的过程中,VMind首先会利用大语言模型,根据userPrompt和fieldInfo,推荐一个适合的图表类型。然后,它会将fieldInfo中的字段映射到图表的x轴、y轴、颜色、尺寸等视觉通道上。 - VMind默认会为生成的图表添加入场动画,因此它还会返回图表动画的时长time。如果你想关闭图表动画,可以将spec.animation设为false。 +- 当设定模型类型为chart-advisor时,将不需调用大型语言模型生成图表,产生的结果将包括多种图表,详情可参见[基于规则的图表生成](../guide/Basic_Tutorial/Chart_Advisor)。 ## 相关教程 -[图表智能生成](../guide/Basic_Tutorial/Chart_Generation) +- [图表智能生成](../guide/Basic_Tutorial/Chart_Generation) +- [基于规则的图表生成](../guide/Basic_Tutorial/Chart_Advisor) diff --git a/docs/assets/guide/en/Basic_Tutorial/Data_Aggregation.md b/docs/assets/guide/en/Basic_Tutorial/Data_Aggregation.md index 5374dc7f..4cab7d2c 100644 --- a/docs/assets/guide/en/Basic_Tutorial/Data_Aggregation.md +++ b/docs/assets/guide/en/Basic_Tutorial/Data_Aggregation.md @@ -1,5 +1,4 @@ # Data Aggregation -📢 Note: Currently, the data aggregation feature only supports GPT series models, and we are working hard to integrate more models. ## Overview of Data Aggregation When we use chart libraries like VChart to draw bar charts, line charts, etc., if the dataset used has not been aggregated, it may have a negative impact on the visualization effect. diff --git a/docs/assets/guide/menu.json b/docs/assets/guide/menu.json index 6c21716d..06e18cd4 100644 --- a/docs/assets/guide/menu.json +++ b/docs/assets/guide/menu.json @@ -80,6 +80,13 @@ "en": "Intelligent Chart Generation" } }, + { + "path": "Chart_Advisor", + "title": { + "zh": "基于规则的图表生成", + "en": "Rule-based Chart Generation" + } + }, { "path": "Custom_Request", "title": { @@ -90,4 +97,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/docs/assets/guide/zh/Basic_Tutorial/Data_Aggregation.md b/docs/assets/guide/zh/Basic_Tutorial/Data_Aggregation.md index 745d9f34..2db18f09 100644 --- a/docs/assets/guide/zh/Basic_Tutorial/Data_Aggregation.md +++ b/docs/assets/guide/zh/Basic_Tutorial/Data_Aggregation.md @@ -1,5 +1,4 @@ # 数据聚合 -📢 注意:目前数据聚合功能仅支持GPT系列模型,我们正在努力接入更多模型。 ## 数据聚合概述 当我们使用VChart等图表库来绘制柱状图、折线图等图表时,如果使用的数据集dataset并未经过聚合处理,可能会对可视化效果产生不良影响。 From 087c7452c934ffef850930a3faa04cc55889ec6f Mon Sep 17 00:00:00 2001 From: da730 Date: Tue, 26 Mar 2024 17:41:26 +0800 Subject: [PATCH 7/8] feat: update chart generation docs --- .../vmind/release-1.2.6_2024-03-26-09-40.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json diff --git a/common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json b/common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json new file mode 100644 index 00000000..02909dd3 --- /dev/null +++ b/common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@visactor/vmind", + "comment": "update docs", + "type": "none" + } + ], + "packageName": "@visactor/vmind" +} \ No newline at end of file From b9a711ae0864d20ad5c1e67490328a206764def0 Mon Sep 17 00:00:00 2001 From: da730 Date: Tue, 26 Mar 2024 09:44:46 +0000 Subject: [PATCH 8/8] build: prelease version 1.2.7 --- .../vmind/feat-docs_2024-03-26-09-23.json | 11 ---------- .../vmind/release-1.2.6_2024-03-26-09-40.json | 10 --------- common/config/rush/version-policies.json | 2 +- packages/calculator/package.json | 2 +- packages/chart-advisor/package.json | 2 +- packages/vmind/CHANGELOG.json | 21 +++++++++++++++++++ packages/vmind/CHANGELOG.md | 17 ++++++++++++++- packages/vmind/package.json | 2 +- 8 files changed, 41 insertions(+), 26 deletions(-) delete mode 100644 common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json delete mode 100644 common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json diff --git a/common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json b/common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json deleted file mode 100644 index d9dbb560..00000000 --- a/common/changes/@visactor/vmind/feat-docs_2024-03-26-09-23.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "feat: chart-advisor docs\n\n", - "type": "none", - "packageName": "@visactor/vmind" - } - ], - "packageName": "@visactor/vmind", - "email": "sduchd@gmail.com" -} \ No newline at end of file diff --git a/common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json b/common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json deleted file mode 100644 index 02909dd3..00000000 --- a/common/changes/@visactor/vmind/release-1.2.6_2024-03-26-09-40.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vmind", - "comment": "update docs", - "type": "none" - } - ], - "packageName": "@visactor/vmind" -} \ No newline at end of file diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 8bdf9a65..7ab0603c 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -2,7 +2,7 @@ { "definitionName": "lockStepVersion", "policyName": "vmindMin", - "version": "1.2.5", + "version": "1.2.7", "mainProject": "@visactor/vmind", "nextBump": "patch" } diff --git a/packages/calculator/package.json b/packages/calculator/package.json index 6ec7aa1b..88241197 100644 --- a/packages/calculator/package.json +++ b/packages/calculator/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/calculator", - "version": "1.2.5", + "version": "1.2.7", "description": "SQL-like query executor with DSL", "main": "lib", "module": "es", diff --git a/packages/chart-advisor/package.json b/packages/chart-advisor/package.json index 930b30a7..7e318267 100644 --- a/packages/chart-advisor/package.json +++ b/packages/chart-advisor/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/chart-advisor", - "version": "1.2.5", + "version": "1.2.7", "description": "图表推荐模块", "main": "lib", "module": "es", diff --git a/packages/vmind/CHANGELOG.json b/packages/vmind/CHANGELOG.json index a131a209..0ff81b0a 100644 --- a/packages/vmind/CHANGELOG.json +++ b/packages/vmind/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@visactor/vmind", "entries": [ + { + "version": "1.2.7", + "tag": "@visactor/vmind_v1.2.7", + "date": "Tue, 26 Mar 2024 09:43:52 GMT", + "comments": {} + }, + { + "version": "1.2.6", + "tag": "@visactor/vmind_v1.2.6", + "date": "Tue, 26 Mar 2024 09:43:51 GMT", + "comments": { + "none": [ + { + "comment": "feat: chart-advisor docs\n\n" + }, + { + "comment": "update docs" + } + ] + } + }, { "version": "1.2.5", "tag": "@visactor/vmind_v1.2.5", diff --git a/packages/vmind/CHANGELOG.md b/packages/vmind/CHANGELOG.md index 19f0c006..353e58ba 100644 --- a/packages/vmind/CHANGELOG.md +++ b/packages/vmind/CHANGELOG.md @@ -1,6 +1,21 @@ # Change Log - @visactor/vmind -This log was last generated on Tue, 26 Mar 2024 07:36:00 GMT and should not be manually modified. +This log was last generated on Tue, 26 Mar 2024 09:43:52 GMT and should not be manually modified. + +## 1.2.7 +Tue, 26 Mar 2024 09:43:52 GMT + +_Version update only_ + +## 1.2.6 +Tue, 26 Mar 2024 09:43:51 GMT + +### Updates + +- feat: chart-advisor docs + + +- update docs ## 1.2.5 Tue, 26 Mar 2024 07:36:00 GMT diff --git a/packages/vmind/package.json b/packages/vmind/package.json index b06f0060..1c8e2e56 100644 --- a/packages/vmind/package.json +++ b/packages/vmind/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vmind", - "version": "1.2.5", + "version": "1.2.7", "main": "cjs/index.js", "module": "esm/index.js", "types": "esm/index.d.ts",