Skip to content

Releases: NG-ZORRO/ng-zorro-antd

7.3.3

Choose a tag to compare

@hsuanxyz hsuanxyz released this 25 Apr 12:33
dbce3fa

2019-04-25

Bug Fixes


Bug Fixes

7.3.2

Choose a tag to compare

@wzhudev wzhudev released this 22 Apr 14:49

Bug Fixes

  • build: fix bundling error of components.less (#3331) (fb19921)

Bug Fixes

  • build: 修复 components.less 的打包错误 (#3331) (fb19921)

7.3.1

Choose a tag to compare

@vthinkxie vthinkxie released this 22 Apr 05:05
b4161cd

Bug Fixes


Bug Fixes

7.3.0

Choose a tag to compare

@vthinkxie vthinkxie released this 21 Apr 05:52
469bff0

Features

Bug Fixes


Features

Read more

7.2.0

Choose a tag to compare

@hsuanxyz hsuanxyz released this 27 Mar 12:36
b6cf8fe

Bug Fixes

Features


Bug Fixes

Features

7.1.0

Choose a tag to compare

@simplejason simplejason released this 21 Mar 07:25
3e0e319

2019-03-21

Bug Fixes

Features


2019-03-21

Bug Fixes

Features

7.0.3

Choose a tag to compare

@vthinkxie vthinkxie released this 14 Mar 03:44
93a06cf

Bug Fixes

  • select: fix select init touched state error when disabled (#3084) (ba9d454), closes #3059

Build

  • build: add strictNullCheck config (#2126)
  • build: upgrade icon to 2.0.2 (#3085) (fc72d7d)

Bug Fixes

  • select: 修复 disabled 状态时 touched 初始状态错误的问题 (#3084) (ba9d454), closes #3059

Build

  • build: 增加 strictNullCheck 等更严格的 ts 校验措施 (#2126)
  • build: icon 依赖包升级至 2.0.2 (#3085) (fc72d7d)

7.0.2

Choose a tag to compare

@vthinkxie vthinkxie released this 11 Mar 11:43
c598214

Bug Fixes


Bug Fixes

  • pagination: 修复 Pagination 不随 pageIndex 变化的问题 (#3067) (f4948d7), closes #3049
  • steps: 修复 Steps 在外层组件 OnPush 下的问题 (#3061) (97adb2c)
  • table: 修复 Virtual Scroll 模式下 nzSize 不生效的问题 (#3063) (4fa16de), closes #3050
  • table: 修复 Table 下拉筛选特殊情况下不生效的问题 (#3064) (dbc33ae), closes #3028 #3056 #3058
  • transfer: 修复 Transfer 特殊情况下点击不生效的问题 (#3030) (f077294), closes #3026

7.0.1

Choose a tag to compare

@hsuanxyz hsuanxyz released this 04 Mar 09:55
fe8689c

Bug Fixes


Bug Fixes

7.0.0

Choose a tag to compare

@hsuanxyz hsuanxyz released this 28 Feb 13:38

It has been three months since we released the last stable version 1.8.1, and now here comes ng-zorro-antd 7.0.0! (From 7.0.0, the package’s major version number would be aligned to Angular’s)
According to the road map we published last year, we add 105 commits on the top of the last three release candidate versions. Now we have reached Milestone I.

  • All components now work with OnPush change detection strategy. You can anticipate a tremendous improvement of performance.
  • Animations are updated to meet Ant Design’s specifications. And you can configure animation globally or specifically to each component.
  • New components: Empty, Statistic, Countdown and Comment.
  • New features of Angular CDK is introduced to some components. For example, Table component now supports virtual scrolling.
  • Lots of new features. Lots of bug fixes.
  • You can use ISO date format in components like Calendar & Date Picker.
  • Global scrolling strategy is changed. Modal and Drawer components will no longer shake under some circumstances.
  • More strict TypeScript compiler options.
  • Brand new logo and documentation site.

We will move on to Milestone II right after this release. Server side rendering (SSR), secondary entries, global configurations and dynamic validation would be supported in future versions to come.

Update Guidance

  1. Update Angular and other packages to newest versions.

  2. Update ng-zorro-antd to 7.0.

Notice

Pay attention to these changes to ensure that your code works as expected:

  1. All components now work with OnPush strategy. Components with this strategy would not respond to mutations on object properties or array child items, even decorated with @input(). So you should make all your @input properties immutable objects. Not only this would ensure your code works correctly but also improve performance if you use immutable objects right. Please checkout our example below.
  2. We correct the meaning of nzDropdownMatchSelectWidth of Select component. Now it means exactly opposite of the old one.
  3. If you want to add a button to an input-group in search mode, you should use nzAddOnAfter instead of nzSuffix.

Changelog

Bug Fixes

Read more