Simon Guo

Results 268 comments of Simon Guo

https://github.com/simonguo/babel-plugin-transform-react-flow-handled-props/blob/6285a377f8c281d6ba56eae6812f581408187ee9/src/visitors/propVisitor.js#L67

@layershifter Thank you so much, I will take a closer look at the `babel` Document!

@xavijam The virtualized of the columns on the table is currently not in our development plan. I want to know what your application scenario is like?

当设置 `wordWrap: "break-all" ` 后,Table 会在渲染单元格的时候去获取 DOM 所占行高(h), 最终渲染会取它与 rowHeight 大的一个值作为行高 `max(h,rowHeight)`。 如果你的问题没有解决,请通过 codesandbox 重现一下你问题。 https://codesandbox.io/s/wonderful-fire-94ys33

You can use `onBlur` to check for changes in value to achieve your application requirements. ```jsx const App = () => { const [value, setValue] = React.useState(null); return ( {...

hi @LisaKirchhofer You need to add tests for the fixed code. The test script can be run by the following command: ``` M=Rate npm run tdd ```

The issues in #2917 are currently not covered by our test scripts. If this PR solves #2917, I hope there will be a corresponding test case. In the test script,...

Hi @Sleaf switching from Karma to Cypress is a significant project. What problems will this change solve, and what benefits will it bring?

rsuite uses a library called `@juggle/resize-observer`, and there is a discussion about the issue at [#resize-observer/issues/103](https://github.com/juggle/resize-observer/issues/103). Currently, no better solution has been found.

The date formatting on the calendar panel is not set through the format parameter, but rather through the localization configuration of the component. https://github.com/rsuite/rsuite/blob/6722b10e5e4a292b91f23daf9ee3090a3bf2538e/src/locales/default.ts#L21-L22 Currently, only the date has been...