UNPKG

audioui

Version:

Modern, accessible audio UI components for React applications

1 lines 975 B
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAWO,IAAM,OAAU,GAAA;AAChB,IAAM,MAAS,GAAA;AAGf,IAAM,UAAa,GAAA;AAAA,EACxB,YAAc,EAAA,eAAA;AAAA,EACd,IAAM,EAAA,aAAA;AAAA,EACN,OAAS,EAAA,UAAA;AAAA,EACT,SAAW,EAAA,YAAA;AAAA,EACX,QAAU,EAAA,kBAAA;AAAA,EACV,KAAO,EAAA;AACT","file":"index.mjs","sourcesContent":["// This is a simple index file for the AudioUI library\n// Since this is just for GitHub Pages deployment, we'll keep it minimal\n// The actual library would include all component exports\n\n// Just export a few basic types for now to avoid build errors\nexport interface AudioUIComponent {\n name: string;\n version: string;\n}\n\n// Constants\nexport const VERSION = '0.1.0';\nexport const AUTHOR = 'Cohen Concepts';\n\n// Sample component placeholders\nexport const Components = {\n ADSREnvelope: 'ADSR Envelope',\n Dial: 'Rotary Dial',\n MIDIPad: 'MIDI Pad',\n PitchBend: 'Pitch Bend',\n ModWheel: 'Modulation Wheel',\n XYPad: 'XY Pad'\n};\n"]}