forked from LaxarJS/laxar-developer-tools-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwidget.json
More file actions
90 lines (88 loc) · 2.93 KB
/
widget.json
File metadata and controls
90 lines (88 loc) · 2.93 KB
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
81
82
83
84
85
86
87
88
89
90
{
"name": "ax-developer-tools-widget",
"description": "Provides developer tools to inspect the event bus and the application log, and the grid-alignment of widgets",
"integration": {
"technology": "angular",
"type": "widget"
},
"features": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"open": {
"type": "object",
"properties": {
"onActions": {
"type": "array",
"default": [],
"items": {
"type": "string",
"format": "topic"
}
},
"onGlobalMethod": {
"type": "string",
"description": "method on the global object (window) which may be called to show the developer tools, for example from a bookmark",
"default": "laxarShowDeveloperTools"
}
}
},
"button": {
"type": "object",
"description": "allows to render a button that opens the popup",
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"htmlLabel": {
"type": "string",
"default": "<i class='fa fa-cube'></i> DeveloperTools"
}
}
},
"grid": {
"type": "object",
"properties": {
"anchor": {
"type": "string"
},
"columns": {
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "The number of grid columns to draw"
},
"width": {
"type": "integer",
"description": "The width of each CSS grid column (in pixels, including padding, without gutter)"
},
"padding": {
"type": "integer",
"description": "The left and right padding for each grid column (in pixels)"
},
"gutter": {
"type": "integer",
"description": "The horizontal space between two grid columns (in pixels)."
}
}
},
"css": {
"type": "object"
}
}
},
"develop": {
"type": "object",
"description": "allows to use the development version (debug.html) of the developer tools",
"properties": {
"enabled": {
"type": "boolean",
"default": false
}
}
}
}
}
}