You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>'
The text was updated successfully, but these errors were encountered:
devlux
changed the title
min and max type definition for MeterHTMLAttributes and ProgressHTMLAttributes are mising number
min and max type definition for MeterHTMLAttributes and ProgressHTMLAttributes are missing number
Dec 7, 2024
The type definitions for MeterHTMLAttributes and ProgressHTMLAttributes were missed when fixing the min and max attributes in #4568.
The text was updated successfully, but these errors were encountered: