This repository demonstrates type errors encountered when using konsta-ui components with SvelteKit and TypeScript.
- app/ - SvelteKit application demonstrating type errors with
ToolbarPanecomponent - claude.md - MCP server configuration (Context7 and Playwright)
cd app
npm install
npm run devTo see the type errors:
cd app
npm run checkThe ToolbarPane component in Konsta UI 5.0.4 has TypeScript definition issues:
- Missing
childrenprop - The component accepts children in its implementation but the TypeScript definitions don't include it - Missing event handlers - Standard event handlers like
onClickare not properly typed
See app/README.md for detailed documentation of all type errors.
- SvelteKit 2.x
- Svelte 5.x
- TypeScript
- Tailwind CSS (configured via Vite)
- Konsta UI 5.0.4 (latest version)
This repository serves as a reference for type compatibility issues between konsta-ui and SvelteKit/TypeScript, helping developers understand and work around these limitations.