molecule
molecule copied to clipboard
:rocket: A lightweight Web IDE UI framework.
Optimize react/connect component, it always triggers React Component rerender after the state changed.
### Features - [x] 支持右边的侧边栏 @mortalYoung - [x] 支持事件链 @mortalYoung - [ ] 支持内部封装函数替代 `tsyringe` @kiwiwong - [ ] 支持tab 分栏拖拽 @mumiao ### BugFix - [x] 修复 dialog 无法关闭的问题 @mumiao...
### Describe the bug npm run start fails with the following message: ``` Compiled with warnings. Failed to parse source map from '/home/..../work/molecule-demo/node_modules/monaco-editor/esm/vs/base/browser/dompurify/purify.es.js.map' file: Error: ENOENT: no such file or...
### Describe the bug ### Versions - OS: windows11 - Browser: Edge 105.0.1343.33 - Molecule: 1.1.1 ### To reproduce 1、执行molecule.folderTree.add();添加目录 ,双击目录执行onLoadData加载子节点数据 2、执行molecule.folderTree.reset(); 3、再执行molecule.folderTree.add();添加目录 ,再次双击目录onLoadData不在执行 ### Expected 点击目录时onLoadData生效 ### Actually happening...
### Question  如图
### Question  代码如下,使用Modal.confirm无法关闭弹窗 ```typescript const { destroy } = Modal.confirm({ title: '1111111111', onOk() { console.log('onOk'); destroy(); }, onCancel() { console.log('onCancel'); destroy(); }, }); ```