mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 11:26:42 +02:00
- Add QuickInputBar component with natural language parsing, syntax highlighting, search, and quick-create functionality - Add PillToolbar, PillToolbarButton, PillToolbarDivider components for app-specific toolbar controls - Add PillTimeRangeSelector for hour range selection - Add PillViewSwitcher for view mode switching with sliding indicator - Integrate QuickInputBar into Calendar, Contacts, and Todo apps - Add app-specific toolbars: CalendarToolbar, ContactsToolbar, TodoToolbar - Add DateStrip component for Calendar date navigation - Fix type exports: export QuickAction and CreatePreview from quick-input module, remove duplicate exports from deprecated command-bar 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
1 KiB
TypeScript
27 lines
1 KiB
TypeScript
export { default as NavLink } from './NavLink.svelte';
|
|
export { default as Navbar } from './Navbar.svelte';
|
|
export { default as Sidebar } from './Sidebar.svelte';
|
|
export { default as SidebarSection } from './SidebarSection.svelte';
|
|
export { default as PillNavigation } from './PillNavigation.svelte';
|
|
export { default as PillDropdown } from './PillDropdown.svelte';
|
|
export { default as PillTabGroup } from './PillTabGroup.svelte';
|
|
export { default as PillTimeRangeSelector } from './PillTimeRangeSelector.svelte';
|
|
export { default as PillViewSwitcher } from './PillViewSwitcher.svelte';
|
|
export { default as PillToolbar } from './PillToolbar.svelte';
|
|
export { default as PillToolbarButton } from './PillToolbarButton.svelte';
|
|
export { default as PillToolbarDivider } from './PillToolbarDivider.svelte';
|
|
export type {
|
|
NavItem,
|
|
NavbarProps,
|
|
SidebarProps,
|
|
NavLinkProps,
|
|
KeyboardShortcut,
|
|
PillNavItem,
|
|
PillDropdownItem,
|
|
PillAppItem,
|
|
PillNavigationProps,
|
|
PillTabOption,
|
|
PillTabGroupConfig,
|
|
PillDivider,
|
|
PillNavElement,
|
|
} from './types';
|