Will Toher
Will Toher
This PR narrows the type of `ItiProps.inputProps`from `object`, which accepts anything, to only the properties supported by the underlying `` component, excluding "ref" and "onInput" which will break the component...
uv has a concept of [tools](https://docs.astral.sh/uv/concepts/tools/), which work similarly to pipx or npx. Currently, attempting to install beartype with uv fails with this error: ``` $ uv tool install beartype...
### Summary I ran into an issue in FastAPI recently, where I defined a route with an optional array query parameter, like so: ```python @router.get("/optional_none_outside") def optional_none_outside(params: Annotated[list[Literal[1,2]], Query()] |...