function Tweaks({ open, values, onChange }) { if (!open) return null; const set = (k, v) => { const next = { ...values, [k]: v }; onChange(next); window.parent.postMessage({ type: '__edit_mode_set_keys', edits: { [k]: v } }, '*'); }; const Seg = ({ k, options }) => (