Skip to content

Commit

Permalink
release: v4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eiinu committed Mar 11, 2024
1 parent e81feab commit e74d8b8
Show file tree
Hide file tree
Showing 18 changed files with 88 additions and 15 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## v4.3.2

`2024-03-11`

Features

- switch: add disabled prop (#2959) @eiinu

Bug Fixes

- popup: 修复 update:visible 事件关闭时重复调用 (#2936) @yang1206
- form: 修复 disabled 关联子组件收集问题 (#2958) @eiinu

Refactors

- price: move to script setup (#2952) @eiinu
- layout: move to script setup (#2951) @eiinu
- animate: move to script setup (#2947) @eiinu

Other Changes

- tabs: add animated-time demo (#2942) @eiinu
- deps: update to taro 3.6.24 (#2939) @eiinu

## v4.3.1

`2024-02-29`
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nutui/nutui",
"version": "4.3.1",
"version": "4.3.2",
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
"main": "dist/nutui.umd.js",
"module": "dist/nutui.es.js",
Expand Down Expand Up @@ -64,6 +64,7 @@
"dts:taro": "rimraf ./tsc/type && vue-tsc --declaration --emitDeclarationOnly -p ./tsconfig.declaration.taro.json && pnpm generate:types:taro",
"copy:h5": "node ./scripts/copyh5.cjs",
"copy:taro": "node ./scripts/copytaro.cjs",
"copy:info": "node ./scripts/copy-dist.cjs nutui && node ./scripts/copy-dist.cjs nutui-taro",
"changelog": "node ./scripts/generate-changelog.cjs",
"gen:setup": "node ./scripts/generate-script-setup.cjs",
"publish:h5:beta": "pnpm --dir ./publish/nutui publish:beta",
Expand Down
24 changes: 24 additions & 0 deletions publish/nutui-taro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## v4.3.2

`2024-03-11`

Features

- switch: add disabled prop (#2959) @eiinu

Bug Fixes

- popup: 修复 update:visible 事件关闭时重复调用 (#2936) @yang1206
- form: 修复 disabled 关联子组件收集问题 (#2958) @eiinu

Refactors

- price: move to script setup (#2952) @eiinu
- layout: move to script setup (#2951) @eiinu
- animate: move to script setup (#2947) @eiinu

Other Changes

- tabs: add animated-time demo (#2942) @eiinu
- deps: update to taro 3.6.24 (#2939) @eiinu

## v4.3.1

`2024-02-29`
Expand Down
2 changes: 1 addition & 1 deletion publish/nutui-taro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nutui/nutui-taro",
"version": "4.3.1",
"version": "4.3.2",
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
"main": "dist/nutui.umd.js",
"module": "dist/nutui.es.js",
Expand Down
24 changes: 24 additions & 0 deletions publish/nutui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## v4.3.2

`2024-03-11`

Features

- switch: add disabled prop (#2959) @eiinu

Bug Fixes

- popup: 修复 update:visible 事件关闭时重复调用 (#2936) @yang1206
- form: 修复 disabled 关联子组件收集问题 (#2958) @eiinu

Refactors

- price: move to script setup (#2952) @eiinu
- layout: move to script setup (#2951) @eiinu
- animate: move to script setup (#2947) @eiinu

Other Changes

- tabs: add animated-time demo (#2942) @eiinu
- deps: update to taro 3.6.24 (#2939) @eiinu

## v4.3.1

`2024-02-29`
Expand Down
2 changes: 1 addition & 1 deletion publish/nutui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nutui/nutui",
"version": "4.3.1",
"version": "4.3.2",
"description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
"main": "dist/nutui.umd.js",
"module": "dist/nutui.es.js",
Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/animate/doc.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ app.use(Animate);
| 10 | twinkle | twinkle,It is recommended that loop be true |
| 11 | flicker | Polish button,It is recommended that loop be true |

### Types version
### Types 4.3.2

The component exports the following type definitions:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/animate/doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ app.use(Animate);
| 10 | twinkle | 水波,建议 loop 为 true |
| 11 | flicker | 擦亮按钮,建议 loop 为 true |

### 类型定义 version
### 类型定义 4.3.2

组件导出以下类型定义:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/animate/doc.taro.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ app.use(Animate);
| 10 | twinkle | 水波,建议 loop 为 true |
| 11 | flicker | 擦亮按钮,建议 loop 为 true |

### 类型定义 version
### 类型定义 4.3.2

组件导出以下类型定义:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/layout/doc.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ The Layout component provides a 24-column grid, by adding the span attribute on
| --- | --- | --- |
| click | Triggered when clicked | `event: MouseEvent` |

### Types version
### Types 4.3.2

The component exports the following type definitions:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/layout/doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Layout 组件提供 24 列栅格,通过在 Col 上添加 span 属性设置列
| --- | --- | --- |
| click | 点击时触发 | `event: MouseEvent` |

### 类型定义 version
### 类型定义 4.3.2

组件导出以下类型定义:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/layout/doc.taro.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Layout 组件提供 24 列栅格,通过在 Col 上添加 span 属性设置列
| --- | --- | --- |
| click | 点击时触发 | `event: MouseEvent` |

### 类型定义 version
### 类型定义 4.3.2

组件导出以下类型定义:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/price/doc.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ size: `small`, `normal`, `large`
| size | Size,`small``normal``large` | string | `normal` |
| strike-through`v4.0.3` | strike-through | Boolean | false |

### Types version
### Types 4.3.2

The component exports the following type definitions:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/price/doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ app.use(Price);
| size | 价格尺寸,`small``normal``large` | string | `normal` |
| strike-through`v4.0.3` | 是否展示划线价 | Boolean | false |

### 类型定义 version
### 类型定义 4.3.2

组件导出以下类型定义:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/price/doc.taro.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ app.use(Price);
| size | 价格尺寸,`small``normal``large` | string | `normal` |
| strike-through`v4.0.3` | 是否展示划线价 | Boolean | false |

### 类型定义 version
### 类型定义 4.3.2

组件导出以下类型定义:

Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/switch/doc.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ app.use(Switch);
| Attribute | Description | Type | Default |
| --- | --- | --- | --- |
| v-model | Status of Switch | boolean \| string \| number | `false` |
| disabled `version` | Disable status | boolean | `false` |
| disabled `v4.3.2` | Disable status | boolean | `false` |
| loading | Loading status | boolean | `false` |
| active-color | Background color when active | string | `#fa2c19` |
| inactive-color | Background color when inactive | string | `#ebebeb` |
Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/switch/doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ app.use(Switch);
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| v-model | 开关状态 | boolean \| string \| number | `false` |
| disabled `version` | 禁用状态 | boolean | `false` |
| disabled `v4.3.2` | 禁用状态 | boolean | `false` |
| loading | 加载状态 | boolean | `false` |
| active-color | 打开时的背景颜色 | string | `#fa2c19` |
| inactive-color | 关闭时的背景颜色 | string | `#ebebeb` |
Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/switch/doc.taro.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ app.use(Switch);
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| v-model | 开关状态 | boolean \| string \| number | `false` |
| disabled `version` | 禁用状态 | boolean | `false` |
| disabled `v4.3.2` | 禁用状态 | boolean | `false` |
| loading | 加载状态 | boolean | `false` |
| active-color | 打开时的背景颜色 | string | `#fa2c19` |
| inactive-color | 关闭时的背景颜色 | string | `#ebebeb` |
Expand Down

0 comments on commit e74d8b8

Please sign in to comment.