mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* feat(components): [date-picker] accessibility enhancement closed #14150 * docs: update * test: add test * chore: change prevent to passive * fix: long press the clear icon to open the time panel * fix: cannot read $el * fix: cannot read $el * docs: updata
14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
import type { ComponentPublicInstance } from 'vue'
|
|
import type { DatePickerProps } from './props/date-picker'
|
|
|
|
export type DatePickerExpose = {
|
|
focus: () => void
|
|
blur: () => void
|
|
handleOpen: () => void
|
|
handleClose: () => void
|
|
}
|
|
export type DatePickerInstance = ComponentPublicInstance<
|
|
DatePickerProps,
|
|
DatePickerExpose
|
|
>
|