Skip to content

Commit

Permalink
Bugfix: Autocomplete: input should be of type unknown (#2648)
Browse files Browse the repository at this point in the history
Co-authored-by: CokaKoala <31664583+AdrianGonz97@users.noreply.github.com>
  • Loading branch information
KitsuneDev and AdrianGonz97 committed May 6, 2024
1 parent 127a5ae commit 9c92845
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/lucky-wasps-beam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@skeletonlabs/skeleton": patch
---

bugfix: Changed Autocomplete's `input` prop type to `unknown`
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
// Props
/**
* Bind the input value.
* @type {Value | undefined}
* @type {unknown | undefined}
*/
export let input: Value | undefined = undefined;
export let input: unknown | undefined = undefined;
/**
* Define values for the list.
* @type {AutocompleteOption[]}
Expand Down

0 comments on commit 9c92845

Please sign in to comment.