mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
- Move stores/utils/types to their relative directories (i.e chat stores in chat directory) - Move utility files to shared/utils - Move component files to shared/components - Move type definitions to shared/types - Move stores to shared/stores - Update import paths across the project
39 lines
1019 B
TypeScript
39 lines
1019 B
TypeScript
// Export all UI components for easier imports
|
|
|
|
// Core components
|
|
export * from './Badge';
|
|
export * from './Button';
|
|
export * from './Card';
|
|
export * from './Checkbox';
|
|
export * from './Collapsible';
|
|
export * from './Dialog';
|
|
export * from './IconButton';
|
|
export * from './Input';
|
|
export * from './Label';
|
|
export * from './ScrollArea';
|
|
export * from './Switch';
|
|
export * from './Tabs';
|
|
export * from './ThemeSwitch';
|
|
|
|
// Loading components
|
|
export * from './LoadingDots';
|
|
export * from './LoadingOverlay';
|
|
|
|
// New components
|
|
export * from './Breadcrumbs';
|
|
export * from './CloseButton';
|
|
export * from './CodeBlock';
|
|
export * from './EmptyState';
|
|
export * from './FileIcon';
|
|
export * from './FilterChip';
|
|
export * from './GradientCard';
|
|
export * from './RepositoryStats';
|
|
export * from './SearchInput';
|
|
export * from './SearchResultItem';
|
|
export * from './StatusIndicator';
|
|
export * from './TabsWithSlider';
|
|
|
|
// Tooltip components
|
|
export { default as WithTooltip } from './Tooltip';
|
|
export { Tooltip } from './Tooltip';
|