Simon Guo
Simon Guo
In the case of too many tree nodes, the animation will result in unsmooth operation and affect normal use. So we gave up the animation effect.
You can define an `ItemType` to extends `ItemDataType` ```tsx import { ItemDataType } from 'rsuite/lib/@types/common'; interface ItemType extends ItemDataType { quality?: number; } ``` ```tsx { return ( {label} {item.quality}...
The solution I currently think of is to add an any attribute to `ItemDataType`. But this can only avoid errors, but can not assist editor code prompts. ```ts interface ItemDataType...
对的,应该引入相关依赖组件的样式。
There are multiple versions of react, you can try to execute in the docs directory: ``` rm -R node_modules/react rm -R node_modules/react-dom ``` The `next` branch is currently not stable...
> @simonguo unable to open the link ```tsx function App() { const [open, setOpen] = useState(false); const [loading, setLoading] = useState(false); const handleOpen=()=>{ setOpen(true); setLoading(true); } return ( setOpen(false)} onEntered={()=>{setLoading(false)}}>...
Hi @shyzw The custom column width is reset because the component re-renders when the table's children are changed. In order to save the column width, you can get the column...
Hi @VKechkin An example of header grouping is provided in the documentation. https://rsuitejs.com/components/table/#colspan
Sorry, nested header groups are not currently supported.
Hi @bandersen22000 This is the relative color syntax feature of CSS. The latest version of Sass already supports it. Please try upgrading the Sass version. https://github.com/sass/sass/issues/3673