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

chore(release): publish 3.3.7 #640

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# [](https://github.com/AntmJS/vantui/compare/v3.3.4...v) (2024-03-05)
# [](https://github.com/AntmJS/vantui/compare/v3.3.5...v) (2024-05-11)


### Bug Fixes

* notify、dialog、toast组件,小程序端在页面跳转后返回,存在事件注册被覆盖的问题([#635](https://github.com/AntmJS/vantui/issues/635)) ([f16e438](https://github.com/AntmJS/vantui/commit/f16e4383aa06972a15ce981f6b83bff2b266258d))
* table组件错误 ([58c20eb](https://github.com/AntmJS/vantui/commit/58c20ebc86090fe6731f833cd4a7c56608ea512f))


### Features

* stepper组件新增实例方法 ([72cbb0c](https://github.com/AntmJS/vantui/commit/72cbb0c8e47efd2de8b0f5db7a0e85ebacb30141))



## [3.3.5](https://github.com/AntmJS/vantui/compare/v3.3.4...v3.3.5) (2024-03-05)


### Features
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"**/*.md",
"**/__test__/**"
],
"version": "3.3.5"
"version": "3.3.7"
}
2 changes: 1 addition & 1 deletion packages/vantui-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antmjs/vantui-cli",
"version": "3.3.5",
"version": "3.3.7",
"type": "module",
"main": "dest/cli.js",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions packages/vantui-demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vantui-demo",
"version": "3.3.5",
"version": "3.3.7",
"private": true,
"description": "Taro应用模版",
"templateInfo": {
Expand Down Expand Up @@ -82,7 +82,7 @@
"author": "",
"dependencies": {
"@antmjs/mini-fix": "^2.3.3",
"@antmjs/vantui": "3.3.5",
"@antmjs/vantui": "3.3.7",
"@babel/runtime": "^7.7.7",
"@tarojs/components": "3.5.7",
"@tarojs/helper": "3.5.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/vantui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antmjs/vantui",
"version": "3.3.5",
"version": "3.3.7",
"main": "lib/index.js",
"module": "es/index.esm.js",
"style": "lib/index.css",
Expand Down
4 changes: 3 additions & 1 deletion packages/vantui/src/table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,9 @@ const Row = (props: {

return (
<View
onClick={expandable && setExpansion.bind(this, !expansion)}
onClick={() => {
if (expandable) setExpansion.bind(this, !expansion)
}}
key={columnItem.key || columnItem.dataIndex}
className={classnames({
[colClassName]: true,
Expand Down