-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.js
26 lines (25 loc) · 1.29 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import dragonflyCanvas from "./src/components/DragonflyCanvas.vue";
import dragonflyEdge from "./src/components/DragonflyEdge.vue";
import dragonflyEndpoint from "./src/components/DragonflyEndpoint.vue";
import straightLine from "./src/components/edge/StraightLine.vue";
import zigZagLine from "./src/components/edge/ZigZagLine.vue";
import sCurveLine from "./src/components/edge/SCurveLine.vue";
import lBrokenLine from "./src/components/edge/LBrokenLine.vue";
import lineShapeBase from "./src/components/edge/LineShapeBase.vue";
import lRoundedCornerLine from "./src/components/edge/LRoundedCornerLine.vue";
import dotGrid from "./src/components/grid/DotGrid.vue";
import lineGrid from "./src/components/grid/LineGrid.vue";
import tileGrid from "./src/components/grid/TileGrid.vue";
import './src/components/dragonfly-dag.less'
export const DragonflyCanvas = dragonflyCanvas
export const DragonflyEdge = dragonflyEdge
export const DragonflyEndpoint = dragonflyEndpoint
export const StraightLine = straightLine
export const ZigZagLine = zigZagLine
export const SCurveLine = sCurveLine
export const LineShapeBase = lineShapeBase
export const DotGrid = dotGrid
export const LineGrid = lineGrid
export const TileGrid = tileGrid
export const LBrokenLine = lBrokenLine
export const LRoundedCornerLine = lRoundedCornerLine