mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-25 22:14:38 +02:00
feat: add form and layout components to shared-ui (Tier 6b)
New molecules: - ModalFooter: Standardized modal footer with button layout - DataCard: Generic card for displaying data items (memos, decks, etc.) - PageHeader: Standardized page header with title, description, actions New organisms: - FormModal: Modal with built-in form handling, validation, loading states All components use Svelte 5 snippets for flexible slot patterns. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
3c457f9c18
commit
5045d70bf7
7 changed files with 505 additions and 1 deletions
|
|
@ -20,8 +20,11 @@ export { SkeletonBox, SkeletonText } from './molecules';
|
|||
// Feedback
|
||||
export { EmptyState } from './molecules';
|
||||
|
||||
// Layout
|
||||
export { ModalFooter, DataCard, PageHeader } from './molecules';
|
||||
|
||||
// Organisms
|
||||
export { Modal, ConfirmationModal, AppSlider } from './organisms';
|
||||
export { Modal, ConfirmationModal, FormModal, AppSlider } from './organisms';
|
||||
export type { AppItem } from './organisms';
|
||||
|
||||
// Navigation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue