I have used daterangepicker
in my angular component with the following options:
optionsSingle = {
startDate: moment(),
endDate: moment(),
minDate: moment(),
locale: {
format: "DD/MM/YYYY"
},
alwaysShowCalendars: true,
autoApply: true,
singleDatePicker: true,
opens: "left"
};
I used a single date picker.