/* Customer-view shim — replaces the design-tool's tweaks editor with no-ops
   so the proposal renders without the editor UI. */

window.useTweaks = function (initial) {
  return [initial, function () {}];
};

window.TweaksPanel  = function () { return null; };
window.TweakSection = function () { return null; };
window.TweakText    = function () { return null; };
window.TweakNumber  = function () { return null; };
window.TweakRadio   = function () { return null; };
window.TweakToggle  = function () { return null; };
window.TweakButton  = function () { return null; };
