chore: Merge master

This commit is contained in:
zombiej 2019-12-30 16:43:34 +08:00
commit 530db658bc
6 changed files with 25 additions and 5 deletions

View File

@ -15,6 +15,16 @@ timeline: true
---
## 3.26.5
`2019-12-29`
- Table
- 🐞 Revert the logic of return fisrt page by default after sort. [#20507](https://github.com/ant-design/ant-design/pull/20507)
- 🐞 Fix header wrong text align when `colspan=1`. [#20463](https://github.com/ant-design/ant-design/pull/20463)
- 🐞 Fix Tabs ink bar disappearing when `animated` prop is false. [#20417](https://github.com/ant-design/ant-design/pull/20417) [@xrkffgg](https://github.com/xrkffgg)
- 🐞 Fix Tree wrong indent. [#20456](https://github.com/ant-design/ant-design/pull/20456)
## 3.26.4
`2019-12-22`

View File

@ -15,6 +15,16 @@ timeline: true
---
## 3.26.5
`2019-12-29`
- Table
- 🐞 回滚排序后默认回到第一页的逻辑。[#20507](https://github.com/ant-design/ant-design/pull/20507)
- 🐞 修复分组列头在 `colspan=1` 时文本没有对齐的问题。[#20463](https://github.com/ant-design/ant-design/pull/20463)
- 🐞 修复 Tabs 的 `animated` 属性为 false 时,高亮条消失的问题。[#20417](https://github.com/ant-design/ant-design/pull/20417) [@xrkffgg](https://github.com/xrkffgg)
- 🐞 修复 Tree 节点缩进不正确的问题。[#20456](https://github.com/ant-design/ant-design/pull/20456)
## 3.26.4
`2019-12-22`

View File

@ -11,7 +11,6 @@
.reset-component;
display: inline-block;
line-height: unset;
}
// 一般状态

View File

@ -199,7 +199,7 @@ function Table<RecordType extends object = any>(props: TableProps<RecordType>) {
sorter,
sorterStates,
},
true,
false,
);
};

View File

@ -546,6 +546,7 @@ describe('Table.sorter', () => {
createTable({
pagination: {
pageSize: 2,
defaultCurrent: 2,
onChange: onPageChange,
},
onChange,
@ -553,8 +554,8 @@ describe('Table.sorter', () => {
);
wrapper.find('.ant-table-column-sorters').simulate('click');
expect(onChange.mock.calls[0][0].current).toBe(1);
expect(onPageChange.mock.calls[0][0]).toBe(1);
expect(onChange.mock.calls[0][0].current).toBe(2);
expect(onPageChange).not.toHaveBeenCalled();
});
it('should support onHeaderCell in sort column', () => {

View File

@ -12,7 +12,7 @@ import { ping, getMetaDescription } from '../utils';
class ComponentDoc extends React.Component {
state = {
expandAll: false,
visibleAll: false,
visibleAll: process.env.NODE_ENV !== 'production',
showRiddleButton: false,
};