ng-zorro-antd
extra episode!
so as to consider future compatibility in ng-zorro-antd 3.x,
ng-list-antd
was changed tong-zorro-antd-extra
.
ng-zorro-antd
^0.6.0
Name | API | Status |
---|---|---|
nz-list |
link | Finished |
nz-card |
link | Finished |
nz-divider |
link | Finished |
nz-icon |
link | Finished |
nz-radio-extra |
link | Deprecated |
Install ng-zorro-antd-extra
from npm
npm install ng-zorro-antd-extra --save
Import the NzListModule
in to your root AppModule
.
Important: Don't use NgZorroAntdModule.forRoot()
load all modules, should be like app.modules.ts method.
import { NgZorroAntdExtraModule } from 'ng-zorro-antd-extra';
// or
// import { NzListModule, NzCardModule, NzDividerModule } from 'ng-zorro-antd-extra';
@NgModule({
imports: [
NgZorroAntdExtraModule.forRoot()
]
})
export class AppModule { }
Please follow this guidelines when reporting bugs and feature requests:
- Use GitHub Issues board to report bugs and feature requests (not our email address)
- Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.
Thanks for understanding!
The MIT License (see the LICENSE file for the full text)