1.3.0 • Published 2 years ago

ng-met-antd v1.3.0

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Angular DatePicker component library based on Ant Design.

npm package extension-for-VSCode code style: prettier

Demo

View DatePickerJalali in action at Stackblitz Demo

🖥 Environment Support

IE / EdgeFirefoxChromeSafariOperaElectron
Edgelast 2 versionslast 2 versionslast 2 versionslast 2 versionslast 2 versions

📦 Installation

We recommend using @angular/cli to install. It not only makes development easier, but also allows you to take advantage of the rich ecosystem of angular packages and tooling.

$ ng new PROJECT_NAME
$ cd PROJECT_NAME
$ ng add ng-zorro-antd

More information about @angular/cli here.

You can also install ng-zorro-antd with npm or yarn, Then install ng-met-antd/components with npm or yarn for Jalali

$ npm install ng-zorro-antd
$ npm install ng-met-antd

Provide custom DateAdapter

If you need to present another calendar like Jalali or Hijri, you can provide a custom NzDateAdapter which implements required methods to deal with native date object.

Example

import { NzDateAdapter } from 'ng-met-antd/core';

export class CustomDateAdapter extends NzDateAdapter<any> {
  // implementation of abstract methods
}

@NgModule({
  providers: [{ provide: NzDateAdapter, useClass: CustomDateAdapter }],
})
export class AppModule {}

Sample

Jalali-Moment date adapter

1.3.0

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago