I have a numerical input field labeled "days" that I want to add the text " days" to without altering the actual numerical value displayed.
<input type="number" class="days" (keyup)="valueChanged($event)"/>
Users should only be able to edit the numeric value, while the " days" text is a visual addition to the field.
Is there a CSS or TypeScript/JS solution for achieving this?