Skip to content

Commit 93a248b

Browse files
committed
release: v4.3.6
1 parent 51f9210 commit 93a248b

18 files changed

+72
-15
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v4.3.6
2+
3+
`2024-04-19`
4+
5+
Bug Fixes
6+
7+
- sticky: fix typo in index.taro.vue (#3023) @lainbo
8+
- type: fix warning of v-model in JetBrains IDE (#3029) @anyesu
9+
10+
Refactors
11+
12+
- move to script setup
13+
- countdown, steps @subordon
14+
- radio, grid @eiinu
15+
16+
Other Changes
17+
18+
- chore: 优化组件 provide/inject 使用 (#3027) @eiinu
19+
120
## v4.3.5
221

322
`2024-04-10`

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.5",
3+
"version": "4.3.6",
44
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
55
"main": "dist/nutui.umd.js",
66
"module": "dist/nutui.es.js",

publish/nutui-taro/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v4.3.6
2+
3+
`2024-04-19`
4+
5+
Bug Fixes
6+
7+
- sticky: fix typo in index.taro.vue (#3023) @lainbo
8+
- type: fix warning of v-model in JetBrains IDE (#3029) @anyesu
9+
10+
Refactors
11+
12+
- move to script setup
13+
- countdown, steps @subordon
14+
- radio, grid @eiinu
15+
16+
Other Changes
17+
18+
- chore: 优化组件 provide/inject 使用 (#3027) @eiinu
19+
120
## v4.3.5
221

322
`2024-04-10`

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.5",
3+
"version": "4.3.6",
44
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
55
"main": "dist/nutui.umd.js",
66
"module": "dist/nutui.es.js",

publish/nutui/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v4.3.6
2+
3+
`2024-04-19`
4+
5+
Bug Fixes
6+
7+
- sticky: fix typo in index.taro.vue (#3023) @lainbo
8+
- type: fix warning of v-model in JetBrains IDE (#3029) @anyesu
9+
10+
Refactors
11+
12+
- move to script setup
13+
- countdown, steps @subordon
14+
- radio, grid @eiinu
15+
16+
Other Changes
17+
18+
- chore: 优化组件 provide/inject 使用 (#3027) @eiinu
19+
120
## v4.3.5
221

322
`2024-04-10`

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.5",
3+
"version": "4.3.6",
44
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
55
"main": "dist/nutui.umd.js",
66
"module": "dist/nutui.es.js",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Paused and restarted the countdown with the `paused` attribute
9090
| pause | Count Down Pause |
9191
| reset | Count Down Reset |
9292

93-
### Types version
93+
### Types v4.3.6
9494

9595
The component exports the following type definitions:
9696

src/packages/__VUE/countdown/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ app.use(Countdown)
9292
| pause | 暂停倒计时 |
9393
| reset | 重设倒计时,若 `auto-start``true`,重设后会自动开始倒计时 |
9494

95-
### 类型定义 version
95+
### 类型定义 v4.3.6
9696

9797
组件导出以下类型定义:
9898

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ app.use(Countdown)
9292
| pause | 暂停倒计时 |
9393
| reset | 重设倒计时,若 `auto-start``true`,重设后会自动开始倒计时 |
9494

95-
### 类型定义 version
95+
### 类型定义 v4.3.6
9696

9797
组件导出以下类型定义:
9898

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ app.use(GridItem)
7777
| --- | --- | --- |
7878
| click | Emitted when component is clicked | event: Event |
7979

80-
### Types version
80+
### Types v4.3.6
8181

8282
The component exports the following type definitions:
8383

src/packages/__VUE/grid/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ app.use(GridItem)
7777
| --- | --- | --- |
7878
| click | 点击格子时触发 | event: Event |
7979

80-
### 类型定义 version
80+
### 类型定义 v4.3.6
8181

8282
组件导出以下类型定义:
8383

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ app.use(GridItem)
7777
| --- | --- | --- |
7878
| click | 点击格子时触发 | event: Event |
7979

80-
### 类型定义 version
80+
### 类型定义 v4.3.6
8181

8282
组件导出以下类型定义:
8383

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Set the Radio size through `size`, which only takes effect when `shape` is `butt
9494
| --- | --- | --- |
9595
| change | Triggered when the value changes | Currently selected item value(label)【There is a value after setting `label`, which is empty by default】 |
9696

97-
### Types version
97+
### Types v4.3.6
9898

9999
The component exports the following type definitions:
100100

src/packages/__VUE/radio/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ app.use(RadioGroup)
9494
| --- | --- | --- |
9595
| change | 值变化时触发 | 当前选中项值(label)【设置 label 后有值、默认为空】 |
9696

97-
### 类型定义 version
97+
### 类型定义 v4.3.6
9898

9999
组件导出以下类型定义:
100100

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ app.use(RadioGroup)
9494
| --- | --- | --- |
9595
| change | 值变化时触发 | 当前选中项值(label)【设置 label 后有值、默认为空】 |
9696

97-
### 类型定义 version
97+
### 类型定义 v4.3.6
9898

9999
组件导出以下类型定义:
100100

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ app.use(Step)
7070
| content | Step content |
7171
| icon | Step icon |
7272

73-
### Types version
73+
### Types v4.3.6
7474

7575
The component exports the following type definitions:
7676

src/packages/__VUE/steps/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ app.use(Step)
7070
| content | 步骤内容 |
7171
| icon | 步骤图标 |
7272

73-
### 类型定义 version
73+
### 类型定义 v4.3.6
7474

7575
组件导出以下类型定义:
7676

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ app.use(Step)
7070
| content | 步骤内容 |
7171
| icon | 步骤图标 |
7272

73-
### 类型定义 version
73+
### 类型定义 v4.3.6
7474

7575
组件导出以下类型定义:
7676

0 commit comments

Comments
 (0)