Skip to content

Commit

Permalink
feat(ui5-date-picker): add missing event details
Browse files Browse the repository at this point in the history
  • Loading branch information
hinzzx committed Jan 25, 2024
1 parent d473420 commit 5a300aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/main/src/DatePicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ type DatePickerInputEventDetail = {
* @param {string} value The submitted value.
* @param {boolean} valid Indicator if the value is in correct format pattern and in valid range.
*/
@event("change", {
@event<DatePickerChangeEventDetail>("change", {
detail: {
/**
* @public
Expand All @@ -206,7 +206,7 @@ type DatePickerInputEventDetail = {
* @param {string} value The submitted value.
* @param {boolean} valid Indicator if the value is in correct format pattern and in valid range.
*/
@event("input", {
@event<DatePickerInputEventDetail>("input", {
detail: {
/**
* @public
Expand Down

0 comments on commit 5a300aa

Please sign in to comment.