nexx
nexx
`webpack v5.70.0` `webpack-bundle-analyzer v4.5.0` `new BundleAnalyzerPlugin()` 
场景: 监听schema变化,由于没有相关的`onChange`钩子,故用`InsertAfterEvent`这类事件代替。 ``` designer.subscribeTo(InsertAfterEvent, () => { let schema = transformToSchema(designer.getCurrentTree()); console.log("InsertAfterEvent:", schema); }); ``` 问题: 在`InsertAfterEvent`无法拿到最新的schema,除非用`setTimeOut`添加延时获取 codesandbox: https://codesandbox.io/s/formily-designer-forked-j63w9c?file=/playground/main.tsx

I check the source code found that can support babel-runtime. but how to set the options in packgage.json? 
1. there has a css file in my source folder  2.but it losted in the published folder  How to solve it ? thanks
当数据量较大时,同时使用expandedRowKeys控制展开,将会导致点击展开按钮时,展开动作很卡; 同时使用setState触发render的时候也会变卡。 比如:第一级数据 40条,第二级 10条 第三级 10条。 示例:[https://codesandbox.io/s/m2j8o3m6p](https://codesandbox.io/s/m2j8o3m6p)