File tree 1 file changed +9
-0
lines changed
packages/mermaid/src/rendering-util/rendering-elements
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ import { triangle } from './shapes/triangle.js';
55
55
import { waveEdgedRectangle } from './shapes/waveEdgedRectangle.js' ;
56
56
import { waveRectangle } from './shapes/waveRectangle.js' ;
57
57
import { windowPane } from './shapes/windowPane.js' ;
58
+ import { erBox } from './shapes/erBox.js' ;
58
59
59
60
// eslint-disable-next-line @typescript-eslint/no-explicit-any
60
61
type ShapeHandler = ( parent : any , node : Node , options : ShapeRenderOptions ) => unknown ;
@@ -442,6 +443,14 @@ export const shapesDefs: ShapeDefinition[] = [
442
443
aliases : [ 'lined-document' ] ,
443
444
handler : linedWaveEdgedRect ,
444
445
} ,
446
+ {
447
+ semanticName : 'Entity Relationship Box' ,
448
+ name : 'Entity Relationship Box' ,
449
+ shortName : 'erBox' ,
450
+ description : 'Entity Relationship Box' ,
451
+ aliases : [ 'er-box' ] ,
452
+ handler : erBox ,
453
+ } ,
445
454
] ;
446
455
447
456
const generateShapeMap = ( ) => {
You can’t perform that action at this time.
0 commit comments