Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ng-zorro-antd

Package Overview
Dependencies
Maintainers
7
Versions
201
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-zorro-antd

An enterprise-class UI components based on Ant Design and Angular

  • 15.1.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
7
Created

What is ng-zorro-antd?

ng-zorro-antd is a UI component library for Angular applications, based on the Ant Design system. It provides a wide range of high-quality, customizable components that follow the Ant Design guidelines, making it easier to build consistent and visually appealing user interfaces.

What are ng-zorro-antd's main functionalities?

Button

The Button component is used to trigger actions or events. It supports different types, sizes, and states.

<button nz-button nzType="primary">Primary Button</button>

Table

The Table component is used to display data in a tabular format. It supports features like sorting, pagination, and filtering.

<nz-table [nzData]="dataSet" [nzColumns]="columns"></nz-table>

Form

The Form component is used to create and manage forms. It supports validation, layout, and various input types.

<form nz-form [formGroup]="validateForm" (ngSubmit)="submitForm()"><nz-form-item><nz-form-label [nzSpan]="4" nzFor="userName">Username</nz-form-label><nz-form-control [nzSpan]="8"><input nz-input formControlName="userName" id="userName" /></nz-form-control></nz-form-item></form>

Modal

The Modal component is used to display content in a layer above the current page. It supports various configurations like title, footer, and actions.

<button nz-button (click)="isVisible = true">Show Modal</button><nz-modal [(nzVisible)]="isVisible" nzTitle="Modal Title" (nzOnCancel)="handleCancel()" (nzOnOk)="handleOk()"><p>Modal Content</p></nz-modal>

Notification

The Notification component is used to display messages to the user. It supports different types of notifications like success, error, and info.

this.notification.blank('Notification Title', 'This is the content of the notification.');

Other packages similar to ng-zorro-antd

Keywords

FAQs

Package last updated on 27 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc