UNPKG

ng2-date-picker-pda-forked

Version:
30 lines (28 loc) 1.05 kB
<div class="dp-month-calendar-container"> <dp-calendar-nav [label]="getNavLabel()" [showLeftNav]="shouldShowLeftNav()" [showLeftSecondaryNav]="shouldShowLeftSecondaryNav()" [showRightNav]="shouldShowRightNav()" [showRightSecondaryNav]="shouldShowRightSecondaryNav()" [isLabelClickable]="isNavHeaderBtnClickable()" [theme]="theme" (onLeftNav)="onLeftNav()" (onLeftSecondaryNav)="onLeftSecondaryNav()" (onRightNav)="onRightNav()" (onRightSecondaryNav)="onRightSecondaryNav()" (onLabelClick)="toggleCalendar()"> </dp-calendar-nav> <div class="dp-calendar-wrapper"> <div class="dp-months-row" *ngFor="let monthRow of yearMonths"> <button type="button" class="dp-calendar-month" *ngFor="let month of monthRow" [disabled]="isDisabledMonth(month)" [ngClass]="getMonthBtnCssClass(month)" (click)="monthClicked(month)"> {{getMonthBtnText(month)}} </button> </div> </div> </div>