Option label fix.
This commit is contained in:
parent
317049e8a1
commit
f131dd3927
|
@ -11,8 +11,8 @@
|
||||||
export let error: string | undefined = undefined
|
export let error: string | undefined = undefined
|
||||||
export let placeholder: string | undefined = undefined
|
export let placeholder: string | undefined = undefined
|
||||||
export let options: Option[] = []
|
export let options: Option[] = []
|
||||||
export let getOptionLabel = (option: any) => option
|
export let getOptionLabel = (option: Option) => option
|
||||||
export let getOptionValue = (option: any) => option
|
export let getOptionValue = (option: Option) => option
|
||||||
export let sort = false
|
export let sort = false
|
||||||
export let autoWidth = false
|
export let autoWidth = false
|
||||||
export let autocomplete = false
|
export let autocomplete = false
|
||||||
|
|
Loading…
Reference in New Issue