Skip to content

Commit 0467755

Browse files
committed
release: v4.3.7
1 parent 22f2eac commit 0467755

File tree

14 files changed

+71
-11
lines changed

14 files changed

+71
-11
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## v4.3.7
2+
3+
`2024-05-07`
4+
5+
Features
6+
7+
- number-keyboard: add confirm event (#3059) @eiinu
8+
9+
Bug Fixes
10+
11+
- tabs: inject 数据增加 ?. (#3045) @2977938133
12+
13+
Refactors
14+
15+
- input, image: move to script setup @eiinu
16+
17+
Other Changes
18+
19+
- docs: input 更新 align demo 引用名称 (#3044) @ShuTianGit
20+
121
## v4.3.6
222

323
`2024-04-19`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nutui/nutui",
3-
"version": "4.3.6",
3+
"version": "4.3.7",
44
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
55
"main": "dist/nutui.umd.js",
66
"module": "dist/nutui.es.js",

publish/nutui-taro/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## v4.3.7
2+
3+
`2024-05-07`
4+
5+
Features
6+
7+
- number-keyboard: add confirm event (#3059) @eiinu
8+
9+
Bug Fixes
10+
11+
- tabs: inject 数据增加 ?. (#3045) @2977938133
12+
13+
Refactors
14+
15+
- input, image: move to script setup @eiinu
16+
17+
Other Changes
18+
19+
- docs: input 更新 align demo 引用名称 (#3044) @ShuTianGit
20+
121
## v4.3.6
222

323
`2024-04-19`

publish/nutui-taro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nutui/nutui-taro",
3-
"version": "4.3.6",
3+
"version": "4.3.7",
44
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
55
"main": "dist/nutui.umd.js",
66
"module": "dist/nutui.es.js",

publish/nutui/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## v4.3.7
2+
3+
`2024-05-07`
4+
5+
Features
6+
7+
- number-keyboard: add confirm event (#3059) @eiinu
8+
9+
Bug Fixes
10+
11+
- tabs: inject 数据增加 ?. (#3045) @2977938133
12+
13+
Refactors
14+
15+
- input, image: move to script setup @eiinu
16+
17+
Other Changes
18+
19+
- docs: input 更新 align demo 引用名称 (#3044) @ShuTianGit
20+
121
## v4.3.6
222

323
`2024-04-19`

publish/nutui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nutui/nutui",
3-
"version": "4.3.6",
3+
"version": "4.3.7",
44
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
55
"main": "dist/nutui.umd.js",
66
"module": "dist/nutui.es.js",

src/packages/__VUE/image/doc.en-US.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The Image component provides a default loading failure warning and supports cust
107107
| load | Emitted when image loaded | - |
108108
| error | Emitted when image load failed | - |
109109

110-
### Types version
110+
### Types v4.3.7
111111

112112
The component exports the following type definitions:
113113

src/packages/__VUE/image/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Image 组件提供了默认的加载失败提示,支持通过 `error` 插槽
109109
| load | 图片加载完后触发 | -- |
110110
| error | 图片加载失败后触发 | -- |
111111

112-
### 类型定义 version
112+
### 类型定义 v4.3.7
113113

114114
组件导出以下类型定义:
115115

src/packages/__VUE/input/doc.en-US.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ After setting the `maxlength` and `show-word-limit` attributes, word count will
121121
| blur `4.0.6` | Blur |
122122
| select `4.0.6` | Selct |
123123

124-
### Types version
124+
### Types v4.3.7
125125

126126
The component exports the following type definitions:
127127

src/packages/__VUE/input/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ app.use(Input)
132132
| blur `4.0.6` | 失去焦点 |
133133
| select `4.0.6` | 选择文字 |
134134

135-
### 类型定义 version
135+
### 类型定义 v4.3.7
136136

137137
组件导出以下类型定义:
138138

src/packages/__VUE/input/doc.taro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ app.use(Input)
130130
| left `4.0.1` | 自定义输入框左侧插槽内容 |
131131
| right `4.0.1` | 自定义输入框右侧插槽内容 |
132132

133-
### 类型定义 version
133+
### 类型定义 v4.3.7
134134

135135
组件导出以下类型定义:
136136

src/packages/__VUE/numberkeyboard/doc.en-US.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ app.use(NumberKeyboard)
6363
| delete | Emitted when the delete key is pressed | - |
6464
| close | Emitted when the close button or non-keyboard area is clicked is clicked | - |
6565
| blur | Emitted when the close button is clicked or the keyboard is blurred | - |
66-
| confirm `version` | Emitted when the confirm button is clicked | - |
66+
| confirm `v4.3.7` | Emitted when the confirm button is clicked | - |
6767

6868
## Theming
6969

src/packages/__VUE/numberkeyboard/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ app.use(NumberKeyboard)
6262
| delete | 点击删除键时触发 | - |
6363
| close | 点击关闭按钮时触发 | - |
6464
| blur | 点击关闭按钮或非键盘区域时触发 | - |
65-
| confirm `version` | 点击确认按钮 | - |
65+
| confirm `v4.3.7` | 点击确认按钮 | - |
6666

6767
## 主题定制
6868

src/packages/__VUE/numberkeyboard/doc.taro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ app.use(NumberKeyboard)
6262
| input | 点击按键时触发 | 按键内容 |
6363
| delete | 点击删除键时触发 | - |
6464
| close | 点击关闭按钮或非键盘区域时触发 | - |
65-
| confirm `version` | 点击确认按钮 | - |
65+
| confirm `v4.3.7` | 点击确认按钮 | - |
6666

6767
## 主题定制
6868

0 commit comments

Comments
 (0)