Victor César dos S. Evangelista
Victor César dos S. Evangelista
This is what you are searching [#1563](https://github.com/shadcn-ui/ui/pull/1563)
> I wanted a solution that allows the `ComboBox` to use a portal unless it's inside a `Dialog`. To avoid passing props through consumers, I added a `DialogContext` that communicates...
I have developed a dropzone component based on the suggestion provided by @step2341 . This component utilizes the default shadcn/ui input, manages forms, and integrates with React Hook Form. ```...
> function handleOnDrop(acceptedFiles: FileList | null) { > if (acceptedFiles && acceptedFiles.length > 0) { > const allowedTypes = [ > { name: "csv", types: ["text/csv"] }, > { >...