kevinmitch14
kevinmitch14
Individual toast times can already be configured at the toast level. ```tsx toast({ duration: 5000, title: "Hello World", }); ``` This comes from Radix UI's toast [here](https://www.radix-ui.com/primitives/docs/components/toast), which has per-toast...
apps/* changes
CLI changes made in #2473
This prop can be controlled from the caller side. ie. `` Aria-disabled and disabled do not server the exact same use-cases so hardcoding them to be the same values is...
How about removing the overlay in `ui/components/sheet.tsx`? ```diff const SheetContent = React.forwardRef< React.ElementRef, SheetContentProps >(({ side = "right", className, children, ...props }, ref) => ( - {children} Close )) ```
This PR handles the proper styling via data attributes + dependancy bump + update registry. https://github.com/shadcn-ui/ui/pull/2626
The component specific issues have already been fixed in https://github.com/shadcn-ui/ui/pull/2626 🤔
I am not too sure why you are hinting that I have "copied" your work or something? With all due respect, the original #2626 PR was opened in January as...
I think you need to hook this up yourself. https://tanstack.com/table/v8/docs/guide/column-sizing#column-size-apis > How you apply these size styles to your markup is up to you, but it is pretty common to...
You can use it like this ```typescript await db.insert(usersTable) .values({ id: 1, name: 'John' }) .onDuplicateKeyUpdate({ set: { name: 'John1' } }); ```