update typings

This commit is contained in:
Leopoldthecoder
2017-10-18 18:31:03 +08:00
committed by Black Wayne
parent 4f9515494c
commit 1e95e51f9b
91 changed files with 740 additions and 233 deletions

View File

@@ -28,12 +28,18 @@ export declare class ElAutocomplete extends ElementUIComponent {
/** Whether Autocomplete is disabled */
disabled: boolean
/** Icon name */
icon: string
/** Binding value */
value: string
/** Debounce delay when typing */
debounce: number
/** name for the inner native input */
name: string
/** whether to emit select event on enter when there is no autocomplete match */
selectWhenUnmatched: boolean
/** Component name of your customized suggestion list item */
customItem: string
@@ -45,7 +51,4 @@ export declare class ElAutocomplete extends ElementUIComponent {
/** Whether show suggestions when input focus */
triggerOnFocus: boolean
/** Hook function when clicking on the input icon */
onIconClick: IconClickEventHandler
}