TimePicker
TimePicker
To select/input a time.
가져오기import{ TimePicker }from"antd"; |
가져오기import{ TimePicker }from"antd"; |
By clicking the input box, you can select a time from a popup panel.
Common props ref:Common props
import dayjs from 'dayjs';import customParseFormat from 'dayjs/plugin/customParseFormat'dayjs.extend(customParseFormat)<TimePicker defaultValue={dayjs('13:30:56', 'HH:mm:ss')} />;
Property | Description | Type | Default | Version |
---|---|---|---|---|
allowClear | Customize clear icon | boolean | { clearIcon?: ReactNode } | true | 5.8.0: Support object type |
autoFocus | If get focus when component mounted | boolean | false | |
cellRender | Custom rendering function for picker cells | (current: number, info: { originNode: React.ReactElement, today: dayjs, range?: 'start' | 'end', subType: 'hour' | 'minute' | 'second' | 'meridiem' }) => React.ReactNode | - | 5.4.0 |
changeOnScroll | Trigger selection when scroll the column | boolean | false | 5.14.0 |
className | The className of picker | string | - | |
defaultValue | To set default time | dayjs | - | |
disabled | Determine whether the TimePicker is disabled | boolean | false | |
disabledTime | To specify the time that cannot be selected | DisabledTime | - | 4.19.0 |
format | To set the time format | string | HH:mm:ss | |
getPopupContainer | To set the container of the floating layer, while the default is to create a div element in body | function(trigger) | - | |
hideDisabledOptions | Whether hide the options that can not be selected | boolean | false | |
hourStep | Interval between hours in picker | number | 1 | |
inputReadOnly | Set the readonly attribute of the input tag (avoids virtual keyboard on touch devices) | boolean | false | |
minuteStep | Interval between minutes in picker | number | 1 | |
needConfirm | Need click confirm button to trigger value change | boolean | - | 5.14.0 |
open | Whether to popup panel | boolean | false | |
placeholder | Display when there's no value | string | [string, string] | Select a time | |
placement | The position where the selection box pops up | bottomLeft bottomRight topLeft topRight | bottomLeft | |
popupClassName | The className of panel | string | - | |
popupStyle | The style of panel | CSSProperties | - | |
renderExtraFooter | Called from time picker panel to render some addon to its bottom | () => ReactNode | - | |
secondStep | Interval between seconds in picker | number | 1 | |
showNow | Whether to show Now button on panel | boolean | - | 4.4.0 |
size | To determine the size of the input box, the height of large and small , are 40px and 24px respectively, while default size is 32px | large | middle | small | - | |
status | Set validation status | 'error' | 'warning' | 'success' | 'validating' | - | 4.19.0 |
suffixIcon | The custom suffix icon | ReactNode | - | |
use12Hours | Display as 12 hours format, with default format h:mm:ss a | boolean | false | |
value | To set time | dayjs | - | |
variant | Variants of picker | outlined | borderless | filled | outlined | 5.13.0 |
onCalendarChange | Callback function, can be executed when the start time or the end time of the range is changing. info argument is added in 4.4.0 | function(dates: [dayjs, dayjs], dateStrings: [string, string], info: { range:start |end }) | - | |
onChange | A callback function, can be executed when the selected time is changing | function(time: dayjs, timeString: string): void | - | |
onOpenChange | A callback function which will be called while panel opening/closing | (open: boolean) => void | - |
type DisabledTime = (now: Dayjs) => {disabledHours?: () => number[];disabledMinutes?: (selectedHour: number) => number[];disabledSeconds?: (selectedHour: number, selectedMinute: number) => number[];disabledMilliseconds?: (selectedHour: number,selectedMinute: number,selectedSecond: number,) => number[];};
Note: disabledMilliseconds
is added in 5.14.0
.
Name | Description | Version |
---|---|---|
blur() | Remove focus | |
focus() | Get focus |
Same props from RangePicker of DatePicker. And includes additional props:
Property | Description | Type | Default | Version |
---|---|---|---|---|
disabledTime | To specify the time that cannot be selected | RangeDisabledTime | - | 4.19.0 |
order | Order start and end time | boolean | true | 4.1.0 |
type RangeDisabledTime = (now: Dayjs,type = 'start' | 'end',) => {disabledHours?: () => number[];disabledMinutes?: (selectedHour: number) => number[];disabledSeconds?: (selectedHour: number, selectedMinute: number) => number[];};
토큰 이름 | 설명 | 타입 | 기본값 |
---|---|---|---|
activeBg | 输入框激活状态时背景颜色 | string | #ffffff |
activeBorderColor | 激活态边框色 | string | #1677ff |
activeShadow | 激活态阴影 | string | 0 0 0 2px rgba(5, 145, 255, 0.1) |
addonBg | 前/后置标签背景色 | string | rgba(0, 0, 0, 0.02) |
cellActiveWithRangeBg | 选取范围内的单元格背景色 | string | #e6f4ff |
cellBgDisabled | 单元格禁用态背景色 | string | rgba(0, 0, 0, 0.04) |
cellHeight | 单元格高度 | number | 24 |
cellHoverBg | 单元格悬浮态背景色 | string | rgba(0, 0, 0, 0.04) |
cellHoverWithRangeBg | 选取范围内的单元格悬浮态背景色 | string | #c8dfff |
cellRangeBorderColor | 选取范围时单元格边框色 | string | #7cb3ff |
cellWidth | 单元格宽度 | number | 36 |
errorActiveShadow | 错误状态时激活态阴影 | string | 0 0 0 2px rgba(255, 38, 5, 0.06) |
hoverBg | 输入框hover状态时背景颜色 | string | #ffffff |
hoverBorderColor | 悬浮态边框色 | string | #4096ff |
inputFontSize | 字体大小 | number | 14 |
inputFontSizeLG | 大号字体大小 | number | 16 |
inputFontSizeSM | 小号字体大小 | number | 14 |
multipleItemBg | 다중 선택 태그의 배경색 | string | rgba(0, 0, 0, 0.06) |
multipleItemBorderColor | 다중 선택 태그의 테두리 색상 | string | transparent |
multipleItemBorderColorDisabled | 비활성화된 경우 다중 선택 태그의 테두리 색상 | string | transparent |
multipleItemColorDisabled | 비활성화된 경우 다중 선택 태그의 텍스트 색상 | string | rgba(0, 0, 0, 0.25) |
multipleItemHeight | 다중 선택 태그의 높이 | number | 24 |
multipleItemHeightLG | 큰 크기의 다중 선택 태그의 높이 | number | 32 |
multipleItemHeightSM | 작은 크기의 다중 선택 태그의 높이 | number | 16 |
multipleSelectorBgDisabled | 비활성화된 경우 다중 선택기의 배경색 | string | rgba(0, 0, 0, 0.04) |
paddingBlock | 输入框纵向内边距 | number | 4 |
paddingBlockLG | 大号输入框纵向内边距 | number | 7 |
paddingBlockSM | 小号输入框纵向内边距 | number | 0 |
paddingInline | 输入框横向内边距 | number | 11 |
paddingInlineLG | 大号输入框横向内边距 | number | 11 |
paddingInlineSM | 小号输入框横向内边距 | number | 7 |
presetsMaxWidth | 预设区域最大宽度 | number | 200 |
presetsWidth | 预设区域宽度 | number | 120 |
textHeight | 单元格文本高度 | number | 40 |
timeCellHeight | 时间单元格高度 | number | 28 |
timeColumnHeight | 时间列高度 | number | 224 |
timeColumnWidth | 时间列宽度 | number | 56 |
warningActiveShadow | 警告状态时激活态阴影 | string | 0 0 0 2px rgba(255, 215, 5, 0.1) |
withoutTimeCellHeight | 十年/年/季/月/周单元格高度 | number | 66 |
zIndexPopup | 弹窗 z-index | number | 1050 |