The type definitions for MeterHTMLAttributes and ProgressHTMLAttributes were missed when fixing the min and max attributes in #4568.
src/components/Progress.tsx:59:48 - error TS2322: Type 'number' is not assignable to type 'Signalish<string | undefined>'.
59 <progress className={classes.progress} max={maxValue}></progress>
~~~
../node_modules/.pnpm/preact@10.25.1/node_modules/preact/src/jsx.d.ts:1968:3
1968 max?: Signalish<string | undefined>;
~~~
The expected type comes from property 'max' which is declared here on type 'ProgressHTMLAttributes<HTMLProgressElement>'