ng2-date-picker-pda-forked
Version:
38 lines (37 loc) • 1.28 kB
HTML
<div class="dp-calendar-nav-container">
<div class="dp-calendar-nav-container-left">
<button type="button"
class="dp-calendar-nav-left"
[hidden]="!showLeftNav"
[disabled]="leftNavDisabled"
(click)="leftNavClicked()">
</button>
<button type="button"
class="dp-calendar-secondary-nav-left"
*ngIf="showLeftSecondaryNav"
[disabled]="leftSecondaryNavDisabled"
(click)="leftSecondaryNavClicked()">
</button>
</div>
<span class="dp-nav-header" [hidden]="isLabelClickable">{{label}}</span>
<button type="button"
class="dp-nav-header dp-nav-header-btn"
[hidden]="!isLabelClickable"
(click)="labelClicked()">
{{label}}
</button>
<div class="dp-calendar-nav-container-right">
<button type="button"
class="dp-calendar-secondary-nav-right"
*ngIf="showRightSecondaryNav"
[disabled]="rightSecondaryNavDisabled"
(click)="rightSecondaryNavClicked()">
</button>
<button type="button"
class="dp-calendar-nav-right"
[hidden]="!showRightNav"
[disabled]="rightNavDisabled"
(click)="rightNavClicked()">
</button>
</div>
</div>