Skip to content

Commit de55288

Browse files
authored
release(0.7.0-beta.4): release 0.7.0-beta.4 (#1319)
1 parent 0416900 commit de55288

5 files changed

Lines changed: 66 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ $ yarn add ng-zorro-antd
5050
If you are in a bad network environment,you can try other registries and tools like [cnpm](https://github.com/cnpm/cnpm).
5151

5252

53-
## Companies using antd
53+
## Companies using ng-zorro-antd
5454

5555
- [Alibaba](http://www.alibaba.com/)
5656
- [Aliyun](http://www.aliyun.com/)

components/timeline/nz-timeline.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ import { NzTimelineItemComponent } from './nz-timeline-item.component';
3535
})
3636
export class NzTimelineComponent implements AfterContentInit, OnDestroy {
3737
private _pending: string | boolean | TemplateRef<void>;
38-
private isPendingString: boolean;
39-
private isPendingBoolean: boolean = false;
4038
private timeLineSubscription: Subscription;
39+
isPendingString: boolean;
40+
isPendingBoolean: boolean = false;
4141

4242
@Input()
4343
set nzPending(value: string | boolean | TemplateRef<void>) {

docs/changelog.zh-CN.md

Lines changed: 54 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,64 @@ timeline: true
1212
* 主版本号:含有破坏性更新和新特性,不在发布周期内。
1313

1414
---
15-
##
15+
## 0.7.0-beta.4
16+
17+
#### Mention
18+
19+
- 新增 Mention 组件
1620

1721
#### Tree
1822

1923
- `nzTreeData` 变更为 `ngModel`, 初始化数据使用 `new NzTreeNode({})`,请参阅示例
2024
- 新增 `origin` 属性存储用户原始数据
21-
- 支持根据 `NzTreeComponent` 上下文获取NzTreeService
25+
- 支持根据 `NzTreeComponent` 上下文获取 `NzTreeService`
26+
27+
#### Table
28+
29+
- 修复计算滚动条宽度导致的重绘问题
30+
- 修复过滤器高亮问题
31+
32+
#### Message
33+
34+
- 修复动态创建时报错的问题
35+
36+
#### Notification
37+
38+
- 修复动态创建时报错的问题
39+
40+
#### Card
41+
42+
- 修复了 `card-meta` 的对齐问题
43+
44+
#### Transfer
45+
46+
- 修复了 Transfer 在 OnPush 下使用的问题
47+
48+
#### Select
49+
50+
- 修复 `nzValue` 值为 0 不能选中的问题
51+
- 修复滚动条定位的问题
52+
53+
#### Carousel
54+
55+
- 修复自动播放的问题
56+
57+
#### Menu
58+
59+
- 修复动态修改结构时 `ExpressionChangedAfterItHasBeenCheckedError` 的问题
60+
61+
#### i18n
62+
63+
- 更详细的描述了国际化的使用方式
64+
- 修复了未设置 i18n 时的报错
65+
66+
#### 其他
67+
68+
- 官网支持动态修改主题
69+
- 更新了 angular.cn 的网址
70+
- 更新了 `Upload` 组件的说明
71+
- 更新了 `Tree` 组件的说明
72+
2273

2374
## 0.7.0-beta.3
2475

@@ -27,7 +78,7 @@ timeline: true
2778
- 支持拖拽文件夹前 `beforeDrop` 进行确认的API
2879

2980
#### Modal
30-
81+
3182
- 支持手动触发 `nzOnOk``nzOnCancel` 的方法
3283

3384
#### Cascader

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-zorro-antd",
3-
"version": "0.7.0-beta.3",
3+
"version": "0.7.0-beta.4",
44
"license": "MIT",
55
"description": "An enterprise-class UI components based on Ant Design and Angular",
66
"scripts": {

site_scripts/_site/src/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@
3939
}
4040
}(window.location))
4141
</script>
42+
<!-- Global site tag (gtag.js) - Google Analytics -->
43+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-52892298-2"></script>
44+
<script>
45+
window.dataLayer = window.dataLayer || [];
46+
function gtag(){dataLayer.push(arguments);}
47+
gtag('js', new Date());
4248

49+
gtag('config', 'UA-52892298-2');
50+
</script>
4351
</body>
4452
</html>

0 commit comments

Comments
 (0)