forked from jsplumb/jsplumb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.json
80 lines (80 loc) · 2.15 KB
/
build.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"includes": {
"JS_BEZIER": {
"p": "node_modules/jsbezier/js/jsbezier.js"
},
"BILTONG": {
"p": "node_modules/biltong/src/biltong.js"
},
"MOTTLE": {
"p": "node_modules/mottle/js/mottle.js"
},
"KATAVORIO": {
"p": "node_modules/katavorio/src/katavorio.js"
}
},
"coreLibs": [
"JS_BEZIER",
"BILTONG"
],
"browserLibs": [
"MOTTLE",
"KATAVORIO"
],
"connectors": [
"flowchart",
"bezier",
"statemachine",
"straight"
],
"renderers" : [
"svg"
],
"demos":[
{
"id":"flowchart",
"name":"Flowchart",
"desc":"Example of using the Flowchart connectors"
},
{
"id":"statemachine",
"name":"State Machine",
"desc":"Example of how to use the 'StateMachine' connectors, with elements as drag sources and targets"
},
{
"id":"draggableConnectors",
"name":"Drag and Drop",
"desc":"The original jsPlumb drag and drop example"
},
{
"id":"perimeterAnchors",
"name":"Perimeter Anchors",
"desc":"A simple example demonstrating the 'Perimeter' anchor type"
},
{
"id":"chart",
"name":"Hierarchical Chart",
"desc":"Simple hierarchical chart (without automatic layout)"
},
{
"id":"sourcesAndTargets",
"name":"Sources and Targets",
"desc":"An example of using elements as drag sources and targets"
},
{
"id":"dynamicAnchors",
"name":"Dynamic Anchors",
"desc":"An example showing the 'Dynamic' anchor type"
},
{
"id":"animation",
"name":"Animation",
"desc":"Simple example demonstrating jsPlumb's `animate` method"
},
{
"id":"groups",
"name":"Groups",
"desc":"Demonstrates the various options for defining and working with Groups"
}
]
}