Skip to content

Commit e74d8b8

Browse files
committed
release: v4.3.2
1 parent e81feab commit e74d8b8

18 files changed

+88
-15
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## v4.3.2
2+
3+
`2024-03-11`
4+
5+
Features
6+
7+
- switch: add disabled prop (#2959) @eiinu
8+
9+
Bug Fixes
10+
11+
- popup: 修复 update:visible 事件关闭时重复调用 (#2936) @yang1206
12+
- form: 修复 disabled 关联子组件收集问题 (#2958) @eiinu
13+
14+
Refactors
15+
16+
- price: move to script setup (#2952) @eiinu
17+
- layout: move to script setup (#2951) @eiinu
18+
- animate: move to script setup (#2947) @eiinu
19+
20+
Other Changes
21+
22+
- tabs: add animated-time demo (#2942) @eiinu
23+
- deps: update to taro 3.6.24 (#2939) @eiinu
24+
125
## v4.3.1
226

327
`2024-02-29`

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nutui/nutui",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
55
"main": "dist/nutui.umd.js",
66
"module": "dist/nutui.es.js",
@@ -64,6 +64,7 @@
6464
"dts:taro": "rimraf ./tsc/type && vue-tsc --declaration --emitDeclarationOnly -p ./tsconfig.declaration.taro.json && pnpm generate:types:taro",
6565
"copy:h5": "node ./scripts/copyh5.cjs",
6666
"copy:taro": "node ./scripts/copytaro.cjs",
67+
"copy:info": "node ./scripts/copy-dist.cjs nutui && node ./scripts/copy-dist.cjs nutui-taro",
6768
"changelog": "node ./scripts/generate-changelog.cjs",
6869
"gen:setup": "node ./scripts/generate-script-setup.cjs",
6970
"publish:h5:beta": "pnpm --dir ./publish/nutui publish:beta",

publish/nutui-taro/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## v4.3.2
2+
3+
`2024-03-11`
4+
5+
Features
6+
7+
- switch: add disabled prop (#2959) @eiinu
8+
9+
Bug Fixes
10+
11+
- popup: 修复 update:visible 事件关闭时重复调用 (#2936) @yang1206
12+
- form: 修复 disabled 关联子组件收集问题 (#2958) @eiinu
13+
14+
Refactors
15+
16+
- price: move to script setup (#2952) @eiinu
17+
- layout: move to script setup (#2951) @eiinu
18+
- animate: move to script setup (#2947) @eiinu
19+
20+
Other Changes
21+
22+
- tabs: add animated-time demo (#2942) @eiinu
23+
- deps: update to taro 3.6.24 (#2939) @eiinu
24+
125
## v4.3.1
226

327
`2024-02-29`

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

publish/nutui/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## v4.3.2
2+
3+
`2024-03-11`
4+
5+
Features
6+
7+
- switch: add disabled prop (#2959) @eiinu
8+
9+
Bug Fixes
10+
11+
- popup: 修复 update:visible 事件关闭时重复调用 (#2936) @yang1206
12+
- form: 修复 disabled 关联子组件收集问题 (#2958) @eiinu
13+
14+
Refactors
15+
16+
- price: move to script setup (#2952) @eiinu
17+
- layout: move to script setup (#2951) @eiinu
18+
- animate: move to script setup (#2947) @eiinu
19+
20+
Other Changes
21+
22+
- tabs: add animated-time demo (#2942) @eiinu
23+
- deps: update to taro 3.6.24 (#2939) @eiinu
24+
125
## v4.3.1
226

327
`2024-02-29`

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ app.use(Animate);
6161
| 10 | twinkle | twinkle,It is recommended that loop be true |
6262
| 11 | flicker | Polish button,It is recommended that loop be true |
6363

64-
### Types version
64+
### Types 4.3.2
6565

6666
The component exports the following type definitions:
6767

src/packages/__VUE/animate/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ app.use(Animate);
6161
| 10 | twinkle | 水波,建议 loop 为 true |
6262
| 11 | flicker | 擦亮按钮,建议 loop 为 true |
6363

64-
### 类型定义 version
64+
### 类型定义 4.3.2
6565

6666
组件导出以下类型定义:
6767

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ app.use(Animate);
6161
| 10 | twinkle | 水波,建议 loop 为 true |
6262
| 11 | flicker | 擦亮按钮,建议 loop 为 true |
6363

64-
### 类型定义 version
64+
### 类型定义 4.3.2
6565

6666
组件导出以下类型定义:
6767

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The Layout component provides a 24-column grid, by adding the span attribute on
6060
| --- | --- | --- |
6161
| click | Triggered when clicked | `event: MouseEvent` |
6262

63-
### Types version
63+
### Types 4.3.2
6464

6565
The component exports the following type definitions:
6666

src/packages/__VUE/layout/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Layout 组件提供 24 列栅格,通过在 Col 上添加 span 属性设置列
6060
| --- | --- | --- |
6161
| click | 点击时触发 | `event: MouseEvent` |
6262

63-
### 类型定义 version
63+
### 类型定义 4.3.2
6464

6565
组件导出以下类型定义:
6666

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Layout 组件提供 24 列栅格,通过在 Col 上添加 span 属性设置列
6060
| --- | --- | --- |
6161
| click | 点击时触发 | `event: MouseEvent` |
6262

63-
### 类型定义 version
63+
### 类型定义 4.3.2
6464

6565
组件导出以下类型定义:
6666

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ size: `small`, `normal`, `large`
6363
| size | Size,`small``normal``large` | string | `normal` |
6464
| strike-through`v4.0.3` | strike-through | Boolean | false |
6565

66-
### Types version
66+
### Types 4.3.2
6767

6868
The component exports the following type definitions:
6969

src/packages/__VUE/price/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ app.use(Price);
6363
| size | 价格尺寸,`small``normal``large` | string | `normal` |
6464
| strike-through`v4.0.3` | 是否展示划线价 | Boolean | false |
6565

66-
### 类型定义 version
66+
### 类型定义 4.3.2
6767

6868
组件导出以下类型定义:
6969

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ app.use(Price);
6363
| size | 价格尺寸,`small``normal``large` | string | `normal` |
6464
| strike-through`v4.0.3` | 是否展示划线价 | Boolean | false |
6565

66-
### 类型定义 version
66+
### 类型定义 4.3.2
6767

6868
组件导出以下类型定义:
6969

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ app.use(Switch);
5353
| Attribute | Description | Type | Default |
5454
| --- | --- | --- | --- |
5555
| v-model | Status of Switch | boolean \| string \| number | `false` |
56-
| disabled `version` | Disable status | boolean | `false` |
56+
| disabled `v4.3.2` | Disable status | boolean | `false` |
5757
| loading | Loading status | boolean | `false` |
5858
| active-color | Background color when active | string | `#fa2c19` |
5959
| inactive-color | Background color when inactive | string | `#ebebeb` |

src/packages/__VUE/switch/doc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ app.use(Switch);
5353
| 参数 | 说明 | 类型 | 默认值 |
5454
| --- | --- | --- | --- |
5555
| v-model | 开关状态 | boolean \| string \| number | `false` |
56-
| disabled `version` | 禁用状态 | boolean | `false` |
56+
| disabled `v4.3.2` | 禁用状态 | boolean | `false` |
5757
| loading | 加载状态 | boolean | `false` |
5858
| active-color | 打开时的背景颜色 | string | `#fa2c19` |
5959
| inactive-color | 关闭时的背景颜色 | string | `#ebebeb` |

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ app.use(Switch);
5353
| 参数 | 说明 | 类型 | 默认值 |
5454
| --- | --- | --- | --- |
5555
| v-model | 开关状态 | boolean \| string \| number | `false` |
56-
| disabled `version` | 禁用状态 | boolean | `false` |
56+
| disabled `v4.3.2` | 禁用状态 | boolean | `false` |
5757
| loading | 加载状态 | boolean | `false` |
5858
| active-color | 打开时的背景颜色 | string | `#fa2c19` |
5959
| inactive-color | 关闭时的背景颜色 | string | `#ebebeb` |

0 commit comments

Comments
 (0)