mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 17:09:40 +02:00
- Add SettingsPage, SettingsSection, SettingsCard components - Add SettingsRow, SettingsToggle for interactive elements - Add SettingsDangerZone, SettingsDangerButton for destructive actions - Apply glass morphism styling matching PillNavigation - Migrate settings pages in manacore, presi, zitare apps - Migrate archived apps: maerchenzauber, memoro, nutriphi, uload 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
60 lines
1.2 KiB
TypeScript
60 lines
1.2 KiB
TypeScript
// Atoms
|
|
export { Text, Button, Badge, Card } from './atoms';
|
|
|
|
// Molecules
|
|
export { Toggle, Input, Select, Textarea, Checkbox } from './molecules';
|
|
export type { SelectOption } from './molecules';
|
|
|
|
// Stats
|
|
export { GlassCard, StatRow } from './molecules';
|
|
|
|
// Tags
|
|
export { TagBadge } from './molecules';
|
|
|
|
// Media
|
|
export { AudioPlayer } from './molecules';
|
|
|
|
// Loading/Skeletons
|
|
export { SkeletonBox, SkeletonText } from './molecules';
|
|
|
|
// Feedback
|
|
export { EmptyState } from './molecules';
|
|
|
|
// Layout
|
|
export { ModalFooter, DataCard, PageHeader, KeyboardShortcutsPanel } from './molecules';
|
|
|
|
// Organisms
|
|
export { Modal, ConfirmationModal, FormModal, AppSlider } from './organisms';
|
|
export type { AppItem } from './organisms';
|
|
|
|
// Navigation
|
|
export {
|
|
NavLink,
|
|
Navbar,
|
|
Sidebar,
|
|
SidebarSection,
|
|
PillNavigation,
|
|
PillDropdown,
|
|
} from './navigation';
|
|
export type {
|
|
NavItem,
|
|
NavbarProps,
|
|
SidebarProps,
|
|
NavLinkProps,
|
|
KeyboardShortcut,
|
|
PillNavItem,
|
|
PillDropdownItem,
|
|
PillNavElement,
|
|
PillNavigationProps,
|
|
} from './navigation';
|
|
|
|
// Settings
|
|
export {
|
|
SettingsPage,
|
|
SettingsSection,
|
|
SettingsCard,
|
|
SettingsRow,
|
|
SettingsToggle,
|
|
SettingsDangerZone,
|
|
SettingsDangerButton,
|
|
} from './settings';
|