Adds the Manifold app (manifold/) — the convertible-mode React front-end on the real NISPS ML+audio engine, served live at meml.lnfinitemonkeys.org/next/. Console chrome trimmed per UI pass: - drop mode label + subtitle from the top-left overlay (keep MEMLNaut wordmark) - remove the composite split preset/ratio readout (top-centre) - remove the OUTPUT corner tag above the bars - remove the A/B compare toggle from the verdict cluster - remove the follow button + input/noise readout (bottom-left) - remove AltitudeNav focus switcher (bottom-right)
18 lines
838 B
TypeScript
18 lines
838 B
TypeScript
/**
|
|
* Console barrel — the convertible Console shell, wired to the real engine.
|
|
*/
|
|
export { ConsoleApp } from './ConsoleApp';
|
|
export type { ConsoleAppProps } from './ConsoleApp';
|
|
export { CompositeStage } from './CompositeStage';
|
|
export { SplitStage } from './SplitStage';
|
|
export { OutputStage } from './OutputStage';
|
|
export { ReadoutStrip } from './ReadoutStrip';
|
|
export { Manifold } from './Manifold';
|
|
export { InputMini } from './InputMini';
|
|
export { VerdictCluster } from './VerdictCluster';
|
|
export { Dock } from './Dock';
|
|
export { DRAWERS } from './Drawers';
|
|
export { AltitudeNav, MiniMeters, CompactAxis } from './shared-ui';
|
|
export { MF_MODES, shapeValues, applyCurve, seededGradient, modeEngineId } from './model';
|
|
export type { MFMode, MFParam, ParamStatus } from './model';
|
|
export type { Focus, ConsoleCtx } from './types';
|