mirror of https://github.com/langgenius/dify.git
fix: add missing TimePicker type definitions for notClearable, triggerFullWidth, showTimezone and placement
This commit is contained in:
parent
707c94f86e
commit
9de0e3c3a7
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue