I guess R2 http is kinda rare because it is an extra overhead if you upload a file to your API (which is not hosted on a Cloudflare worker) and then send the file to Cloudflare by another "upload"....
Just to clarify for everyone coming here: This can now be done easily:
```ts
const files = await readMultipartFormData(event);
```
Which returns an array of MultiPartData:
```ts
interfa...
For Nuxt / Nitro this did the trick:
```ts
rollupConfig: {
external: ['pg-native'],
},
```
BUT next error I get is:
> Cannot resolve "cloudflare:sockets" from "/Users/mick/git/.../...
The following import is not treeshakable:
```ts
import { z } from 'zod'
```
So I replaced it with
```ts
import * as z from 'zod'
```
Further, because zod is not very treeshakable an...
I made a compariso between Zod and Valibot:
```ts
const loginSchema = z.object({
email: z.string().email(),
password: z.string().min(8),
});
```
- Valibot adds 18kb gzipped to Nuxt p...
I remember when RxJS went from one huge import (like Zod) to independent functions (like Valibot) did. The migration was a bit painful but it was worth it.
Before:
```ts
mySubject.throttle(1...
Corrected usage, should be `@layer theme` and not `@theme`.
What I didnt change is the fact that `@theme` is not a "directive" as it is often written on this page. Instead the are using [CSS cas...
### Report hasn't been filed before.
- [X] I have verified that the bug I'm about to report hasn't been filed before.
### What version of `drizzle-orm` are you using?
0.37.0
### What version of...
Is this somehow related to some other flag to identify the project? I just checked and it works correctly in a Nuxt project but not in a pure Nitro project with exactly the same eslint config
### Verify canary release
- [X] I verified that the issue exists in the latest Turborepo canary release.
### Link to code that reproduces this issue
-
### Which canary version will you have in ...
Looks VERY good to me!
Before, group order was random:
![Image](https://github.com/user-attachments/assets/021a4ffd-d1da-40ea-9218-a3eacf83abda)
![Image](https://github.com/user-attachments/assets...
I dont want to argue too :D
It feels a bit weird to me because first the user has groups and as soon as he starts typing the groups are gone. On the other hand that is what I would expect when us...
> If you want to use the CommandPalette in a popper, you can do it in a Popover for example: https://ui3.nuxt.dev/components/command-palette#within-a-popover
I know, but not just for the content ...
What I also noticed is that when using `ignoreFilter` on the group that contains the actions, the group goes to the bottom but they should stay at the top:
```
const groups = ref([
{
id: 'ac...
But do you really need to validated ALL country codes? I think there are 255 out there ... In any case, even if you would put it in the Nuxt server part it would still increase the bundle size whic...
I was considering `InputMenu`. But as far as I see it has less features, e.g. grouping and kbds are missing. And it should be more a search and select, then the whole thing gets removed and replace...
### For what version of Nuxt UI are you suggesting this?
v3.0.0-alpha.x
### Description
[CommandPalette](https://ui3.nuxt.dev/components/command-palette) is great but I wish it show only an inpu...
@benjamincanac I was trying v3 for a bit and I just wanted to give you and everyone else who was involved my biggest respect and say that I am amazed by all the work that has been done! I was hopin...