Skip to content

Commit

Permalink
release version
Browse files Browse the repository at this point in the history
  • Loading branch information
flsion committed Nov 24, 2023
1 parent fb42186 commit 04d08a4
Show file tree
Hide file tree
Showing 12 changed files with 92 additions and 5 deletions.
10 changes: 10 additions & 0 deletions packages/web-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
changelog: true
```
## 2.53.3
`2023-11-24`

### 🐛 BugFix

- **input-tag:** Fix the problem that the file can still be deleted under `read-only` ([#2824](https://github.com/arco-design/arco-design-vue/pull/2824))
- **date-picker:** fix invalid date due to mismatch between date and format ([#2789](https://github.com/arco-design/arco-design-vue/pull/2789))


## 2.53.2

`2023-11-10`
Expand Down
10 changes: 10 additions & 0 deletions packages/web-vue/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
changelog: true
```
## 2.53.3
`2023-11-24`

### 🐛 问题修复

- **input-tag:** 修复 `read-only` 下仍然能被删除的问题 ([#2824](https://github.com/arco-design/arco-design-vue/pull/2824))
- **date-picker:** 修复日期与format不一致导致出现无效日期 ([#2789](https://github.com/arco-design/arco-design-vue/pull/2789))


## 2.53.2

`2023-11-10`
Expand Down
5 changes: 5 additions & 0 deletions packages/web-vue/components/calendar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
changelog: true
```
## 2.53.3
`2023-11-24`


## 2.53.0

`2023-11-03`
Expand Down
5 changes: 5 additions & 0 deletions packages/web-vue/components/calendar/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
changelog: true
```
## 2.53.3
`2023-11-24`


## 2.53.0

`2023-11-03`
Expand Down
6 changes: 4 additions & 2 deletions packages/web-vue/components/calendar/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ description: Calendar Component.
|---|---|---|
|change|Emitted when the button is clicked|date: `Date`|
|panel-change|Emitted when the button is clicked|date: `Date`|

### `<calendar>` Slots

|Slot Name|Description|Parameters|version|
|---|---|---|:---|
|default|Cell content|year: `number`<br/>month: `number`<br/>date: `number`||
|header|Custom header content|year: `number`<br>month: `number`|2.53.0|
|default|Custom cell content|year: `number`<br>month: `number`<br>date: `number`|2.53.0|


6 changes: 4 additions & 2 deletions packages/web-vue/components/calendar/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ description: 日历组件。
|---|---|---|
|change|选择的日期改变时触发|date: `Date`|
|panel-change|日期面板改变时触发|date: `Date`|

### `<calendar>` Slots

|插槽名|描述|参数|版本|
|---|:---:|---|:---|
|default|单元格内容|year: `number`<br/>month: `number`<br/>date: `number`||
|header|自定义头部内容|year: `number`<br>month: `number`|2.53.0|
|default|自定义单元格内容|year: `number`<br>month: `number`<br>date: `number`|2.53.0|


17 changes: 17 additions & 0 deletions packages/web-vue/components/calendar/calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,23 @@ export default defineComponent({
*/
'panelChange': (date: Date) => true,
},
/**
* @zh 自定义单元格内容
* @en Custom cell content
* @slot default
* @binding {number} year
* @binding {number} month
* @binding {number} date
* @version 2.53.0
*/
/**
* @zh 自定义头部内容
* @en Custom header content
* @slot header
* @binding {number} year
* @binding {number} month
* @version 2.53.0
*/
setup(props, { emit, slots }) {
const { dayStartOfWeek, isWeek } = toRefs(props);
const prefixCls = getPrefixCls('calendar');
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/date-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.53.3
`2023-11-24`

### 🐛 BugFix

- fix invalid date due to mismatch between date and format ([#2789](https://github.com/arco-design/arco-design-vue/pull/2789))


## 2.52.0

`2023-09-22`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/date-picker/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.53.3
`2023-11-24`

### 🐛 问题修复

- 修复日期与format不一致导致出现无效日期 ([#2789](https://github.com/arco-design/arco-design-vue/pull/2789))


## 2.52.0

`2023-09-22`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/input-tag/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.53.3
`2023-11-24`

### 🐛 BugFix

- Fix the problem that the file can still be deleted under `read-only` ([#2824](https://github.com/arco-design/arco-design-vue/pull/2824))


## 2.38.1

`2022-11-04`
Expand Down
9 changes: 9 additions & 0 deletions packages/web-vue/components/input-tag/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
changelog: true
```
## 2.53.3
`2023-11-24`

### 🐛 问题修复

- 修复 `read-only` 下仍然能被删除的问题 ([#2824](https://github.com/arco-design/arco-design-vue/pull/2824))


## 2.38.1

`2022-11-04`
Expand Down
2 changes: 1 addition & 1 deletion packages/web-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arco-design/web-vue",
"version": "2.53.2",
"version": "2.53.3",
"description": "Arco Design Vue 2.0: A Vue.js 3 UI Library",
"keywords": [
"arco",
Expand Down

0 comments on commit 04d08a4

Please sign in to comment.