Looking to implement a datepicker that allows selecting the hours, so I decided to add an Angular component. After searching, I found the perfect component: https://www.npmjs.com/package/angular-bootstrap-datetimepicker
Although this component is originally in English, I am planning to translate it into French...
<div class="col-md-6">
<dl-date-time-picker
startView="day"
maxView="year"
minView="minute"
minuteStep="5"
[(ngModel)]="selectedDate"
>
</dl-date-time-picker>
Appreciate any assistance with this, thanks!