Nicholai d3158e4c6a feat(timeline-mixer): WIP timeline and mixer components
work in progress implementation of:
- mixer with channel strips, faders, pan knobs, level meters
- timeline with ruler, playhead, sections, keyframe tracks
- pattern and progression pickers for drums/chords
- automation lanes and mute tracks
- loop bracket for loop region selection
- export modal placeholder

known issues:
- drum pattern changes don't update audio engine
- timeline keyframes not connected to scheduler
- some UI bugs remain

this is a checkpoint commit for further iteration
2026-01-20 18:22:10 -07:00

17 lines
758 B
TypeScript

export { Timeline } from './Timeline';
export { TimelineRuler } from './TimelineRuler';
export { Playhead } from './Playhead';
export { TimeDisplay } from './TimeDisplay';
export { DurationSelector } from './DurationSelector';
export { LoopBracket } from './LoopBracket';
export { SectionTrack } from './SectionTrack';
export { SectionBlock } from './SectionBlock';
export { SectionPicker } from './SectionPicker';
export { KeyframeTrack } from './KeyframeTrack';
export { KeyframeMarker } from './KeyframeMarker';
export { PatternPicker } from './PatternPicker';
export { ProgressionPicker } from './ProgressionPicker';
export { MuteTrack } from './MuteTrack';
export { AutomationLane } from './AutomationLane';
export { ExportModal } from './ExportModal';