代码拉取完成,页面将自动刷新
同步操作将从 Gitee Go/Element Build Case 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import { ElementUIComponent, ElementUIComponentSize, ElementUIHorizontalAlignment } from './component'
export type DatePickerType = 'year' | 'month' | 'date' | 'datetime' | 'week' | 'datetimerange' | 'daterange' | 'dates'
export type FirstDayOfWeek = 1 | 2 | 3 | 4 | 5 | 6 | 7
export interface DisabledDateChecker {
/**
* Determine if `date` will be disabled in the picker
*
* @param date The date to check
* @returns if `date` will be disabled in the picker
*/
(date: Date): boolean
}
// Picked date range
export interface DateRange {
minDate: Date,
maxDate: Date
}
export interface PickEventHandler {
/**
* Callback function that triggers when picks a date range
*
* @param dateRange The selected date range
*/
(dateRange: DateRange): void
}
export interface ShortcutClickEventHandler {
/**
* Callback function that triggers when clicking on a shortcut.
* You can change the picker value by emitting the pick event.
* Example: `vm.$emit('pick', new Date())`
*/
(vm: ElDatePicker): void
}
/** Shortcut options */
export interface Shortcut {
/** Title of the shortcut */
text: string,
/** Callback function that triggers when picks a date range */
onClick?: ShortcutClickEventHandler
}
/** Options of el-date-picker */
export interface DatePickerOptions {
/** An object array to set shortcut options */
shortcuts?: Shortcut[]
/** A function determining if a date is disabled. */
disabledDate?: DisabledDateChecker
/** First day of week */
firstDayOfWeek?: FirstDayOfWeek
/** A callback that triggers when the seleted date is changed. Only for daterange and datetimerange. */
onPick?: PickEventHandler
}
/** DatePicker Component */
export declare class ElDatePicker extends ElementUIComponent {
/** The value of the date picker */
value: Date | string | Date[] | string[]
/** Whether DatePicker is read only */
readonly: boolean
/** Whether DatePicker is disabled */
disabled: boolean
/** Size of Input */
size: ElementUIComponentSize
/** Whether the input is editable */
editable: boolean
/** Whether to show clear button */
clearable: boolean
/** Placeholder */
placeholder: string
/** Placeholder for the start date in range mode */
startPlaceholder: string
/** Placeholder for the end date in range mode */
endPlaceholder: string
/** Type of the picker */
type: DatePickerType
/** Format of the picker */
format: string
/** Alignment */
align: ElementUIHorizontalAlignment
/** Custom class name for DatePicker's dropdown */
popperClass: string
/** Additional options, check the table below */
pickerOptions: DatePickerOptions
/** Range separator */
rangeSeparator: string
/** Default date of the calendar */
defaultValue: Date | number | string
/** Format of binding value. If not specified, the binding value will be a Date object */
valueFormat: string
/** name for the inner native input */
name: string
/**
* Focus the Input component
*/
focus (): void
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。