Tianen Pang
Tianen Pang
I got the same issue when install [`sharp`](https://www.npmjs.com/package/sharp) in Windows, tried `pnpm store prune` but no luck. BTW it works fine in WSL. ### Reproduce: ```bash pnpm init pnpm add...
I removed all the global packages of `pnpm` manually and reinstalled it via PowerShell, it works now.
Hi, @Gomah I got the same issue as you. I think the problem is with the id of the [label](https://github.com/nextui-org/nextui/blob/5880b19e8a8fa16354d5244c5dc58d3ed9b2055d/packages/react/src/input/input.tsx#L192), we can pass the input id through the prop, but...
Hi @aaaravv @fundon could you please share a full repro case?
@fundon thank you for the repro. I'm able to reproduce the issue with `yarn`, will look into this 🤔
Hi guys, thanks for the feedback. For the warning that `onClick is deprecated, please use onPress` it may be related to the `Button`. - https://github.com/nextui-org/nextui/issues/482 For the flickering issue please...
Hi all, I'm still looking for this strange issue, currently using `npm` or [`pnpm`](https://pnpm.io/) will work as expected. Hey @buskerone The `Dropdown` in the docs works is because the `@nextui-org/react`...
You can use `React.ComponentProps` instead of `VariantProps`, the original `Text` types will also be included. ```typescript type Props = React.ComponentProps; const MyText: React.FC = (props) => { ... }; ```...
Hi @JayMGurav you can use custom trigger with [`Dropdown.Trigger`](https://nextui.org/docs/components/dropdown#custom-trigger), such as the example above or the [documentation](https://nextui.org/docs/components/dropdown#custom-trigger). For id hydration mismatch will be fixed in https://github.com/nextui-org/nextui/pull/781.
Hi @jrgarciadev fixed and upgraded storybook to the latest version.