UltimateGG
UltimateGG
Same issue, held me back from upgrading for a long time but I finally caved and looked into it more. The ts docgen dependency, `@joshwooding/vite-plugin-react-docgen-typescript` on version `0.3.0` is great...
I have found by default it is including all node_modules `*.tsx` files (Not respecting storybook's `stories`) so I have gained some performance (~5s down to 2s) by setting `include` property:...
With asChild it's to help the user override the styles, so if they specify asChild it should not include anything they cannot control (like the chevron down icon) and just...
Same issue with trpc websockets and keep alive on Bun 1.1.26 ``` 513 | close(code, reason) { 514 | if (this.#state === 1) 515 | this.#state = 2, this.#ws.close(code, reason);...
Another utility is to add text adornments, doing some simple typechecking so if a string is passed you can style a background, else render the react node.  ```ts {prefix...
The lag only happens when the devtools is open. Also seems to only be on Brave. Tried incognito so it is not an extension. Probably not a bug with this...
I think you are right it is something with the power source. I remember making this issue a year ago and shortly after was going to try to fix, but...
Having this on SP 244. Can we get the quirk to match those newer models too? I assume it's just not matching because the model is different
Heres my fix: ```tsx export const AccordionTrigger = React.forwardRef( ({ className, children, ...props }, ref) => { const content = props.asChild ? ( children ) : ( {children} ); return...
I fixed it by just adding the type annotation `export const MenubarMenu: typeof MenubarPrimitive.Menu = MenubarPrimitive.Menu;` Also I think this is a pnpm only issue as I just switched to...