diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 141b6c7d..49625fd3 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -1153,7 +1153,7 @@ None. ### Types ```ts -export type DropdownItemId = string; +export type DropdownItemId = any; export type DropdownItemText = string; diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index 43209cf6..9816055b 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -3259,9 +3259,9 @@ ], "typedefs": [ { - "type": "string", + "type": "any", "name": "DropdownItemId", - "ts": "type DropdownItemId = string" + "ts": "type DropdownItemId = any" }, { "type": "string", diff --git a/types/Dropdown/Dropdown.svelte.d.ts b/types/Dropdown/Dropdown.svelte.d.ts index bf66c6e4..1d410992 100644 --- a/types/Dropdown/Dropdown.svelte.d.ts +++ b/types/Dropdown/Dropdown.svelte.d.ts @@ -1,7 +1,7 @@ /// import { SvelteComponentTyped } from "svelte"; -export type DropdownItemId = string; +export type DropdownItemId = any; export type DropdownItemText = string;