Isaac Young

Results 3 issues of Isaac Young

## Summarize this feature ## Why should this feature be included? ## Additional information

enhancement

## **Describe the bug (required)** / **详细描述 bug(必填)** 构建失败 Can't resolve '@alilc/lowcode-rax-renderer @alilc/lowcode-rax-simulator-renderer: info WEBPACK Hash: a5f81b7c78a4b0cf119c @alilc/lowcode-rax-simulator-renderer: info WEBPACK Version: webpack 4.46.0 @alilc/lowcode-rax-simulator-renderer: info WEBPACK Child web: @alilc/lowcode-rax-simulator-renderer: info...

help wanted

VC组件通过prototype中的canResizing函数来配置组件某一边是否可拖拽,并在componentDidMount绑定resize事件,但由于单边的div元素采用了动态渲染,当canResizing发生变化时div会销毁然后重新挂载,但是挂载后并没有重新绑定拖拽事件,导致无法重新拖拽 两种修复方法: - 将动态渲染修改为通过style控制显示隐藏即可 - 或者componentDidUpdate里重新绑定一次,但组件每次更新都会重新绑定,对于拖拽调整组件宽度长度等场景会频发触发解绑和绑定 目前的commit是通过第一种方式修复的 ```jsx componentDidMount() { this.willBind(); } render() { if (!observed.hasOffset) { return null; // ⬅️动态渲染 } return ( {/* ⬇️ 动态渲染 ⬇️ */} {triggerVisible.includes("N")...