You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
762 B
27 lines
762 B
import { CanvasPanel, DetailPanel, EdgePanel, GroupPanel, MultiPanel, NodePanel } from 'gg-editor';
|
|
|
|
import { Card } from 'antd';
|
|
import DetailForm from './DetailForm';
|
|
import styles from './index.less';
|
|
|
|
const FlowDetailPanel = () => (
|
|
<DetailPanel className={styles.detailPanel}>
|
|
<NodePanel>
|
|
<DetailForm type="node" />
|
|
</NodePanel>
|
|
<EdgePanel>
|
|
<DetailForm type="edge" />
|
|
</EdgePanel>
|
|
<GroupPanel>
|
|
<DetailForm type="group" />
|
|
</GroupPanel>
|
|
<MultiPanel>
|
|
<Card type="inner" size="small" title="Multi Select" bordered={false} />
|
|
</MultiPanel>
|
|
<CanvasPanel>
|
|
<Card type="inner" size="small" title="Canvas" bordered={false} />
|
|
</CanvasPanel>
|
|
</DetailPanel>
|
|
);
|
|
|
|
export default FlowDetailPanel;
|
|
|