Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Auto release] release 0.0.19 #156

Merged
merged 10 commits into from
Dec 13, 2024
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
Loading