Simon Guo
Simon Guo
What you want to ask is the 404 error of the `.css.map` file? Or the imported `.css` component style is not effective? If the component style is not effective, please...
Hi, please reproduce your problem completely through [codesandbox](https://codesandbox.io/) !
You can determine whether it is an expanded row in `rowHeight`. If it is an expanded row, return the expanded height, otherwise return the default height. ```tsx rowHeight={(rowData) => {...
`wordWrap` 这个属性从实现出来后我就不满意,它需要等待表格第一次渲染完以后,在逐个查找DOM 每一行最高单元的高度作为行的高度,当每行的高度都从 DOM 获取到以后,再重新渲染表格,性能很差,而且在很多场景想都不能同时使用。关于自动换行,后面我们再看看有什么方案可以更好,或者参考 Excel 的交互,在单元格上操作时候选择内容自动换行,只影响当前行。 当前,我更推荐使用 [fullText](https://table.rsuitejs.com/#show-full-text),到达业务上相似的需求,但不会让表格多次渲染。
目前还没找到比较好的解决方式,你如果有什么修改方案可以提。
Hi @alexeysvyridov Currently Table is only associated with ARIA roles, keyboard interaction is missing. I will plan to perfect the keyboard interactions.
@alexeysvyridov Do you have this problem if you try to use [email protected] version?
Hi @ra-devmaster I can't reproduce this issue, can you provide more information? Provide a simple code example, or a screen recording.
Hi @RulaKhaled We have added [size-limit](https://github.com/rsuite/rsuite/blob/next/package.json#L206) and its corresponding [workflow](https://github.com/rsuite/rsuite/blob/next/.github/workflows/size-limit.yml) to the next branch.
Hi @somokim This is a compatibility issue with React 19.1.0. You have two options: 1. Downgrade React to v18.* 2. Upgrade rsuite to v6.* ``` npm install rsuite@next ``` Currently...