@operato/board 0.2.51 → 0.2.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/custom-elements.json +976 -292
- package/dist/src/component/3d.d.ts +2 -2
- package/dist/src/component/3d.js.map +1 -1
- package/dist/src/component/chart-and-gauge.d.ts +2 -2
- package/dist/src/component/chart-and-gauge.js.map +1 -1
- package/dist/src/component/container.d.ts +2 -2
- package/dist/src/component/container.js.map +1 -1
- package/dist/src/component/data-source.d.ts +2 -2
- package/dist/src/component/data-source.js.map +1 -1
- package/dist/src/component/etc.d.ts +2 -2
- package/dist/src/component/etc.js.map +1 -1
- package/dist/src/component/form.d.ts +2 -2
- package/dist/src/component/form.js.map +1 -1
- package/dist/src/component/iot.d.ts +2 -2
- package/dist/src/component/iot.js.map +1 -1
- package/dist/src/component/line.d.ts +2 -2
- package/dist/src/component/line.js.map +1 -1
- package/dist/src/component/shape.d.ts +2 -2
- package/dist/src/component/shape.js.map +1 -1
- package/dist/src/component/table.d.ts +2 -2
- package/dist/src/component/table.js.map +1 -1
- package/dist/src/component/text-and-media.d.ts +2 -2
- package/dist/src/component/text-and-media.js.map +1 -1
- package/dist/src/component/warehouse.d.ts +2 -2
- package/dist/src/component/warehouse.js.map +1 -1
- package/dist/src/graphql/board.d.ts +6 -0
- package/dist/src/graphql/board.js +130 -0
- package/dist/src/graphql/board.js.map +1 -0
- package/dist/src/graphql/favorite-board.d.ts +1 -0
- package/dist/src/graphql/favorite-board.js +23 -0
- package/dist/src/graphql/favorite-board.js.map +1 -0
- package/dist/src/graphql/group.d.ts +7 -0
- package/dist/src/graphql/group.js +125 -0
- package/dist/src/graphql/group.js.map +1 -0
- package/dist/src/graphql/index.d.ts +4 -0
- package/dist/src/graphql/index.js +5 -0
- package/dist/src/graphql/index.js.map +1 -0
- package/dist/src/graphql/play-group.d.ts +8 -0
- package/dist/src/graphql/play-group.js +173 -0
- package/dist/src/graphql/play-group.js.map +1 -0
- package/dist/src/modeller/component-toolbar/component-toolbar.js.map +1 -1
- package/dist/src/ox-board-list.d.ts +2 -0
- package/dist/src/ox-board-list.js +427 -0
- package/dist/src/ox-board-list.js.map +1 -0
- package/dist/src/ox-board-modeller.d.ts +4 -4
- package/dist/src/ox-board-modeller.js.map +1 -1
- package/dist/src/types.d.ts +18 -1
- package/dist/src/types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -6
- package/src/component/3d.ts +2 -2
- package/src/component/chart-and-gauge.ts +2 -2
- package/src/component/container.ts +2 -2
- package/src/component/data-source.ts +2 -2
- package/src/component/etc.ts +2 -2
- package/src/component/form.ts +2 -2
- package/src/component/iot.ts +2 -2
- package/src/component/line.ts +2 -2
- package/src/component/shape.ts +2 -2
- package/src/component/table.ts +2 -2
- package/src/component/text-and-media.ts +2 -2
- package/src/component/warehouse.ts +2 -2
- package/src/graphql/board.ts +144 -0
- package/src/graphql/favorite-board.ts +25 -0
- package/src/graphql/group.ts +138 -0
- package/src/graphql/index.ts +4 -0
- package/src/graphql/play-group.ts +189 -0
- package/src/modeller/component-toolbar/component-toolbar.ts +3 -3
- package/src/ox-board-list.ts +459 -0
- package/src/ox-board-modeller.ts +4 -4
- package/src/types.ts +21 -1
- package/dist/src/component/init-groups.d.ts +0 -1
- package/dist/src/component/init-groups.js +0 -28
- package/dist/src/component/init-groups.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -33,6 +33,241 @@
|
|
|
33
33
|
}
|
|
34
34
|
]
|
|
35
35
|
},
|
|
36
|
+
{
|
|
37
|
+
"kind": "javascript-module",
|
|
38
|
+
"path": "src/ox-board-list.ts",
|
|
39
|
+
"declarations": [
|
|
40
|
+
{
|
|
41
|
+
"kind": "class",
|
|
42
|
+
"description": "",
|
|
43
|
+
"name": "BoardList",
|
|
44
|
+
"members": [
|
|
45
|
+
{
|
|
46
|
+
"kind": "field",
|
|
47
|
+
"name": "creatable",
|
|
48
|
+
"type": {
|
|
49
|
+
"text": "boolean"
|
|
50
|
+
},
|
|
51
|
+
"default": "false",
|
|
52
|
+
"attribute": "creatable"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"kind": "field",
|
|
56
|
+
"name": "config",
|
|
57
|
+
"type": {
|
|
58
|
+
"text": "any"
|
|
59
|
+
},
|
|
60
|
+
"attribute": "config"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"kind": "field",
|
|
64
|
+
"name": "data",
|
|
65
|
+
"type": {
|
|
66
|
+
"text": "any"
|
|
67
|
+
},
|
|
68
|
+
"attribute": "data"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"kind": "field",
|
|
72
|
+
"name": "mode",
|
|
73
|
+
"type": {
|
|
74
|
+
"text": "'GRID' | 'LIST' | 'CARD'"
|
|
75
|
+
},
|
|
76
|
+
"default": "'CARD'",
|
|
77
|
+
"attribute": "mode"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"kind": "field",
|
|
81
|
+
"name": "groupId",
|
|
82
|
+
"type": {
|
|
83
|
+
"text": "string | undefined"
|
|
84
|
+
},
|
|
85
|
+
"attribute": "groupId"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"kind": "field",
|
|
89
|
+
"name": "groups",
|
|
90
|
+
"type": {
|
|
91
|
+
"text": "any[]"
|
|
92
|
+
},
|
|
93
|
+
"default": "[]",
|
|
94
|
+
"attribute": "groups"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"kind": "field",
|
|
98
|
+
"name": "favorites",
|
|
99
|
+
"type": {
|
|
100
|
+
"text": "any[]"
|
|
101
|
+
},
|
|
102
|
+
"default": "[]",
|
|
103
|
+
"attribute": "favorites"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"kind": "field",
|
|
107
|
+
"name": "_showSpinner",
|
|
108
|
+
"type": {
|
|
109
|
+
"text": "boolean"
|
|
110
|
+
},
|
|
111
|
+
"default": "false"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"kind": "field",
|
|
115
|
+
"name": "grist",
|
|
116
|
+
"type": {
|
|
117
|
+
"text": "DataGrist"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"kind": "method",
|
|
122
|
+
"name": "fetchHandler",
|
|
123
|
+
"parameters": [
|
|
124
|
+
{
|
|
125
|
+
"name": "{ page, limit, sorters = [] }",
|
|
126
|
+
"type": {
|
|
127
|
+
"text": "{ page: number; limit: number; sorters: SortersConfig }"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"kind": "field",
|
|
134
|
+
"name": "gristConfig"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"kind": "method",
|
|
138
|
+
"name": "refresh"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"kind": "method",
|
|
142
|
+
"name": "getBoards",
|
|
143
|
+
"parameters": [
|
|
144
|
+
{
|
|
145
|
+
"name": "{\n page = 1,\n limit = 30,\n sorters = []\n }",
|
|
146
|
+
"default": "{}",
|
|
147
|
+
"type": {
|
|
148
|
+
"text": "{ page?: number; limit?: number; sorters?: SortersConfig }"
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"kind": "method",
|
|
155
|
+
"name": "getFavoriteBoards",
|
|
156
|
+
"parameters": [
|
|
157
|
+
{
|
|
158
|
+
"name": "{ page = 1, limit = 30 }",
|
|
159
|
+
"default": "{}"
|
|
160
|
+
}
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"kind": "method",
|
|
165
|
+
"name": "refreshBoards"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"kind": "method",
|
|
169
|
+
"name": "onCreateBoard"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"kind": "method",
|
|
173
|
+
"name": "notify",
|
|
174
|
+
"parameters": [
|
|
175
|
+
{
|
|
176
|
+
"name": "level",
|
|
177
|
+
"type": {
|
|
178
|
+
"text": "'warn' | 'error' | 'info'"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "message",
|
|
183
|
+
"type": {
|
|
184
|
+
"text": "any"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "ex",
|
|
189
|
+
"optional": true,
|
|
190
|
+
"type": {
|
|
191
|
+
"text": "Error"
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"attributes": [
|
|
198
|
+
{
|
|
199
|
+
"name": "creatable",
|
|
200
|
+
"type": {
|
|
201
|
+
"text": "boolean"
|
|
202
|
+
},
|
|
203
|
+
"default": "false",
|
|
204
|
+
"fieldName": "creatable"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "config",
|
|
208
|
+
"type": {
|
|
209
|
+
"text": "any"
|
|
210
|
+
},
|
|
211
|
+
"fieldName": "config"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "data",
|
|
215
|
+
"type": {
|
|
216
|
+
"text": "any"
|
|
217
|
+
},
|
|
218
|
+
"fieldName": "data"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "mode",
|
|
222
|
+
"type": {
|
|
223
|
+
"text": "'GRID' | 'LIST' | 'CARD'"
|
|
224
|
+
},
|
|
225
|
+
"default": "'CARD'",
|
|
226
|
+
"fieldName": "mode"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "groupId",
|
|
230
|
+
"type": {
|
|
231
|
+
"text": "string | undefined"
|
|
232
|
+
},
|
|
233
|
+
"fieldName": "groupId"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "groups",
|
|
237
|
+
"type": {
|
|
238
|
+
"text": "any[]"
|
|
239
|
+
},
|
|
240
|
+
"default": "[]",
|
|
241
|
+
"fieldName": "groups"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "favorites",
|
|
245
|
+
"type": {
|
|
246
|
+
"text": "any[]"
|
|
247
|
+
},
|
|
248
|
+
"default": "[]",
|
|
249
|
+
"fieldName": "favorites"
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"superclass": {
|
|
253
|
+
"name": "LitElement",
|
|
254
|
+
"package": "lit"
|
|
255
|
+
},
|
|
256
|
+
"tagName": "ox-board-list",
|
|
257
|
+
"customElement": true
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"exports": [
|
|
261
|
+
{
|
|
262
|
+
"kind": "custom-element-definition",
|
|
263
|
+
"name": "ox-board-list",
|
|
264
|
+
"declaration": {
|
|
265
|
+
"name": "BoardList",
|
|
266
|
+
"module": "src/ox-board-list.ts"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
]
|
|
270
|
+
},
|
|
36
271
|
{
|
|
37
272
|
"kind": "javascript-module",
|
|
38
273
|
"path": "src/ox-board-modeller.ts",
|
|
@@ -50,7 +285,7 @@
|
|
|
50
285
|
{
|
|
51
286
|
"name": "group",
|
|
52
287
|
"type": {
|
|
53
|
-
"text": "
|
|
288
|
+
"text": "ComponentGroup"
|
|
54
289
|
}
|
|
55
290
|
}
|
|
56
291
|
]
|
|
@@ -77,7 +312,7 @@
|
|
|
77
312
|
"kind": "field",
|
|
78
313
|
"name": "groups",
|
|
79
314
|
"type": {
|
|
80
|
-
"text": "
|
|
315
|
+
"text": "ComponentGroup[]"
|
|
81
316
|
},
|
|
82
317
|
"static": true
|
|
83
318
|
},
|
|
@@ -1167,7 +1402,7 @@
|
|
|
1167
1402
|
"kind": "variable",
|
|
1168
1403
|
"name": "threed",
|
|
1169
1404
|
"type": {
|
|
1170
|
-
"text": "
|
|
1405
|
+
"text": "ComponentGroup"
|
|
1171
1406
|
},
|
|
1172
1407
|
"default": "{\n name: '3D',\n description: 'a group of various 3D base components',\n icon,\n templates: []\n}"
|
|
1173
1408
|
}
|
|
@@ -1191,7 +1426,7 @@
|
|
|
1191
1426
|
"kind": "variable",
|
|
1192
1427
|
"name": "chartAndGauge",
|
|
1193
1428
|
"type": {
|
|
1194
|
-
"text": "
|
|
1429
|
+
"text": "ComponentGroup"
|
|
1195
1430
|
},
|
|
1196
1431
|
"default": "{\n name: 'chartAndGauge',\n description: 'a group of various charts and gauges',\n icon,\n templates: []\n}"
|
|
1197
1432
|
}
|
|
@@ -1215,7 +1450,7 @@
|
|
|
1215
1450
|
"kind": "variable",
|
|
1216
1451
|
"name": "container",
|
|
1217
1452
|
"type": {
|
|
1218
|
-
"text": "
|
|
1453
|
+
"text": "ComponentGroup"
|
|
1219
1454
|
},
|
|
1220
1455
|
"default": "{\n name: 'container',\n description: 'a group of various containers',\n icon,\n templates: [\n {\n type: 'container',\n description: 'general container',\n icon: iconContainer,\n group: 'container',\n model: {\n type: 'container',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n fillStyle: '#fff',\n strokeStyle: '#999',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'popup',\n description: 'popup window',\n icon: popup,\n group: 'container',\n model: {\n type: 'popup',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n fillStyle: '#fff',\n strokeStyle: 'DarkGoldenRod',\n hidden: true\n }\n }\n ]\n}"
|
|
1221
1456
|
}
|
|
@@ -1239,7 +1474,7 @@
|
|
|
1239
1474
|
"kind": "variable",
|
|
1240
1475
|
"name": "dataSource",
|
|
1241
1476
|
"type": {
|
|
1242
|
-
"text": "
|
|
1477
|
+
"text": "ComponentGroup"
|
|
1243
1478
|
},
|
|
1244
1479
|
"default": "{\n name: 'dataSource',\n description: 'a group of various data sources',\n icon,\n templates: []\n}"
|
|
1245
1480
|
}
|
|
@@ -1263,7 +1498,7 @@
|
|
|
1263
1498
|
"kind": "variable",
|
|
1264
1499
|
"name": "etc",
|
|
1265
1500
|
"type": {
|
|
1266
|
-
"text": "
|
|
1501
|
+
"text": "ComponentGroup"
|
|
1267
1502
|
},
|
|
1268
1503
|
"default": "{\n name: 'etc',\n description: 'a group of components that have not yet been defined.',\n icon,\n templates: [\n {\n type: 'info-window',\n description: 'information window',\n icon: infoWindow,\n group: 'etc',\n model: {\n type: 'info-window',\n left: 10,\n top: 10,\n width: 50,\n height: 50,\n fillStyle: '#fff',\n strokeStyle: 'DarkGoldenRod',\n hidden: true,\n frontSideTemplate:\n \"<h2 id='xxx'>\\n\\t<%= text %>\\n</h2>\\n<img src='https://www.tutorialspoint.com/images/html.gif' alt='HTML Tutorial' height='150' width='140' />\",\n backSideTemplate:\n \"<h2 id='yyy'>\\n\\t<%= text %>\\n</h2>\\n<img src='https://www.tutorialspoint.com/images/html.gif' alt='HTML Tutorial' height='150' width='140' />\",\n style:\n '#yyy {\\n\\tbackground-color:navy;\\n\\tcolor:white\\n}\\n#xxx, #yyy {\\n\\twhite-space:nowrap;\\n\\tmin-width:200px;\\n}'\n }\n },\n {\n type: 'local reference',\n description: 'local reference',\n icon: localReference,\n group: 'etc',\n model: {\n type: 'local-ref',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'global reference',\n description: 'global reference',\n icon: globalReference,\n group: 'etc',\n model: {\n type: 'global-ref',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n }\n ]\n}"
|
|
1269
1504
|
}
|
|
@@ -1287,7 +1522,7 @@
|
|
|
1287
1522
|
"kind": "variable",
|
|
1288
1523
|
"name": "form",
|
|
1289
1524
|
"type": {
|
|
1290
|
-
"text": "
|
|
1525
|
+
"text": "ComponentGroup"
|
|
1291
1526
|
},
|
|
1292
1527
|
"default": "{\n name: 'form',\n description: 'a group of various input components that make up a data entry form',\n icon,\n templates: []\n}"
|
|
1293
1528
|
}
|
|
@@ -1414,7 +1649,7 @@
|
|
|
1414
1649
|
"kind": "variable",
|
|
1415
1650
|
"name": "iot",
|
|
1416
1651
|
"type": {
|
|
1417
|
-
"text": "
|
|
1652
|
+
"text": "ComponentGroup"
|
|
1418
1653
|
},
|
|
1419
1654
|
"default": "{\n name: 'IoT',\n description: 'a group of various IoT protocols',\n icon,\n templates: []\n}"
|
|
1420
1655
|
}
|
|
@@ -1438,7 +1673,7 @@
|
|
|
1438
1673
|
"kind": "variable",
|
|
1439
1674
|
"name": "line",
|
|
1440
1675
|
"type": {
|
|
1441
|
-
"text": "
|
|
1676
|
+
"text": "ComponentGroup"
|
|
1442
1677
|
},
|
|
1443
1678
|
"default": "{\n name: 'line',\n description: 'a group of various lines',\n icon,\n templates: [\n {\n type: 'line',\n description: 'simple line',\n icon: lineIcon,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 3,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'dash',\n description: 'dash line',\n icon: dash,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 3,\n lineDash: 'round-dot',\n lineCap: 'butt'\n }\n },\n {\n type: 'single arrow',\n description: 'single arrow tip line',\n icon: singleArrow,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 3,\n hidden: false,\n lineWidth: 3,\n lineDash: 'solid',\n begin: 'arrow',\n lineCap: 'butt'\n }\n },\n {\n type: 'both arrow',\n description: 'both arrow tip line',\n icon: bothArrow,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 3,\n lineDash: 'solid',\n begin: 'arrow',\n end: 'arrow',\n lineCap: 'butt'\n }\n },\n {\n type: 'polyline',\n description: 'polyline',\n icon: polyline,\n group: 'line',\n model: {\n type: 'polyline',\n path: [\n { x: 100, y: 100 },\n { x: 200, y: 100 },\n { x: 200, y: 200 },\n { x: 100, y: 200 }\n ],\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n }\n ]\n}"
|
|
1444
1679
|
}
|
|
@@ -1482,7 +1717,7 @@
|
|
|
1482
1717
|
"kind": "variable",
|
|
1483
1718
|
"name": "shape",
|
|
1484
1719
|
"type": {
|
|
1485
|
-
"text": "
|
|
1720
|
+
"text": "ComponentGroup"
|
|
1486
1721
|
},
|
|
1487
1722
|
"default": "{\n name: 'shape',\n description: 'a group of simple basic shapes',\n icon,\n templates: [\n {\n type: 'rect',\n description: 'rectangle shape',\n icon: rect,\n group: 'shape',\n model: {\n type: 'rect',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'ellipse',\n description: 'ellipse shape',\n icon: ellipse,\n group: 'shape',\n model: {\n type: 'ellipse',\n rx: 50,\n ry: 50,\n cx: 150,\n cy: 150,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'donut',\n description: 'donut shape',\n icon: donut,\n group: 'shape',\n model: {\n type: 'donut',\n rx: 50,\n ry: 50,\n cx: 150,\n cy: 150,\n ratio: 30,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'triangle',\n description: 'triangle shape',\n icon: triangle,\n group: 'shape',\n model: {\n type: 'triangle',\n x1: 150,\n y1: 100,\n x2: 100,\n y2: 200,\n x3: 200,\n y3: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'polygon',\n description: 'polygon shape',\n icon: polygon,\n group: 'shape',\n model: {\n type: 'polygon',\n path: [\n { x: 100, y: 100 },\n { x: 200, y: 100 },\n { x: 200, y: 200 },\n { x: 100, y: 200 }\n ],\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'star',\n description: 'star shape',\n icon: star,\n group: 'shape',\n model: {\n type: 'star',\n rx: 50,\n ry: 50,\n cx: 150,\n cy: 150,\n ratio: 30,\n wing: 5,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n }\n ]\n}"
|
|
1488
1723
|
}
|
|
@@ -1506,7 +1741,7 @@
|
|
|
1506
1741
|
"kind": "variable",
|
|
1507
1742
|
"name": "table",
|
|
1508
1743
|
"type": {
|
|
1509
|
-
"text": "
|
|
1744
|
+
"text": "ComponentGroup"
|
|
1510
1745
|
},
|
|
1511
1746
|
"default": "{\n name: 'table',\n description: 'a group of various tables',\n icon,\n templates: []\n}"
|
|
1512
1747
|
}
|
|
@@ -1530,7 +1765,7 @@
|
|
|
1530
1765
|
"kind": "variable",
|
|
1531
1766
|
"name": "textAndMedia",
|
|
1532
1767
|
"type": {
|
|
1533
|
-
"text": "
|
|
1768
|
+
"text": "ComponentGroup"
|
|
1534
1769
|
},
|
|
1535
1770
|
"default": "{\n name: 'textAndMedia',\n description: 'a group of text and various media components',\n icon,\n templates: [\n {\n type: 'text',\n description: 'text',\n icon: text,\n group: 'textAndMedia',\n model: {\n type: 'text',\n left: 100,\n top: 100,\n width: 200,\n height: 50,\n text: 'Text',\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 5,\n lineDash: 'solid',\n lineCap: 'butt',\n textAlign: 'left',\n textBaseline: 'top',\n textWrap: false,\n fontFamily: 'serif',\n fontSize: 30\n }\n },\n {\n type: 'color image',\n description: 'color image',\n icon: colorImage,\n group: 'textAndMedia',\n model: {\n type: 'image-view',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n isGray: false,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'gray image',\n description: 'gray image',\n icon: grayImage,\n group: 'textAndMedia',\n model: {\n type: 'image-view',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n isGray: true,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'gif image',\n description: 'gif image',\n icon: gifImage,\n group: 'textAndMedia',\n model: {\n type: 'gif-view',\n left: 100,\n top: 100,\n width: 100,\n height: 100\n }\n },\n {\n type: 'audio',\n description: 'audio',\n icon: audio,\n group: 'textAndMedia',\n model: {\n type: 'audio',\n left: 100,\n top: 100,\n width: 100,\n height: 100\n }\n }\n ]\n}"
|
|
1536
1771
|
}
|
|
@@ -1554,7 +1789,7 @@
|
|
|
1554
1789
|
"kind": "variable",
|
|
1555
1790
|
"name": "warehouse",
|
|
1556
1791
|
"type": {
|
|
1557
|
-
"text": "
|
|
1792
|
+
"text": "ComponentGroup"
|
|
1558
1793
|
},
|
|
1559
1794
|
"default": "{\n name: 'warehouse',\n description: 'a group of various components used in a warehouse depiction',\n icon,\n templates: []\n}"
|
|
1560
1795
|
}
|
|
@@ -2106,57 +2341,506 @@
|
|
|
2106
2341
|
},
|
|
2107
2342
|
{
|
|
2108
2343
|
"kind": "javascript-module",
|
|
2109
|
-
"path": "src/
|
|
2344
|
+
"path": "src/graphql/board.ts",
|
|
2110
2345
|
"declarations": [
|
|
2111
2346
|
{
|
|
2112
|
-
"kind": "
|
|
2113
|
-
"
|
|
2114
|
-
"
|
|
2115
|
-
"members": [
|
|
2116
|
-
{
|
|
2117
|
-
"kind": "field",
|
|
2118
|
-
"name": "axis",
|
|
2119
|
-
"type": {
|
|
2120
|
-
"text": "string"
|
|
2121
|
-
},
|
|
2122
|
-
"default": "'y'",
|
|
2123
|
-
"attribute": "axis"
|
|
2124
|
-
},
|
|
2347
|
+
"kind": "function",
|
|
2348
|
+
"name": "fetchBoardList",
|
|
2349
|
+
"parameters": [
|
|
2125
2350
|
{
|
|
2126
|
-
"
|
|
2127
|
-
"
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2351
|
+
"name": "listParam",
|
|
2352
|
+
"default": "{}"
|
|
2353
|
+
}
|
|
2354
|
+
]
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
"kind": "function",
|
|
2358
|
+
"name": "fetchBoard",
|
|
2359
|
+
"parameters": [
|
|
2134
2360
|
{
|
|
2135
|
-
"
|
|
2136
|
-
"name": "columns",
|
|
2361
|
+
"name": "id",
|
|
2137
2362
|
"type": {
|
|
2138
|
-
"text": "
|
|
2139
|
-
}
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2363
|
+
"text": "string"
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
]
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"kind": "function",
|
|
2370
|
+
"name": "createBoard",
|
|
2371
|
+
"parameters": [
|
|
2143
2372
|
{
|
|
2144
|
-
"
|
|
2145
|
-
"name": "_slotObserver",
|
|
2373
|
+
"name": "board",
|
|
2146
2374
|
"type": {
|
|
2147
|
-
"text": "
|
|
2375
|
+
"text": "Board"
|
|
2148
2376
|
}
|
|
2149
|
-
}
|
|
2377
|
+
}
|
|
2378
|
+
]
|
|
2379
|
+
},
|
|
2380
|
+
{
|
|
2381
|
+
"kind": "function",
|
|
2382
|
+
"name": "updateBoard",
|
|
2383
|
+
"parameters": [
|
|
2150
2384
|
{
|
|
2151
|
-
"
|
|
2152
|
-
"name": "_boundResize",
|
|
2385
|
+
"name": "board",
|
|
2153
2386
|
"type": {
|
|
2154
|
-
"text": "
|
|
2387
|
+
"text": "Board"
|
|
2155
2388
|
}
|
|
2156
|
-
}
|
|
2389
|
+
}
|
|
2390
|
+
]
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"kind": "function",
|
|
2394
|
+
"name": "deleteBoard",
|
|
2395
|
+
"parameters": [
|
|
2157
2396
|
{
|
|
2158
|
-
"
|
|
2159
|
-
"
|
|
2397
|
+
"name": "id",
|
|
2398
|
+
"type": {
|
|
2399
|
+
"text": "string"
|
|
2400
|
+
}
|
|
2401
|
+
}
|
|
2402
|
+
]
|
|
2403
|
+
}
|
|
2404
|
+
],
|
|
2405
|
+
"exports": [
|
|
2406
|
+
{
|
|
2407
|
+
"kind": "js",
|
|
2408
|
+
"name": "fetchBoardList",
|
|
2409
|
+
"declaration": {
|
|
2410
|
+
"name": "fetchBoardList",
|
|
2411
|
+
"module": "src/graphql/board.ts"
|
|
2412
|
+
}
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"kind": "js",
|
|
2416
|
+
"name": "fetchBoard",
|
|
2417
|
+
"declaration": {
|
|
2418
|
+
"name": "fetchBoard",
|
|
2419
|
+
"module": "src/graphql/board.ts"
|
|
2420
|
+
}
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
"kind": "js",
|
|
2424
|
+
"name": "createBoard",
|
|
2425
|
+
"declaration": {
|
|
2426
|
+
"name": "createBoard",
|
|
2427
|
+
"module": "src/graphql/board.ts"
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"kind": "js",
|
|
2432
|
+
"name": "updateBoard",
|
|
2433
|
+
"declaration": {
|
|
2434
|
+
"name": "updateBoard",
|
|
2435
|
+
"module": "src/graphql/board.ts"
|
|
2436
|
+
}
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
"kind": "js",
|
|
2440
|
+
"name": "deleteBoard",
|
|
2441
|
+
"declaration": {
|
|
2442
|
+
"name": "deleteBoard",
|
|
2443
|
+
"module": "src/graphql/board.ts"
|
|
2444
|
+
}
|
|
2445
|
+
}
|
|
2446
|
+
]
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
"kind": "javascript-module",
|
|
2450
|
+
"path": "src/graphql/favorite-board.ts",
|
|
2451
|
+
"declarations": [
|
|
2452
|
+
{
|
|
2453
|
+
"kind": "function",
|
|
2454
|
+
"name": "fetchFavoriteBoardList",
|
|
2455
|
+
"parameters": [
|
|
2456
|
+
{
|
|
2457
|
+
"name": "listParam",
|
|
2458
|
+
"default": "{}"
|
|
2459
|
+
}
|
|
2460
|
+
]
|
|
2461
|
+
}
|
|
2462
|
+
],
|
|
2463
|
+
"exports": [
|
|
2464
|
+
{
|
|
2465
|
+
"kind": "js",
|
|
2466
|
+
"name": "fetchFavoriteBoardList",
|
|
2467
|
+
"declaration": {
|
|
2468
|
+
"name": "fetchFavoriteBoardList",
|
|
2469
|
+
"module": "src/graphql/favorite-board.ts"
|
|
2470
|
+
}
|
|
2471
|
+
}
|
|
2472
|
+
]
|
|
2473
|
+
},
|
|
2474
|
+
{
|
|
2475
|
+
"kind": "javascript-module",
|
|
2476
|
+
"path": "src/graphql/group.ts",
|
|
2477
|
+
"declarations": [
|
|
2478
|
+
{
|
|
2479
|
+
"kind": "function",
|
|
2480
|
+
"name": "fetchGroup",
|
|
2481
|
+
"parameters": [
|
|
2482
|
+
{
|
|
2483
|
+
"name": "id",
|
|
2484
|
+
"type": {
|
|
2485
|
+
"text": "string"
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2488
|
+
]
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"kind": "function",
|
|
2492
|
+
"name": "updateGroup",
|
|
2493
|
+
"parameters": [
|
|
2494
|
+
{
|
|
2495
|
+
"name": "group",
|
|
2496
|
+
"type": {
|
|
2497
|
+
"text": "BoardGroup"
|
|
2498
|
+
}
|
|
2499
|
+
}
|
|
2500
|
+
]
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
"kind": "function",
|
|
2504
|
+
"name": "deleteGroup",
|
|
2505
|
+
"parameters": [
|
|
2506
|
+
{
|
|
2507
|
+
"name": "id",
|
|
2508
|
+
"type": {
|
|
2509
|
+
"text": "string"
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2512
|
+
]
|
|
2513
|
+
},
|
|
2514
|
+
{
|
|
2515
|
+
"kind": "function",
|
|
2516
|
+
"name": "fetchGroupList"
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
"kind": "function",
|
|
2520
|
+
"name": "createGroup",
|
|
2521
|
+
"parameters": [
|
|
2522
|
+
{
|
|
2523
|
+
"name": "group",
|
|
2524
|
+
"type": {
|
|
2525
|
+
"text": "BoardGroup"
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
]
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"kind": "function",
|
|
2532
|
+
"name": "joinGroup",
|
|
2533
|
+
"parameters": [
|
|
2534
|
+
{
|
|
2535
|
+
"name": "boardId",
|
|
2536
|
+
"type": {
|
|
2537
|
+
"text": "string"
|
|
2538
|
+
}
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
"name": "groupId",
|
|
2542
|
+
"type": {
|
|
2543
|
+
"text": "string"
|
|
2544
|
+
}
|
|
2545
|
+
}
|
|
2546
|
+
]
|
|
2547
|
+
}
|
|
2548
|
+
],
|
|
2549
|
+
"exports": [
|
|
2550
|
+
{
|
|
2551
|
+
"kind": "js",
|
|
2552
|
+
"name": "fetchGroup",
|
|
2553
|
+
"declaration": {
|
|
2554
|
+
"name": "fetchGroup",
|
|
2555
|
+
"module": "src/graphql/group.ts"
|
|
2556
|
+
}
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
"kind": "js",
|
|
2560
|
+
"name": "updateGroup",
|
|
2561
|
+
"declaration": {
|
|
2562
|
+
"name": "updateGroup",
|
|
2563
|
+
"module": "src/graphql/group.ts"
|
|
2564
|
+
}
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
"kind": "js",
|
|
2568
|
+
"name": "deleteGroup",
|
|
2569
|
+
"declaration": {
|
|
2570
|
+
"name": "deleteGroup",
|
|
2571
|
+
"module": "src/graphql/group.ts"
|
|
2572
|
+
}
|
|
2573
|
+
},
|
|
2574
|
+
{
|
|
2575
|
+
"kind": "js",
|
|
2576
|
+
"name": "fetchGroupList",
|
|
2577
|
+
"declaration": {
|
|
2578
|
+
"name": "fetchGroupList",
|
|
2579
|
+
"module": "src/graphql/group.ts"
|
|
2580
|
+
}
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"kind": "js",
|
|
2584
|
+
"name": "createGroup",
|
|
2585
|
+
"declaration": {
|
|
2586
|
+
"name": "createGroup",
|
|
2587
|
+
"module": "src/graphql/group.ts"
|
|
2588
|
+
}
|
|
2589
|
+
},
|
|
2590
|
+
{
|
|
2591
|
+
"kind": "js",
|
|
2592
|
+
"name": "joinGroup",
|
|
2593
|
+
"declaration": {
|
|
2594
|
+
"name": "joinGroup",
|
|
2595
|
+
"module": "src/graphql/group.ts"
|
|
2596
|
+
}
|
|
2597
|
+
}
|
|
2598
|
+
]
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
"kind": "javascript-module",
|
|
2602
|
+
"path": "src/graphql/index.ts",
|
|
2603
|
+
"declarations": [],
|
|
2604
|
+
"exports": [
|
|
2605
|
+
{
|
|
2606
|
+
"kind": "js",
|
|
2607
|
+
"name": "*",
|
|
2608
|
+
"declaration": {
|
|
2609
|
+
"name": "*",
|
|
2610
|
+
"package": "./board"
|
|
2611
|
+
}
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"kind": "js",
|
|
2615
|
+
"name": "*",
|
|
2616
|
+
"declaration": {
|
|
2617
|
+
"name": "*",
|
|
2618
|
+
"package": "./group"
|
|
2619
|
+
}
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"kind": "js",
|
|
2623
|
+
"name": "*",
|
|
2624
|
+
"declaration": {
|
|
2625
|
+
"name": "*",
|
|
2626
|
+
"package": "./play-group"
|
|
2627
|
+
}
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"kind": "js",
|
|
2631
|
+
"name": "*",
|
|
2632
|
+
"declaration": {
|
|
2633
|
+
"name": "*",
|
|
2634
|
+
"package": "./favorite-board"
|
|
2635
|
+
}
|
|
2636
|
+
}
|
|
2637
|
+
]
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"kind": "javascript-module",
|
|
2641
|
+
"path": "src/graphql/play-group.ts",
|
|
2642
|
+
"declarations": [
|
|
2643
|
+
{
|
|
2644
|
+
"kind": "function",
|
|
2645
|
+
"name": "fetchPlayGroupList"
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
"kind": "function",
|
|
2649
|
+
"name": "fetchPlayGroup",
|
|
2650
|
+
"parameters": [
|
|
2651
|
+
{
|
|
2652
|
+
"name": "groupId",
|
|
2653
|
+
"type": {
|
|
2654
|
+
"text": "string"
|
|
2655
|
+
}
|
|
2656
|
+
}
|
|
2657
|
+
]
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
"kind": "function",
|
|
2661
|
+
"name": "createPlayGroup",
|
|
2662
|
+
"parameters": [
|
|
2663
|
+
{
|
|
2664
|
+
"name": "group",
|
|
2665
|
+
"type": {
|
|
2666
|
+
"text": "PlayGroup"
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
]
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
"kind": "function",
|
|
2673
|
+
"name": "updatePlayGroup",
|
|
2674
|
+
"parameters": [
|
|
2675
|
+
{
|
|
2676
|
+
"name": "group",
|
|
2677
|
+
"type": {
|
|
2678
|
+
"text": "PlayGroup"
|
|
2679
|
+
}
|
|
2680
|
+
}
|
|
2681
|
+
]
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
"kind": "function",
|
|
2685
|
+
"name": "deletePlayGroup",
|
|
2686
|
+
"parameters": [
|
|
2687
|
+
{
|
|
2688
|
+
"name": "id",
|
|
2689
|
+
"type": {
|
|
2690
|
+
"text": "string"
|
|
2691
|
+
}
|
|
2692
|
+
}
|
|
2693
|
+
]
|
|
2694
|
+
},
|
|
2695
|
+
{
|
|
2696
|
+
"kind": "function",
|
|
2697
|
+
"name": "joinPlayGroup",
|
|
2698
|
+
"parameters": [
|
|
2699
|
+
{
|
|
2700
|
+
"name": "boardId",
|
|
2701
|
+
"type": {
|
|
2702
|
+
"text": "string"
|
|
2703
|
+
}
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"name": "group",
|
|
2707
|
+
"type": {
|
|
2708
|
+
"text": "PlayGroup"
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2711
|
+
]
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
"kind": "function",
|
|
2715
|
+
"name": "leavePlayGroup",
|
|
2716
|
+
"parameters": [
|
|
2717
|
+
{
|
|
2718
|
+
"name": "boardId",
|
|
2719
|
+
"type": {
|
|
2720
|
+
"text": "string"
|
|
2721
|
+
}
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
"name": "groupId",
|
|
2725
|
+
"type": {
|
|
2726
|
+
"text": "string"
|
|
2727
|
+
}
|
|
2728
|
+
}
|
|
2729
|
+
]
|
|
2730
|
+
}
|
|
2731
|
+
],
|
|
2732
|
+
"exports": [
|
|
2733
|
+
{
|
|
2734
|
+
"kind": "js",
|
|
2735
|
+
"name": "fetchPlayGroupList",
|
|
2736
|
+
"declaration": {
|
|
2737
|
+
"name": "fetchPlayGroupList",
|
|
2738
|
+
"module": "src/graphql/play-group.ts"
|
|
2739
|
+
}
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
"kind": "js",
|
|
2743
|
+
"name": "fetchPlayGroup",
|
|
2744
|
+
"declaration": {
|
|
2745
|
+
"name": "fetchPlayGroup",
|
|
2746
|
+
"module": "src/graphql/play-group.ts"
|
|
2747
|
+
}
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
"kind": "js",
|
|
2751
|
+
"name": "createPlayGroup",
|
|
2752
|
+
"declaration": {
|
|
2753
|
+
"name": "createPlayGroup",
|
|
2754
|
+
"module": "src/graphql/play-group.ts"
|
|
2755
|
+
}
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
"kind": "js",
|
|
2759
|
+
"name": "updatePlayGroup",
|
|
2760
|
+
"declaration": {
|
|
2761
|
+
"name": "updatePlayGroup",
|
|
2762
|
+
"module": "src/graphql/play-group.ts"
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"kind": "js",
|
|
2767
|
+
"name": "deletePlayGroup",
|
|
2768
|
+
"declaration": {
|
|
2769
|
+
"name": "deletePlayGroup",
|
|
2770
|
+
"module": "src/graphql/play-group.ts"
|
|
2771
|
+
}
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"kind": "js",
|
|
2775
|
+
"name": "joinPlayGroup",
|
|
2776
|
+
"declaration": {
|
|
2777
|
+
"name": "joinPlayGroup",
|
|
2778
|
+
"module": "src/graphql/play-group.ts"
|
|
2779
|
+
}
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"kind": "js",
|
|
2783
|
+
"name": "leavePlayGroup",
|
|
2784
|
+
"declaration": {
|
|
2785
|
+
"name": "leavePlayGroup",
|
|
2786
|
+
"module": "src/graphql/play-group.ts"
|
|
2787
|
+
}
|
|
2788
|
+
}
|
|
2789
|
+
]
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"kind": "javascript-module",
|
|
2793
|
+
"path": "src/player/ox-board-player-carousel.ts",
|
|
2794
|
+
"declarations": [
|
|
2795
|
+
{
|
|
2796
|
+
"kind": "class",
|
|
2797
|
+
"description": "",
|
|
2798
|
+
"name": "BoardPlayerCarousel",
|
|
2799
|
+
"members": [
|
|
2800
|
+
{
|
|
2801
|
+
"kind": "field",
|
|
2802
|
+
"name": "axis",
|
|
2803
|
+
"type": {
|
|
2804
|
+
"text": "string"
|
|
2805
|
+
},
|
|
2806
|
+
"default": "'y'",
|
|
2807
|
+
"attribute": "axis"
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
"kind": "field",
|
|
2811
|
+
"name": "rows",
|
|
2812
|
+
"type": {
|
|
2813
|
+
"text": "number"
|
|
2814
|
+
},
|
|
2815
|
+
"default": "1",
|
|
2816
|
+
"attribute": "rows"
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
"kind": "field",
|
|
2820
|
+
"name": "columns",
|
|
2821
|
+
"type": {
|
|
2822
|
+
"text": "number"
|
|
2823
|
+
},
|
|
2824
|
+
"default": "1",
|
|
2825
|
+
"attribute": "columns"
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"kind": "field",
|
|
2829
|
+
"name": "_slotObserver",
|
|
2830
|
+
"type": {
|
|
2831
|
+
"text": "MutationObserver | undefined"
|
|
2832
|
+
}
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"kind": "field",
|
|
2836
|
+
"name": "_boundResize",
|
|
2837
|
+
"type": {
|
|
2838
|
+
"text": "() => void | undefined"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
{
|
|
2842
|
+
"kind": "field",
|
|
2843
|
+
"name": "_rotation",
|
|
2160
2844
|
"type": {
|
|
2161
2845
|
"text": "number"
|
|
2162
2846
|
},
|
|
@@ -2911,7 +3595,7 @@
|
|
|
2911
3595
|
"kind": "field",
|
|
2912
3596
|
"name": "componentGroupList",
|
|
2913
3597
|
"type": {
|
|
2914
|
-
"text": "
|
|
3598
|
+
"text": "ComponentGroup[]"
|
|
2915
3599
|
},
|
|
2916
3600
|
"default": "[]",
|
|
2917
3601
|
"attribute": "componentGroupList"
|
|
@@ -2982,7 +3666,7 @@
|
|
|
2982
3666
|
{
|
|
2983
3667
|
"name": "componentGroupList",
|
|
2984
3668
|
"type": {
|
|
2985
|
-
"text": "
|
|
3669
|
+
"text": "ComponentGroup[]"
|
|
2986
3670
|
},
|
|
2987
3671
|
"default": "[]",
|
|
2988
3672
|
"fieldName": "componentGroupList"
|
|
@@ -4569,241 +5253,47 @@
|
|
|
4569
5253
|
},
|
|
4570
5254
|
{
|
|
4571
5255
|
"kind": "method",
|
|
4572
|
-
"name": "_onAfterValueChange",
|
|
4573
|
-
"parameters": [
|
|
4574
|
-
{
|
|
4575
|
-
"name": "key",
|
|
4576
|
-
"type": {
|
|
4577
|
-
"text": "string"
|
|
4578
|
-
}
|
|
4579
|
-
},
|
|
4580
|
-
{
|
|
4581
|
-
"name": "value",
|
|
4582
|
-
"type": {
|
|
4583
|
-
"text": "any"
|
|
4584
|
-
}
|
|
4585
|
-
}
|
|
4586
|
-
],
|
|
4587
|
-
"inheritedFrom": {
|
|
4588
|
-
"name": "AbstractProperty",
|
|
4589
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
4590
|
-
}
|
|
4591
|
-
}
|
|
4592
|
-
],
|
|
4593
|
-
"events": [
|
|
4594
|
-
{
|
|
4595
|
-
"name": "property-change",
|
|
4596
|
-
"type": {
|
|
4597
|
-
"text": "CustomEvent"
|
|
4598
|
-
},
|
|
4599
|
-
"inheritedFrom": {
|
|
4600
|
-
"name": "AbstractProperty",
|
|
4601
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
4602
|
-
}
|
|
4603
|
-
}
|
|
4604
|
-
],
|
|
4605
|
-
"attributes": [
|
|
4606
|
-
{
|
|
4607
|
-
"name": "value",
|
|
4608
|
-
"type": {
|
|
4609
|
-
"text": "Properties | undefined"
|
|
4610
|
-
},
|
|
4611
|
-
"fieldName": "value"
|
|
4612
|
-
},
|
|
4613
|
-
{
|
|
4614
|
-
"name": "scene",
|
|
4615
|
-
"type": {
|
|
4616
|
-
"text": "Scene | undefined"
|
|
4617
|
-
},
|
|
4618
|
-
"fieldName": "scene"
|
|
4619
|
-
}
|
|
4620
|
-
],
|
|
4621
|
-
"superclass": {
|
|
4622
|
-
"name": "AbstractProperty",
|
|
4623
|
-
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
4624
|
-
},
|
|
4625
|
-
"tagName": "property-data-binding",
|
|
4626
|
-
"customElement": true
|
|
4627
|
-
}
|
|
4628
|
-
],
|
|
4629
|
-
"exports": [
|
|
4630
|
-
{
|
|
4631
|
-
"kind": "custom-element-definition",
|
|
4632
|
-
"name": "property-data-binding",
|
|
4633
|
-
"declaration": {
|
|
4634
|
-
"name": "PropertyDataBinding",
|
|
4635
|
-
"module": "src/modeller/property-sidebar/data-binding/data-binding.ts"
|
|
4636
|
-
}
|
|
4637
|
-
}
|
|
4638
|
-
]
|
|
4639
|
-
},
|
|
4640
|
-
{
|
|
4641
|
-
"kind": "javascript-module",
|
|
4642
|
-
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
4643
|
-
"declarations": [
|
|
4644
|
-
{
|
|
4645
|
-
"kind": "class",
|
|
4646
|
-
"description": "",
|
|
4647
|
-
"name": "SceneInspector",
|
|
4648
|
-
"members": [
|
|
4649
|
-
{
|
|
4650
|
-
"kind": "field",
|
|
4651
|
-
"name": "scene",
|
|
4652
|
-
"type": {
|
|
4653
|
-
"text": "Scene | undefined"
|
|
4654
|
-
},
|
|
4655
|
-
"attribute": "scene"
|
|
4656
|
-
},
|
|
4657
|
-
{
|
|
4658
|
-
"kind": "field",
|
|
4659
|
-
"name": "_extendedMap",
|
|
4660
|
-
"type": {
|
|
4661
|
-
"text": "any"
|
|
4662
|
-
},
|
|
4663
|
-
"privacy": "private"
|
|
4664
|
-
},
|
|
4665
|
-
{
|
|
4666
|
-
"kind": "field",
|
|
4667
|
-
"name": "show",
|
|
4668
|
-
"type": {
|
|
4669
|
-
"text": "boolean"
|
|
4670
|
-
},
|
|
4671
|
-
"privacy": "private",
|
|
4672
|
-
"default": "false"
|
|
4673
|
-
},
|
|
4674
|
-
{
|
|
4675
|
-
"kind": "field",
|
|
4676
|
-
"name": "sortableConfig",
|
|
4677
|
-
"type": {
|
|
4678
|
-
"text": "Sortable.Options"
|
|
4679
|
-
},
|
|
4680
|
-
"default": "{\n group: 'inspector',\n animation: 150,\n draggable: '.component',\n swapThreshold: 1,\n onSort: this.onSort.bind(this)\n }"
|
|
4681
|
-
},
|
|
4682
|
-
{
|
|
4683
|
-
"kind": "method",
|
|
4684
|
-
"name": "onSort",
|
|
4685
|
-
"parameters": [
|
|
4686
|
-
{
|
|
4687
|
-
"name": "e",
|
|
4688
|
-
"type": {
|
|
4689
|
-
"text": "Sortable.SortableEvent"
|
|
4690
|
-
}
|
|
4691
|
-
}
|
|
4692
|
-
]
|
|
4693
|
-
},
|
|
4694
|
-
{
|
|
4695
|
-
"kind": "method",
|
|
4696
|
-
"name": "_onclick",
|
|
4697
|
-
"parameters": [
|
|
4698
|
-
{
|
|
4699
|
-
"name": "e",
|
|
4700
|
-
"type": {
|
|
4701
|
-
"text": "MouseEvent"
|
|
4702
|
-
}
|
|
4703
|
-
}
|
|
4704
|
-
]
|
|
4705
|
-
},
|
|
4706
|
-
{
|
|
4707
|
-
"kind": "method",
|
|
4708
|
-
"name": "_ondblclick",
|
|
4709
|
-
"parameters": [
|
|
4710
|
-
{
|
|
4711
|
-
"name": "e",
|
|
4712
|
-
"type": {
|
|
4713
|
-
"text": "MouseEvent"
|
|
4714
|
-
}
|
|
4715
|
-
}
|
|
4716
|
-
]
|
|
4717
|
-
},
|
|
4718
|
-
{
|
|
4719
|
-
"kind": "field",
|
|
4720
|
-
"name": "extendedMap"
|
|
4721
|
-
},
|
|
4722
|
-
{
|
|
4723
|
-
"kind": "method",
|
|
4724
|
-
"name": "getNodeHandleClass",
|
|
4725
|
-
"parameters": [
|
|
4726
|
-
{
|
|
4727
|
-
"name": "component",
|
|
4728
|
-
"type": {
|
|
4729
|
-
"text": "Component"
|
|
4730
|
-
}
|
|
4731
|
-
}
|
|
4732
|
-
]
|
|
4733
|
-
},
|
|
4734
|
-
{
|
|
4735
|
-
"kind": "method",
|
|
4736
|
-
"name": "isExtended",
|
|
4737
|
-
"parameters": [
|
|
4738
|
-
{
|
|
4739
|
-
"name": "component",
|
|
4740
|
-
"type": {
|
|
4741
|
-
"text": "Component"
|
|
4742
|
-
}
|
|
4743
|
-
}
|
|
4744
|
-
]
|
|
4745
|
-
},
|
|
4746
|
-
{
|
|
4747
|
-
"kind": "method",
|
|
4748
|
-
"name": "toggleExtended",
|
|
4749
|
-
"parameters": [
|
|
4750
|
-
{
|
|
4751
|
-
"name": "component",
|
|
4752
|
-
"type": {
|
|
4753
|
-
"text": "Component"
|
|
4754
|
-
}
|
|
4755
|
-
}
|
|
4756
|
-
]
|
|
4757
|
-
},
|
|
4758
|
-
{
|
|
4759
|
-
"kind": "method",
|
|
4760
|
-
"name": "toggleHidden",
|
|
4761
|
-
"parameters": [
|
|
4762
|
-
{
|
|
4763
|
-
"name": "component",
|
|
4764
|
-
"type": {
|
|
4765
|
-
"text": "Component"
|
|
4766
|
-
}
|
|
4767
|
-
}
|
|
4768
|
-
]
|
|
4769
|
-
},
|
|
4770
|
-
{
|
|
4771
|
-
"kind": "method",
|
|
4772
|
-
"name": "selectComponent",
|
|
4773
|
-
"parameters": [
|
|
4774
|
-
{
|
|
4775
|
-
"name": "component",
|
|
4776
|
-
"type": {
|
|
4777
|
-
"text": "Component"
|
|
4778
|
-
}
|
|
4779
|
-
}
|
|
4780
|
-
]
|
|
4781
|
-
},
|
|
4782
|
-
{
|
|
4783
|
-
"kind": "method",
|
|
4784
|
-
"name": "renderComponent",
|
|
4785
|
-
"return": {
|
|
4786
|
-
"type": {
|
|
4787
|
-
"text": "TemplateResult"
|
|
4788
|
-
}
|
|
4789
|
-
},
|
|
5256
|
+
"name": "_onAfterValueChange",
|
|
4790
5257
|
"parameters": [
|
|
4791
5258
|
{
|
|
4792
|
-
"name": "
|
|
5259
|
+
"name": "key",
|
|
4793
5260
|
"type": {
|
|
4794
|
-
"text": "
|
|
5261
|
+
"text": "string"
|
|
4795
5262
|
}
|
|
4796
5263
|
},
|
|
4797
5264
|
{
|
|
4798
|
-
"name": "
|
|
5265
|
+
"name": "value",
|
|
4799
5266
|
"type": {
|
|
4800
|
-
"text": "
|
|
5267
|
+
"text": "any"
|
|
4801
5268
|
}
|
|
4802
5269
|
}
|
|
4803
|
-
]
|
|
5270
|
+
],
|
|
5271
|
+
"inheritedFrom": {
|
|
5272
|
+
"name": "AbstractProperty",
|
|
5273
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5274
|
+
}
|
|
5275
|
+
}
|
|
5276
|
+
],
|
|
5277
|
+
"events": [
|
|
5278
|
+
{
|
|
5279
|
+
"name": "property-change",
|
|
5280
|
+
"type": {
|
|
5281
|
+
"text": "CustomEvent"
|
|
5282
|
+
},
|
|
5283
|
+
"inheritedFrom": {
|
|
5284
|
+
"name": "AbstractProperty",
|
|
5285
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5286
|
+
}
|
|
4804
5287
|
}
|
|
4805
5288
|
],
|
|
4806
5289
|
"attributes": [
|
|
5290
|
+
{
|
|
5291
|
+
"name": "value",
|
|
5292
|
+
"type": {
|
|
5293
|
+
"text": "Properties | undefined"
|
|
5294
|
+
},
|
|
5295
|
+
"fieldName": "value"
|
|
5296
|
+
},
|
|
4807
5297
|
{
|
|
4808
5298
|
"name": "scene",
|
|
4809
5299
|
"type": {
|
|
@@ -4813,28 +5303,20 @@
|
|
|
4813
5303
|
}
|
|
4814
5304
|
],
|
|
4815
5305
|
"superclass": {
|
|
4816
|
-
"name": "
|
|
4817
|
-
"
|
|
5306
|
+
"name": "AbstractProperty",
|
|
5307
|
+
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
4818
5308
|
},
|
|
4819
|
-
"tagName": "
|
|
5309
|
+
"tagName": "property-data-binding",
|
|
4820
5310
|
"customElement": true
|
|
4821
5311
|
}
|
|
4822
5312
|
],
|
|
4823
5313
|
"exports": [
|
|
4824
|
-
{
|
|
4825
|
-
"kind": "js",
|
|
4826
|
-
"name": "default",
|
|
4827
|
-
"declaration": {
|
|
4828
|
-
"name": "SceneInspector",
|
|
4829
|
-
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
4830
|
-
}
|
|
4831
|
-
},
|
|
4832
5314
|
{
|
|
4833
5315
|
"kind": "custom-element-definition",
|
|
4834
|
-
"name": "
|
|
5316
|
+
"name": "property-data-binding",
|
|
4835
5317
|
"declaration": {
|
|
4836
|
-
"name": "
|
|
4837
|
-
"module": "src/modeller/property-sidebar/
|
|
5318
|
+
"name": "PropertyDataBinding",
|
|
5319
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding.ts"
|
|
4838
5320
|
}
|
|
4839
5321
|
}
|
|
4840
5322
|
]
|
|
@@ -5558,6 +6040,208 @@
|
|
|
5558
6040
|
}
|
|
5559
6041
|
]
|
|
5560
6042
|
},
|
|
6043
|
+
{
|
|
6044
|
+
"kind": "javascript-module",
|
|
6045
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
6046
|
+
"declarations": [
|
|
6047
|
+
{
|
|
6048
|
+
"kind": "class",
|
|
6049
|
+
"description": "",
|
|
6050
|
+
"name": "SceneInspector",
|
|
6051
|
+
"members": [
|
|
6052
|
+
{
|
|
6053
|
+
"kind": "field",
|
|
6054
|
+
"name": "scene",
|
|
6055
|
+
"type": {
|
|
6056
|
+
"text": "Scene | undefined"
|
|
6057
|
+
},
|
|
6058
|
+
"attribute": "scene"
|
|
6059
|
+
},
|
|
6060
|
+
{
|
|
6061
|
+
"kind": "field",
|
|
6062
|
+
"name": "_extendedMap",
|
|
6063
|
+
"type": {
|
|
6064
|
+
"text": "any"
|
|
6065
|
+
},
|
|
6066
|
+
"privacy": "private"
|
|
6067
|
+
},
|
|
6068
|
+
{
|
|
6069
|
+
"kind": "field",
|
|
6070
|
+
"name": "show",
|
|
6071
|
+
"type": {
|
|
6072
|
+
"text": "boolean"
|
|
6073
|
+
},
|
|
6074
|
+
"privacy": "private",
|
|
6075
|
+
"default": "false"
|
|
6076
|
+
},
|
|
6077
|
+
{
|
|
6078
|
+
"kind": "field",
|
|
6079
|
+
"name": "sortableConfig",
|
|
6080
|
+
"type": {
|
|
6081
|
+
"text": "Sortable.Options"
|
|
6082
|
+
},
|
|
6083
|
+
"default": "{\n group: 'inspector',\n animation: 150,\n draggable: '.component',\n swapThreshold: 1,\n onSort: this.onSort.bind(this)\n }"
|
|
6084
|
+
},
|
|
6085
|
+
{
|
|
6086
|
+
"kind": "method",
|
|
6087
|
+
"name": "onSort",
|
|
6088
|
+
"parameters": [
|
|
6089
|
+
{
|
|
6090
|
+
"name": "e",
|
|
6091
|
+
"type": {
|
|
6092
|
+
"text": "Sortable.SortableEvent"
|
|
6093
|
+
}
|
|
6094
|
+
}
|
|
6095
|
+
]
|
|
6096
|
+
},
|
|
6097
|
+
{
|
|
6098
|
+
"kind": "method",
|
|
6099
|
+
"name": "_onclick",
|
|
6100
|
+
"parameters": [
|
|
6101
|
+
{
|
|
6102
|
+
"name": "e",
|
|
6103
|
+
"type": {
|
|
6104
|
+
"text": "MouseEvent"
|
|
6105
|
+
}
|
|
6106
|
+
}
|
|
6107
|
+
]
|
|
6108
|
+
},
|
|
6109
|
+
{
|
|
6110
|
+
"kind": "method",
|
|
6111
|
+
"name": "_ondblclick",
|
|
6112
|
+
"parameters": [
|
|
6113
|
+
{
|
|
6114
|
+
"name": "e",
|
|
6115
|
+
"type": {
|
|
6116
|
+
"text": "MouseEvent"
|
|
6117
|
+
}
|
|
6118
|
+
}
|
|
6119
|
+
]
|
|
6120
|
+
},
|
|
6121
|
+
{
|
|
6122
|
+
"kind": "field",
|
|
6123
|
+
"name": "extendedMap"
|
|
6124
|
+
},
|
|
6125
|
+
{
|
|
6126
|
+
"kind": "method",
|
|
6127
|
+
"name": "getNodeHandleClass",
|
|
6128
|
+
"parameters": [
|
|
6129
|
+
{
|
|
6130
|
+
"name": "component",
|
|
6131
|
+
"type": {
|
|
6132
|
+
"text": "Component"
|
|
6133
|
+
}
|
|
6134
|
+
}
|
|
6135
|
+
]
|
|
6136
|
+
},
|
|
6137
|
+
{
|
|
6138
|
+
"kind": "method",
|
|
6139
|
+
"name": "isExtended",
|
|
6140
|
+
"parameters": [
|
|
6141
|
+
{
|
|
6142
|
+
"name": "component",
|
|
6143
|
+
"type": {
|
|
6144
|
+
"text": "Component"
|
|
6145
|
+
}
|
|
6146
|
+
}
|
|
6147
|
+
]
|
|
6148
|
+
},
|
|
6149
|
+
{
|
|
6150
|
+
"kind": "method",
|
|
6151
|
+
"name": "toggleExtended",
|
|
6152
|
+
"parameters": [
|
|
6153
|
+
{
|
|
6154
|
+
"name": "component",
|
|
6155
|
+
"type": {
|
|
6156
|
+
"text": "Component"
|
|
6157
|
+
}
|
|
6158
|
+
}
|
|
6159
|
+
]
|
|
6160
|
+
},
|
|
6161
|
+
{
|
|
6162
|
+
"kind": "method",
|
|
6163
|
+
"name": "toggleHidden",
|
|
6164
|
+
"parameters": [
|
|
6165
|
+
{
|
|
6166
|
+
"name": "component",
|
|
6167
|
+
"type": {
|
|
6168
|
+
"text": "Component"
|
|
6169
|
+
}
|
|
6170
|
+
}
|
|
6171
|
+
]
|
|
6172
|
+
},
|
|
6173
|
+
{
|
|
6174
|
+
"kind": "method",
|
|
6175
|
+
"name": "selectComponent",
|
|
6176
|
+
"parameters": [
|
|
6177
|
+
{
|
|
6178
|
+
"name": "component",
|
|
6179
|
+
"type": {
|
|
6180
|
+
"text": "Component"
|
|
6181
|
+
}
|
|
6182
|
+
}
|
|
6183
|
+
]
|
|
6184
|
+
},
|
|
6185
|
+
{
|
|
6186
|
+
"kind": "method",
|
|
6187
|
+
"name": "renderComponent",
|
|
6188
|
+
"return": {
|
|
6189
|
+
"type": {
|
|
6190
|
+
"text": "TemplateResult"
|
|
6191
|
+
}
|
|
6192
|
+
},
|
|
6193
|
+
"parameters": [
|
|
6194
|
+
{
|
|
6195
|
+
"name": "component",
|
|
6196
|
+
"type": {
|
|
6197
|
+
"text": "Component"
|
|
6198
|
+
}
|
|
6199
|
+
},
|
|
6200
|
+
{
|
|
6201
|
+
"name": "depth",
|
|
6202
|
+
"type": {
|
|
6203
|
+
"text": "number"
|
|
6204
|
+
}
|
|
6205
|
+
}
|
|
6206
|
+
]
|
|
6207
|
+
}
|
|
6208
|
+
],
|
|
6209
|
+
"attributes": [
|
|
6210
|
+
{
|
|
6211
|
+
"name": "scene",
|
|
6212
|
+
"type": {
|
|
6213
|
+
"text": "Scene | undefined"
|
|
6214
|
+
},
|
|
6215
|
+
"fieldName": "scene"
|
|
6216
|
+
}
|
|
6217
|
+
],
|
|
6218
|
+
"superclass": {
|
|
6219
|
+
"name": "LitElement",
|
|
6220
|
+
"package": "lit"
|
|
6221
|
+
},
|
|
6222
|
+
"tagName": "scene-inspector",
|
|
6223
|
+
"customElement": true
|
|
6224
|
+
}
|
|
6225
|
+
],
|
|
6226
|
+
"exports": [
|
|
6227
|
+
{
|
|
6228
|
+
"kind": "js",
|
|
6229
|
+
"name": "default",
|
|
6230
|
+
"declaration": {
|
|
6231
|
+
"name": "SceneInspector",
|
|
6232
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
6233
|
+
}
|
|
6234
|
+
},
|
|
6235
|
+
{
|
|
6236
|
+
"kind": "custom-element-definition",
|
|
6237
|
+
"name": "scene-inspector",
|
|
6238
|
+
"declaration": {
|
|
6239
|
+
"name": "SceneInspector",
|
|
6240
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
6241
|
+
}
|
|
6242
|
+
}
|
|
6243
|
+
]
|
|
6244
|
+
},
|
|
5561
6245
|
{
|
|
5562
6246
|
"kind": "javascript-module",
|
|
5563
6247
|
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|