mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-06 19:49:36 +00:00
89f83a7476
- Email components (Phase 2 COMPLETE): * Fixed 18 broken imports: @metabuilder/fakemui/hooks → ../../../src/utils/useAccessible * Renamed email-wip/ → email/ (production-ready) * Enabled exports in react/components/index.ts * All 22 email components now production-ready (1244 lines) - Cleanup: * Removed wip/ directory (duplicate of src/utils/accessibility) * Preserved 15 Python/PyQt6 implementation files (full implementations, not stubs) * Moved 7 markdown files to fakemui/docs/ (better organization) - Documentation: * Updated CLAUDE.md: Phase 2 email complete, added deletion safety gotcha * Created plan: txt/FAKEMUI_REORGANIZATION_PLAN_2026-02-01.txt Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
/**
|
|
* FakeMUI React Components - Master Export
|
|
* Re-exports all component categories for easier importing
|
|
*/
|
|
|
|
// Layout Components
|
|
export * from './layout'
|
|
|
|
// Surface Components
|
|
export { Card } from './surfaces/Card'
|
|
export { Paper } from './surfaces/Paper'
|
|
|
|
// Atom Components
|
|
export { Typography } from './atoms/Typography'
|
|
export { Icon } from './atoms/Icon'
|
|
|
|
// Input Components
|
|
export { Button } from './inputs/Button'
|
|
export { TextField } from './inputs/TextField'
|
|
export { Select } from './inputs/Select'
|
|
export { Checkbox } from './inputs/Checkbox'
|
|
export { Radio } from './inputs/Radio'
|
|
export { Switch } from './inputs/Switch'
|
|
export { Chip } from './inputs/Chip'
|
|
export { Tabs, Tab } from './navigation/Tabs'
|
|
|
|
// Feedback Components
|
|
export { Alert } from './feedback/Alert'
|
|
export { LinearProgress } from './feedback/LinearProgress'
|
|
export { Spinner } from './feedback/Spinner'
|
|
export { CircularProgress } from './feedback/CircularProgress'
|
|
|
|
// Navigation Components
|
|
export { AppBar } from './navigation/AppBar'
|
|
export { Toolbar } from './navigation/Toolbar'
|
|
export { Drawer } from './navigation/Drawer'
|
|
export { Breadcrumbs } from './navigation/Breadcrumbs'
|
|
|
|
// Data Display Components
|
|
export { Table } from './data-display/Table'
|
|
export { List } from './data-display/List'
|
|
export { Tree } from './data-display/Tree'
|
|
|
|
// Email Components (Phase 2 Complete - Jan 2026)
|
|
export * from './email'
|