Skip to content

Commit

Permalink
fix(datepicker): double tap ios issue
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloff200 committed Jun 16, 2020
1 parent 1dc5308 commit 25ebab2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/datepicker/bs-datepicker-inline.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ export class BsDatepickerInlineDirective implements OnInit, OnDestroy, OnChanges
*/
@Output() bsValueChange: EventEmitter<Date> = new EventEmitter();

/**
* Emits an event when the datepicker is shown
*/
@Output() onShown: EventEmitter<boolean>;
/**
* Emits an event when the datepicker is hidden
*/
@Output() onHidden: EventEmitter<boolean>;

protected _subs: Subscription[] = [];

private _datepicker: ComponentLoader<BsDatepickerInlineContainerComponent>;
Expand Down

0 comments on commit 25ebab2

Please sign in to comment.