We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
input
unknown
1 parent 127a5ae commit 9c92845Copy full SHA for 9c92845
.changeset/lucky-wasps-beam.md
@@ -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
@@ -33,9 +33,9 @@
33
// Props
34
/**
35
* Bind the input value.
36
- * @type {Value | undefined}
+ * @type {unknown | undefined}
37
*/
38
- export let input: Value | undefined = undefined;
+ export let input: unknown | undefined = undefined;
39
40
* Define values for the list.
41
* @type {AutocompleteOption[]}
0 commit comments