From 8ee4080d69b0cbcb4bd8505ae578d11ce678ce5a Mon Sep 17 00:00:00 2001 From: neverland Date: Sun, 12 Jun 2022 12:25:23 +0800 Subject: [PATCH 1/9] fix(Popup): should not auto close on deactivated if not using teleport (#10706) --- packages/vant/src/popup/Popup.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/vant/src/popup/Popup.tsx b/packages/vant/src/popup/Popup.tsx index ec73d92e8..2095f0042 100644 --- a/packages/vant/src/popup/Popup.tsx +++ b/packages/vant/src/popup/Popup.tsx @@ -264,7 +264,8 @@ export default defineComponent({ }); onDeactivated(() => { - if (props.show) { + // teleported popup should be closed when deactivated + if (props.show && props.teleport) { close(); shouldReopen = true; } From c38fed70be6b3a6500c9dbe20ef688ced5511b7f Mon Sep 17 00:00:00 2001 From: goo-yyh <45666106+goo-yyh@users.noreply.github.com> Date: Sun, 12 Jun 2022 12:37:46 +0800 Subject: [PATCH 2/9] fix(Calender): failed to render months after changing maxDate or minDate (#10668) Co-authored-by: yuyuehui.yyh --- packages/vant/src/calendar/Calendar.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/vant/src/calendar/Calendar.tsx b/packages/vant/src/calendar/Calendar.tsx index dd1baa47c..692354f76 100644 --- a/packages/vant/src/calendar/Calendar.tsx +++ b/packages/vant/src/calendar/Calendar.tsx @@ -185,6 +185,10 @@ export default defineComponent({ const months: Date[] = []; const cursor = new Date(props.minDate); + if (props.lazyRender && !props.show) { + return months; + } + cursor.setDate(1); do { From eae8d47ceea53d98d1878c222eadc7616ec0d511 Mon Sep 17 00:00:00 2001 From: neverland Date: Sun, 12 Jun 2022 12:42:37 +0800 Subject: [PATCH 3/9] fix(Calendar): failed to render months when not poppable (#10707) --- packages/vant/src/calendar/Calendar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant/src/calendar/Calendar.tsx b/packages/vant/src/calendar/Calendar.tsx index 692354f76..05f4ee973 100644 --- a/packages/vant/src/calendar/Calendar.tsx +++ b/packages/vant/src/calendar/Calendar.tsx @@ -185,7 +185,7 @@ export default defineComponent({ const months: Date[] = []; const cursor = new Date(props.minDate); - if (props.lazyRender && !props.show) { + if (props.lazyRender && !props.show && props.poppable) { return months; } From df038860535a9295ef4f0e5ec54a636b905e0f34 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 12 Jun 2022 12:47:02 +0800 Subject: [PATCH 4/9] release: 3.5.1 --- packages/vant/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant/package.json b/packages/vant/package.json index da453792a..a32e933ad 100644 --- a/packages/vant/package.json +++ b/packages/vant/package.json @@ -1,6 +1,6 @@ { "name": "vant", - "version": "3.5.0", + "version": "3.5.1", "description": "Mobile UI Components built on Vue", "main": "lib/vant.cjs.js", "module": "es/index.mjs", From ffefe3002f674f644b90f8fdfb04dc004a3a8c4f Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 12 Jun 2022 12:49:53 +0800 Subject: [PATCH 5/9] docs(changelog): 3.5.1 --- packages/vant/docs/markdown/changelog.en-US.md | 15 +++++++++++++++ packages/vant/docs/markdown/changelog.zh-CN.md | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/packages/vant/docs/markdown/changelog.en-US.md b/packages/vant/docs/markdown/changelog.en-US.md index 7372ed0fb..f70121d98 100644 --- a/packages/vant/docs/markdown/changelog.en-US.md +++ b/packages/vant/docs/markdown/changelog.en-US.md @@ -19,6 +19,21 @@ Vant follows [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/). ## Details +### [v3.5.1](https://github.com/youzan/vant/compare/v3.5.0...v3.5.1) + +`2022-06-12` + +**Feature** + +- PullRefresh: add change event [#10702](https://github.com/youzan/vant/issues/10702) + +**Bug Fixes** + +- Calender: failed to render months after changing maxDate or minDate [#10668](https://github.com/youzan/vant/issues/10668) +- Popup: should not auto close on deactivated if not using teleport [#10706](https://github.com/youzan/vant/issues/10706) +- Toast: fix Toast.clear typing [#10699](https://github.com/youzan/vant/issues/10699) +- Uploader: preview-options images should be optional [#10698](https://github.com/youzan/vant/issues/10698) + ### [v3.5.0](https://github.com/youzan/vant/compare/v3.4.9...v3.5.0) `2022-06-05` diff --git a/packages/vant/docs/markdown/changelog.zh-CN.md b/packages/vant/docs/markdown/changelog.zh-CN.md index 9fcbbb2ab..430e16f42 100644 --- a/packages/vant/docs/markdown/changelog.zh-CN.md +++ b/packages/vant/docs/markdown/changelog.zh-CN.md @@ -19,6 +19,21 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。 ## 更新内容 +### [v3.5.1](https://github.com/youzan/vant/compare/v3.5.0...v3.5.1) + +`2022-06-12` + +**Feature** + +- PullRefresh: 新增 change 事件 [#10702](https://github.com/youzan/vant/issues/10702) + +**Bug Fixes** + +- Calender: 修复动态设置 maxDate 或 minDate 可能导致月份渲染失败的问题 [#10668](https://github.com/youzan/vant/issues/10668) +- Popup: 修复未使用 teleport 时 deactivated 后会自动关闭的问题 [#10706](https://github.com/youzan/vant/issues/10706) +- Toast: 修复 toast.clear 缺少类型定义的问题 [#10699](https://github.com/youzan/vant/issues/10699) +- Uploader: 修复 preview-options 属性中 images 为必填字段的问题 [#10698](https://github.com/youzan/vant/issues/10698) + ### [v3.5.0](https://github.com/youzan/vant/compare/v3.4.9...v3.5.0) `2022-06-05` From 6225c8123c6667fa95d385ef675ed6dba54fc637 Mon Sep 17 00:00:00 2001 From: neverland Date: Thu, 16 Jun 2022 18:45:27 +0800 Subject: [PATCH 6/9] docs(Switch): fix custom node demo (#10720) --- packages/vant/src/switch/README.md | 8 +++++--- packages/vant/src/switch/README.zh-CN.md | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/packages/vant/src/switch/README.md b/packages/vant/src/switch/README.md index dadde0149..f8079a7b3 100644 --- a/packages/vant/src/switch/README.md +++ b/packages/vant/src/switch/README.md @@ -65,9 +65,11 @@ Using `node` slot to custom the content of the node. ```html -
- -
+