mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
ORGANIZED INTO 4 MAIN CATEGORIES: - react/ React TypeScript components (145 components + Python bindings) - qml/ QML desktop components (104+ QML components) - python/ Python package implementations - legacy/ Utilities, contexts, and migration-in-progress code SUPPORTING FOLDERS (kept as-is): - icons/ 421 SVG icons - theming/ Material Design 3 theme system - styles/ SCSS modules and utilities - scss/ SCSS preprocessor files - docs/ Documentation files STRUCTURE IMPROVEMENTS: ✅ All code preserved (nothing deleted) ✅ Clear separation by implementation type ✅ Better navigation and discoverability ✅ Easy to find what you need ✅ Professional organization DOCUMENTATION: - Added STRUCTURE.md explaining the new layout - Updated folder organization with clear purpose - Maintained all original functionality All files reorganized while keeping full functionality intact. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
16 lines
811 B
JavaScript
16 lines
811 B
JavaScript
export { Modal, Dialog } from './Modal'
|
|
export { DialogOverlay, DialogPanel, DialogHeader, DialogTitle, DialogContent, DialogActions } from './Dialog'
|
|
export { Popover } from './Popover'
|
|
export { Collapse, Fade, Grow, Slide, Zoom } from './Transitions'
|
|
export { ClickAwayListener } from './ClickAwayListener'
|
|
export { Portal } from './Portal'
|
|
export { CssBaseline, ScopedCssBaseline } from './CssBaseline'
|
|
export { NoSsr } from './NoSsr'
|
|
export { Popper } from './Popper'
|
|
export { TextareaAutosize } from './TextareaAutosize'
|
|
export { useMediaQuery, useMediaQueryUp, useMediaQueryDown, useMediaQueryBetween } from './useMediaQuery'
|
|
export { GlobalStyles } from './GlobalStyles'
|
|
export { classNames } from './classNames'
|
|
export { ToastProvider, useToast } from './ToastContext'
|
|
export { Iframe } from './Iframe'
|