I found the issue, my problem was https://github.com/RobinHerbots/Inputmask/releases/tag/4.0.6 onfocus event, for some reason while this listener is on the item I can't just change the value, the solution was simple but is weird an not intuitive
input.dispatchEvent(new Event('input'));
input.value = newValue;
input.focus();
input.dispatchEvent(new Event('input'));