ngx-persian-datepicker

you should have @angular/material, @angular/cdk and moment-jalaali installed to your app

Usage no npm install needed!

<script type="module">
  import ngxPersianDatepicker from 'https://cdn.skypack.dev/ngx-persian-datepicker';
</script>

README

Persian Jalali DatePicker for Angular Material

TypeScript ForTheBadge built-with-love

Angular persian datepicker with awesome features!

Prerequisites

you should have @angular/material, @angular/cdk and moment-jalaali installed to your app

Install

npm i --save ngx-persian-datepicker

Add Module

import {MatDatepickerModulePersian} from 'ngx-persian-datepicker';

Example

<md-datepicker type="wide" #picker (selectedChanged)="setDateReturn($event);"></md-datepicker>
<mat-form-field>
  <input required matInput (mouseup)="dpickerFocus(picker)" [(ngModel)]="today" (focus)="dpickerFocus(picker)" readonly
         [matDatepicker]="picker" placeholder="تاریخ">

</mat-form-field>