Skip to content

Commit

Permalink
Merge pull request #2260 from VisActor/release/1.6.1
Browse files Browse the repository at this point in the history
[Auto release] release 1.5.7
  • Loading branch information
Rui-Sun committed Aug 19, 2024
2 parents 4f6c1da + 77617e7 commit ec69302
Show file tree
Hide file tree
Showing 150 changed files with 11,163 additions and 1,901 deletions.
76 changes: 38 additions & 38 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":"vtableMain","version":"1.5.6","mainProject":"@visactor/vtable","nextBump":"patch"}]
[{"definitionName":"lockStepVersion","policyName":"vtableMain","version":"1.5.7","mainProject":"@visactor/vtable","nextBump":"patch"}]
17 changes: 17 additions & 0 deletions docs/assets/changelog/en/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# v1.5.6

2024-08-08


**🆕 New feature**

- **@visactor/vtable**: add canvas & viewbox config

**🐛 Bug fix**

- **@visactor/vtable**: fix released async problem [#2145](https://github.com/VisActor/VTable/issues/2145)



[more detail about v1.5.6](https://github.com/VisActor/VTable/releases/tag/v1.5.6)

# v1.5.4

2024-08-02
Expand Down
17 changes: 17 additions & 0 deletions docs/assets/changelog/zh/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# v1.5.6

2024-08-08


**🆕 新增功能**

- **@visactor/vtable**: add canvas & viewbox config

**🐛 功能修复**

- **@visactor/vtable**: fix released async problem [#2145](https://github.com/VisActor/VTable/issues/2145)



[更多详情请查看 v1.5.6](https://github.com/VisActor/VTable/releases/tag/v1.5.6)

# v1.5.4

2024-08-02
Expand Down
31 changes: 14 additions & 17 deletions docs/assets/demo-react/en/custom-layout/cell-custom-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,24 +255,21 @@ const CustomLayoutComponent = (props) => {
// }}></VText>
<VTag
key={i}
attribute={{
text: str,
textStyle: {
fontSize: 10,
fontFamily: 'sans-serif',
fill: 'rgb(51, 101, 238)'
// textAlign: 'left',
// textBaseline: 'rop',
},
panel: {
visible: true,
fill: '#e6fffb',
lineWidth: 1,
cornerRadius: 4
},
boundsPadding: [0, 0, 0, 10]
textStyle={{
fontSize: 10,
fontFamily: 'sans-serif',
fill: 'rgb(51, 101, 238)'
// textAlign: 'left',
// textBaseline: 'rop',
}}
></VTag>
panelStyle={{
visible: true,
fill: '#e6fffb',
lineWidth: 1,
cornerRadius: 4
}}
boundsPadding={[0, 0, 0, 10]}
>{str}</VTag>
))
: null}
</VGroup>
Expand Down
31 changes: 14 additions & 17 deletions docs/assets/demo-react/zh/custom-layout/cell-custom-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,24 +255,21 @@ const CustomLayoutComponent = (props) => {
// }}></VText>
<VTag
key={i}
attribute={{
text: str,
textStyle: {
fontSize: 10,
fontFamily: 'sans-serif',
fill: 'rgb(51, 101, 238)'
// textAlign: 'left',
// textBaseline: 'rop',
},
panel: {
visible: true,
fill: '#e6fffb',
lineWidth: 1,
cornerRadius: 4
},
boundsPadding: [0, 0, 0, 10]
textStyle={{
fontSize: 10,
fontFamily: 'sans-serif',
fill: 'rgb(51, 101, 238)'
// textAlign: 'left',
// textBaseline: 'rop',
}}
></VTag>
panelStyle={{
visible: true,
fill: '#e6fffb',
lineWidth: 1,
cornerRadius: 4
}}
boundsPadding={[0, 0, 0, 10]}
>{str}</VTag>
))
: null}
</VGroup>
Expand Down
Loading

0 comments on commit ec69302

Please sign in to comment.