Skip to content

Commit

Permalink
Merge pull request #156 from VisActor/release/0.0.19
Browse files Browse the repository at this point in the history
[Auto release] release 0.0.19
  • Loading branch information
xiaoluoHe authored Dec 13, 2024
2 parents 36652aa + bf479e3 commit 5c83c88
Show file tree
Hide file tree
Showing 56 changed files with 3,824 additions and 211 deletions.
32 changes: 16 additions & 16 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"definitionName":"lockStepVersion","policyName":"vstoryMain","version":"0.0.18","nextBump":"patch"}]
[{"definitionName":"lockStepVersion","policyName":"vstoryMain","version":"0.0.19","nextBump":"patch"}]
27 changes: 25 additions & 2 deletions docs/assets/examples/en/infographic/bar-chart-leftRight.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,33 @@ const dsl = {
id: 'defaultScene',
actions: [
{
characterId: ['0', '1', '2', 'text-1', 'text-2'],
characterId: ['0', 'text-1', 'text-2'],
characterActions: [
{
action: 'appear'
action: 'appear',
payload: {
animation: {
duration: 500
}
}
}
]
},
{
characterId: ['1'],
characterActions: [
{
action: 'appear',
payload: [
{
selector: ':not(bar)',
animation: { duration: 2000 }
},
{
selector: 'bar',
animation: { duration: 2000, effect: 'barLeap', oneByOne: true, dimensionCount: 5 }
}
]
}
]
}
Expand Down
26 changes: 22 additions & 4 deletions docs/assets/examples/en/infographic/bar-hiv-chart.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
category: examples
group: infographic
title: Venn Chart Infographic
keywords: templates, visualization, venn, percentage, left-right
title: Bar Chart Infographic
keywords: templates, visualization, bar
order: 1-0
cover: https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/vstory-infographic/preview/hiv-chart.png
---
Expand All @@ -26,7 +26,6 @@ const dsl = {
'bg0',
'bg1',
'bg2',
'chart',
'icon-yes',
'icon-no',
'text0',
Expand All @@ -46,7 +45,26 @@ const dsl = {
],
characterActions: [
{
action: 'appear'
action: 'appear',
payload: {
animation: {
duration: 200
}
}
}
]
},
{
characterId: ['chart'],
characterActions: [
{
action: 'appear',
startTime: 200,
payload: {
animation: {
duration: 500
}
}
}
]
}
Expand Down
Loading

0 comments on commit 5c83c88

Please sign in to comment.