Skip to content

Commit

Permalink
chore(*): Release-1.24.4
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Sep 18, 2021
1 parent bc6564d commit e262bf2
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 9 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Change Log

## [1.24.4](https://github.com/alibaba-fusion/next/compare/1.24.3...1.24.4) (2021-09-18)


### Bug Fixes

* **Breadcrumb:** empty node, close [#2699](https://github.com/alibaba-fusion/next/issues/2699) ([ed57bdc](https://github.com/alibaba-fusion/next/commit/ed57bdc))
* **Calendar:** showOtherMonth=false style, close [#3321](https://github.com/alibaba-fusion/next/issues/3321) ([2997a17](https://github.com/alibaba-fusion/next/commit/2997a17))
* **Collapse:** enhace empty node ([bc6564d](https://github.com/alibaba-fusion/next/commit/bc6564d))
* **DatePicker:** style issue, close [#3353](https://github.com/alibaba-fusion/next/issues/3353) ([#3354](https://github.com/alibaba-fusion/next/issues/3354)) ([860ec8f](https://github.com/alibaba-fusion/next/commit/860ec8f))
* **Input:** disabled mutual hasClear, drawer repair afterOpen warning, close [#2933](https://github.com/alibaba-fusion/next/issues/2933) [#3145](https://github.com/alibaba-fusion/next/issues/3145) ([39daa7c](https://github.com/alibaba-fusion/next/commit/39daa7c))
* move some props to behind others ([58cf157](https://github.com/alibaba-fusion/next/commit/58cf157))


### Features

* add main.scss for only main style ([97814ec](https://github.com/alibaba-fusion/next/commit/97814ec))




## [1.24.3](https://github.com/alibaba-fusion/next/compare/1.24.2...1.24.3) (2021-09-14)


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

## [1.24.3](https://github.com/alibaba-fusion/next/compare/1.24.2...1.24.3) (2021-09-14)
## [1.24.4](https://github.com/alibaba-fusion/next/compare/1.24.3...1.24.4) (2021-09-18)


### Bug Fixes

* **Dialog:** node-sass upgrade fix [#3338](https://github.com/alibaba-fusion/next/issues/3338) ([119976c](https://github.com/alibaba-fusion/next/commit/119976c))
* **Table:** noBorder with round corner should work, close [#3329](https://github.com/alibaba-fusion/next/issues/3329) ([cd5d61f](https://github.com/alibaba-fusion/next/commit/cd5d61f))
* **Table:** scroll alwaysshow + fixedHeader, close [#3328](https://github.com/alibaba-fusion/next/issues/3328) ([90d4f74](https://github.com/alibaba-fusion/next/commit/90d4f74))
* **Breadcrumb:** empty node, close [#2699](https://github.com/alibaba-fusion/next/issues/2699) ([ed57bdc](https://github.com/alibaba-fusion/next/commit/ed57bdc))
* **Calendar:** showOtherMonth=false style, close [#3321](https://github.com/alibaba-fusion/next/issues/3321) ([2997a17](https://github.com/alibaba-fusion/next/commit/2997a17))
* **Collapse:** enhace empty node ([bc6564d](https://github.com/alibaba-fusion/next/commit/bc6564d))
* **DatePicker:** style issue, close [#3353](https://github.com/alibaba-fusion/next/issues/3353) ([#3354](https://github.com/alibaba-fusion/next/issues/3354)) ([860ec8f](https://github.com/alibaba-fusion/next/commit/860ec8f))
* **Input:** disabled mutual hasClear, drawer repair afterOpen warning, close [#2933](https://github.com/alibaba-fusion/next/issues/2933) [#3145](https://github.com/alibaba-fusion/next/issues/3145) ([39daa7c](https://github.com/alibaba-fusion/next/commit/39daa7c))
* move some props to behind others ([58cf157](https://github.com/alibaba-fusion/next/commit/58cf157))


### Features

* **Card:** add hasBorder ([14de219](https://github.com/alibaba-fusion/next/commit/14de219))
* add main.scss for only main style ([97814ec](https://github.com/alibaba-fusion/next/commit/97814ec))


1 change: 1 addition & 0 deletions docs/drawer/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
| cache | 隐藏时是否保留子节点,不销毁 | Boolean | - | |
| closeMode | [推荐]控制对话框关闭的方式,值可以为字符串或者数组,其中字符串、数组均为以下值的枚举:<br/>**close** 表示点击关闭按钮可以关闭对话框<br/>**mask** 表示点击遮罩区域可以关闭对话框<br/>**esc** 表示按下 esc 键可以关闭对话框<br/>如 'close' 或 ['close','esc','mask'], \[] | Array&lt;Enum>/Enum | - | 1.21 |
| onClose | 对话框关闭时触发的回调函数<br/><br/>**签名**:<br/>Function(trigger: String, event: Object) => void<br/>**参数**:<br/>_trigger_: {String} 关闭触发行为的描述字符串<br/>_event_: {Object} 关闭时事件对象 | Function | () => {} | |
| afterOpen | 对话框打开后的回调函数<br/><br/>**签名**:<br/>Function() => void | Function | - | |
| placement | 位于页面的位置<br/><br/>**可选值**:<br/>'top', 'right', 'bottom', 'left' | Enum | 'right' | |
| title | 标题 | ReactNode | - | |
| headerStyle | header上的样式 | Object | - | |
Expand Down
2 changes: 1 addition & 1 deletion docs/table/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ ReactDOM.render(
| primaryKey | dataSource当中数据的主键,如果给定的数据源中的属性不包含该主键,会造成选择状态全部选中 | Symbol/String | 'id' | |
| expandedRowRender | 额外渲染行的渲染函数<br/><br/>**签名**:<br/>Function(record: Object, index: Number) => Element<br/>**参数**:<br/>_record_: {Object} 该行所对应的数据<br/>_index_: {Number} 该行所对应的序列<br/>**返回值**:<br/>{Element} 渲染内容<br/> | Function | - | |
| rowExpandable | 设置行是否可展开,设置 false 为不可展开<br/><br/>**签名**:<br/>Function(record: Object, index: Number) => Boolean<br/>**参数**:<br/>_record_: {Object} 该行所对应的数据<br/>_index_: {Number} 该行所对应的序列<br/>**返回值**:<br/>{Boolean} 是否可展开<br/> | Function | - | |
| expandedRowIndent | 额外渲染行的缩进, 格式为[左边空几列, 右边空几列],默认值是[当前左锁列的数量, 当前右锁列的数量] | Array | - | |
| expandedRowIndent | 额外渲染行的缩进 | Array | - | |
| hasExpandedRowCtrl | 是否显示点击展开额外渲染行的+号按钮 | Boolean | - | |
| getExpandedColProps | 设置额外渲染行的属性<br/><br/>**签名**:<br/>Function(record: Object, index: Number) => Object<br/>**参数**:<br/>_record_: {Object} 该行所对应的数据<br/>_index_: {Number} 该行所对应的序列<br/>**返回值**:<br/>{Object} 额外渲染行的属性<br/> | Function | - | |
| openRowKeys | 当前展开的 Expand行 或者 Tree行 , 传入此属性为受控状态,一般配合 onRowOpen 使用 | Array | - | |
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.24.3';
next.version = '1.24.4';

module.exports = next;
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.24.3",
"version": "1.24.4",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down Expand Up @@ -77,7 +77,7 @@
"precommit": "lint-staged",
"changelog": "node ./scripts/changelog.js",
"mix": "node ./scripts/mix.js",
"prepub": "npm run tslint && npm run eslint && npm run stylelint && npm run changelog && npm run build && npm run tslint && npm run check && npm run docs && npm run clear-dist && npm run pack && npm run pack -- minimize && npm run pack-adaptor"
"prepub": "npm run eslint && npm run stylelint && npm run changelog && npm run build && npm run check && npm run docs && npm run clear-dist && npm run pack && npm run pack -- minimize && npm run pack-adaptor"
},
"lint-staged": {
"types/**/*.d.ts": [
Expand Down

0 comments on commit e262bf2

Please sign in to comment.