Skip to content

Commit

Permalink
chore(*): Release-1.26.30
Browse files Browse the repository at this point in the history
  • Loading branch information
YSMJ1994 committed Nov 1, 2023
1 parent 377f9ad commit ccfe7c8
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 24 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Change Log
# Change Log

## [1.26.30](https://github.com/alibaba-fusion/next/compare/1.26.29...1.26.30) (2023-11-01)




## [1.26.29](https://github.com/alibaba-fusion/next/compare/1.26.28...1.26.29) (2023-11-01)

Expand Down
19 changes: 2 additions & 17 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,5 @@
# Latest Log
# Latest Log

## [1.26.29](https://github.com/alibaba-fusion/next/compare/1.26.28...1.26.29) (2023-11-01)


### Bug Fixes

* **Calendar:** calendar should support uncontrolled mode, close [#4491](https://github.com/alibaba-fusion/next/issues/4491) ([64396da](https://github.com/alibaba-fusion/next/commit/64396da))
* **Cascader:** first level menu always can collapse next level menus, close [#4472](https://github.com/alibaba-fusion/next/issues/4472) ([#4502](https://github.com/alibaba-fusion/next/issues/4502)) ([c8ed0b5](https://github.com/alibaba-fusion/next/commit/c8ed0b5))
* **Select:** should prevent scroll when click wrapper, close [#4492](https://github.com/alibaba-fusion/next/issues/4492) ([#4504](https://github.com/alibaba-fusion/next/issues/4504)) ([dae8daf](https://github.com/alibaba-fusion/next/commit/dae8daf))
* **Switch:** should unClickable while diabled, close [#4478](https://github.com/alibaba-fusion/next/issues/4478) ([28266ad](https://github.com/alibaba-fusion/next/commit/28266ad))
* **Tab:** scroll by active correctly, close [#4227](https://github.com/alibaba-fusion/next/issues/4227) ([#4505](https://github.com/alibaba-fusion/next/issues/4505)) ([1f0a4f4](https://github.com/alibaba-fusion/next/commit/1f0a4f4))


### Features

* **upload:** add listType 'none' to hide upload list ([#4500](https://github.com/alibaba-fusion/next/issues/4500)) ([bf5bf12](https://github.com/alibaba-fusion/next/commit/bf5bf12))
* **Breadcrumb:** Add onClick eventHandler for item, close [#4457](https://github.com/alibaba-fusion/next/issues/4457)([fdcf494](https://github.com/alibaba-fusion/next/commit/fdcf494))
## [1.26.30](https://github.com/alibaba-fusion/next/compare/1.26.29...1.26.30) (2023-11-01)


9 changes: 5 additions & 4 deletions docs/breadcrumb/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@

### Breadcrumb.Item

| 参数 | 说明 | 类型 | 默认值 |
| ---- | -------------------------------------------- | ------ |------|
| link | 面包屑节点链接,如果设置这个属性,则该节点为`<a />` ,否则是`<span />` | String | - |
| onClick | 单击事件 | Function (event: MouseEvent) => void | - |
| 参数 | 说明 | 类型 | 默认值 |
| ------- | --------------------------------------------------------------------------------------------------------------- | -------- | --- |
| link | 面包屑节点链接,如果设置这个属性,则该节点为`<a />` ,否则是`<span />` | String | - |
| onClick | 元素点击事件<br/><br/>**签名**:<br/>Function(e: MouseEvent) => void<br/>**参数**:<br/>_e_: {MouseEvent} Click Mouse Event | Function | - |

## 无障碍键盘操作指南

| 按键 | 说明 |
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');

next.version = '1.26.29';
next.version = '1.26.30';

module.exports = next;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.26.29",
"version": "1.26.30",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
4 changes: 4 additions & 0 deletions src/breadcrumb/item.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ class Item extends Component {
separator: PropTypes.node,
className: PropTypes.any,
children: PropTypes.node,
/**
* 元素点击事件
* @param {MouseEvent} e Click Mouse Event
*/
onClick: PropTypes.func,
};

Expand Down

0 comments on commit ccfe7c8

Please sign in to comment.