diff --git a/.changeset/happy-fishes-kick.md b/.changeset/happy-fishes-kick.md new file mode 100644 index 0000000..62051b4 --- /dev/null +++ b/.changeset/happy-fishes-kick.md @@ -0,0 +1,5 @@ +--- +'cmdk-sv': patch +--- + +Fix type resolution and intellisense for most components diff --git a/src/lib/cmdk/types.ts b/src/lib/cmdk/types.ts index f99f920..4f87655 100644 --- a/src/lib/cmdk/types.ts +++ b/src/lib/cmdk/types.ts @@ -1,5 +1,5 @@ /* eslint-disable @typescript-eslint/ban-types */ -import type { Expand, HTMLDivAttributes, Transition, PrefixKeys } from '$lib/internal'; +import type { Expand, HTMLDivAttributes, Transition, PrefixKeys } from '$lib/internal/index.js'; import type { Dialog as DialogPrimitive } from 'bits-ui'; import type { EventHandler, HTMLInputAttributes } from 'svelte/elements'; import type { Writable } from 'svelte/store';