feat: add Storybook component explorer #18
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "codex/issue-13-storybook"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Adds Storybook as the reusable UI component explorer for the dashboard design system and covers every current
src/lib/ui/components/*.sveltecomponent with generic, content-free stories.Closes #13.
Why
The MVP needs a reviewable component surface before Dimension Lab seed data and model-driven rendering land. This keeps the presentation tier inspectable without importing environment-specific content.
Changes
storybookandbuild-storybookscripts plus README documentation.storybook-static/output.Testing
bun run check-> 0 Svelte diagnostics.bun run test-> 8 files, 37 tests passed.bun run build-> production app build passed.bun run build-storybook-> static Storybook build passed.bun run storybook -- --ci-> dev server started athttp://localhost:6006/; HTTP smoke returned200 OK.git diff --check-> clean.rg -n -i "dimension lab|dimensionlab|homepage|vince" src/lib/ui/stories src/lib/ui/components .storybook || true-> no matches.Notes
npmis not installed in this Codex shell, sonpm run build-storybookcould not be executed here. The same script was verified through Bun, andpackage.jsonexposes the expectedbuild-storybookcommand.