Option label fix.

This commit is contained in:
mike12345567 2025-03-18 14:11:28 +00:00
parent 317049e8a1
commit f131dd3927
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@
export let error: string | undefined = undefined
export let placeholder: string | undefined = undefined
export let options: Option[] = []
export let getOptionLabel = (option: any) => option
export let getOptionValue = (option: any) => option
export let getOptionLabel = (option: Option) => option
export let getOptionValue = (option: Option) => option
export let sort = false
export let autoWidth = false
export let autocomplete = false