Software Entity Relation Containers
Table 1
- Preview
- Usage
- Definition
import { Table1 } from '@dinghy/diagrams/containersEntityRelation'
<Table1/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TABLE_1 } from '@dinghy/diagrams/containersEntityRelation'
<Shape
{...props}
_style={extendStyle(props, TABLE_1)}
/>
{
_style: {
container: 'shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;',
},
}
Table 2
- Preview
- Usage
- Definition
import { Table2 } from '@dinghy/diagrams/containersEntityRelation'
<Table2/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TABLE_2 } from '@dinghy/diagrams/containersEntityRelation'
<Shape
{...props}
_style={extendStyle(props, TABLE_2)}
/>
{
_style: {
container: 'shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;whiteSpace=wrap;',
},
}
Table Row 1
- Preview
- Usage
- Definition
import { TableRow1 } from '@dinghy/diagrams/containersEntityRelation'
<TableRow1/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TABLE_ROW_1 } from '@dinghy/diagrams/containersEntityRelation'
<Shape
{...props}
_style={extendStyle(props, TABLE_ROW_1)}
/>
{
_style: {
container: 'shape=table;startSize=0;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=0;align=center;resizeLast=1;strokeColor=none;fillColor=none;collapsible=0;whiteSpace=wrap;html=1;',
},
}
Table Row 2
- Preview
- Usage
- Definition
import { TableRow2 } from '@dinghy/diagrams/containersEntityRelation'
<TableRow2/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TABLE_ROW_2 } from '@dinghy/diagrams/containersEntityRelation'
<Shape
{...props}
_style={extendStyle(props, TABLE_ROW_2)}
/>
{
_style: {
container: 'shape=table;startSize=0;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=0;align=center;resizeLast=1;strokeColor=none;fillColor=none;collapsible=0;',
},
}