@steedos-widgets/reactflow 1.2.32 → 1.2.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -301,3 +301,14 @@
301
301
  background-color: #fff;
302
302
  }
303
303
 
304
+ .antd-Form-item .steedos-react-flow.h-full{
305
+ /*
306
+ 组件作为formitem而不是renderer模式时,外面会包一层form-item div,造成react flow组件高度100%无效
307
+ 把h-full设置为以下值可以有满屏效果
308
+ */
309
+ height: calc(100vh - 115px);
310
+ }
311
+ #__next .ae-Editor .ae-Preview-body .ae-Preview-inner .steedos-react-flow.h-full{
312
+ /*设计器中height 100%无效,把h-full设置为以下值可以有满屏效果*/
313
+ height: calc(100vh - 165px);
314
+ }