mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
feat(fakemui): create email components master index and export
This commit is contained in:
@@ -271,3 +271,6 @@ export type {
|
||||
AccessibilityComponent,
|
||||
AccessibilityAction,
|
||||
} from './src/utils/accessibility'
|
||||
|
||||
// Email Components
|
||||
export * from './react/components/email'
|
||||
|
||||
75
fakemui/react/components/email/index.ts
Normal file
75
fakemui/react/components/email/index.ts
Normal file
@@ -0,0 +1,75 @@
|
||||
// Atoms
|
||||
export {
|
||||
AttachmentIcon,
|
||||
type AttachmentIconProps,
|
||||
StarButton,
|
||||
type StarButtonProps,
|
||||
MarkAsReadCheckbox,
|
||||
type MarkAsReadCheckboxProps,
|
||||
} from './atoms'
|
||||
|
||||
// Inputs
|
||||
export {
|
||||
EmailAddressInput,
|
||||
type EmailAddressInputProps,
|
||||
RecipientInput,
|
||||
type RecipientInputProps,
|
||||
BodyEditor,
|
||||
type BodyEditorProps,
|
||||
} from './inputs'
|
||||
|
||||
// Surfaces
|
||||
export {
|
||||
EmailCard,
|
||||
type EmailCardProps,
|
||||
MessageThread,
|
||||
type MessageThreadProps,
|
||||
ComposeWindow,
|
||||
type ComposeWindowProps,
|
||||
SignatureCard,
|
||||
type SignatureCardProps,
|
||||
} from './surfaces'
|
||||
|
||||
// Data Display
|
||||
export {
|
||||
AttachmentList,
|
||||
type AttachmentListProps,
|
||||
type Attachment,
|
||||
EmailHeader,
|
||||
type EmailHeaderProps,
|
||||
FolderTree,
|
||||
type FolderTreeProps,
|
||||
type FolderNode,
|
||||
ThreadList,
|
||||
type ThreadListProps,
|
||||
} from './data-display'
|
||||
|
||||
// Feedback
|
||||
export {
|
||||
SyncStatusBadge,
|
||||
type SyncStatusBadgeProps,
|
||||
type SyncStatus,
|
||||
SyncProgress,
|
||||
type SyncProgressProps,
|
||||
} from './feedback'
|
||||
|
||||
// Layout
|
||||
export {
|
||||
MailboxLayout,
|
||||
type MailboxLayoutProps,
|
||||
ComposerLayout,
|
||||
type ComposerLayoutProps,
|
||||
SettingsLayout,
|
||||
type SettingsLayoutProps,
|
||||
type SettingsSection,
|
||||
} from './layout'
|
||||
|
||||
// Navigation
|
||||
export {
|
||||
AccountTabs,
|
||||
type AccountTabsProps,
|
||||
type EmailAccount,
|
||||
FolderNavigation,
|
||||
type FolderNavigationProps,
|
||||
type FolderNavigationItem,
|
||||
} from './navigation'
|
||||
Reference in New Issue
Block a user