@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.
- package/dist/assets.json +5 -5
- package/dist/components/ReactFlow.d.ts +3 -2
- package/dist/meta.js +20 -1
- package/dist/reactflow.cjs.css +11 -0
- package/dist/reactflow.cjs.js +4 -4
- package/dist/reactflow.cjs.js.map +1 -1
- package/dist/reactflow.esm.css +11 -0
- package/dist/reactflow.esm.js +4 -4
- package/dist/reactflow.esm.js.map +1 -1
- package/dist/reactflow.umd.css +11 -0
- package/dist/reactflow.umd.js +2 -2
- package/dist/types/components/ReactFlow.d.ts +3 -2
- package/package.json +3 -3
package/dist/reactflow.esm.css
CHANGED
|
@@ -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
|
+
}
|