Type alias DatePickerProps
DatePickerProps: Pick<PickerProps, "onCancel" | "onClose" | "closeOnMaskClick" | "visible" | "confirmText" | "cancelText" | "getContainer" | "loading" | "loadingContent" | "afterShow" | "afterClose" | "onClick" | "title" | "stopPropagation" | "style" | "mouseWheel" | "forceRender" | "destroyOnClose"> & { children?: ((value,
actions) => ReactNode); defaultValue?: PickerDate | null; filter?: DatePickerFilter; max?: PickerDate; min?: PickerDate; onConfirm?: ((value) => void); onSelect?: ((value) => void); precision?: Precision; renderLabel?: RenderLabel; tillNow?: boolean; value?: PickerDate | null; } & NativeProps Type declaration
Optional children?: ((value, actions) => ReactNode)
- (value, actions): ReactNode
Parameters
value: PickerDate | null
actions: PickerActions
Returns ReactNode
Optional defaultValue?: PickerDate | null
Optional filter?: DatePickerFilter
Optional max?: PickerDate
Optional min?: PickerDate
Optional onConfirm?: ((value) => void)
- (value): void
Returns void
Optional onSelect?: ((value) => void)
- (value): void
Returns void
Optional precision?: Precision
Optional renderLabel?: RenderLabel
Optional tillNow?: boolean
Optional value?: PickerDate | null