Is your feature request related to a problem? Please describe.
Currently, the bsDaterangepicker / bs-daterangepicker-inline component emits bsValueChange only when both start and end dates are selected.
This makes it difficult to handle scenarios where we want to react immediately after the start date is chosen (before the end date is picked), or when the end date is changed separately.
Describe the solution you'd like
Introduce two additional outputs (events) from the component:
- startDateChange: EventEmitter → emits whenever the start date is selected/changed.
- endDateChange: EventEmitter → emits whenever the end date is selected/changed.