Can someone explain to me why if I create input component in Svelte, using html input like, for example
<input type="text" id="testId" name="name" value="random text">
the value attribute doesn't render in DOM?However the value property is in the element and its value can be picked up but for some reason I would like to know why there is no value attribute rendered.It's the same for type="number" but for type="hidden" value attribute renders OK.