Try the following:
const event = new Event('input', { bubbles: true }); const input = document.getElementById('input'); input.value = 'new_value'; document.dispatchEvent(event);