ng2-date-picker-pda-forked
Version:
30 lines (28 loc) • 1.05 kB
HTML
<div class="dp-month-calendar-container">
<dp-calendar-nav
[]="getNavLabel()"
[]="shouldShowLeftNav()"
[]="shouldShowLeftSecondaryNav()"
[]="shouldShowRightNav()"
[]="shouldShowRightSecondaryNav()"
[]="isNavHeaderBtnClickable()"
[]="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"
[]="isDisabledMonth(month)"
[]="getMonthBtnCssClass(month)"
(click)="monthClicked(month)">
{{getMonthBtnText(month)}}
</button>
</div>
</div>
</div>