From cab8bae9a3b02f81e26af985e930ae669f072d7f Mon Sep 17 00:00:00 2001 From: kkxxkk2019 Date: Thu, 26 Dec 2024 11:04:21 +0800 Subject: [PATCH 1/7] docs: add two infographic demos --- .../en/infographic/market-share-area-chart.md | 377 +++++++++++++++++ .../infographic/top10-podcasts-bar-chart.md | 382 +++++++++++++++++ docs/assets/examples/menu.json | 14 + .../zh/infographic/market-share-area-chart.md | 378 +++++++++++++++++ .../infographic/top10-podcasts-bar-chart.md | 383 ++++++++++++++++++ packages/vstory/demo/src/App.tsx | 10 + .../src/demos/infographic/market-share.tsx | 372 +++++++++++++++++ .../src/demos/infographic/top10_podcast.tsx | 378 +++++++++++++++++ 8 files changed, 2294 insertions(+) create mode 100644 docs/assets/examples/en/infographic/market-share-area-chart.md create mode 100644 docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md create mode 100644 docs/assets/examples/zh/infographic/market-share-area-chart.md create mode 100644 docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md create mode 100644 packages/vstory/demo/src/demos/infographic/market-share.tsx create mode 100644 packages/vstory/demo/src/demos/infographic/top10_podcast.tsx diff --git a/docs/assets/examples/en/infographic/market-share-area-chart.md b/docs/assets/examples/en/infographic/market-share-area-chart.md new file mode 100644 index 00000000..8a01a59b --- /dev/null +++ b/docs/assets/examples/en/infographic/market-share-area-chart.md @@ -0,0 +1,377 @@ +--- +category: examples +group: infographic +title: Market Share +keywords: templates, visualization, area, left-right +order: 1-0 +cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/1.png +--- + +# Venn Chart Infographic + +## Code Demo + +```javascript livedemo template=vstory +VStory.registerAll(); +const dsl = { + acts: [ + { + id: 'defaultAct', + scenes: [ + { + id: 'defaultScene', + actions: [ + { + characterId: ['0', '1', '2', '3', 'chart', '4'], + characterActions: [ + { + action: 'appear' + } + ] + } + ] + } + ] + } + ], + characters: [ + { + id: '0', + type: 'Image', + zIndex: 0, + position: { + x: 0, + y: 0, + width: 480, + height: 720 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/BG.png' + } + } + }, + { + id: '1', + type: 'Image', + zIndex: 0, + position: { + x: 142, + y: 160, + width: 196, + height: 196 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/2.png' + } + } + }, + { + id: '2', + type: 'Text', + zIndex: 0, + position: { + x: 250, + y: 320 + }, + options: { + graphic: { + text: 'Market Share', + fontSize: 60, + fontWeight: 'bold', + fill: '#fff' + } + } + }, + { + id: '3', + type: 'Line', + zIndex: 0, + position: { + x: 60, + y: 390, + width: 380 + // height: 560 + }, + options: { + graphic: { + stroke: '#F4D35E', + lineWidth: 4, + points: [ + { x: 0, y: 0 }, + { x: 380, y: 0 } + ] + } + } + }, + { + id: '4', + type: 'Text', + zIndex: 0, + position: { + x: 250, + y: 400 + }, + options: { + graphic: { + text: 'Comparative report ', + fontSize: 50, + fontWeight: 'bold', + fill: '#fff' + } + } + }, + { + id: 'chart', + type: 'VChart', + zIndex: 0, + position: { + x: 540, + y: 140, + width: 800, + height: 540 + }, + options: { + spec: { + type: 'area', + color: ['#5F1040', '#CD4157', '#FF7F51', '#F4D35E'], + + stack: false, + xField: '_editor_dimension_field', + yField: '_editor_value_field', + seriesField: '_editor_type_field', + point: { + style: { + visible: false + } + }, + area: { + style: { + curveType: 'monotone' + } + }, + legends: { + id: 'legend-discrete', + visible: true, + autoPage: false, + position: 'middle', + maxWidth: 350, + item: { + width: 160, + shape: { + style: { + size: 16 + } + }, + label: { + style: { + fill: '#666', + fontSize: 16, + fontWeight: 'bold' + } + } + } + }, + axes: [ + { + orient: 'left', + id: 'axis-left', + type: 'linear', + label: { + style: { + fill: '#acacac', + fontWeight: 'bold' + }, + space: 6 + }, + domainLine: { + visible: true, + style: { + stroke: '#e6e7e7' + } + }, + tick: { + visible: true, + style: { + stroke: '#d5d5d6' + }, + tickStep: 2, + tickSize: 3 + }, + grid: { + visible: true, + style: { + stroke: '#f8f8f8' + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + title: { + visible: false + }, + visible: true, + min: 2 + }, + { + orient: 'bottom', + id: 'axis-bottom', + type: 'band', + label: { + style: { + fill: '#acacac', + fontWeight: 'bold', + fontSize: 16 + }, + space: 6 + }, + domainLine: { + visible: true, + style: { + stroke: '#e6e7e7' + } + }, + tick: { + visible: true, + style: { + stroke: '#d5d5d6' + } + }, + grid: { + visible: true, + style: { + stroke: '#f8f8f8' + } + }, + + visible: true + } + ], + data: { + id: '0', + sourceKey: 'Tall tale travels', + values: [ + { + _editor_dimension_field: '2019', + _editor_value_field: 18, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 22, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 23.5, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 26, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 28, + _editor_type_field: 'Tall tale travels' + }, + + { + _editor_dimension_field: '2019', + _editor_value_field: 10, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 14, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 14.8, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 16.5, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 18, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2019', + _editor_value_field: 18, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 17, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 16, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 15, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 13, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2019', + _editor_value_field: 6, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 8, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 10, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 8, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 6, + _editor_type_field: 'Best venture' + } + ] + } + } + } + } + ] +}; +const story = new VStory.Story(dsl, { + dom: CONTAINER_ID, + scaleX: 'auto', + scaleY: 'auto', + width: 1280, + height: 720 +}); +const player = new VStory.Player(story); +story.init(player); + +player.play(-1); + +window['story'] = story; +window['vstory'] = story; +``` diff --git a/docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md b/docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md new file mode 100644 index 00000000..6a687fb3 --- /dev/null +++ b/docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md @@ -0,0 +1,382 @@ +--- +category: examples +group: infographic +title: Top 10 Podcasts +keywords: templates, visualization, bar, left-right +order: 1-0 +cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/chart.png +--- + +# Venn Chart Infographic + +## Code Demo + +```javascript livedemo template=vstory +VStory.registerAll(); +const dsl = { + acts: [ + { + id: 'defaultAct', + scenes: [ + { + id: 'defaultScene', + actions: [ + { + characterId: ['0', '1', '2', 'rect', 'text1', 'text2', 'text3'], + characterActions: [ + { + action: 'appear' + } + ] + } + ] + } + ] + } + ], + characters: [ + { + id: 'text1', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 60 + }, + options: { + graphic: { + text: 'Podcast Industry Ranking Highlights', + fontSize: 18, + fill: '#FED694', + textAlign: 'center' + } + } + }, + { + id: 'text2', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 95 + }, + options: { + graphic: { + text: 'Top 10 Podcast Publishers in US', + fontSize: 36, + fill: '#FFF', + fontWeight: 'bold', + textAlign: 'center' + } + } + }, + { + id: 'text3', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 150 + }, + options: { + graphic: { + text: 'OCTOBER 2019', + fontSize: 14, + fill: '#FFF', + textAlign: 'center' + } + } + }, + { + id: '0', + type: 'Image', + zIndex: 0, + position: { + x: 321, + y: 0, + width: 638, + height: 720 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/after-removebg-preview.png' + } + } + }, + { + id: 'rect', + type: 'Rect', + zIndex: 0, + position: { + x: 0, + y: 0, + width: 1280, + height: 720 + }, + options: { + graphic: { + fill: 'rgb(132, 75, 163)', + fillOpacity: 0.84 + } + } + }, + { + id: '1', + type: 'VChart', + zIndex: 0, + position: { + x: 190, + y: 200, + width: 900, + height: 480 + }, + options: { + spec: { + type: 'bar', + color: [ + '#e1f3f9', + '#a1d8e9', + '#41b3ce', + '#3e839b', + '#399487', + '#a8d9c4', + '#e5f5f0', + '#ffd694', + '#ffb82b', + '#e8a01b' + ], + label: { + visible: true, + position: 'top', + style: { + lineHeight: '100%', + lineWidth: 0, + fill: '#fff', + fontSize: 12 + } + }, + xField: '_editor_dimension_field', + yField: '_editor_value_field', + seriesField: '_editor_dimension_field', + title: { + id: 'chart_title', + visible: false, + // minWidth: '100%', + verticalAlign: 'middle', + align: 'center', + textStyle: { + fontSize: 36, + fontWeight: 'bolder', + fill: '#FFFFFF' + }, + subtext: 'OCTOBER 2019', + subtextStyle: { + visible: true, + fontSize: 14, + textBaseline: 'middle', + fill: '#FFFFFF', + align: 'center' + }, + text: 'Top 10 Podcast Publishers in US' + }, + axes: [ + { + orient: 'left', + id: 'axis-left', + type: 'linear', + label: { + autoLimit: false, + style: { + fill: '#FFFFFF', + fontSize: 16 + }, + formatConfig: { + separator: true + }, + _originStyle: { + fill: '#FFFFFF', + fontSize: 16 + } + }, + domainLine: { + visible: true, + style: { + stroke: '#5f486f' + } + }, + tick: { + visible: true, + style: { + stroke: '#685874' + } + }, + grid: { + visible: false, + style: { + stroke: '#bbbfc4', + pickStrokeBuffer: 2 + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + min: '5000000', + title: { + style: { + background: null, + fill: '#FFFFFF' + }, + text: ['Audience'], + visible: true + } + }, + { + orient: 'bottom', + id: 'axis-bottom', + type: 'band', + label: { + autoLimit: false, + style: { + fill: '#1F2329', + fontSize: 16 + }, + formatConfig: {}, + visible: false, + _originStyle: { + fill: '#1F2329', + fontSize: 16 + } + }, + domainLine: { + visible: true, + style: { + stroke: '#5f486f' + }, + onZero: true + }, + tick: { + visible: false, + style: { + stroke: '#000000' + } + }, + grid: { + visible: false, + style: { + stroke: '#bbbfc4', + pickStrokeBuffer: 2 + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + trimPadding: false, + paddingInner: [0.2, 0], + paddingOuter: [0.2, 0], + title: { + style: { + fill: '#ffffff', + fontSize: 18, + fontStyle: '', + fontWeight: 'normal', + lineWidth: 1, + underline: 0 + }, + space: 30, + text: ['Podcast Publisher'], + visible: true + } + } + ], + data: [ + { + id: '0', + sourceKey: 'value', + values: [ + { + _editor_dimension_field: 'NPR', + _editor_value_field: 25923000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'iHeartRadio', + _editor_value_field: 23672000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'PRX', + _editor_value_field: 11878000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'New York Times', + _editor_value_field: 11878000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'Wondery', + _editor_value_field: 10849000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'Barstool Sports', + _editor_value_field: 9211000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'ESPN', + _editor_value_field: 8054000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'WNTC Studios', + _editor_value_field: 6764000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'NBC News', + _editor_value_field: 6438000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'This American Life/Serial', + _editor_value_field: 5678000, + _editor_type_field: 'value' + } + ], + specField: { + _editor_dimension_field: { + type: 'dimension', + order: 0 + }, + _editor_type_field: { + type: 'series', + order: 0 + }, + _editor_value_field: { + type: 'value', + order: 0 + } + } + } + ] + } + } + } + ] +}; +const story = new VStory.Story(dsl, { + dom: CONTAINER_ID, + scaleX: 'auto', + scaleY: 'auto', + width: 1280, + height: 720 +}); +const player = new VStory.Player(story); +story.init(player); + +player.play(-1); + +window['story'] = story; +window['vstory'] = story; +``` diff --git a/docs/assets/examples/menu.json b/docs/assets/examples/menu.json index 6717d0b9..a56537d7 100644 --- a/docs/assets/examples/menu.json +++ b/docs/assets/examples/menu.json @@ -381,6 +381,20 @@ "zh": "信息图模板-散点图: 年龄与轻生率", "en": "Scatter Cloud Infographic: Age and Suicide Rate" } + }, + { + "path": "market-share-area-chart", + "title": { + "zh": "信息图模板-面积图: Market share", + "en": "Area chart Infographic: Market share" + } + }, + { + "path": "top10-podcasts-bar-chart", + "title": { + "zh": "信息图模板-面积图: Top 10 Podcasts", + "en": "Bar chart Infographic: Top 10 Podcasts" + } } ] } diff --git a/docs/assets/examples/zh/infographic/market-share-area-chart.md b/docs/assets/examples/zh/infographic/market-share-area-chart.md new file mode 100644 index 00000000..c4388108 --- /dev/null +++ b/docs/assets/examples/zh/infographic/market-share-area-chart.md @@ -0,0 +1,378 @@ +--- +category: examples +group: infographic +title: Market Share +keywords: templates, visualization, area, left-right +order: 1-0 +cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/1.png +--- + +# 信息图模板-韦恩图 + +## 代码演示 + +```javascript livedemo template=vstory +// 注册所有需要的内容 +VStory.registerAll(); +const dsl = { + acts: [ + { + id: 'defaultAct', + scenes: [ + { + id: 'defaultScene', + actions: [ + { + characterId: ['0', '1', '2', '3', 'chart', '4'], + characterActions: [ + { + action: 'appear' + } + ] + } + ] + } + ] + } + ], + characters: [ + { + id: '0', + type: 'Image', + zIndex: 0, + position: { + x: 0, + y: 0, + width: 480, + height: 720 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/BG.png' + } + } + }, + { + id: '1', + type: 'Image', + zIndex: 0, + position: { + x: 142, + y: 160, + width: 196, + height: 196 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/2.png' + } + } + }, + { + id: '2', + type: 'Text', + zIndex: 0, + position: { + x: 250, + y: 320 + }, + options: { + graphic: { + text: 'Market Share', + fontSize: 60, + fontWeight: 'bold', + fill: '#fff' + } + } + }, + { + id: '3', + type: 'Line', + zIndex: 0, + position: { + x: 60, + y: 390, + width: 380 + // height: 560 + }, + options: { + graphic: { + stroke: '#F4D35E', + lineWidth: 4, + points: [ + { x: 0, y: 0 }, + { x: 380, y: 0 } + ] + } + } + }, + { + id: '4', + type: 'Text', + zIndex: 0, + position: { + x: 250, + y: 400 + }, + options: { + graphic: { + text: 'Comparative report ', + fontSize: 50, + fontWeight: 'bold', + fill: '#fff' + } + } + }, + { + id: 'chart', + type: 'VChart', + zIndex: 0, + position: { + x: 540, + y: 140, + width: 800, + height: 540 + }, + options: { + spec: { + type: 'area', + color: ['#5F1040', '#CD4157', '#FF7F51', '#F4D35E'], + + stack: false, + xField: '_editor_dimension_field', + yField: '_editor_value_field', + seriesField: '_editor_type_field', + point: { + style: { + visible: false + } + }, + area: { + style: { + curveType: 'monotone' + } + }, + legends: { + id: 'legend-discrete', + visible: true, + autoPage: false, + position: 'middle', + maxWidth: 350, + item: { + width: 160, + shape: { + style: { + size: 16 + } + }, + label: { + style: { + fill: '#666', + fontSize: 16, + fontWeight: 'bold' + } + } + } + }, + axes: [ + { + orient: 'left', + id: 'axis-left', + type: 'linear', + label: { + style: { + fill: '#acacac', + fontWeight: 'bold' + }, + space: 6 + }, + domainLine: { + visible: true, + style: { + stroke: '#e6e7e7' + } + }, + tick: { + visible: true, + style: { + stroke: '#d5d5d6' + }, + tickStep: 2, + tickSize: 3 + }, + grid: { + visible: true, + style: { + stroke: '#f8f8f8' + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + title: { + visible: false + }, + visible: true, + min: 2 + }, + { + orient: 'bottom', + id: 'axis-bottom', + type: 'band', + label: { + style: { + fill: '#acacac', + fontWeight: 'bold', + fontSize: 16 + }, + space: 6 + }, + domainLine: { + visible: true, + style: { + stroke: '#e6e7e7' + } + }, + tick: { + visible: true, + style: { + stroke: '#d5d5d6' + } + }, + grid: { + visible: true, + style: { + stroke: '#f8f8f8' + } + }, + + visible: true + } + ], + data: { + id: '0', + sourceKey: 'Tall tale travels', + values: [ + { + _editor_dimension_field: '2019', + _editor_value_field: 18, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 22, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 23.5, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 26, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 28, + _editor_type_field: 'Tall tale travels' + }, + + { + _editor_dimension_field: '2019', + _editor_value_field: 10, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 14, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 14.8, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 16.5, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 18, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2019', + _editor_value_field: 18, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 17, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 16, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 15, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 13, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2019', + _editor_value_field: 6, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 8, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 10, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 8, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 6, + _editor_type_field: 'Best venture' + } + ] + } + } + } + } + ] +}; +const story = new VStory.Story(dsl, { + dom: CONTAINER_ID, + scaleX: 'auto', + scaleY: 'auto', + width: 1280, + height: 720 +}); +const player = new VStory.Player(story); +story.init(player); + +player.play(-1); + +window['story'] = story; +window['vstory'] = story; +``` diff --git a/docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md b/docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md new file mode 100644 index 00000000..df902340 --- /dev/null +++ b/docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md @@ -0,0 +1,383 @@ +--- +category: examples +group: infographic +title: Top 10 Podcasts +keywords: templates, visualization, bar, left-right +order: 1-0 +cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/chart.png +--- + +# 信息图模板-韦恩图 + +## 代码演示 + +```javascript livedemo template=vstory +// 注册所有需要的内容 +VStory.registerAll(); +const dsl = { + acts: [ + { + id: 'defaultAct', + scenes: [ + { + id: 'defaultScene', + actions: [ + { + characterId: ['0', '1', '2', 'rect', 'text1', 'text2', 'text3'], + characterActions: [ + { + action: 'appear' + } + ] + } + ] + } + ] + } + ], + characters: [ + { + id: 'text1', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 60 + }, + options: { + graphic: { + text: 'Podcast Industry Ranking Highlights', + fontSize: 18, + fill: '#FED694', + textAlign: 'center' + } + } + }, + { + id: 'text2', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 95 + }, + options: { + graphic: { + text: 'Top 10 Podcast Publishers in US', + fontSize: 36, + fill: '#FFF', + fontWeight: 'bold', + textAlign: 'center' + } + } + }, + { + id: 'text3', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 150 + }, + options: { + graphic: { + text: 'OCTOBER 2019', + fontSize: 14, + fill: '#FFF', + textAlign: 'center' + } + } + }, + { + id: '0', + type: 'Image', + zIndex: 0, + position: { + x: 321, + y: 0, + width: 638, + height: 720 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/after-removebg-preview.png' + } + } + }, + { + id: 'rect', + type: 'Rect', + zIndex: 0, + position: { + x: 0, + y: 0, + width: 1280, + height: 720 + }, + options: { + graphic: { + fill: 'rgb(132, 75, 163)', + fillOpacity: 0.84 + } + } + }, + { + id: '1', + type: 'VChart', + zIndex: 0, + position: { + x: 190, + y: 200, + width: 900, + height: 480 + }, + options: { + spec: { + type: 'bar', + color: [ + '#e1f3f9', + '#a1d8e9', + '#41b3ce', + '#3e839b', + '#399487', + '#a8d9c4', + '#e5f5f0', + '#ffd694', + '#ffb82b', + '#e8a01b' + ], + label: { + visible: true, + position: 'top', + style: { + lineHeight: '100%', + lineWidth: 0, + fill: '#fff', + fontSize: 12 + } + }, + xField: '_editor_dimension_field', + yField: '_editor_value_field', + seriesField: '_editor_dimension_field', + title: { + id: 'chart_title', + visible: false, + // minWidth: '100%', + verticalAlign: 'middle', + align: 'center', + textStyle: { + fontSize: 36, + fontWeight: 'bolder', + fill: '#FFFFFF' + }, + subtext: 'OCTOBER 2019', + subtextStyle: { + visible: true, + fontSize: 14, + textBaseline: 'middle', + fill: '#FFFFFF', + align: 'center' + }, + text: 'Top 10 Podcast Publishers in US' + }, + axes: [ + { + orient: 'left', + id: 'axis-left', + type: 'linear', + label: { + autoLimit: false, + style: { + fill: '#FFFFFF', + fontSize: 16 + }, + formatConfig: { + separator: true + }, + _originStyle: { + fill: '#FFFFFF', + fontSize: 16 + } + }, + domainLine: { + visible: true, + style: { + stroke: '#5f486f' + } + }, + tick: { + visible: true, + style: { + stroke: '#685874' + } + }, + grid: { + visible: false, + style: { + stroke: '#bbbfc4', + pickStrokeBuffer: 2 + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + min: '5000000', + title: { + style: { + background: null, + fill: '#FFFFFF' + }, + text: ['Audience'], + visible: true + } + }, + { + orient: 'bottom', + id: 'axis-bottom', + type: 'band', + label: { + autoLimit: false, + style: { + fill: '#1F2329', + fontSize: 16 + }, + formatConfig: {}, + visible: false, + _originStyle: { + fill: '#1F2329', + fontSize: 16 + } + }, + domainLine: { + visible: true, + style: { + stroke: '#5f486f' + }, + onZero: true + }, + tick: { + visible: false, + style: { + stroke: '#000000' + } + }, + grid: { + visible: false, + style: { + stroke: '#bbbfc4', + pickStrokeBuffer: 2 + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + trimPadding: false, + paddingInner: [0.2, 0], + paddingOuter: [0.2, 0], + title: { + style: { + fill: '#ffffff', + fontSize: 18, + fontStyle: '', + fontWeight: 'normal', + lineWidth: 1, + underline: 0 + }, + space: 30, + text: ['Podcast Publisher'], + visible: true + } + } + ], + data: [ + { + id: '0', + sourceKey: 'value', + values: [ + { + _editor_dimension_field: 'NPR', + _editor_value_field: 25923000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'iHeartRadio', + _editor_value_field: 23672000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'PRX', + _editor_value_field: 11878000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'New York Times', + _editor_value_field: 11878000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'Wondery', + _editor_value_field: 10849000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'Barstool Sports', + _editor_value_field: 9211000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'ESPN', + _editor_value_field: 8054000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'WNTC Studios', + _editor_value_field: 6764000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'NBC News', + _editor_value_field: 6438000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'This American Life/Serial', + _editor_value_field: 5678000, + _editor_type_field: 'value' + } + ], + specField: { + _editor_dimension_field: { + type: 'dimension', + order: 0 + }, + _editor_type_field: { + type: 'series', + order: 0 + }, + _editor_value_field: { + type: 'value', + order: 0 + } + } + } + ] + } + } + } + ] +}; +const story = new VStory.Story(dsl, { + dom: CONTAINER_ID, + scaleX: 'auto', + scaleY: 'auto', + width: 1280, + height: 720 +}); +const player = new VStory.Player(story); +story.init(player); + +player.play(-1); + +window['story'] = story; +window['vstory'] = story; +``` diff --git a/packages/vstory/demo/src/App.tsx b/packages/vstory/demo/src/App.tsx index 9882adea..0e03dbf7 100644 --- a/packages/vstory/demo/src/App.tsx +++ b/packages/vstory/demo/src/App.tsx @@ -44,6 +44,8 @@ import { ProjectGoal } from './demos/infographic/project-goal'; import { BigDataWordCloud } from './demos/infographic/big-data-wordcloud'; import { AreaChart } from './demos/infographic/source-of-new-contacts-area-chart'; import { MarketingWordcloud } from './demos/infographic/marking-wordcloud'; +import { NoStackArea } from './demos/infographic/market-share'; +import { Top10Podcast } from './demos/infographic/top10_podcast'; // VchartEditor Runtime import { RuntimeSeriesMark } from './demos/runtime/series-mark'; @@ -273,6 +275,14 @@ const App = () => { { name: 'Marketing WordCloud', component: MarketingWordcloud + }, + { + name: 'Market Share', + component: NoStackArea + }, + { + name: 'Top 10 Podcast Publishers in US', + component: Top10Podcast } ] }, diff --git a/packages/vstory/demo/src/demos/infographic/market-share.tsx b/packages/vstory/demo/src/demos/infographic/market-share.tsx new file mode 100644 index 00000000..c56e23d3 --- /dev/null +++ b/packages/vstory/demo/src/demos/infographic/market-share.tsx @@ -0,0 +1,372 @@ +import React, { createRef, useEffect } from 'react'; +import { Player, Story } from '../../../../../vstory-core/src'; +import { registerAll } from '../../../../../vstory/src'; + +registerAll(); +export const NoStackArea = () => { + const id = 'Infographic'; + useEffect(() => { + const container = document.getElementById(id); + const canvas = document.createElement('canvas'); + canvas.width = 2000; + canvas.height = 1000; + container?.appendChild(canvas); + const dsl = { + acts: [ + { + id: 'defaultAct', + scenes: [ + { + id: 'defaultScene', + actions: [ + { + characterId: ['0', '1', '2', '3', 'chart', '4'], + characterActions: [ + { + action: 'appear' + } + ] + } + ] + } + ] + } + ], + characters: [ + { + id: '0', + type: 'Image', + zIndex: 0, + position: { + x: 0, + y: 0, + width: 480, + height: 720 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/BG.png' + } + } + }, + { + id: '1', + type: 'Image', + zIndex: 0, + position: { + x: 142, + y: 160, + width: 196, + height: 196 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/2.png' + } + } + }, + { + id: '2', + type: 'Text', + zIndex: 0, + position: { + x: 250, + y: 320 + }, + options: { + graphic: { + text: 'Market Share', + fontSize: 60, + fontWeight: 'bold', + fill: '#fff' + } + } + }, + { + id: '3', + type: 'Line', + zIndex: 0, + position: { + x: 60, + y: 390, + width: 380 + // height: 560 + }, + options: { + graphic: { + stroke: '#F4D35E', + lineWidth: 4, + points: [ + { x: 0, y: 0 }, + { x: 380, y: 0 } + ] + } + } + }, + { + id: '4', + type: 'Text', + zIndex: 0, + position: { + x: 250, + y: 400 + }, + options: { + graphic: { + text: 'Comparative report ', + fontSize: 50, + fontWeight: 'bold', + fill: '#fff' + } + } + }, + { + id: 'chart', + type: 'VChart', + zIndex: 0, + position: { + x: 540, + y: 140, + width: 800, + height: 540 + }, + options: { + spec: { + type: 'area', + color: ['#5F1040', '#CD4157', '#FF7F51', '#F4D35E'], + + stack: false, + xField: '_editor_dimension_field', + yField: '_editor_value_field', + seriesField: '_editor_type_field', + point: { + style: { + visible: false + } + }, + area: { + style: { + curveType: 'monotone' + } + }, + legends: { + id: 'legend-discrete', + visible: true, + autoPage: false, + position: 'middle', + maxWidth: 350, + item: { + width: 160, + shape: { + style: { + size: 16 + } + }, + label: { + style: { + fill: '#666', + fontSize: 16, + fontWeight: 'bold' + } + } + } + }, + axes: [ + { + orient: 'left', + id: 'axis-left', + type: 'linear', + label: { + style: { + fill: '#acacac', + fontWeight: 'bold' + }, + space: 6 + }, + domainLine: { + visible: true, + style: { + stroke: '#e6e7e7' + } + }, + tick: { + visible: true, + style: { + stroke: '#d5d5d6' + }, + tickStep: 2, + tickSize: 3 + }, + grid: { + visible: true, + style: { + stroke: '#f8f8f8' + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + title: { + visible: false + }, + visible: true, + min: 2 + }, + { + orient: 'bottom', + id: 'axis-bottom', + type: 'band', + label: { + style: { + fill: '#acacac', + fontWeight: 'bold', + fontSize: 16 + }, + space: 6 + }, + domainLine: { + visible: true, + style: { + stroke: '#e6e7e7' + } + }, + tick: { + visible: true, + style: { + stroke: '#d5d5d6' + } + }, + grid: { + visible: true, + style: { + stroke: '#f8f8f8' + } + }, + + visible: true + } + ], + data: { + id: '0', + sourceKey: 'Tall tale travels', + values: [ + { + _editor_dimension_field: '2019', + _editor_value_field: 18, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 22, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 23.5, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 26, + _editor_type_field: 'Tall tale travels' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 28, + _editor_type_field: 'Tall tale travels' + }, + + { + _editor_dimension_field: '2019', + _editor_value_field: 10, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 14, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 14.8, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 16.5, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 18, + _editor_type_field: 'Worldly wanderer' + }, + { + _editor_dimension_field: '2019', + _editor_value_field: 18, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 17, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 16, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 15, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 13, + _editor_type_field: 'Awesome abroad' + }, + { + _editor_dimension_field: '2019', + _editor_value_field: 6, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2020', + _editor_value_field: 8, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2021', + _editor_value_field: 10, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2022', + _editor_value_field: 8, + _editor_type_field: 'Best venture' + }, + { + _editor_dimension_field: '2023', + _editor_value_field: 6, + _editor_type_field: 'Best venture' + } + ] + } + } + } + } + ] + }; + const story = new Story(dsl, { canvas, width: 1280, height: 720, scaleX: 'auto', scaleY: 'auto' }); + const player = new Player(story); + story.init(player); + player.play(-1); + + return () => { + story.release(); + }; + }, []); + + return
; +}; diff --git a/packages/vstory/demo/src/demos/infographic/top10_podcast.tsx b/packages/vstory/demo/src/demos/infographic/top10_podcast.tsx new file mode 100644 index 00000000..15e7e4cb --- /dev/null +++ b/packages/vstory/demo/src/demos/infographic/top10_podcast.tsx @@ -0,0 +1,378 @@ +import React, { createRef, useEffect } from 'react'; +import { Player, Story } from '../../../../../vstory-core/src'; +import { registerAll } from '../../../../../vstory/src'; + +registerAll(); +export const Top10Podcast = () => { + const id = 'Infographic'; + useEffect(() => { + const container = document.getElementById(id); + const canvas = document.createElement('canvas'); + canvas.width = 2000; + canvas.height = 1000; + container?.appendChild(canvas); + + const dsl = { + acts: [ + { + id: 'defaultAct', + scenes: [ + { + id: 'defaultScene', + actions: [ + { + characterId: ['0', '1', '2', 'rect', 'text1', 'text2', 'text3'], + characterActions: [ + { + action: 'appear' + } + ] + } + ] + } + ] + } + ], + characters: [ + { + id: 'text1', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 60 + }, + options: { + graphic: { + text: 'Podcast Industry Ranking Highlights', + fontSize: 18, + fill: '#FED694', + textAlign: 'center' + } + } + }, + { + id: 'text2', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 95 + }, + options: { + graphic: { + text: 'Top 10 Podcast Publishers in US', + fontSize: 36, + fill: '#FFF', + fontWeight: 'bold', + textAlign: 'center' + } + } + }, + { + id: 'text3', + type: 'Text', + zIndex: 10, + position: { + x: 640, + y: 150 + }, + options: { + graphic: { + text: 'OCTOBER 2019', + fontSize: 14, + fill: '#FFF', + textAlign: 'center' + } + } + }, + { + id: '0', + type: 'Image', + zIndex: 0, + position: { + x: 321, + y: 0, + width: 638, + height: 720 + }, + options: { + graphic: { + image: 'https://tosv.byted.org/obj/bit-cloud/vstory-infographic/resource/after-removebg-preview.png' + } + } + }, + { + id: 'rect', + type: 'Rect', + zIndex: 0, + position: { + x: 0, + y: 0, + width: 1280, + height: 720 + }, + options: { + graphic: { + fill: 'rgb(132, 75, 163)', + fillOpacity: 0.84 + } + } + }, + { + id: '1', + type: 'VChart', + zIndex: 0, + position: { + x: 190, + y: 200, + width: 900, + height: 480 + }, + options: { + spec: { + type: 'bar', + color: [ + '#e1f3f9', + '#a1d8e9', + '#41b3ce', + '#3e839b', + '#399487', + '#a8d9c4', + '#e5f5f0', + '#ffd694', + '#ffb82b', + '#e8a01b' + ], + label: { + visible: true, + position: 'top', + style: { + lineHeight: '100%', + lineWidth: 0, + fill: '#fff', + fontSize: 12 + } + }, + xField: '_editor_dimension_field', + yField: '_editor_value_field', + seriesField: '_editor_dimension_field', + title: { + id: 'chart_title', + visible: false, + // minWidth: '100%', + verticalAlign: 'middle', + align: 'center', + textStyle: { + fontSize: 36, + fontWeight: 'bolder', + fill: '#FFFFFF' + }, + subtext: 'OCTOBER 2019', + subtextStyle: { + visible: true, + fontSize: 14, + textBaseline: 'middle', + fill: '#FFFFFF', + align: 'center' + }, + text: 'Top 10 Podcast Publishers in US' + }, + axes: [ + { + orient: 'left', + id: 'axis-left', + type: 'linear', + label: { + autoLimit: false, + style: { + fill: '#FFFFFF', + fontSize: 16 + }, + formatConfig: { + separator: true + }, + _originStyle: { + fill: '#FFFFFF', + fontSize: 16 + } + }, + domainLine: { + visible: true, + style: { + stroke: '#5f486f' + } + }, + tick: { + visible: true, + style: { + stroke: '#685874' + } + }, + grid: { + visible: false, + style: { + stroke: '#bbbfc4', + pickStrokeBuffer: 2 + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + min: '5000000', + title: { + style: { + background: null, + fill: '#FFFFFF' + }, + text: ['Audience'], + visible: true + } + }, + { + orient: 'bottom', + id: 'axis-bottom', + type: 'band', + label: { + autoLimit: false, + style: { + fill: '#1F2329', + fontSize: 16 + }, + formatConfig: {}, + visible: false, + _originStyle: { + fill: '#1F2329', + fontSize: 16 + } + }, + domainLine: { + visible: true, + style: { + stroke: '#5f486f' + }, + onZero: true + }, + tick: { + visible: false, + style: { + stroke: '#000000' + } + }, + grid: { + visible: false, + style: { + stroke: '#bbbfc4', + pickStrokeBuffer: 2 + } + }, + autoIndent: false, + maxWidth: null, + maxHeight: null, + trimPadding: false, + paddingInner: [0.2, 0], + paddingOuter: [0.2, 0], + title: { + style: { + fill: '#ffffff', + fontSize: 18, + fontStyle: '', + fontWeight: 'normal', + lineWidth: 1, + underline: 0 + }, + space: 30, + text: ['Podcast Publisher'], + visible: true + } + } + ], + data: [ + { + id: '0', + sourceKey: 'value', + values: [ + { + _editor_dimension_field: 'NPR', + _editor_value_field: 25923000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'iHeartRadio', + _editor_value_field: 23672000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'PRX', + _editor_value_field: 11878000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'New York Times', + _editor_value_field: 11878000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'Wondery', + _editor_value_field: 10849000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'Barstool Sports', + _editor_value_field: 9211000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'ESPN', + _editor_value_field: 8054000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'WNTC Studios', + _editor_value_field: 6764000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'NBC News', + _editor_value_field: 6438000, + _editor_type_field: 'value' + }, + { + _editor_dimension_field: 'This American Life/Serial', + _editor_value_field: 5678000, + _editor_type_field: 'value' + } + ], + specField: { + _editor_dimension_field: { + type: 'dimension', + order: 0 + }, + _editor_type_field: { + type: 'series', + order: 0 + }, + _editor_value_field: { + type: 'value', + order: 0 + } + } + } + ] + } + } + } + ] + }; + const story = new Story(dsl, { canvas, width: 1280, height: 720, scaleX: 'auto', scaleY: 'auto' }); + const player = new Player(story); + story.init(player); + player.play(-1); + + return () => { + story.release(); + }; + }, []); + + return
; +}; From 32dbe581b56a6b0044382a82c1980604551cd3ce Mon Sep 17 00:00:00 2001 From: zhouxinyu Date: Thu, 26 Dec 2024 11:35:56 +0800 Subject: [PATCH 2/7] fix: fix issue with external package build error --- .../dynamic-line/dynamic-line-character.ts | 4 ++-- .../dynamic-line/dynamic-line-runtime.ts | 15 +++++---------- .../dynamic-line/dynamic-line-visibility.ts | 2 +- 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/packages/vstory-external/src/character/dynamic-line/dynamic-line-character.ts b/packages/vstory-external/src/character/dynamic-line/dynamic-line-character.ts index 6aee702d..56411cbb 100644 --- a/packages/vstory-external/src/character/dynamic-line/dynamic-line-character.ts +++ b/packages/vstory-external/src/character/dynamic-line/dynamic-line-character.ts @@ -1,14 +1,14 @@ import { CharacterChart } from '@visactor/vstory-core'; import { DYNAMIC_LINE } from './constant'; import type { IDynamicLineChartGraphicAttribute } from './dynamic-line-interface'; -import { DynamicLineRuntime } from './dynamic-line-runtime'; +import { DynamicLineRuntimeInstance } from './dynamic-line-runtime'; export class DynamicLineCharacter extends CharacterChart { static type = DYNAMIC_LINE; protected _initRuntime(): void { super._initRuntime(); - this._runtime.push(new DynamicLineRuntime(this)); + this._runtime.push(DynamicLineRuntimeInstance); } getDefaultAttribute(): Partial { diff --git a/packages/vstory-external/src/character/dynamic-line/dynamic-line-runtime.ts b/packages/vstory-external/src/character/dynamic-line/dynamic-line-runtime.ts index 1a3e4550..f663fdd7 100644 --- a/packages/vstory-external/src/character/dynamic-line/dynamic-line-runtime.ts +++ b/packages/vstory-external/src/character/dynamic-line/dynamic-line-runtime.ts @@ -6,15 +6,10 @@ import type { ICharacterChart } from '@visactor/vstory-core/es/character/chart/i export class DynamicLineRuntime implements IChartCharacterRuntime { type = DYNAMIC_LINE; - protected declare _character: ICharacterChart; - - constructor(character: ICharacterChart) { - this._character = character; - } - - applyConfigToAttribute(): void { - const { bottomRange } = this._character.config.options as any; - const rawAttribute = this._character.getAttribute() as IDynamicLineChartGraphicAttribute; + applyConfigToAttribute(character: ICharacterChart): void { + const rawAttribute = character.getRuntimeConfig().getAttribute() as IDynamicLineChartGraphicAttribute; + const config = character.getRuntimeConfig().config; + const { bottomRange } = config.options as any; const { spec } = rawAttribute; const bottom = spec.scrollBar.find((item: any) => item.orient === 'bottom'); @@ -46,4 +41,4 @@ export class DynamicLineRuntime implements IChartCharacterRuntime { } } -export const DynamicLineRuntimeInstance = new DynamicLineRuntime(null); +export const DynamicLineRuntimeInstance = new DynamicLineRuntime(); diff --git a/packages/vstory-external/src/processor/dynamic-line/dynamic-line-visibility.ts b/packages/vstory-external/src/processor/dynamic-line/dynamic-line-visibility.ts index 7d9cde7c..ca87e53e 100644 --- a/packages/vstory-external/src/processor/dynamic-line/dynamic-line-visibility.ts +++ b/packages/vstory-external/src/processor/dynamic-line/dynamic-line-visibility.ts @@ -27,7 +27,7 @@ export class DynamicLinePlayActionProcessor extends VChartBaseActionProcessor { const { duration, easing } = animation; const delta = end - start; - (instance.getStage().children[0] as any) + (instance.getStage().getChildren()[0] as any) .animate() .to({}, duration, easing) .onFrame((step: any, t: number) => { From e30766235a796877c544f781fafaba16bf2f19a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 26 Dec 2024 03:46:30 +0000 Subject: [PATCH 3/7] build: prelease version 0.0.22 --- .../feat-arrange_2024-12-24-12-59.json | 10 ------ .../feat-arrange_2024-12-23-14-22.json | 10 ------ .../feat-arrange_2024-12-24-12-59.json | 10 ------ .../feat-background_2024-12-23-07-57.json | 10 ------ ...-runtime-series-mark_2024-12-23-08-38.json | 11 ------- .../feat-wh-scale_2024-12-23-09-13.json | 10 ------ .../fix-vchart-blur_2024-12-23-07-02.json | 10 ------ ...rt-hightlight-action_2024-12-16-11-53.json | 10 ------ .../feat-background_2024-12-23-07-57.json | 10 ------ ...-runtime-series-mark_2024-12-23-08-38.json | 11 ------- common/config/rush/pnpm-lock.yaml | 32 +++++++++---------- common/config/rush/version-policies.json | 2 +- docs/package.json | 2 +- packages/vstory-animate/CHANGELOG.json | 12 +++++++ packages/vstory-animate/CHANGELOG.md | 9 +++++- packages/vstory-animate/package.json | 4 +-- packages/vstory-core/CHANGELOG.json | 27 ++++++++++++++++ packages/vstory-core/CHANGELOG.md | 16 +++++++++- packages/vstory-core/package.json | 2 +- packages/vstory-editor/CHANGELOG.json | 6 ++++ packages/vstory-editor/CHANGELOG.md | 7 +++- packages/vstory-editor/package.json | 4 +-- packages/vstory-external/CHANGELOG.json | 6 ++++ packages/vstory-external/CHANGELOG.md | 7 +++- packages/vstory-external/package.json | 8 ++--- packages/vstory-player/CHANGELOG.json | 12 +++++++ packages/vstory-player/CHANGELOG.md | 9 +++++- packages/vstory-player/package.json | 6 ++-- packages/vstory-templates/CHANGELOG.json | 6 ++++ packages/vstory-templates/CHANGELOG.md | 7 +++- packages/vstory-templates/package.json | 4 +-- packages/vstory/CHANGELOG.json | 15 +++++++++ packages/vstory/CHANGELOG.md | 12 ++++++- packages/vstory/package.json | 14 ++++---- tools/bugserver-trigger/package.json | 2 +- 35 files changed, 184 insertions(+), 149 deletions(-) delete mode 100644 common/changes/@visactor/vstory-animate/feat-arrange_2024-12-24-12-59.json delete mode 100644 common/changes/@visactor/vstory-core/feat-arrange_2024-12-23-14-22.json delete mode 100644 common/changes/@visactor/vstory-core/feat-arrange_2024-12-24-12-59.json delete mode 100644 common/changes/@visactor/vstory-core/feat-background_2024-12-23-07-57.json delete mode 100644 common/changes/@visactor/vstory-core/feat-runtime-series-mark_2024-12-23-08-38.json delete mode 100644 common/changes/@visactor/vstory-core/feat-wh-scale_2024-12-23-09-13.json delete mode 100644 common/changes/@visactor/vstory-core/fix-vchart-blur_2024-12-23-07-02.json delete mode 100644 common/changes/@visactor/vstory-player/feat-vchart-hightlight-action_2024-12-16-11-53.json delete mode 100644 common/changes/@visactor/vstory/feat-background_2024-12-23-07-57.json delete mode 100644 common/changes/@visactor/vstory/feat-runtime-series-mark_2024-12-23-08-38.json diff --git a/common/changes/@visactor/vstory-animate/feat-arrange_2024-12-24-12-59.json b/common/changes/@visactor/vstory-animate/feat-arrange_2024-12-24-12-59.json deleted file mode 100644 index 402e53ee..00000000 --- a/common/changes/@visactor/vstory-animate/feat-arrange_2024-12-24-12-59.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory-animate", - "comment": "feat: add arrange demo, support line growPoint animate", - "type": "none" - } - ], - "packageName": "@visactor/vstory-animate" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory-core/feat-arrange_2024-12-23-14-22.json b/common/changes/@visactor/vstory-core/feat-arrange_2024-12-23-14-22.json deleted file mode 100644 index 3f4c396d..00000000 --- a/common/changes/@visactor/vstory-core/feat-arrange_2024-12-23-14-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory-core", - "comment": "feat: enhance vchart animate arrange", - "type": "none" - } - ], - "packageName": "@visactor/vstory-core" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory-core/feat-arrange_2024-12-24-12-59.json b/common/changes/@visactor/vstory-core/feat-arrange_2024-12-24-12-59.json deleted file mode 100644 index 20ed9eed..00000000 --- a/common/changes/@visactor/vstory-core/feat-arrange_2024-12-24-12-59.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory-core", - "comment": "feat: add arrange demo, support line growPoint animate", - "type": "none" - } - ], - "packageName": "@visactor/vstory-core" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory-core/feat-background_2024-12-23-07-57.json b/common/changes/@visactor/vstory-core/feat-background_2024-12-23-07-57.json deleted file mode 100644 index ad5f45f6..00000000 --- a/common/changes/@visactor/vstory-core/feat-background_2024-12-23-07-57.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory-core", - "comment": "fix: fix issue with image background", - "type": "none" - } - ], - "packageName": "@visactor/vstory-core" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory-core/feat-runtime-series-mark_2024-12-23-08-38.json b/common/changes/@visactor/vstory-core/feat-runtime-series-mark_2024-12-23-08-38.json deleted file mode 100644 index 219479b7..00000000 --- a/common/changes/@visactor/vstory-core/feat-runtime-series-mark_2024-12-23-08-38.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "feat: change runtime logic about get the character config\n\n", - "type": "none", - "packageName": "@visactor/vstory-core" - } - ], - "packageName": "@visactor/vstory-core", - "email": "lixuef1313@163.com" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory-core/feat-wh-scale_2024-12-23-09-13.json b/common/changes/@visactor/vstory-core/feat-wh-scale_2024-12-23-09-13.json deleted file mode 100644 index a42214ce..00000000 --- a/common/changes/@visactor/vstory-core/feat-wh-scale_2024-12-23-09-13.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory-core", - "comment": "feat: enhance scaleXY auto to support resize canvas wh", - "type": "none" - } - ], - "packageName": "@visactor/vstory-core" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory-core/fix-vchart-blur_2024-12-23-07-02.json b/common/changes/@visactor/vstory-core/fix-vchart-blur_2024-12-23-07-02.json deleted file mode 100644 index d015930b..00000000 --- a/common/changes/@visactor/vstory-core/fix-vchart-blur_2024-12-23-07-02.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory-core", - "comment": "fix: fix issue with chart blur not clear", - "type": "none" - } - ], - "packageName": "@visactor/vstory-core" -} diff --git a/common/changes/@visactor/vstory-player/feat-vchart-hightlight-action_2024-12-16-11-53.json b/common/changes/@visactor/vstory-player/feat-vchart-hightlight-action_2024-12-16-11-53.json deleted file mode 100644 index cc596e4d..00000000 --- a/common/changes/@visactor/vstory-player/feat-vchart-hightlight-action_2024-12-16-11-53.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory-player", - "comment": "feat: support highlight action for vchart", - "type": "none" - } - ], - "packageName": "@visactor/vstory-player" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory/feat-background_2024-12-23-07-57.json b/common/changes/@visactor/vstory/feat-background_2024-12-23-07-57.json deleted file mode 100644 index 85cb32a6..00000000 --- a/common/changes/@visactor/vstory/feat-background_2024-12-23-07-57.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vstory", - "comment": "fix: fix issue with image background", - "type": "none" - } - ], - "packageName": "@visactor/vstory" -} \ No newline at end of file diff --git a/common/changes/@visactor/vstory/feat-runtime-series-mark_2024-12-23-08-38.json b/common/changes/@visactor/vstory/feat-runtime-series-mark_2024-12-23-08-38.json deleted file mode 100644 index d8999846..00000000 --- a/common/changes/@visactor/vstory/feat-runtime-series-mark_2024-12-23-08-38.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "feat: change runtime logic about get the character config\n\n", - "type": "none", - "packageName": "@visactor/vstory" - } - ], - "packageName": "@visactor/vstory", - "email": "lixuef1313@163.com" -} \ No newline at end of file diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index a7bd71b5..9a728304 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -12,7 +12,7 @@ importers: '@types/markdown-it': ^13.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vstory': workspace:0.0.21 + '@visactor/vstory': workspace:0.0.22 '@visactor/vutils': ~0.18.17 '@vitejs/plugin-react': 3.1.0 axios: ^1.4.0 @@ -71,12 +71,12 @@ importers: '@types/jest': ^26.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vstory-animate': workspace:0.0.21 - '@visactor/vstory-core': workspace:0.0.21 - '@visactor/vstory-editor': workspace:0.0.21 - '@visactor/vstory-external': workspace:0.0.21 - '@visactor/vstory-player': workspace:0.0.21 - '@visactor/vstory-templates': workspace:0.0.21 + '@visactor/vstory-animate': workspace:0.0.22 + '@visactor/vstory-core': workspace:0.0.22 + '@visactor/vstory-editor': workspace:0.0.22 + '@visactor/vstory-external': workspace:0.0.22 + '@visactor/vstory-player': workspace:0.0.22 + '@visactor/vstory-templates': workspace:0.0.22 '@visactor/vutils': ~0.18.17 '@vitejs/plugin-react': 3.1.0 canvas: 2.11.2 @@ -146,7 +146,7 @@ importers: '@visactor/vrender-core': 0.21.5-vstory.2 '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 - '@visactor/vstory-core': workspace:0.0.21 + '@visactor/vstory-core': workspace:0.0.22 '@visactor/vtable': 1.10.1 '@visactor/vutils': ~0.18.17 '@vitejs/plugin-react': 3.1.0 @@ -294,7 +294,7 @@ importers: '@visactor/vrender-core': 0.21.5-vstory.2 '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 - '@visactor/vstory-core': workspace:0.0.21 + '@visactor/vstory-core': workspace:0.0.22 '@visactor/vtable': 1.10.1 '@visactor/vutils': ~0.18.17 '@vitejs/plugin-react': 3.1.0 @@ -369,9 +369,9 @@ importers: '@visactor/vrender-core': 0.21.5-vstory.2 '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 - '@visactor/vstory-animate': workspace:0.0.21 - '@visactor/vstory-core': workspace:0.0.21 - '@visactor/vstory-player': workspace:0.0.21 + '@visactor/vstory-animate': workspace:0.0.22 + '@visactor/vstory-core': workspace:0.0.22 + '@visactor/vstory-player': workspace:0.0.22 '@visactor/vtable': 1.10.1 '@visactor/vutils': ~0.18.17 '@vitejs/plugin-react': 3.1.0 @@ -448,8 +448,8 @@ importers: '@visactor/vrender-core': 0.21.5-vstory.2 '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 - '@visactor/vstory-animate': workspace:0.0.21 - '@visactor/vstory-core': workspace:0.0.21 + '@visactor/vstory-animate': workspace:0.0.22 + '@visactor/vstory-core': workspace:0.0.22 '@visactor/vtable': 1.10.1 '@visactor/vutils': ~0.18.17 '@vitejs/plugin-react': 3.1.0 @@ -525,7 +525,7 @@ importers: '@visactor/vrender-core': 0.21.5-vstory.2 '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 - '@visactor/vstory-core': workspace:0.0.21 + '@visactor/vstory-core': workspace:0.0.22 '@visactor/vtable': 1.10.1 '@visactor/vutils': ~0.18.17 '@vitejs/plugin-react': 3.1.0 @@ -626,7 +626,7 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/node': '*' '@types/node-fetch': 2.6.4 - '@visactor/vstory': workspace:0.0.21 + '@visactor/vstory': workspace:0.0.22 eslint: ~8.18.0 form-data: ~4.0.0 node-fetch: 2.6.6 diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 1ab0e35c..40359d9b 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -1 +1 @@ -[{"definitionName":"lockStepVersion","policyName":"vstoryMain","version":"0.0.21","nextBump":"patch"}] +[{"definitionName":"lockStepVersion","policyName":"vstoryMain","version":"0.0.22","nextBump":"patch"}] diff --git a/docs/package.json b/docs/package.json index 1b4e19ec..a67e815f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@arco-design/web-react": "2.46.1", - "@visactor/vstory": "workspace:0.0.21", + "@visactor/vstory": "workspace:0.0.22", "@visactor/vutils": "~0.18.17", "markdown-it": "^13.0.0", "highlight.js": "^11.8.0", diff --git a/packages/vstory-animate/CHANGELOG.json b/packages/vstory-animate/CHANGELOG.json index 1ccceec2..b0836ab6 100644 --- a/packages/vstory-animate/CHANGELOG.json +++ b/packages/vstory-animate/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@visactor/vstory-animate", "entries": [ + { + "version": "0.0.22", + "tag": "@visactor/vstory-animate_v0.0.22", + "date": "Thu, 26 Dec 2024 03:40:33 GMT", + "comments": { + "none": [ + { + "comment": "feat: add arrange demo, support line growPoint animate" + } + ] + } + }, { "version": "0.0.21", "tag": "@visactor/vstory-animate_v0.0.21", diff --git a/packages/vstory-animate/CHANGELOG.md b/packages/vstory-animate/CHANGELOG.md index 75c10a9e..de82392d 100644 --- a/packages/vstory-animate/CHANGELOG.md +++ b/packages/vstory-animate/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @visactor/vstory-animate -This log was last generated on Wed, 18 Dec 2024 08:25:28 GMT and should not be manually modified. +This log was last generated on Thu, 26 Dec 2024 03:40:33 GMT and should not be manually modified. + +## 0.0.22 +Thu, 26 Dec 2024 03:40:33 GMT + +### Updates + +- feat: add arrange demo, support line growPoint animate ## 0.0.21 Wed, 18 Dec 2024 08:25:28 GMT diff --git a/packages/vstory-animate/package.json b/packages/vstory-animate/package.json index 3230a1fb..09ced83e 100644 --- a/packages/vstory-animate/package.json +++ b/packages/vstory-animate/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vstory-animate", - "version": "0.0.21", + "version": "0.0.22", "description": "", "sideEffects": true, "main": "cjs/index.js", @@ -34,7 +34,7 @@ "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", "@visactor/vscale": "~0.18.17", - "@visactor/vstory-core": "workspace:0.0.21" + "@visactor/vstory-core": "workspace:0.0.22" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vstory-core/CHANGELOG.json b/packages/vstory-core/CHANGELOG.json index 5ed3aba4..a17d4302 100644 --- a/packages/vstory-core/CHANGELOG.json +++ b/packages/vstory-core/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@visactor/vstory-core", "entries": [ + { + "version": "0.0.22", + "tag": "@visactor/vstory-core_v0.0.22", + "date": "Thu, 26 Dec 2024 03:40:33 GMT", + "comments": { + "none": [ + { + "comment": "feat: enhance vchart animate arrange" + }, + { + "comment": "feat: add arrange demo, support line growPoint animate" + }, + { + "comment": "fix: fix issue with image background" + }, + { + "comment": "feat: change runtime logic about get the character config\n\n" + }, + { + "comment": "feat: enhance scaleXY auto to support resize canvas wh" + }, + { + "comment": "fix: fix issue with chart blur not clear" + } + ] + } + }, { "version": "0.0.21", "tag": "@visactor/vstory-core_v0.0.21", diff --git a/packages/vstory-core/CHANGELOG.md b/packages/vstory-core/CHANGELOG.md index 4c8e65be..e443feb0 100644 --- a/packages/vstory-core/CHANGELOG.md +++ b/packages/vstory-core/CHANGELOG.md @@ -1,6 +1,20 @@ # Change Log - @visactor/vstory-core -This log was last generated on Wed, 18 Dec 2024 08:25:28 GMT and should not be manually modified. +This log was last generated on Thu, 26 Dec 2024 03:40:33 GMT and should not be manually modified. + +## 0.0.22 +Thu, 26 Dec 2024 03:40:33 GMT + +### Updates + +- feat: enhance vchart animate arrange +- feat: add arrange demo, support line growPoint animate +- fix: fix issue with image background +- feat: change runtime logic about get the character config + + +- feat: enhance scaleXY auto to support resize canvas wh +- fix: fix issue with chart blur not clear ## 0.0.21 Wed, 18 Dec 2024 08:25:28 GMT diff --git a/packages/vstory-core/package.json b/packages/vstory-core/package.json index 73903daa..3f5b7a0b 100644 --- a/packages/vstory-core/package.json +++ b/packages/vstory-core/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vstory-core", - "version": "0.0.21", + "version": "0.0.22", "description": "", "sideEffects": true, "main": "cjs/index.js", diff --git a/packages/vstory-editor/CHANGELOG.json b/packages/vstory-editor/CHANGELOG.json index 172fa478..889d45e3 100644 --- a/packages/vstory-editor/CHANGELOG.json +++ b/packages/vstory-editor/CHANGELOG.json @@ -1,6 +1,12 @@ { "name": "@visactor/vstory-editor", "entries": [ + { + "version": "0.0.22", + "tag": "@visactor/vstory-editor_v0.0.22", + "date": "Thu, 26 Dec 2024 03:40:33 GMT", + "comments": {} + }, { "version": "0.0.21", "tag": "@visactor/vstory-editor_v0.0.21", diff --git a/packages/vstory-editor/CHANGELOG.md b/packages/vstory-editor/CHANGELOG.md index d354150d..d87f5834 100644 --- a/packages/vstory-editor/CHANGELOG.md +++ b/packages/vstory-editor/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @visactor/vstory-editor -This log was last generated on Wed, 18 Dec 2024 08:25:28 GMT and should not be manually modified. +This log was last generated on Thu, 26 Dec 2024 03:40:33 GMT and should not be manually modified. + +## 0.0.22 +Thu, 26 Dec 2024 03:40:33 GMT + +_Version update only_ ## 0.0.21 Wed, 18 Dec 2024 08:25:28 GMT diff --git a/packages/vstory-editor/package.json b/packages/vstory-editor/package.json index 682b984a..7fc71e10 100644 --- a/packages/vstory-editor/package.json +++ b/packages/vstory-editor/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vstory-editor", - "version": "0.0.21", + "version": "0.0.22", "description": "", "sideEffects": true, "main": "cjs/index.js", @@ -34,7 +34,7 @@ "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", "@visactor/vscale": "~0.18.17", - "@visactor/vstory-core": "workspace:0.0.21" + "@visactor/vstory-core": "workspace:0.0.22" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vstory-external/CHANGELOG.json b/packages/vstory-external/CHANGELOG.json index 75481848..60c28365 100644 --- a/packages/vstory-external/CHANGELOG.json +++ b/packages/vstory-external/CHANGELOG.json @@ -1,6 +1,12 @@ { "name": "@visactor/vstory-external", "entries": [ + { + "version": "0.0.22", + "tag": "@visactor/vstory-external_v0.0.22", + "date": "Thu, 26 Dec 2024 03:40:33 GMT", + "comments": {} + }, { "version": "0.0.21", "tag": "@visactor/vstory-external_v0.0.21", diff --git a/packages/vstory-external/CHANGELOG.md b/packages/vstory-external/CHANGELOG.md index beb4cdc9..eae9072a 100644 --- a/packages/vstory-external/CHANGELOG.md +++ b/packages/vstory-external/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @visactor/vstory-external -This log was last generated on Wed, 18 Dec 2024 08:25:28 GMT and should not be manually modified. +This log was last generated on Thu, 26 Dec 2024 03:40:33 GMT and should not be manually modified. + +## 0.0.22 +Thu, 26 Dec 2024 03:40:33 GMT + +_Version update only_ ## 0.0.21 Wed, 18 Dec 2024 08:25:28 GMT diff --git a/packages/vstory-external/package.json b/packages/vstory-external/package.json index dea54c78..49834eba 100644 --- a/packages/vstory-external/package.json +++ b/packages/vstory-external/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vstory-external", - "version": "0.0.21", + "version": "0.0.22", "description": "", "sideEffects": true, "main": "cjs/index.js", @@ -34,9 +34,9 @@ "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", "@visactor/vscale": "~0.18.17", - "@visactor/vstory-core": "workspace:0.0.21", - "@visactor/vstory-animate": "workspace:0.0.21", - "@visactor/vstory-player": "workspace:0.0.21" + "@visactor/vstory-core": "workspace:0.0.22", + "@visactor/vstory-animate": "workspace:0.0.22", + "@visactor/vstory-player": "workspace:0.0.22" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vstory-player/CHANGELOG.json b/packages/vstory-player/CHANGELOG.json index d1e7a84b..0d0039cb 100644 --- a/packages/vstory-player/CHANGELOG.json +++ b/packages/vstory-player/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@visactor/vstory-player", "entries": [ + { + "version": "0.0.22", + "tag": "@visactor/vstory-player_v0.0.22", + "date": "Thu, 26 Dec 2024 03:40:33 GMT", + "comments": { + "none": [ + { + "comment": "feat: support highlight action for vchart" + } + ] + } + }, { "version": "0.0.21", "tag": "@visactor/vstory-player_v0.0.21", diff --git a/packages/vstory-player/CHANGELOG.md b/packages/vstory-player/CHANGELOG.md index a5682c78..a3668fe4 100644 --- a/packages/vstory-player/CHANGELOG.md +++ b/packages/vstory-player/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @visactor/vstory-player -This log was last generated on Wed, 18 Dec 2024 08:25:28 GMT and should not be manually modified. +This log was last generated on Thu, 26 Dec 2024 03:40:33 GMT and should not be manually modified. + +## 0.0.22 +Thu, 26 Dec 2024 03:40:33 GMT + +### Updates + +- feat: support highlight action for vchart ## 0.0.21 Wed, 18 Dec 2024 08:25:28 GMT diff --git a/packages/vstory-player/package.json b/packages/vstory-player/package.json index e1946b0e..53a70185 100644 --- a/packages/vstory-player/package.json +++ b/packages/vstory-player/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vstory-player", - "version": "0.0.21", + "version": "0.0.22", "description": "", "sideEffects": true, "main": "cjs/index.js", @@ -34,8 +34,8 @@ "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", "@visactor/vscale": "~0.18.17", - "@visactor/vstory-core": "workspace:0.0.21", - "@visactor/vstory-animate": "workspace:0.0.21" + "@visactor/vstory-core": "workspace:0.0.22", + "@visactor/vstory-animate": "workspace:0.0.22" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vstory-templates/CHANGELOG.json b/packages/vstory-templates/CHANGELOG.json index 520557bd..c0ca9aec 100644 --- a/packages/vstory-templates/CHANGELOG.json +++ b/packages/vstory-templates/CHANGELOG.json @@ -1,6 +1,12 @@ { "name": "@visactor/vstory-templates", "entries": [ + { + "version": "0.0.22", + "tag": "@visactor/vstory-templates_v0.0.22", + "date": "Thu, 26 Dec 2024 03:40:33 GMT", + "comments": {} + }, { "version": "0.0.21", "tag": "@visactor/vstory-templates_v0.0.21", diff --git a/packages/vstory-templates/CHANGELOG.md b/packages/vstory-templates/CHANGELOG.md index 30c123db..3afbba1d 100644 --- a/packages/vstory-templates/CHANGELOG.md +++ b/packages/vstory-templates/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @visactor/vstory-templates -This log was last generated on Wed, 18 Dec 2024 08:25:28 GMT and should not be manually modified. +This log was last generated on Thu, 26 Dec 2024 03:40:33 GMT and should not be manually modified. + +## 0.0.22 +Thu, 26 Dec 2024 03:40:33 GMT + +_Version update only_ ## 0.0.21 Wed, 18 Dec 2024 08:25:28 GMT diff --git a/packages/vstory-templates/package.json b/packages/vstory-templates/package.json index 47bd6a5a..c2963f92 100644 --- a/packages/vstory-templates/package.json +++ b/packages/vstory-templates/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vstory-templates", - "version": "0.0.21", + "version": "0.0.22", "description": "", "sideEffects": true, "main": "cjs/index.js", @@ -34,7 +34,7 @@ "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", "@visactor/vscale": "~0.18.17", - "@visactor/vstory-core": "workspace:0.0.21" + "@visactor/vstory-core": "workspace:0.0.22" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vstory/CHANGELOG.json b/packages/vstory/CHANGELOG.json index b5293299..d0734072 100644 --- a/packages/vstory/CHANGELOG.json +++ b/packages/vstory/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@visactor/vstory", "entries": [ + { + "version": "0.0.22", + "tag": "@visactor/vstory_v0.0.22", + "date": "Thu, 26 Dec 2024 03:40:33 GMT", + "comments": { + "none": [ + { + "comment": "fix: fix issue with image background" + }, + { + "comment": "feat: change runtime logic about get the character config\n\n" + } + ] + } + }, { "version": "0.0.21", "tag": "@visactor/vstory_v0.0.21", diff --git a/packages/vstory/CHANGELOG.md b/packages/vstory/CHANGELOG.md index 8645c75b..9eaccb91 100644 --- a/packages/vstory/CHANGELOG.md +++ b/packages/vstory/CHANGELOG.md @@ -1,6 +1,16 @@ # Change Log - @visactor/vstory -This log was last generated on Wed, 18 Dec 2024 08:25:28 GMT and should not be manually modified. +This log was last generated on Thu, 26 Dec 2024 03:40:33 GMT and should not be manually modified. + +## 0.0.22 +Thu, 26 Dec 2024 03:40:33 GMT + +### Updates + +- fix: fix issue with image background +- feat: change runtime logic about get the character config + + ## 0.0.21 Wed, 18 Dec 2024 08:25:28 GMT diff --git a/packages/vstory/package.json b/packages/vstory/package.json index c3ab154b..382aea0d 100644 --- a/packages/vstory/package.json +++ b/packages/vstory/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vstory", - "version": "0.0.21", + "version": "0.0.22", "description": "", "sideEffects": true, "main": "cjs/index.js", @@ -24,12 +24,12 @@ "test-watch": "DEBUG_MODE=1 jest --watch" }, "dependencies": { - "@visactor/vstory-core": "workspace:0.0.21", - "@visactor/vstory-animate": "workspace:0.0.21", - "@visactor/vstory-editor": "workspace:0.0.21", - "@visactor/vstory-player": "workspace:0.0.21", - "@visactor/vstory-templates": "workspace:0.0.21", - "@visactor/vstory-external": "workspace:0.0.21" + "@visactor/vstory-core": "workspace:0.0.22", + "@visactor/vstory-animate": "workspace:0.0.22", + "@visactor/vstory-editor": "workspace:0.0.22", + "@visactor/vstory-player": "workspace:0.0.22", + "@visactor/vstory-templates": "workspace:0.0.22", + "@visactor/vstory-external": "workspace:0.0.22" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/tools/bugserver-trigger/package.json b/tools/bugserver-trigger/package.json index a111d084..c1ab0735 100644 --- a/tools/bugserver-trigger/package.json +++ b/tools/bugserver-trigger/package.json @@ -8,7 +8,7 @@ "ci": "ts-node --transpileOnly --skipProject ./scripts/trigger-test.ts" }, "dependencies": { - "@visactor/vstory": "workspace:0.0.21" + "@visactor/vstory": "workspace:0.0.22" }, "devDependencies": { "@rushstack/eslint-patch": "~1.1.4", From 643c858553a28438ff4c61f21b0086c206cd48ab Mon Sep 17 00:00:00 2001 From: zhouxinyu Date: Thu, 26 Dec 2024 12:54:28 +0800 Subject: [PATCH 4/7] fix: fix issue with cover url --- docs/assets/examples/en/infographic/market-share-area-chart.md | 2 +- docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md | 2 +- docs/assets/examples/zh/infographic/market-share-area-chart.md | 2 +- docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/assets/examples/en/infographic/market-share-area-chart.md b/docs/assets/examples/en/infographic/market-share-area-chart.md index 8a01a59b..42006d65 100644 --- a/docs/assets/examples/en/infographic/market-share-area-chart.md +++ b/docs/assets/examples/en/infographic/market-share-area-chart.md @@ -4,7 +4,7 @@ group: infographic title: Market Share keywords: templates, visualization, area, left-right order: 1-0 -cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/1.png +cover: https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/vstory-infographic/preview/1.png --- # Venn Chart Infographic diff --git a/docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md b/docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md index 6a687fb3..2f9e8e34 100644 --- a/docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md +++ b/docs/assets/examples/en/infographic/top10-podcasts-bar-chart.md @@ -4,7 +4,7 @@ group: infographic title: Top 10 Podcasts keywords: templates, visualization, bar, left-right order: 1-0 -cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/chart.png +cover: https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/vstory-infographic/preview/chart.png --- # Venn Chart Infographic diff --git a/docs/assets/examples/zh/infographic/market-share-area-chart.md b/docs/assets/examples/zh/infographic/market-share-area-chart.md index c4388108..8e6f2b13 100644 --- a/docs/assets/examples/zh/infographic/market-share-area-chart.md +++ b/docs/assets/examples/zh/infographic/market-share-area-chart.md @@ -4,7 +4,7 @@ group: infographic title: Market Share keywords: templates, visualization, area, left-right order: 1-0 -cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/1.png +cover: https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/vstory-infographic/preview/1.png --- # 信息图模板-韦恩图 diff --git a/docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md b/docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md index df902340..b8ad62f4 100644 --- a/docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md +++ b/docs/assets/examples/zh/infographic/top10-podcasts-bar-chart.md @@ -4,7 +4,7 @@ group: infographic title: Top 10 Podcasts keywords: templates, visualization, bar, left-right order: 1-0 -cover: https://tosv.byted.org/obj/bit-cloud/vstory-infographic/preview/chart.png +cover: https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/vstory-infographic/preview/chart.png --- # 信息图模板-韦恩图 From 2b60e5995d46270262c8a01c342ad40c53434cc4 Mon Sep 17 00:00:00 2001 From: neuqzxy Date: Thu, 26 Dec 2024 04:57:41 +0000 Subject: [PATCH 5/7] docs: generate changelog of release v0.0.21 --- docs/assets/changelog/en/changelog.md | 11 +++++++++++ docs/assets/changelog/zh/changelog.md | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/docs/assets/changelog/en/changelog.md b/docs/assets/changelog/en/changelog.md index dcdc6968..aa36bccd 100644 --- a/docs/assets/changelog/en/changelog.md +++ b/docs/assets/changelog/en/changelog.md @@ -1,3 +1,14 @@ +# v0.0.21 + +2024-12-26 + + +**🆕 New feature** + +- **@visactor/vstory-core**: support `auto` for scaleX/scaleY in initParams + +[more detail about v0.0.21](https://github.com/VisActor/VStory/releases/tag/v0.0.21) + # v0.0.20 2024-12-13 diff --git a/docs/assets/changelog/zh/changelog.md b/docs/assets/changelog/zh/changelog.md index bfb89d5c..fb4b2064 100644 --- a/docs/assets/changelog/zh/changelog.md +++ b/docs/assets/changelog/zh/changelog.md @@ -1,3 +1,14 @@ +# v0.0.21 + +2024-12-26 + + +**🆕 新增功能** + +- **@visactor/vstory-core**: support `auto` for scaleX/scaleY in initParams + +[更多详情请查看 v0.0.21](https://github.com/VisActor/VStory/releases/tag/v0.0.21) + # v0.0.20 2024-12-13 From 97d2ad62b54da28a818593a3420400e327a99994 Mon Sep 17 00:00:00 2001 From: neuqzxy Date: Thu, 26 Dec 2024 04:58:08 +0000 Subject: [PATCH 6/7] docs: generate changelog of release v0.0.22 --- docs/assets/changelog/en/changelog.md | 25 +++++++++++++++++++++++++ docs/assets/changelog/zh/changelog.md | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/docs/assets/changelog/en/changelog.md b/docs/assets/changelog/en/changelog.md index dcdc6968..d52d3f51 100644 --- a/docs/assets/changelog/en/changelog.md +++ b/docs/assets/changelog/en/changelog.md @@ -1,3 +1,28 @@ +# v0.0.22 + +2024-12-26 + + +**🆕 New feature** + +- **@visactor/vstory**: change runtime logic about get the character config +- **@visactor/vstory-core**: enhance vchart animate arrange +- **@visactor/vstory-core**: add arrange demo, support line growPoint animate +- **@visactor/vstory-core**: change runtime logic about get the character config +- **@visactor/vstory-core**: enhance scaleXY auto to support resize canvas wh +- **@visactor/vstory-animate**: add arrange demo, support line growPoint animate +- **@visactor/vstory-player**: support highlight action for vchart + +**🐛 Bug fix** + +- **@visactor/vstory**: fix issue with image background +- **@visactor/vstory-core**: fix issue with image background +- **@visactor/vstory-core**: fix issue with chart blur not clear + + + +[more detail about v0.0.22](https://github.com/VisActor/VStory/releases/tag/v0.0.22) + # v0.0.20 2024-12-13 diff --git a/docs/assets/changelog/zh/changelog.md b/docs/assets/changelog/zh/changelog.md index bfb89d5c..46d3d333 100644 --- a/docs/assets/changelog/zh/changelog.md +++ b/docs/assets/changelog/zh/changelog.md @@ -1,3 +1,28 @@ +# v0.0.22 + +2024-12-26 + + +**🆕 新增功能** + +- **@visactor/vstory**: change runtime logic about get the character config +- **@visactor/vstory-core**: enhance vchart animate arrange +- **@visactor/vstory-core**: add arrange demo, support line growPoint animate +- **@visactor/vstory-core**: change runtime logic about get the character config +- **@visactor/vstory-core**: enhance scaleXY auto to support resize canvas wh +- **@visactor/vstory-animate**: add arrange demo, support line growPoint animate +- **@visactor/vstory-player**: support highlight action for vchart + +**🐛 功能修复** + +- **@visactor/vstory**: fix issue with image background +- **@visactor/vstory-core**: fix issue with image background +- **@visactor/vstory-core**: fix issue with chart blur not clear + + + +[更多详情请查看 v0.0.22](https://github.com/VisActor/VStory/releases/tag/v0.0.22) + # v0.0.20 2024-12-13 From 629ccc0670007f6d047be59229c453b32d07e9e3 Mon Sep 17 00:00:00 2001 From: zhouxinyu Date: Thu, 26 Dec 2024 16:54:35 +0800 Subject: [PATCH 7/7] feat: update vchart vrender version --- common/config/rush/pnpm-lock.yaml | 272 ++++++++++++------------- packages/vstory-animate/package.json | 10 +- packages/vstory-core/package.json | 10 +- packages/vstory-editor/package.json | 10 +- packages/vstory-external/package.json | 10 +- packages/vstory-player/package.json | 10 +- packages/vstory-templates/package.json | 10 +- 7 files changed, 166 insertions(+), 166 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index f36cadd3..6c1dac3d 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -138,13 +138,13 @@ importers: '@types/jest': ^26.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': ~0.18.17 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 '@visactor/vstory-core': workspace:0.0.21 '@visactor/vtable': 1.14.1 @@ -163,13 +163,13 @@ importers: typescript: 4.9.5 vite: 3.2.6 dependencies: - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': 0.18.18 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.18.18 '@visactor/vstory-core': link:../vstory-core '@visactor/vtable': 1.14.1 @@ -213,13 +213,13 @@ importers: '@types/jest': ^26.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': ~0.18.17 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 '@visactor/vtable': 1.14.1 '@visactor/vutils': ~0.18.17 @@ -237,13 +237,13 @@ importers: typescript: 4.9.5 vite: 3.2.6 dependencies: - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': 0.18.18 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.18.18 '@visactor/vtable': 1.14.1 '@visactor/vutils': 0.18.18 @@ -286,13 +286,13 @@ importers: '@types/jest': ^26.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': ~0.18.17 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 '@visactor/vstory-core': workspace:0.0.21 '@visactor/vtable': 1.14.1 @@ -311,13 +311,13 @@ importers: typescript: 4.9.5 vite: 3.2.6 dependencies: - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': 0.18.18 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.18.18 '@visactor/vstory-core': link:../vstory-core '@visactor/vtable': 1.14.1 @@ -361,13 +361,13 @@ importers: '@types/jest': ^26.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': ~0.18.17 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 '@visactor/vstory-animate': workspace:0.0.21 '@visactor/vstory-core': workspace:0.0.21 @@ -388,13 +388,13 @@ importers: typescript: 4.9.5 vite: 3.2.6 dependencies: - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': 0.18.18 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.18.18 '@visactor/vstory-animate': link:../vstory-animate '@visactor/vstory-core': link:../vstory-core @@ -440,13 +440,13 @@ importers: '@types/jest': ^26.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': ~0.18.17 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 '@visactor/vstory-animate': workspace:0.0.21 '@visactor/vstory-core': workspace:0.0.21 @@ -466,13 +466,13 @@ importers: typescript: 4.9.5 vite: 3.2.6 dependencies: - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': 0.18.18 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.18.18 '@visactor/vstory-animate': link:../vstory-animate '@visactor/vstory-core': link:../vstory-core @@ -517,13 +517,13 @@ importers: '@types/jest': ^26.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': ~0.18.17 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': ~0.18.17 '@visactor/vstory-core': workspace:0.0.21 '@visactor/vtable': 1.14.1 @@ -542,13 +542,13 @@ importers: typescript: 4.9.5 vite: 3.2.6 dependencies: - '@visactor/vchart': 1.13.1-vstory.3 + '@visactor/vchart': 1.13.2-vstory.2 '@visactor/vchart-extension': 0.0.3-vstory.2 '@visactor/vdataset': 0.18.18 - '@visactor/vrender': 0.21.2-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender': 0.21.5-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.18.18 '@visactor/vstory-core': link:../vstory-core '@visactor/vtable': 1.14.1 @@ -3720,24 +3720,24 @@ packages: '@visactor/vutils': 0.18.18 dev: false - /@visactor/vchart/1.13.1-vstory.3: - resolution: {integrity: sha512-15IDx6VH1W9PHCUbQiYEZSiS5kIIP0VxgBCV65A7pGj61+QXCJBfTpjQmxthrfeUo5dQa4FAy3TY8tlw/7161g==} + /@visactor/vchart/1.13.2-vstory.2: + resolution: {integrity: sha512-6rpx6kSeYdQ2W5cz4BAStgVuv9bQErdMjKnmVSP7ipp3syYE53oT9r3aXSpZmqthpPXIRbCwOuT6RUhs44Q0MA==} dependencies: '@visactor/vdataset': 0.19.2 - '@visactor/vgrammar-core': 0.15.1-vstory.3 - '@visactor/vgrammar-hierarchy': 0.15.1-vstory.3 - '@visactor/vgrammar-projection': 0.15.1-vstory.3 - '@visactor/vgrammar-sankey': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 - '@visactor/vgrammar-venn': 0.15.1-vstory.3 - '@visactor/vgrammar-wordcloud': 0.15.1-vstory.3 - '@visactor/vgrammar-wordcloud-shape': 0.15.1-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vgrammar-core': 0.15.2-vstory.2 + '@visactor/vgrammar-hierarchy': 0.15.2-vstory.2 + '@visactor/vgrammar-projection': 0.15.2-vstory.2 + '@visactor/vgrammar-sankey': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 + '@visactor/vgrammar-venn': 0.15.2-vstory.2 + '@visactor/vgrammar-wordcloud': 0.15.2-vstory.2 + '@visactor/vgrammar-wordcloud-shape': 0.15.2-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.19.2 '@visactor/vutils': 0.19.2 - '@visactor/vutils-extension': 1.13.1-vstory.3 + '@visactor/vutils-extension': 1.13.2-vstory.2 dev: false /@visactor/vdataset/0.18.18: @@ -3784,90 +3784,90 @@ packages: topojson-client: 3.1.0 dev: false - /@visactor/vgrammar-coordinate/0.15.1-vstory.3: - resolution: {integrity: sha512-VLBaOytdBLBfvXZRewWme+AYMKNOpOrri/citrf5oHhSf3/z3raMkpzYh1nNCaSu2jty9Yz1Ax9jNaIDQOTVqA==} + /@visactor/vgrammar-coordinate/0.15.2-vstory.2: + resolution: {integrity: sha512-phVtkBEBsr5su5kIiFINXBMDl2XgcLWKEu9m3cihu32YJoiHqGlZTGqrCzgYY46bbj/MubmU06FB2xAGWxDhXg==} dependencies: - '@visactor/vgrammar-util': 0.15.1-vstory.3 + '@visactor/vgrammar-util': 0.15.2-vstory.2 '@visactor/vutils': 0.19.2 dev: false - /@visactor/vgrammar-core/0.15.1-vstory.3: - resolution: {integrity: sha512-7NLbQFEbgGILg4xi1htOyQXoImkdfMcFsv47RvXeYK1YBa3+3gG3FMHi8ppS49uNpQxj3rVdTORTmG7LA1e3YQ==} + /@visactor/vgrammar-core/0.15.2-vstory.2: + resolution: {integrity: sha512-FYrlvdkdGrCgCIpwzULx3YcxJl1yxUQWNcSWWdbDVPf4WYUNYw7y9LvDRAVbTn20+1aFH30aEuJMxldSDmZUaw==} dependencies: '@visactor/vdataset': 0.19.2 - '@visactor/vgrammar-coordinate': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 - '@visactor/vrender-components': 0.21.2-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vgrammar-coordinate': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 + '@visactor/vrender-components': 0.21.5-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.19.2 '@visactor/vutils': 0.19.2 dev: false - /@visactor/vgrammar-hierarchy/0.15.1-vstory.3: - resolution: {integrity: sha512-X59lGl3kedC4gjIOsyLaJggpkQcNmyRqTSnOmZJYsdzKYU8tHbEYE9q9fXT00+McI2K0pM7L4Fy/XuyeU1XmGQ==} + /@visactor/vgrammar-hierarchy/0.15.2-vstory.2: + resolution: {integrity: sha512-dYsJhq5+ZbcjkH9u37qdfNlByjgDEHxqPuK1ix4ChszC66MfZonT/hPBEUn/ayRuYZkoUeI6KJ93Rp8uyaWlDw==} dependencies: - '@visactor/vgrammar-core': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vgrammar-core': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vutils': 0.19.2 dev: false - /@visactor/vgrammar-projection/0.15.1-vstory.3: - resolution: {integrity: sha512-LxJMb2Ak7Ev1w3FNI/yQzbacrmkfx8oiv2K+EaWrFgn+/IXiZRZ1g8FTR0LL4PL/1b2KoBZIDbRg/9w042MYGQ==} + /@visactor/vgrammar-projection/0.15.2-vstory.2: + resolution: {integrity: sha512-F8213dlFapGY8/rhGfGzHGRFrxlPuWYVGKx06rHNlJG+tD2Kf7WlVMGDbkEzFsKIDT+vpFko84HmSsjldnq04Q==} dependencies: - '@visactor/vgrammar-core': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 + '@visactor/vgrammar-core': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 '@visactor/vutils': 0.19.2 d3-geo: 1.12.1 dev: false - /@visactor/vgrammar-sankey/0.15.1-vstory.3: - resolution: {integrity: sha512-Yfm9jK1xApxduWKE/Y1Pn1Yj64NPuOuq5gCk/dMq+xej83TH+H3nzXqpbspQoUz2+e8SHvwS62Uqf5l+I1mq7Q==} + /@visactor/vgrammar-sankey/0.15.2-vstory.2: + resolution: {integrity: sha512-CHd27lZuhHnKPlRMZdONH2o6/y/5e8OqPqPrKs+I9XKrCCWrIX1VU6HyGRFHKg6+YEVkm0/Qyk2CvEvNEdvDhw==} dependencies: - '@visactor/vgrammar-core': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vgrammar-core': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vutils': 0.19.2 dev: false - /@visactor/vgrammar-util/0.15.1-vstory.3: - resolution: {integrity: sha512-fods7zFVNiGZiQeTJO1uIuZQq2QHy9ea33b44r70u3SCjGtKWRinISZqrzazeb5YHWLE0+XXU4/1MGPSqKlMmg==} + /@visactor/vgrammar-util/0.15.2-vstory.2: + resolution: {integrity: sha512-DVgHGT2qY9ryjmDBLH5baXXkcRu1BItdvRWTHNXo2QjWHMdi2qWnSWdhsSTu68oRCCTS34hDyphuTLlgL32glA==} dependencies: - '@visactor/vrender-core': 0.21.2-vstory.3 + '@visactor/vrender-core': 0.21.5-vstory.2 '@visactor/vutils': 0.19.2 dev: false - /@visactor/vgrammar-venn/0.15.1-vstory.3: - resolution: {integrity: sha512-6oHKsFt9XWc8XHRzAojvrO6y4TwNop6tgtEhZtlhbyZ2Flv47bIUl1CUqiBFQ36XSWY6nt4Z23ufN8l38buptg==} + /@visactor/vgrammar-venn/0.15.2-vstory.2: + resolution: {integrity: sha512-ODSa3KzTcK9OXX9ZShDlGeGsj+wmMAVjg2aNy2rEN7WJMkajysf+fI7q5/YfboQ22H1kF4/3aWZAUqQpyYhWUA==} dependencies: - '@visactor/vgrammar-core': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vgrammar-core': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vutils': 0.19.2 dev: false - /@visactor/vgrammar-wordcloud-shape/0.15.1-vstory.3: - resolution: {integrity: sha512-b8cignTZN10WxiRH3zlucZjOOzN8mYSqTJm2WCBsmVF++qIgFYYr6sSAdyNILxdC8F2hiIwUHC0SJ3+vGE344Q==} + /@visactor/vgrammar-wordcloud-shape/0.15.2-vstory.2: + resolution: {integrity: sha512-wr2G9sL9aVJuTWthS1VDmALscGoiBJTibJ/AVdZVTbSw25ZaIFUb9Ey8Df/i4BRJp7f8Aa08d1K4lRBozezxbw==} dependencies: - '@visactor/vgrammar-core': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vgrammar-core': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.19.2 '@visactor/vutils': 0.19.2 dev: false - /@visactor/vgrammar-wordcloud/0.15.1-vstory.3: - resolution: {integrity: sha512-UVd0Hh65FTC3Yhy5Btp2lF1QfY6A+ehqf7NMQmcC3nu4ORcx2YoQJAeFYE+7BmUX9XCEAfKkS6mPKWRe9cFU5g==} + /@visactor/vgrammar-wordcloud/0.15.2-vstory.2: + resolution: {integrity: sha512-fHLi8ziX7zHT1XBTWt0E3dg1ZVCs8oygKOwvPtYKvqk1LGS+MvrT82wkXpJxYe7YHc6D7lWlaVB5LnnTGRTykw==} dependencies: - '@visactor/vgrammar-core': 0.15.1-vstory.3 - '@visactor/vgrammar-util': 0.15.1-vstory.3 - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vgrammar-core': 0.15.2-vstory.2 + '@visactor/vgrammar-util': 0.15.2-vstory.2 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vutils': 0.19.2 dev: false @@ -3880,11 +3880,11 @@ packages: '@visactor/vutils': 0.19.2 dev: false - /@visactor/vrender-components/0.21.2-vstory.3: - resolution: {integrity: sha512-9tpEUsTedESg6h5XSAOFcmqxP/sMbkxIqPmWwZVJreoFxUp+qjMSuUMCSpd1Bvdc3+LiMmI5hR+JTK0jpzDCdg==} + /@visactor/vrender-components/0.21.5-vstory.2: + resolution: {integrity: sha512-K//FVgG+ONqGNb/8cS7EJXfqGtqrS5D9EtKtKOZV4S2ALKcfx3WxAK3zhq11nClrSZSNG540mBcjynj5+yV8mA==} dependencies: - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 '@visactor/vscale': 0.19.2 '@visactor/vutils': 0.19.2 dev: false @@ -3903,8 +3903,8 @@ packages: color-convert: 2.0.1 dev: false - /@visactor/vrender-core/0.21.2-vstory.3: - resolution: {integrity: sha512-YMR/fExUZgr6/E7e0V9OzvoJVd9A6rfQLtcoXI1QL8SfO19+lR9tRpRq20qQoRgfV5A+rxel/dPEHrvxclq49g==} + /@visactor/vrender-core/0.21.5-vstory.2: + resolution: {integrity: sha512-yGnXIQ0PSKHH9yVTCFztmaqoJVlfFBNAzdwv/JyxhFZNM3sZxJaiUK4z0aCbRyrGqoqyM9ucQTR4rtS+B8o9Bg==} dependencies: '@visactor/vutils': 0.19.2 color-convert: 2.0.1 @@ -3929,21 +3929,21 @@ packages: roughjs: 4.5.2 dev: false - /@visactor/vrender-kits/0.21.2-vstory.3: - resolution: {integrity: sha512-mWYClwyIWOMzMLJFVNJrKrks5fr3yeNrNEF0twRyOaDtHRxKsJBSyeshum2MZJd3YA0fFiYvTEX6BscfthRhAg==} + /@visactor/vrender-kits/0.21.5-vstory.2: + resolution: {integrity: sha512-XCXCoZfare49zEqlReN1iaHFFc0VRErQTCkSezAmB/mQ+TFE9y5BJJWAj390n4K74yjIG7j/5403wjaK3CdLGw==} dependencies: '@resvg/resvg-js': 2.4.1 - '@visactor/vrender-core': 0.21.2-vstory.3 + '@visactor/vrender-core': 0.21.5-vstory.2 '@visactor/vutils': 0.19.2 lottie-web: 5.12.2 roughjs: 4.5.2 dev: false - /@visactor/vrender/0.21.2-vstory.3: - resolution: {integrity: sha512-my+sLFDzBFGojPrgvktjunNEzqfZXsQEwlx+Srn5d7CLjQbrpB46JTwOu56I1ORKGe314hrsynbfGAuWyM0lCg==} + /@visactor/vrender/0.21.5-vstory.2: + resolution: {integrity: sha512-im3v/OjS1M6klG8mDemIyjt6JpxvX8Gkj2/aHVo/Hsrohy7v1h4AzA4GR5IxIRlYyX7rpmmIVBQFUBFXKikGOw==} dependencies: - '@visactor/vrender-core': 0.21.2-vstory.3 - '@visactor/vrender-kits': 0.21.2-vstory.3 + '@visactor/vrender-core': 0.21.5-vstory.2 + '@visactor/vrender-kits': 0.21.5-vstory.2 dev: false /@visactor/vscale/0.18.18: @@ -3984,8 +3984,8 @@ packages: '@visactor/vutils': 0.18.18 dev: false - /@visactor/vutils-extension/1.13.1-vstory.3: - resolution: {integrity: sha512-+sNToW0zqMyrQRsd7CDWSc4uuDXk86z8VOdI4UfsCxxCFJhuK4oBN+dkzZ8o71MIi36uLSRjnQzk0UrW3qo7xA==} + /@visactor/vutils-extension/1.13.2-vstory.2: + resolution: {integrity: sha512-V+U6DkVkQBmNqE52XoDrZE/9mc3nvxG4f+04volhCSZ/trLYl0baf+qYE/0ejXcLOuEZYu0BZk2snAfMPzhb3Q==} dependencies: '@visactor/vdataset': 0.19.2 '@visactor/vutils': 0.19.2 diff --git a/packages/vstory-animate/package.json b/packages/vstory-animate/package.json index 8f99fcab..1dc801d7 100644 --- a/packages/vstory-animate/package.json +++ b/packages/vstory-animate/package.json @@ -24,12 +24,12 @@ "test-watch": "DEBUG_MODE=1 jest --watch" }, "dependencies": { - "@visactor/vchart": "1.13.1-vstory.3", + "@visactor/vchart": "1.13.2-vstory.2", "@visactor/vtable": "1.14.1", - "@visactor/vrender": "0.21.2-vstory.3", - "@visactor/vrender-core": "0.21.2-vstory.3", - "@visactor/vrender-kits": "0.21.2-vstory.3", - "@visactor/vrender-components": "0.21.2-vstory.3", + "@visactor/vrender": "0.21.5-vstory.2", + "@visactor/vrender-core": "0.21.5-vstory.2", + "@visactor/vrender-kits": "0.21.5-vstory.2", + "@visactor/vrender-components": "0.21.5-vstory.2", "@visactor/vutils": "~0.18.17", "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", diff --git a/packages/vstory-core/package.json b/packages/vstory-core/package.json index b9349cfc..d791ebbd 100644 --- a/packages/vstory-core/package.json +++ b/packages/vstory-core/package.json @@ -24,12 +24,12 @@ "test-watch": "DEBUG_MODE=1 jest --watch" }, "dependencies": { - "@visactor/vchart": "1.13.1-vstory.3", + "@visactor/vchart": "1.13.2-vstory.2", "@visactor/vtable": "1.14.1", - "@visactor/vrender": "0.21.2-vstory.3", - "@visactor/vrender-core": "0.21.2-vstory.3", - "@visactor/vrender-kits": "0.21.2-vstory.3", - "@visactor/vrender-components": "0.21.2-vstory.3", + "@visactor/vrender": "0.21.5-vstory.2", + "@visactor/vrender-core": "0.21.5-vstory.2", + "@visactor/vrender-kits": "0.21.5-vstory.2", + "@visactor/vrender-components": "0.21.5-vstory.2", "@visactor/vutils": "~0.18.17", "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", diff --git a/packages/vstory-editor/package.json b/packages/vstory-editor/package.json index 4a631ebe..691803db 100644 --- a/packages/vstory-editor/package.json +++ b/packages/vstory-editor/package.json @@ -24,12 +24,12 @@ "test-watch": "DEBUG_MODE=1 jest --watch" }, "dependencies": { - "@visactor/vchart": "1.13.1-vstory.3", + "@visactor/vchart": "1.13.2-vstory.2", "@visactor/vtable": "1.14.1", - "@visactor/vrender": "0.21.2-vstory.3", - "@visactor/vrender-core": "0.21.2-vstory.3", - "@visactor/vrender-kits": "0.21.2-vstory.3", - "@visactor/vrender-components": "0.21.2-vstory.3", + "@visactor/vrender": "0.21.5-vstory.2", + "@visactor/vrender-core": "0.21.5-vstory.2", + "@visactor/vrender-kits": "0.21.5-vstory.2", + "@visactor/vrender-components": "0.21.5-vstory.2", "@visactor/vutils": "~0.18.17", "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", diff --git a/packages/vstory-external/package.json b/packages/vstory-external/package.json index 69d7ccaa..c5be9e26 100644 --- a/packages/vstory-external/package.json +++ b/packages/vstory-external/package.json @@ -24,12 +24,12 @@ "test-watch": "DEBUG_MODE=1 jest --watch" }, "dependencies": { - "@visactor/vchart": "1.13.1-vstory.3", + "@visactor/vchart": "1.13.2-vstory.2", "@visactor/vtable": "1.14.1", - "@visactor/vrender": "0.21.2-vstory.3", - "@visactor/vrender-core": "0.21.2-vstory.3", - "@visactor/vrender-kits": "0.21.2-vstory.3", - "@visactor/vrender-components": "0.21.2-vstory.3", + "@visactor/vrender": "0.21.5-vstory.2", + "@visactor/vrender-core": "0.21.5-vstory.2", + "@visactor/vrender-kits": "0.21.5-vstory.2", + "@visactor/vrender-components": "0.21.5-vstory.2", "@visactor/vutils": "~0.18.17", "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", diff --git a/packages/vstory-player/package.json b/packages/vstory-player/package.json index 84f8bde5..512fca24 100644 --- a/packages/vstory-player/package.json +++ b/packages/vstory-player/package.json @@ -24,12 +24,12 @@ "test-watch": "DEBUG_MODE=1 jest --watch" }, "dependencies": { - "@visactor/vchart": "1.13.1-vstory.3", + "@visactor/vchart": "1.13.2-vstory.2", "@visactor/vtable": "1.14.1", - "@visactor/vrender": "0.21.2-vstory.3", - "@visactor/vrender-core": "0.21.2-vstory.3", - "@visactor/vrender-kits": "0.21.2-vstory.3", - "@visactor/vrender-components": "0.21.2-vstory.3", + "@visactor/vrender": "0.21.5-vstory.2", + "@visactor/vrender-core": "0.21.5-vstory.2", + "@visactor/vrender-kits": "0.21.5-vstory.2", + "@visactor/vrender-components": "0.21.5-vstory.2", "@visactor/vutils": "~0.18.17", "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17", diff --git a/packages/vstory-templates/package.json b/packages/vstory-templates/package.json index e40c98be..a5a92c10 100644 --- a/packages/vstory-templates/package.json +++ b/packages/vstory-templates/package.json @@ -24,12 +24,12 @@ "test-watch": "DEBUG_MODE=1 jest --watch" }, "dependencies": { - "@visactor/vchart": "1.13.1-vstory.3", + "@visactor/vchart": "1.13.2-vstory.2", "@visactor/vtable": "1.14.1", - "@visactor/vrender": "0.21.2-vstory.3", - "@visactor/vrender-core": "0.21.2-vstory.3", - "@visactor/vrender-kits": "0.21.2-vstory.3", - "@visactor/vrender-components": "0.21.2-vstory.3", + "@visactor/vrender": "0.21.5-vstory.2", + "@visactor/vrender-core": "0.21.5-vstory.2", + "@visactor/vrender-kits": "0.21.5-vstory.2", + "@visactor/vrender-components": "0.21.5-vstory.2", "@visactor/vutils": "~0.18.17", "@visactor/vchart-extension": "0.0.3-vstory.2", "@visactor/vdataset": "~0.18.17",