Inbput, Label etc (Checkbox, Select and Button-Toggle has been reported)
We could perhaps also/instead try and make the useId function more deterministic
let id = 0;
export function useId(el?: Element | null) {
if (el && !el.id) el.id = `ds-${++id}`;
return el?.id || '';
}