@almadar/std 16.174.0 → 16.176.0
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/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +4 -9
- package/behaviors/lolo/ui/learning/atoms/std-learn-classify.lolo +132 -22
- package/behaviors/lolo/ui/learning/atoms/std-learn-derivation.lolo +428 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-doser.lolo +520 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-scatter-fit.lolo +805 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-tour-3d.lolo +31 -2
- package/behaviors/lolo/ui/learning/atoms/std-learn-transport.lolo +186 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-tree.lolo +522 -0
- package/behaviors/lolo/ui/learning/atoms/ui-algo-graph-canvas.lolo +192 -0
- package/behaviors/lolo/ui/learning/atoms/ui-algorithm-canvas.lolo +111 -2
- package/behaviors/lolo/ui/learning/atoms/ui-biology-canvas.lolo +150 -1
- package/behaviors/lolo/ui/learning/atoms/ui-chemistry-canvas.lolo +132 -1
- package/behaviors/lolo/ui/learning/atoms/ui-learning-canvas.lolo +48 -1
- package/behaviors/lolo/ui/learning/atoms/ui-math-canvas.lolo +141 -1
- package/behaviors/lolo/ui/learning/atoms/ui-physics-canvas.lolo +199 -1
- package/behaviors/registry/ui/core/molecules/ui-table-view.orb +4 -39
- package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +1288 -197
- package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +2512 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +3678 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +6539 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +173 -2
- package/behaviors/registry/ui/learning/atoms/std-learn-transport.orb +986 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-tree.orb +3333 -0
- package/behaviors/registry/ui/learning/atoms/ui-algo-graph-canvas.orb +716 -0
- package/behaviors/registry/ui/learning/atoms/ui-algorithm-canvas.orb +506 -1
- package/behaviors/registry/ui/learning/atoms/ui-biology-canvas.orb +684 -0
- package/behaviors/registry/ui/learning/atoms/ui-chemistry-canvas.orb +634 -0
- package/behaviors/registry/ui/learning/atoms/ui-learning-canvas.orb +256 -0
- package/behaviors/registry/ui/learning/atoms/ui-math-canvas.orb +736 -12
- package/behaviors/registry/ui/learning/atoms/ui-physics-canvas.orb +1061 -33
- package/dist/behaviors/exports-reader.js +2448 -2184
- package/dist/behaviors/functions/index.d.ts +800 -13
- package/dist/behaviors/functions/index.js +2431 -2185
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +2449 -2185
- package/dist/behaviors/query.js +2448 -2184
- package/dist/behaviors-embeddings.hash.json +3 -3
- package/dist/behaviors-embeddings.json +318 -294
- package/dist/behaviors-registry.json +4391 -1298
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2449 -2185
- package/dist/knob-embeddings.hash.json +3 -3
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +1 -1
- package/package.json +2 -2
|
@@ -111,6 +111,29 @@
|
|
|
111
111
|
"tier": "presentation",
|
|
112
112
|
"type": "string"
|
|
113
113
|
},
|
|
114
|
+
"bands": {
|
|
115
|
+
"default": [],
|
|
116
|
+
"description": "Full-width horizontal background stripes, drawn first (2D only).",
|
|
117
|
+
"items": {
|
|
118
|
+
"properties": {
|
|
119
|
+
"color": {
|
|
120
|
+
"name": "color",
|
|
121
|
+
"required": false,
|
|
122
|
+
"type": "string"
|
|
123
|
+
},
|
|
124
|
+
"label": {
|
|
125
|
+
"name": "label",
|
|
126
|
+
"required": false,
|
|
127
|
+
"type": "string"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"type": "object"
|
|
131
|
+
},
|
|
132
|
+
"label": "Bands",
|
|
133
|
+
"synonyms": "trophic levels, zones, layers",
|
|
134
|
+
"tier": "presentation",
|
|
135
|
+
"type": "[BiologyCanvasBandsItem]"
|
|
136
|
+
},
|
|
114
137
|
"camera": {
|
|
115
138
|
"default": {},
|
|
116
139
|
"description": "3D only: neutral camera pose ({ mode, zoom, fov, azimuth, target }).",
|
|
@@ -124,6 +147,68 @@
|
|
|
124
147
|
"tier": "presentation",
|
|
125
148
|
"type": "string"
|
|
126
149
|
},
|
|
150
|
+
"compartments": {
|
|
151
|
+
"default": [],
|
|
152
|
+
"description": "Organelle/membrane/cell-boundary ellipses (2D only).",
|
|
153
|
+
"items": {
|
|
154
|
+
"properties": {
|
|
155
|
+
"color": {
|
|
156
|
+
"name": "color",
|
|
157
|
+
"required": false,
|
|
158
|
+
"type": "string"
|
|
159
|
+
},
|
|
160
|
+
"dash": {
|
|
161
|
+
"name": "dash",
|
|
162
|
+
"required": false,
|
|
163
|
+
"type": "string",
|
|
164
|
+
"values": [
|
|
165
|
+
"dashed",
|
|
166
|
+
"dotted"
|
|
167
|
+
]
|
|
168
|
+
},
|
|
169
|
+
"fill": {
|
|
170
|
+
"name": "fill",
|
|
171
|
+
"required": false,
|
|
172
|
+
"type": "string"
|
|
173
|
+
},
|
|
174
|
+
"height": {
|
|
175
|
+
"name": "height",
|
|
176
|
+
"required": true,
|
|
177
|
+
"type": "number"
|
|
178
|
+
},
|
|
179
|
+
"label": {
|
|
180
|
+
"name": "label",
|
|
181
|
+
"required": false,
|
|
182
|
+
"type": "string"
|
|
183
|
+
},
|
|
184
|
+
"lineWidth": {
|
|
185
|
+
"name": "lineWidth",
|
|
186
|
+
"required": false,
|
|
187
|
+
"type": "number"
|
|
188
|
+
},
|
|
189
|
+
"width": {
|
|
190
|
+
"name": "width",
|
|
191
|
+
"required": true,
|
|
192
|
+
"type": "number"
|
|
193
|
+
},
|
|
194
|
+
"x": {
|
|
195
|
+
"name": "x",
|
|
196
|
+
"required": true,
|
|
197
|
+
"type": "number"
|
|
198
|
+
},
|
|
199
|
+
"y": {
|
|
200
|
+
"name": "y",
|
|
201
|
+
"required": true,
|
|
202
|
+
"type": "number"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"type": "object"
|
|
206
|
+
},
|
|
207
|
+
"label": "Compartments",
|
|
208
|
+
"synonyms": "membrane, organelle region, cell boundary",
|
|
209
|
+
"tier": "presentation",
|
|
210
|
+
"type": "[BiologyCanvasCompartmentsItem]"
|
|
211
|
+
},
|
|
127
212
|
"edges": {
|
|
128
213
|
"default": [],
|
|
129
214
|
"description": "edges prop",
|
|
@@ -134,6 +219,11 @@
|
|
|
134
219
|
"required": false,
|
|
135
220
|
"type": "string"
|
|
136
221
|
},
|
|
222
|
+
"directed": {
|
|
223
|
+
"name": "directed",
|
|
224
|
+
"required": false,
|
|
225
|
+
"type": "boolean"
|
|
226
|
+
},
|
|
137
227
|
"from": {
|
|
138
228
|
"name": "from",
|
|
139
229
|
"required": true,
|
|
@@ -191,6 +281,193 @@
|
|
|
191
281
|
"tier": "presentation",
|
|
192
282
|
"type": "number"
|
|
193
283
|
},
|
|
284
|
+
"helix": {
|
|
285
|
+
"description": "A DNA double-helix ladder panel (2D only).",
|
|
286
|
+
"label": "Helix",
|
|
287
|
+
"properties": {
|
|
288
|
+
"colorA": {
|
|
289
|
+
"name": "colorA",
|
|
290
|
+
"required": false,
|
|
291
|
+
"type": "string"
|
|
292
|
+
},
|
|
293
|
+
"colorB": {
|
|
294
|
+
"name": "colorB",
|
|
295
|
+
"required": false,
|
|
296
|
+
"type": "string"
|
|
297
|
+
},
|
|
298
|
+
"fork": {
|
|
299
|
+
"name": "fork",
|
|
300
|
+
"required": false,
|
|
301
|
+
"type": "number"
|
|
302
|
+
},
|
|
303
|
+
"height": {
|
|
304
|
+
"name": "height",
|
|
305
|
+
"required": false,
|
|
306
|
+
"type": "number"
|
|
307
|
+
},
|
|
308
|
+
"rungColor": {
|
|
309
|
+
"name": "rungColor",
|
|
310
|
+
"required": false,
|
|
311
|
+
"type": "string"
|
|
312
|
+
},
|
|
313
|
+
"rungs": {
|
|
314
|
+
"items": {
|
|
315
|
+
"properties": {
|
|
316
|
+
"a": {
|
|
317
|
+
"name": "a",
|
|
318
|
+
"required": false,
|
|
319
|
+
"type": "string"
|
|
320
|
+
},
|
|
321
|
+
"b": {
|
|
322
|
+
"name": "b",
|
|
323
|
+
"required": false,
|
|
324
|
+
"type": "string"
|
|
325
|
+
},
|
|
326
|
+
"color": {
|
|
327
|
+
"name": "color",
|
|
328
|
+
"required": false,
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
331
|
+
"state": {
|
|
332
|
+
"name": "state",
|
|
333
|
+
"required": false,
|
|
334
|
+
"type": "string",
|
|
335
|
+
"values": [
|
|
336
|
+
"paired",
|
|
337
|
+
"open",
|
|
338
|
+
"new"
|
|
339
|
+
]
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"type": "object"
|
|
343
|
+
},
|
|
344
|
+
"name": "rungs",
|
|
345
|
+
"required": true,
|
|
346
|
+
"type": "array"
|
|
347
|
+
},
|
|
348
|
+
"width": {
|
|
349
|
+
"name": "width",
|
|
350
|
+
"required": false,
|
|
351
|
+
"type": "number"
|
|
352
|
+
},
|
|
353
|
+
"x": {
|
|
354
|
+
"name": "x",
|
|
355
|
+
"required": false,
|
|
356
|
+
"type": "number"
|
|
357
|
+
},
|
|
358
|
+
"y": {
|
|
359
|
+
"name": "y",
|
|
360
|
+
"required": false,
|
|
361
|
+
"type": "number"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"synonyms": "DNA ladder, replication fork, base pairs",
|
|
365
|
+
"tier": "presentation",
|
|
366
|
+
"type": "BiologyCanvasHelix"
|
|
367
|
+
},
|
|
368
|
+
"helix3d": {
|
|
369
|
+
"description": "A 3D DNA double-helix ladder. 3D only.",
|
|
370
|
+
"label": "Helix3d",
|
|
371
|
+
"properties": {
|
|
372
|
+
"backboneRadius": {
|
|
373
|
+
"name": "backboneRadius",
|
|
374
|
+
"required": false,
|
|
375
|
+
"type": "number"
|
|
376
|
+
},
|
|
377
|
+
"count": {
|
|
378
|
+
"name": "count",
|
|
379
|
+
"required": false,
|
|
380
|
+
"type": "number"
|
|
381
|
+
},
|
|
382
|
+
"radius": {
|
|
383
|
+
"name": "radius",
|
|
384
|
+
"required": false,
|
|
385
|
+
"type": "number"
|
|
386
|
+
},
|
|
387
|
+
"rise": {
|
|
388
|
+
"name": "rise",
|
|
389
|
+
"required": false,
|
|
390
|
+
"type": "number"
|
|
391
|
+
},
|
|
392
|
+
"rungRadius": {
|
|
393
|
+
"name": "rungRadius",
|
|
394
|
+
"required": false,
|
|
395
|
+
"type": "number"
|
|
396
|
+
},
|
|
397
|
+
"rungs": {
|
|
398
|
+
"items": {
|
|
399
|
+
"properties": {
|
|
400
|
+
"color": {
|
|
401
|
+
"name": "color",
|
|
402
|
+
"required": false,
|
|
403
|
+
"type": "string"
|
|
404
|
+
},
|
|
405
|
+
"id": {
|
|
406
|
+
"name": "id",
|
|
407
|
+
"required": false,
|
|
408
|
+
"type": "string"
|
|
409
|
+
},
|
|
410
|
+
"label": {
|
|
411
|
+
"name": "label",
|
|
412
|
+
"required": false,
|
|
413
|
+
"type": "string"
|
|
414
|
+
},
|
|
415
|
+
"radius": {
|
|
416
|
+
"name": "radius",
|
|
417
|
+
"required": false,
|
|
418
|
+
"type": "number"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"type": "object"
|
|
422
|
+
},
|
|
423
|
+
"name": "rungs",
|
|
424
|
+
"required": false,
|
|
425
|
+
"type": "array"
|
|
426
|
+
},
|
|
427
|
+
"strandAColor": {
|
|
428
|
+
"name": "strandAColor",
|
|
429
|
+
"required": false,
|
|
430
|
+
"type": "string"
|
|
431
|
+
},
|
|
432
|
+
"strandBColor": {
|
|
433
|
+
"name": "strandBColor",
|
|
434
|
+
"required": false,
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
437
|
+
"twistDeg": {
|
|
438
|
+
"name": "twistDeg",
|
|
439
|
+
"required": false,
|
|
440
|
+
"type": "number"
|
|
441
|
+
},
|
|
442
|
+
"unwindSpread": {
|
|
443
|
+
"name": "unwindSpread",
|
|
444
|
+
"required": false,
|
|
445
|
+
"type": "number"
|
|
446
|
+
},
|
|
447
|
+
"unwoundCount": {
|
|
448
|
+
"name": "unwoundCount",
|
|
449
|
+
"required": false,
|
|
450
|
+
"type": "number"
|
|
451
|
+
},
|
|
452
|
+
"x": {
|
|
453
|
+
"name": "x",
|
|
454
|
+
"required": false,
|
|
455
|
+
"type": "number"
|
|
456
|
+
},
|
|
457
|
+
"y": {
|
|
458
|
+
"name": "y",
|
|
459
|
+
"required": false,
|
|
460
|
+
"type": "number"
|
|
461
|
+
},
|
|
462
|
+
"z": {
|
|
463
|
+
"name": "z",
|
|
464
|
+
"required": false,
|
|
465
|
+
"type": "number"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
"tier": "presentation",
|
|
469
|
+
"type": "BiologyCanvasHelix3d"
|
|
470
|
+
},
|
|
194
471
|
"interactive": {
|
|
195
472
|
"description": "2D: pointer interaction (click/hover). 3D: orbit camera controls.",
|
|
196
473
|
"label": "Interactive",
|
|
@@ -278,6 +555,16 @@
|
|
|
278
555
|
"polyhedron"
|
|
279
556
|
]
|
|
280
557
|
},
|
|
558
|
+
"state": {
|
|
559
|
+
"name": "state",
|
|
560
|
+
"required": false,
|
|
561
|
+
"type": "string",
|
|
562
|
+
"values": [
|
|
563
|
+
"default",
|
|
564
|
+
"highlight",
|
|
565
|
+
"muted"
|
|
566
|
+
]
|
|
567
|
+
},
|
|
281
568
|
"x": {
|
|
282
569
|
"name": "x",
|
|
283
570
|
"required": true,
|
|
@@ -314,6 +601,33 @@
|
|
|
314
601
|
"tier": "presentation",
|
|
315
602
|
"type": "json"
|
|
316
603
|
},
|
|
604
|
+
"readouts": {
|
|
605
|
+
"default": [],
|
|
606
|
+
"description": "Top-right status chip row, forwarded to LearningCanvas verbatim.",
|
|
607
|
+
"items": {
|
|
608
|
+
"properties": {
|
|
609
|
+
"color": {
|
|
610
|
+
"name": "color",
|
|
611
|
+
"required": false,
|
|
612
|
+
"type": "string"
|
|
613
|
+
},
|
|
614
|
+
"label": {
|
|
615
|
+
"name": "label",
|
|
616
|
+
"required": true,
|
|
617
|
+
"type": "string"
|
|
618
|
+
},
|
|
619
|
+
"value": {
|
|
620
|
+
"name": "value",
|
|
621
|
+
"required": true,
|
|
622
|
+
"type": "string"
|
|
623
|
+
}
|
|
624
|
+
},
|
|
625
|
+
"type": "object"
|
|
626
|
+
},
|
|
627
|
+
"label": "Readouts",
|
|
628
|
+
"tier": "presentation",
|
|
629
|
+
"type": "[BiologyCanvasReadoutsItem]"
|
|
630
|
+
},
|
|
317
631
|
"shadows": {
|
|
318
632
|
"description": "3D only: enable shadows. Omitted → the host default.",
|
|
319
633
|
"label": "Shadows",
|
|
@@ -349,6 +663,20 @@
|
|
|
349
663
|
"required": false,
|
|
350
664
|
"type": "string"
|
|
351
665
|
},
|
|
666
|
+
"dash": {
|
|
667
|
+
"name": "dash",
|
|
668
|
+
"required": false,
|
|
669
|
+
"type": "string",
|
|
670
|
+
"values": [
|
|
671
|
+
"dashed",
|
|
672
|
+
"dotted"
|
|
673
|
+
]
|
|
674
|
+
},
|
|
675
|
+
"endAngle": {
|
|
676
|
+
"name": "endAngle",
|
|
677
|
+
"required": false,
|
|
678
|
+
"type": "number"
|
|
679
|
+
},
|
|
352
680
|
"fill": {
|
|
353
681
|
"name": "fill",
|
|
354
682
|
"required": false,
|
|
@@ -424,6 +752,11 @@
|
|
|
424
752
|
"required": false,
|
|
425
753
|
"type": "number"
|
|
426
754
|
},
|
|
755
|
+
"startAngle": {
|
|
756
|
+
"name": "startAngle",
|
|
757
|
+
"required": false,
|
|
758
|
+
"type": "number"
|
|
759
|
+
},
|
|
427
760
|
"step": {
|
|
428
761
|
"name": "step",
|
|
429
762
|
"required": false,
|
|
@@ -442,6 +775,7 @@
|
|
|
442
775
|
"line",
|
|
443
776
|
"arrow",
|
|
444
777
|
"circle",
|
|
778
|
+
"ellipse",
|
|
445
779
|
"rect",
|
|
446
780
|
"polygon",
|
|
447
781
|
"path",
|
|
@@ -498,12 +832,153 @@
|
|
|
498
832
|
"tier": "presentation",
|
|
499
833
|
"type": "boolean"
|
|
500
834
|
},
|
|
835
|
+
"stageStyle": {
|
|
836
|
+
"default": "timeline",
|
|
837
|
+
"description": "Layout for `stages`: a bottom timeline strip (default) or a radial ring.",
|
|
838
|
+
"label": "Stage Style",
|
|
839
|
+
"tier": "presentation",
|
|
840
|
+
"type": "string",
|
|
841
|
+
"values": [
|
|
842
|
+
"timeline",
|
|
843
|
+
"ring"
|
|
844
|
+
]
|
|
845
|
+
},
|
|
846
|
+
"stages": {
|
|
847
|
+
"default": [],
|
|
848
|
+
"description": "Phase/step chips (2D only).",
|
|
849
|
+
"items": {
|
|
850
|
+
"properties": {
|
|
851
|
+
"color": {
|
|
852
|
+
"name": "color",
|
|
853
|
+
"required": false,
|
|
854
|
+
"type": "string"
|
|
855
|
+
},
|
|
856
|
+
"label": {
|
|
857
|
+
"name": "label",
|
|
858
|
+
"required": true,
|
|
859
|
+
"type": "string"
|
|
860
|
+
},
|
|
861
|
+
"state": {
|
|
862
|
+
"name": "state",
|
|
863
|
+
"required": false,
|
|
864
|
+
"type": "string",
|
|
865
|
+
"values": [
|
|
866
|
+
"pending",
|
|
867
|
+
"active",
|
|
868
|
+
"done"
|
|
869
|
+
]
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"type": "object"
|
|
873
|
+
},
|
|
874
|
+
"label": "Stages",
|
|
875
|
+
"synonyms": "phases, timeline, cycle",
|
|
876
|
+
"tier": "presentation",
|
|
877
|
+
"type": "[BiologyCanvasStagesItem]"
|
|
878
|
+
},
|
|
501
879
|
"title": {
|
|
502
880
|
"description": "title prop",
|
|
503
881
|
"label": "Title",
|
|
504
882
|
"tier": "presentation",
|
|
505
883
|
"type": "string"
|
|
506
884
|
},
|
|
885
|
+
"traces": {
|
|
886
|
+
"default": [],
|
|
887
|
+
"description": "Inset sparkline panels, forwarded to LearningCanvas verbatim.",
|
|
888
|
+
"items": {
|
|
889
|
+
"properties": {
|
|
890
|
+
"backgroundColor": {
|
|
891
|
+
"name": "backgroundColor",
|
|
892
|
+
"required": false,
|
|
893
|
+
"type": "string"
|
|
894
|
+
},
|
|
895
|
+
"backgroundOpacity": {
|
|
896
|
+
"name": "backgroundOpacity",
|
|
897
|
+
"required": false,
|
|
898
|
+
"type": "number"
|
|
899
|
+
},
|
|
900
|
+
"frameColor": {
|
|
901
|
+
"name": "frameColor",
|
|
902
|
+
"required": false,
|
|
903
|
+
"type": "string"
|
|
904
|
+
},
|
|
905
|
+
"height": {
|
|
906
|
+
"name": "height",
|
|
907
|
+
"required": false,
|
|
908
|
+
"type": "number"
|
|
909
|
+
},
|
|
910
|
+
"series": {
|
|
911
|
+
"items": {
|
|
912
|
+
"properties": {
|
|
913
|
+
"color": {
|
|
914
|
+
"name": "color",
|
|
915
|
+
"required": false,
|
|
916
|
+
"type": "string"
|
|
917
|
+
},
|
|
918
|
+
"label": {
|
|
919
|
+
"name": "label",
|
|
920
|
+
"required": false,
|
|
921
|
+
"type": "string"
|
|
922
|
+
},
|
|
923
|
+
"samples": {
|
|
924
|
+
"items": {
|
|
925
|
+
"properties": {
|
|
926
|
+
"x": {
|
|
927
|
+
"name": "x",
|
|
928
|
+
"required": true,
|
|
929
|
+
"type": "number"
|
|
930
|
+
},
|
|
931
|
+
"y": {
|
|
932
|
+
"name": "y",
|
|
933
|
+
"required": true,
|
|
934
|
+
"type": "number"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"type": "object"
|
|
938
|
+
},
|
|
939
|
+
"name": "samples",
|
|
940
|
+
"required": true,
|
|
941
|
+
"type": "array"
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
"type": "object"
|
|
945
|
+
},
|
|
946
|
+
"name": "series",
|
|
947
|
+
"required": true,
|
|
948
|
+
"type": "array"
|
|
949
|
+
},
|
|
950
|
+
"width": {
|
|
951
|
+
"name": "width",
|
|
952
|
+
"required": false,
|
|
953
|
+
"type": "number"
|
|
954
|
+
},
|
|
955
|
+
"x": {
|
|
956
|
+
"name": "x",
|
|
957
|
+
"required": false,
|
|
958
|
+
"type": "number"
|
|
959
|
+
},
|
|
960
|
+
"xLabel": {
|
|
961
|
+
"name": "xLabel",
|
|
962
|
+
"required": false,
|
|
963
|
+
"type": "string"
|
|
964
|
+
},
|
|
965
|
+
"y": {
|
|
966
|
+
"name": "y",
|
|
967
|
+
"required": false,
|
|
968
|
+
"type": "number"
|
|
969
|
+
},
|
|
970
|
+
"yLabel": {
|
|
971
|
+
"name": "yLabel",
|
|
972
|
+
"required": false,
|
|
973
|
+
"type": "string"
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
"type": "object"
|
|
977
|
+
},
|
|
978
|
+
"label": "Traces",
|
|
979
|
+
"tier": "presentation",
|
|
980
|
+
"type": "[BiologyCanvasTracesItem]"
|
|
981
|
+
},
|
|
507
982
|
"width": {
|
|
508
983
|
"default": 600.0,
|
|
509
984
|
"description": "width prop",
|
|
@@ -612,6 +1087,10 @@
|
|
|
612
1087
|
{
|
|
613
1088
|
"name": "opacity",
|
|
614
1089
|
"type": "number"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"name": "state",
|
|
1093
|
+
"type": "string"
|
|
615
1094
|
}
|
|
616
1095
|
],
|
|
617
1096
|
"type": "[object]"
|
|
@@ -636,6 +1115,89 @@
|
|
|
636
1115
|
{
|
|
637
1116
|
"name": "label",
|
|
638
1117
|
"type": "string"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"name": "directed",
|
|
1121
|
+
"type": "boolean"
|
|
1122
|
+
}
|
|
1123
|
+
],
|
|
1124
|
+
"type": "[object]"
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "compartments",
|
|
1128
|
+
"properties": [
|
|
1129
|
+
{
|
|
1130
|
+
"name": "x",
|
|
1131
|
+
"required": true,
|
|
1132
|
+
"type": "number"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"name": "y",
|
|
1136
|
+
"required": true,
|
|
1137
|
+
"type": "number"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"name": "width",
|
|
1141
|
+
"required": true,
|
|
1142
|
+
"type": "number"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"name": "height",
|
|
1146
|
+
"required": true,
|
|
1147
|
+
"type": "number"
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"name": "label",
|
|
1151
|
+
"type": "string"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"name": "color",
|
|
1155
|
+
"type": "string"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"name": "fill",
|
|
1159
|
+
"type": "string"
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"name": "dash",
|
|
1163
|
+
"type": "string"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"name": "lineWidth",
|
|
1167
|
+
"type": "number"
|
|
1168
|
+
}
|
|
1169
|
+
],
|
|
1170
|
+
"type": "[object]"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"name": "bands",
|
|
1174
|
+
"properties": [
|
|
1175
|
+
{
|
|
1176
|
+
"name": "label",
|
|
1177
|
+
"type": "string"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"name": "color",
|
|
1181
|
+
"type": "string"
|
|
1182
|
+
}
|
|
1183
|
+
],
|
|
1184
|
+
"type": "[object]"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"name": "stages",
|
|
1188
|
+
"properties": [
|
|
1189
|
+
{
|
|
1190
|
+
"name": "label",
|
|
1191
|
+
"required": true,
|
|
1192
|
+
"type": "string"
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"name": "state",
|
|
1196
|
+
"type": "string"
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"name": "color",
|
|
1200
|
+
"type": "string"
|
|
639
1201
|
}
|
|
640
1202
|
],
|
|
641
1203
|
"type": "[object]"
|
|
@@ -755,6 +1317,112 @@
|
|
|
755
1317
|
{
|
|
756
1318
|
"name": "opacity",
|
|
757
1319
|
"type": "number"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"name": "startAngle",
|
|
1323
|
+
"type": "number"
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
"name": "endAngle",
|
|
1327
|
+
"type": "number"
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"name": "dash",
|
|
1331
|
+
"type": "string"
|
|
1332
|
+
}
|
|
1333
|
+
],
|
|
1334
|
+
"type": "[object]"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"name": "readouts",
|
|
1338
|
+
"properties": [
|
|
1339
|
+
{
|
|
1340
|
+
"name": "label",
|
|
1341
|
+
"required": true,
|
|
1342
|
+
"type": "string"
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"name": "value",
|
|
1346
|
+
"required": true,
|
|
1347
|
+
"type": "string"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"name": "color",
|
|
1351
|
+
"type": "string"
|
|
1352
|
+
}
|
|
1353
|
+
],
|
|
1354
|
+
"type": "[object]"
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"name": "traces",
|
|
1358
|
+
"properties": [
|
|
1359
|
+
{
|
|
1360
|
+
"name": "x",
|
|
1361
|
+
"type": "number"
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"name": "y",
|
|
1365
|
+
"type": "number"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"name": "width",
|
|
1369
|
+
"type": "number"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"name": "height",
|
|
1373
|
+
"type": "number"
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"name": "series",
|
|
1377
|
+
"properties": [
|
|
1378
|
+
{
|
|
1379
|
+
"name": "samples",
|
|
1380
|
+
"properties": [
|
|
1381
|
+
{
|
|
1382
|
+
"name": "x",
|
|
1383
|
+
"required": true,
|
|
1384
|
+
"type": "number"
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"name": "y",
|
|
1388
|
+
"required": true,
|
|
1389
|
+
"type": "number"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"required": true,
|
|
1393
|
+
"type": "[object]"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"name": "color",
|
|
1397
|
+
"type": "string"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"name": "label",
|
|
1401
|
+
"type": "string"
|
|
1402
|
+
}
|
|
1403
|
+
],
|
|
1404
|
+
"required": true,
|
|
1405
|
+
"type": "[object]"
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"name": "xLabel",
|
|
1409
|
+
"type": "string"
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"name": "yLabel",
|
|
1413
|
+
"type": "string"
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"name": "frameColor",
|
|
1417
|
+
"type": "string"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"name": "backgroundColor",
|
|
1421
|
+
"type": "string"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"name": "backgroundOpacity",
|
|
1425
|
+
"type": "number"
|
|
758
1426
|
}
|
|
759
1427
|
],
|
|
760
1428
|
"type": "[object]"
|
|
@@ -807,11 +1475,15 @@
|
|
|
807
1475
|
{
|
|
808
1476
|
"animate": "@config.animate",
|
|
809
1477
|
"backgroundColor": "@config.backgroundColor",
|
|
1478
|
+
"bands": "@config.bands",
|
|
810
1479
|
"camera": "@config.camera",
|
|
811
1480
|
"className": "@config.className",
|
|
1481
|
+
"compartments": "@config.compartments",
|
|
812
1482
|
"edges": "@config.edges",
|
|
813
1483
|
"error": "@config.error",
|
|
814
1484
|
"height": "@config.height",
|
|
1485
|
+
"helix": "@config.helix",
|
|
1486
|
+
"helix3d": "@config.helix3d",
|
|
815
1487
|
"interactive": "@config.interactive",
|
|
816
1488
|
"isLoading": "@config.isLoading",
|
|
817
1489
|
"lighting": "@config.lighting",
|
|
@@ -819,10 +1491,14 @@
|
|
|
819
1491
|
"nodes": "@config.nodes",
|
|
820
1492
|
"onShapeClick": "@config.onShapeClick",
|
|
821
1493
|
"post": "@config.post",
|
|
1494
|
+
"readouts": "@config.readouts",
|
|
822
1495
|
"shadows": "@config.shadows",
|
|
823
1496
|
"shapes": "@config.shapes",
|
|
824
1497
|
"showGrid": "@config.showGrid",
|
|
1498
|
+
"stageStyle": "@config.stageStyle",
|
|
1499
|
+
"stages": "@config.stages",
|
|
825
1500
|
"title": "@config.title",
|
|
1501
|
+
"traces": "@config.traces",
|
|
826
1502
|
"type": "biology-canvas",
|
|
827
1503
|
"width": "@config.width"
|
|
828
1504
|
}
|
|
@@ -841,11 +1517,15 @@
|
|
|
841
1517
|
{
|
|
842
1518
|
"animate": "@config.animate",
|
|
843
1519
|
"backgroundColor": "@config.backgroundColor",
|
|
1520
|
+
"bands": "@payload.bands",
|
|
844
1521
|
"camera": "@config.camera",
|
|
845
1522
|
"className": "@config.className",
|
|
1523
|
+
"compartments": "@payload.compartments",
|
|
846
1524
|
"edges": "@payload.edges",
|
|
847
1525
|
"error": "@config.error",
|
|
848
1526
|
"height": "@config.height",
|
|
1527
|
+
"helix": "@config.helix",
|
|
1528
|
+
"helix3d": "@config.helix3d",
|
|
849
1529
|
"interactive": "@config.interactive",
|
|
850
1530
|
"isLoading": "@config.isLoading",
|
|
851
1531
|
"lighting": "@config.lighting",
|
|
@@ -853,10 +1533,14 @@
|
|
|
853
1533
|
"nodes": "@payload.nodes",
|
|
854
1534
|
"onShapeClick": "@config.onShapeClick",
|
|
855
1535
|
"post": "@config.post",
|
|
1536
|
+
"readouts": "@payload.readouts",
|
|
856
1537
|
"shadows": "@config.shadows",
|
|
857
1538
|
"shapes": "@payload.shapes",
|
|
858
1539
|
"showGrid": "@config.showGrid",
|
|
1540
|
+
"stageStyle": "@config.stageStyle",
|
|
1541
|
+
"stages": "@payload.stages",
|
|
859
1542
|
"title": "@config.title",
|
|
1543
|
+
"traces": "@payload.traces",
|
|
860
1544
|
"type": "biology-canvas",
|
|
861
1545
|
"width": "@config.width"
|
|
862
1546
|
}
|