Simon Guo

Results 268 comments of Simon Guo

The rsuite version in your instance is 5.0.0, please upgrade to the latest version to try. If the problem persists, set a `shouldUpdateScroll` property on the Table. ``` ``` >...

Check with [Size Limit](https://github.com/rsuite/rsuite/actions/runs/12489897513/job/34854004978?pr=4085 ), replacing lodash with lodash-es actually increases the volume.

rsuite will [support React 19 in v6](https://github.com/rsuite/rsuite/pull/4084), and remove support for React 17. It is currently under development, and you can try it by: ```bash npm install rsuite@next ```

Hi @Getsumi3 , currently there are indeed only two states. In terms of design, it's best to maintain two states for such toggle operations. If we were to add a...

I cannot access this codesandbox example ![Image](https://github.com/user-attachments/assets/5f5afb03-690f-4973-bb25-a58cf5d6eb8a)

The 5000ms and 5100ms intervals are too close. The `duration` here doesn't include the animation effect time. You can set the setInterval time a bit longer, for example: 6000ms

When using the `useToaster` hook, you need to wrap your App with `CustomProvider`: ```tsx import { CustomProvider } from 'rsuite'; render( , document.getElementById('root') ); ```

Hi @creative-thinker7 You can use `renderMenu` to add custom content before the option list. ```tsx { return ( Header {menu} ); }} /> ```