Skip to content

Commit

Permalink
release of v10.62.2 (#4430)
Browse files Browse the repository at this point in the history
Contains typescript fixes for DatePicker
  • Loading branch information
langz authored Jan 2, 2025
2 parents 3ff159d + a248ace commit 96d4798
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,7 @@ export type DatePickerAllProps = DatePickerProps &
| 'onBlur'
| 'onFocus'
| 'onSubmit'
| 'onReset'
| 'start'
>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export type ReturnObject<E> = {
attributes?: Record<string, unknown>
days_between?: number
date?: string | null
start_date?: string
end_date?: string
start_date?: string | null
end_date?: string | null
is_valid?: boolean
is_valid_start_date?: boolean
is_valid_end_date?: boolean
Expand Down

0 comments on commit 96d4798

Please sign in to comment.