Aleksandr
Aleksandr
Hi @AlexandroMunera, It's possible now (https://formengine.io/documentation/custom-components#hidden-component ): ```typescript const view = new BuilderView(components) .withPaletteFilter(({category, model}) => { return !(category === 'templates' || model.type === 'RsAutoComplete') }) ```
The same problem as in https://github.com/rsuite/rsuite/issues/4382.
Hi @tuthanhoancanh012, This issue has already been resolved in the 4.1.0 release. https://formengine.io/documentation/release-notes#410 .
I get this message too. It appears when using webpack or rspack builders. But there are no problems with vite.
@simonguo Do I understand correctly that it is almost impossible to add the use of React 19 to the library code? Since the `createRoot` function must be imported from the...
@simonguo Yesterday, I dug into the rsuite code. The current version works great with React 19 when using vite as a bundler. I think the react plugin in vite does...
PR Draft: https://github.com/rsuite/rsuite/pull/4420
@simonguo There is also something strange with the example https://rsuitejs.com/components/notification/#with-toaster, at least in React 18. package.json: ```json { "name": "rsuite-react-test", "version": "1.0.0", "private": true, "type": "module", "scripts": { "build": "rsbuild...
I found the solution here https://github.com/rsuite/rsuite/issues/4192#issuecomment-2739094868
@simonguo Thank you, everything works now with version 5.83.4! ```tsx import React from 'react' import {createRoot} from 'react-dom/client' import {CreateRootContextProvider} from 'rsuite' import App from './App' const rootEl = document.getElementById('root');...