2020-10-16 10:18:06 +08:00
|
|
|
import { PropType } from 'vue';
|
2020-11-03 22:57:14 +08:00
|
|
|
import moment from 'moment';
|
2020-10-11 21:31:57 +08:00
|
|
|
import PropTypes, { withUndefined } from '../_util/vue-types';
|
2020-10-15 12:33:51 +08:00
|
|
|
import { tuple } from '../_util/type';
|
2020-10-16 10:18:06 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export type PickerValue = moment.Moment | undefined | null | string;
|
2020-10-16 10:18:06 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export type RangePickerValue =
|
|
|
|
| undefined[]
|
|
|
|
| null[]
|
|
|
|
| [moment.Moment | string]
|
|
|
|
| [undefined, moment.Moment | string]
|
|
|
|
| [moment.Moment | string, undefined]
|
|
|
|
| [null, moment.Moment | string]
|
|
|
|
| [moment.Moment | string, null]
|
|
|
|
| [moment.Moment, moment.Moment]
|
|
|
|
| [string, string];
|
2020-10-16 10:18:06 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export const PickerProps = {
|
2020-03-07 19:45:13 +08:00
|
|
|
name: PropTypes.string,
|
2018-03-17 21:38:29 +08:00
|
|
|
transitionName: PropTypes.string,
|
2018-03-16 11:19:02 +08:00
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
inputPrefixCls: PropTypes.string,
|
2020-07-01 15:00:21 +08:00
|
|
|
format: PropTypes.oneOfType([PropTypes.string, PropTypes.array, PropTypes.func]),
|
2020-10-10 18:16:28 +08:00
|
|
|
disabled: PropTypes.looseBool,
|
|
|
|
allowClear: PropTypes.looseBool,
|
2018-12-08 16:47:05 +08:00
|
|
|
suffixIcon: PropTypes.any,
|
2018-03-16 11:19:02 +08:00
|
|
|
popupStyle: PropTypes.object,
|
2018-04-07 14:29:59 +08:00
|
|
|
dropdownClassName: PropTypes.string,
|
2018-03-16 11:19:02 +08:00
|
|
|
locale: PropTypes.any,
|
2018-03-17 21:38:29 +08:00
|
|
|
localeCode: PropTypes.string,
|
2020-10-14 23:12:51 +08:00
|
|
|
size: PropTypes.oneOf(tuple('large', 'small', 'default')),
|
2018-03-16 11:19:02 +08:00
|
|
|
getCalendarContainer: PropTypes.func,
|
2020-10-10 18:16:28 +08:00
|
|
|
open: PropTypes.looseBool,
|
2018-03-16 11:19:02 +08:00
|
|
|
disabledDate: PropTypes.func,
|
2020-10-10 18:16:28 +08:00
|
|
|
showToday: PropTypes.looseBool,
|
2020-07-23 15:15:38 +08:00
|
|
|
dateRender: PropTypes.any, // ({current: moment.Moment, today: moment.Moment}) => vNode,
|
2018-03-17 21:38:29 +08:00
|
|
|
pickerClass: PropTypes.string,
|
|
|
|
pickerInputClass: PropTypes.string,
|
|
|
|
timePicker: PropTypes.any,
|
2020-10-10 18:16:28 +08:00
|
|
|
autofocus: PropTypes.looseBool,
|
2018-09-05 21:28:54 +08:00
|
|
|
tagPrefixCls: PropTypes.string,
|
2020-07-17 17:13:30 +08:00
|
|
|
tabindex: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
2020-04-17 17:26:32 +08:00
|
|
|
align: PropTypes.object.def(() => ({})),
|
2020-10-10 18:16:28 +08:00
|
|
|
inputReadOnly: PropTypes.looseBool,
|
2020-04-29 18:44:11 +08:00
|
|
|
valueFormat: PropTypes.string,
|
2020-07-22 17:47:08 +08:00
|
|
|
onOpenChange: PropTypes.func,
|
|
|
|
onFocus: PropTypes.func,
|
|
|
|
onBlur: PropTypes.func,
|
2020-10-15 13:39:17 +08:00
|
|
|
//'onUpdate:value': PropTypes.func,
|
2020-07-22 17:47:08 +08:00
|
|
|
onMouseenter: PropTypes.func,
|
|
|
|
onMouseleave: PropTypes.func,
|
2020-10-14 23:12:51 +08:00
|
|
|
};
|
2018-03-16 11:19:02 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export const SinglePickerProps = {
|
|
|
|
value: { type: [String, Object] as PropType<PickerValue> },
|
|
|
|
defaultValue: { type: [String, Object] as PropType<PickerValue> },
|
|
|
|
defaultPickerValue: { type: [String, Object] as PropType<PickerValue> },
|
2020-03-07 19:45:13 +08:00
|
|
|
renderExtraFooter: PropTypes.any,
|
|
|
|
placeholder: PropTypes.string,
|
2020-07-22 17:47:08 +08:00
|
|
|
onChange: PropTypes.func,
|
2020-10-14 23:12:51 +08:00
|
|
|
};
|
2018-03-16 11:19:02 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export const DatePickerProps = {
|
|
|
|
...PickerProps,
|
|
|
|
...SinglePickerProps,
|
2020-10-11 21:31:57 +08:00
|
|
|
showTime: withUndefined(PropTypes.oneOfType([PropTypes.object, PropTypes.looseBool])),
|
2020-10-10 18:16:28 +08:00
|
|
|
open: PropTypes.looseBool,
|
2018-03-16 11:19:02 +08:00
|
|
|
disabledTime: PropTypes.func,
|
2021-01-13 21:17:05 +08:00
|
|
|
mode: PropTypes.oneOf(tuple('time', 'date', 'month', 'year', 'decade')),
|
2020-07-22 17:47:08 +08:00
|
|
|
onOpenChange: PropTypes.func,
|
|
|
|
onPanelChange: PropTypes.func,
|
|
|
|
onOk: PropTypes.func,
|
2020-10-14 23:12:51 +08:00
|
|
|
};
|
2018-03-16 11:19:02 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export const MonthPickerProps = {
|
|
|
|
...PickerProps,
|
|
|
|
...SinglePickerProps,
|
2018-03-16 11:19:02 +08:00
|
|
|
placeholder: PropTypes.string,
|
2018-03-17 21:38:29 +08:00
|
|
|
monthCellContentRender: PropTypes.func,
|
2020-10-14 23:12:51 +08:00
|
|
|
};
|
2020-04-29 18:44:11 +08:00
|
|
|
// export const RangePickerPresetRange = PropTypes.oneOfType([TimesType, PropTypes.func])
|
2018-03-16 11:19:02 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export const RangePickerProps = {
|
|
|
|
...PickerProps,
|
2020-03-07 19:45:13 +08:00
|
|
|
tagPrefixCls: PropTypes.string,
|
2020-10-14 23:12:51 +08:00
|
|
|
value: { type: Array as PropType<RangePickerValue> },
|
|
|
|
defaultValue: { type: Array as PropType<RangePickerValue> },
|
|
|
|
defaultPickerValue: { type: Array as PropType<RangePickerValue> },
|
2020-03-07 19:45:13 +08:00
|
|
|
timePicker: PropTypes.any,
|
2020-10-11 21:31:57 +08:00
|
|
|
showTime: withUndefined(PropTypes.oneOfType([PropTypes.object, PropTypes.looseBool])),
|
2018-03-19 23:05:49 +08:00
|
|
|
ranges: PropTypes.object,
|
2018-03-17 21:38:29 +08:00
|
|
|
placeholder: PropTypes.arrayOf(String),
|
|
|
|
mode: PropTypes.oneOfType([PropTypes.string, PropTypes.arrayOf(String)]),
|
2020-03-07 19:45:13 +08:00
|
|
|
separator: PropTypes.any,
|
2018-03-16 11:19:02 +08:00
|
|
|
disabledTime: PropTypes.func,
|
2020-10-10 18:16:28 +08:00
|
|
|
showToday: PropTypes.looseBool,
|
2020-03-07 19:45:13 +08:00
|
|
|
renderExtraFooter: PropTypes.any,
|
2020-07-22 17:47:08 +08:00
|
|
|
onChange: PropTypes.func,
|
|
|
|
onCalendarChange: PropTypes.func,
|
|
|
|
onOk: PropTypes.func,
|
|
|
|
onPanelChange: PropTypes.func,
|
|
|
|
onMouseenter: PropTypes.func,
|
|
|
|
onMouseleave: PropTypes.func,
|
2020-10-14 23:12:51 +08:00
|
|
|
};
|
2018-03-16 11:19:02 +08:00
|
|
|
|
2020-10-14 23:12:51 +08:00
|
|
|
export const WeekPickerProps = {
|
|
|
|
...PickerProps,
|
|
|
|
...SinglePickerProps,
|
2018-03-16 11:19:02 +08:00
|
|
|
placeholder: PropTypes.string,
|
2020-10-14 23:12:51 +08:00
|
|
|
};
|