Skip to content

Commit 9c92845

Browse files
Bugfix: Autocomplete: input should be of type unknown (#2648)
Co-authored-by: CokaKoala <[email protected]>
1 parent 127a5ae commit 9c92845

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/lucky-wasps-beam.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@skeletonlabs/skeleton": patch
3+
---
4+
5+
bugfix: Changed Autocomplete's `input` prop type to `unknown`

packages/skeleton/src/lib/components/Autocomplete/Autocomplete.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
// Props
3434
/**
3535
* Bind the input value.
36-
* @type {Value | undefined}
36+
* @type {unknown | undefined}
3737
*/
38-
export let input: Value | undefined = undefined;
38+
export let input: unknown | undefined = undefined;
3939
/**
4040
* Define values for the list.
4141
* @type {AutocompleteOption[]}

0 commit comments

Comments
 (0)