tmagic-editor icon indicating copy to clipboard operation
tmagic-editor copied to clipboard

Results 63 tmagic-editor issues
Sort by recently updated
recently updated
newest added

如题,之前查找issue,并没遭到类似的答案,现在是可以通过editor来修改,那在组件中 如何修改这些数据呢?

componentGroupList中如何自定义icon组件

如题,之前我是这么使用它的: { text:"初始维度", name:"space", type:"radio-group", options:[{value:2,text:'二维'},{value:3,text:'三维'}] } 发现鼠标选择后,捕获到的数值是true、false,是不是DSL的写法发生了变化?我看官网的playground里就是这么用的,挺好使的啊,我这边的这个配置,已经正常使用一年了,今天不好使了。/ ![1713433527155_FA244CE2-63DF-4b0e-9696-E3D843BF7304](https://github.com/Tencent/tmagic-editor/assets/158448792/69e0f028-2d88-465c-b000-dfca500739d4)

![企业微信截图_17134075511752](https://github.com/Tencent/tmagic-editor/assets/16810772/c9044fdf-4a37-44c1-9489-0f0110a281a2) 我们开发完组件,代码合并后。本地build提示node内存不足。这个虽然可以设置修改。但有没有其他办法一次性解决。不希望每次出现的时候设置内存大小

tmagic-admin本身就有一个editor,但是里面的组建拖动不了的。

如题,如果并发加载的两个js都是相对路径,那第二个js的路径就不对了,比如同时加载jquery和airship,airship内部可能也在动态加载别的js文件,可能会导致加载路径变成../jquery/p-68ed0ce0.system.js,可是这个文件是在airship文件夹下的,我知道应该去改airship.js的源码,可那是个别人的库,没法动,能不能改进asyncLoadJs来解决这个问题? (jquery和airship的加载是在两个不同组件内部,代码无法放在一起处理)

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll...

update方法中 `const newNodes = await Promise.all(nodes.map((node) => this.doUpdate(node)));` 改成 `const newNodes: MNode[] = [];` `(async () => {` ` for (const node of nodes) {` ` const newNode = await...