fix: add missing TimePicker type definitions for notClearable, triggerFullWidth, showTimezone and placement

This commit is contained in:
lyzno1 2025-11-11 15:18:14 +08:00
parent 707c94f86e
commit 9de0e3c3a7
No known key found for this signature in database
1 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import type { Dayjs } from 'dayjs'
import type { Placement } from '@floating-ui/react'
export enum ViewType {
date = 'date',
@ -65,6 +66,10 @@ export type TimePickerProps = {
title?: string
minuteFilter?: (minutes: string[]) => string[]
popupClassName?: string
notClearable?: boolean
triggerFullWidth?: boolean
showTimezone?: boolean
placement?: Placement
}
export type TimePickerFooterProps = {