I had a few of issues with @select in v2 especially in combination with buttons / dropdowns. But I also think being able to click an item would be super important!
### Environment
-
### Version
v3 latest commit
### Reproduction
https://ui3.nuxt.dev/components/select-menu#search-input
### Description
According to the docs `resetSearchTermOnBlur` is set ...
No need for any module as I wrote above! If you deploy to Cloudflare just keep in mind Tailwind 4 requires to set build environment to Node 22 atm: https://github.com/tailwindlabs/tailwindcss/issue...
Cloudflare is using Node 18 for its build process.
I can confirm that it is working with Node 22. As a workaround one can add an environment variable or a file `.nvmrc` to specify Node version f...
**What version of Tailwind CSS are you using?**
4.0.0-beta.7
**What build tool (or framework if it abstracts the build tool) are you using?**
tailwindcss: 4.0.0-beta.7
vite: 6.0.3
**Wh...
We are considering to use Contentful for a large scale project BUT the js client is still using Axios.
In serverless environments, and especially on esge workers, every kb counts and this would...
I am consistently getting type errors and need to transform all null values to undefined manually, very cumberstone!
Very simplified example of what I want:
```ts
interface ItemResponse {
...
### For what version of Nuxt UI are you suggesting this?
v2.x
### Description
For `Form` the example about [nesting forms](https://ui3.nuxt.dev/components/form#nesting-forms) doesnt fully work o...
Maybe the same prop could be used for Cloudflare Images: https://github.com/nuxt/image/issues/427
There it is also required to set predefined screensizes. But for Cloudflare Images one only define...
Isnt it possible to make extra config options just for a specific driver? If not why would it be bad? I think it this is the only way to do because atm the only way is to misuse the screens propert...
Sorry it should be less than, not smaller than. See for example https://orm.drizzle.team/docs/operators#lt
I am afraid I will not have the time to get in the project and make a PR.
Great library! I only realized there is no possibility to add a "greater than" or "smaller than" validation. Of course, `minValue()` can be used, but it is not really accurate. E.g. when I want a n...
Sorry but what is the right way to do it? This should be correct innit?
```ts
const validatedBody = await readValidatedBody(event, (body) =>
v.safeParse(mySchema, body),
);
```
Just...
This can be resolved by adding `strict: true` for the moment. But @L-Mario564 told me "I'll try to make it work without strict, but will require some effort to do so" so I leave this open hoping it...
### Feature hasn't been suggested before.
- [X] I have verified this feature I'm about to request hasn't been suggested before.
### Describe the enhancement you want to request
Creating refineme...
I think this is correct, isnt it? I dont know exactly about MySQL but I know for example that in PostgreSQL a number will always be a string because this is the most accurate way to save decimals. ...