@almadar/std 16.174.0 → 16.175.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 +261 -237
- package/dist/behaviors-registry.json +4385 -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
|
@@ -98,6 +98,53 @@
|
|
|
98
98
|
{
|
|
99
99
|
"category": "interaction",
|
|
100
100
|
"config": {
|
|
101
|
+
"angles": {
|
|
102
|
+
"default": [],
|
|
103
|
+
"description": "Angle-sweep arcs at a vertex.",
|
|
104
|
+
"items": {
|
|
105
|
+
"properties": {
|
|
106
|
+
"color": {
|
|
107
|
+
"name": "color",
|
|
108
|
+
"required": false,
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
"from": {
|
|
112
|
+
"name": "from",
|
|
113
|
+
"required": true,
|
|
114
|
+
"type": "number"
|
|
115
|
+
},
|
|
116
|
+
"label": {
|
|
117
|
+
"name": "label",
|
|
118
|
+
"required": false,
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
"radius": {
|
|
122
|
+
"name": "radius",
|
|
123
|
+
"required": false,
|
|
124
|
+
"type": "number"
|
|
125
|
+
},
|
|
126
|
+
"to": {
|
|
127
|
+
"name": "to",
|
|
128
|
+
"required": true,
|
|
129
|
+
"type": "number"
|
|
130
|
+
},
|
|
131
|
+
"x": {
|
|
132
|
+
"name": "x",
|
|
133
|
+
"required": true,
|
|
134
|
+
"type": "number"
|
|
135
|
+
},
|
|
136
|
+
"y": {
|
|
137
|
+
"name": "y",
|
|
138
|
+
"required": true,
|
|
139
|
+
"type": "number"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"type": "object"
|
|
143
|
+
},
|
|
144
|
+
"label": "Angles",
|
|
145
|
+
"tier": "presentation",
|
|
146
|
+
"type": "[MathCanvasAnglesItem]"
|
|
147
|
+
},
|
|
101
148
|
"animate": {
|
|
102
149
|
"default": false,
|
|
103
150
|
"description": "animate prop",
|
|
@@ -105,6 +152,48 @@
|
|
|
105
152
|
"tier": "presentation",
|
|
106
153
|
"type": "boolean"
|
|
107
154
|
},
|
|
155
|
+
"bars": {
|
|
156
|
+
"default": [],
|
|
157
|
+
"description": "Riemann/histogram bar strips.",
|
|
158
|
+
"items": {
|
|
159
|
+
"properties": {
|
|
160
|
+
"color": {
|
|
161
|
+
"name": "color",
|
|
162
|
+
"required": false,
|
|
163
|
+
"type": "string"
|
|
164
|
+
},
|
|
165
|
+
"opacity": {
|
|
166
|
+
"name": "opacity",
|
|
167
|
+
"required": false,
|
|
168
|
+
"type": "number"
|
|
169
|
+
},
|
|
170
|
+
"width": {
|
|
171
|
+
"name": "width",
|
|
172
|
+
"required": true,
|
|
173
|
+
"type": "number"
|
|
174
|
+
},
|
|
175
|
+
"x": {
|
|
176
|
+
"name": "x",
|
|
177
|
+
"required": true,
|
|
178
|
+
"type": "number"
|
|
179
|
+
},
|
|
180
|
+
"y0": {
|
|
181
|
+
"name": "y0",
|
|
182
|
+
"required": false,
|
|
183
|
+
"type": "number"
|
|
184
|
+
},
|
|
185
|
+
"y1": {
|
|
186
|
+
"name": "y1",
|
|
187
|
+
"required": true,
|
|
188
|
+
"type": "number"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"type": "object"
|
|
192
|
+
},
|
|
193
|
+
"label": "Bars",
|
|
194
|
+
"tier": "presentation",
|
|
195
|
+
"type": "[MathCanvasBarsItem]"
|
|
196
|
+
},
|
|
108
197
|
"className": {
|
|
109
198
|
"description": "className prop",
|
|
110
199
|
"label": "Class Name",
|
|
@@ -121,6 +210,15 @@
|
|
|
121
210
|
"required": false,
|
|
122
211
|
"type": "string"
|
|
123
212
|
},
|
|
213
|
+
"dash": {
|
|
214
|
+
"name": "dash",
|
|
215
|
+
"required": false,
|
|
216
|
+
"type": "string",
|
|
217
|
+
"values": [
|
|
218
|
+
"dashed",
|
|
219
|
+
"dotted"
|
|
220
|
+
]
|
|
221
|
+
},
|
|
124
222
|
"label": {
|
|
125
223
|
"name": "label",
|
|
126
224
|
"required": false,
|
|
@@ -188,6 +286,51 @@
|
|
|
188
286
|
"tier": "presentation",
|
|
189
287
|
"type": "number"
|
|
190
288
|
},
|
|
289
|
+
"guides": {
|
|
290
|
+
"default": [],
|
|
291
|
+
"description": "Fixed reference lines (vline/hline).",
|
|
292
|
+
"items": {
|
|
293
|
+
"properties": {
|
|
294
|
+
"at": {
|
|
295
|
+
"name": "at",
|
|
296
|
+
"required": true,
|
|
297
|
+
"type": "number"
|
|
298
|
+
},
|
|
299
|
+
"color": {
|
|
300
|
+
"name": "color",
|
|
301
|
+
"required": false,
|
|
302
|
+
"type": "string"
|
|
303
|
+
},
|
|
304
|
+
"dash": {
|
|
305
|
+
"name": "dash",
|
|
306
|
+
"required": false,
|
|
307
|
+
"type": "string",
|
|
308
|
+
"values": [
|
|
309
|
+
"dashed",
|
|
310
|
+
"dotted"
|
|
311
|
+
]
|
|
312
|
+
},
|
|
313
|
+
"kind": {
|
|
314
|
+
"name": "kind",
|
|
315
|
+
"required": true,
|
|
316
|
+
"type": "string",
|
|
317
|
+
"values": [
|
|
318
|
+
"vline",
|
|
319
|
+
"hline"
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
"label": {
|
|
323
|
+
"name": "label",
|
|
324
|
+
"required": false,
|
|
325
|
+
"type": "string"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"type": "object"
|
|
329
|
+
},
|
|
330
|
+
"label": "Guides",
|
|
331
|
+
"tier": "presentation",
|
|
332
|
+
"type": "[MathCanvasGuidesItem]"
|
|
333
|
+
},
|
|
191
334
|
"height": {
|
|
192
335
|
"default": 400.0,
|
|
193
336
|
"description": "height prop",
|
|
@@ -195,6 +338,38 @@
|
|
|
195
338
|
"tier": "presentation",
|
|
196
339
|
"type": "number"
|
|
197
340
|
},
|
|
341
|
+
"hops": {
|
|
342
|
+
"default": [],
|
|
343
|
+
"description": "Number-line jump arcs.",
|
|
344
|
+
"items": {
|
|
345
|
+
"properties": {
|
|
346
|
+
"color": {
|
|
347
|
+
"name": "color",
|
|
348
|
+
"required": false,
|
|
349
|
+
"type": "string"
|
|
350
|
+
},
|
|
351
|
+
"from": {
|
|
352
|
+
"name": "from",
|
|
353
|
+
"required": true,
|
|
354
|
+
"type": "number"
|
|
355
|
+
},
|
|
356
|
+
"label": {
|
|
357
|
+
"name": "label",
|
|
358
|
+
"required": false,
|
|
359
|
+
"type": "string"
|
|
360
|
+
},
|
|
361
|
+
"to": {
|
|
362
|
+
"name": "to",
|
|
363
|
+
"required": true,
|
|
364
|
+
"type": "number"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"type": "object"
|
|
368
|
+
},
|
|
369
|
+
"label": "Hops",
|
|
370
|
+
"tier": "presentation",
|
|
371
|
+
"type": "[MathCanvasHopsItem]"
|
|
372
|
+
},
|
|
198
373
|
"interactive": {
|
|
199
374
|
"default": false,
|
|
200
375
|
"description": "interactive prop",
|
|
@@ -235,6 +410,15 @@
|
|
|
235
410
|
"required": false,
|
|
236
411
|
"type": "number"
|
|
237
412
|
},
|
|
413
|
+
"style": {
|
|
414
|
+
"name": "style",
|
|
415
|
+
"required": false,
|
|
416
|
+
"type": "string",
|
|
417
|
+
"values": [
|
|
418
|
+
"closed",
|
|
419
|
+
"open"
|
|
420
|
+
]
|
|
421
|
+
},
|
|
238
422
|
"x": {
|
|
239
423
|
"name": "x",
|
|
240
424
|
"required": true,
|
|
@@ -252,6 +436,105 @@
|
|
|
252
436
|
"tier": "presentation",
|
|
253
437
|
"type": "[MathCanvasPointsItem]"
|
|
254
438
|
},
|
|
439
|
+
"readouts": {
|
|
440
|
+
"default": [],
|
|
441
|
+
"description": "Top-right status chips, forwarded verbatim to LearningCanvas.",
|
|
442
|
+
"items": {
|
|
443
|
+
"properties": {
|
|
444
|
+
"color": {
|
|
445
|
+
"name": "color",
|
|
446
|
+
"required": false,
|
|
447
|
+
"type": "string"
|
|
448
|
+
},
|
|
449
|
+
"label": {
|
|
450
|
+
"name": "label",
|
|
451
|
+
"required": true,
|
|
452
|
+
"type": "string"
|
|
453
|
+
},
|
|
454
|
+
"value": {
|
|
455
|
+
"name": "value",
|
|
456
|
+
"required": true,
|
|
457
|
+
"type": "string"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"type": "object"
|
|
461
|
+
},
|
|
462
|
+
"label": "Readouts",
|
|
463
|
+
"tier": "presentation",
|
|
464
|
+
"type": "[MathCanvasReadoutsItem]"
|
|
465
|
+
},
|
|
466
|
+
"regions": {
|
|
467
|
+
"default": [],
|
|
468
|
+
"description": "Filled areas under curves or between curve pairs.",
|
|
469
|
+
"items": {
|
|
470
|
+
"properties": {
|
|
471
|
+
"baseline": {
|
|
472
|
+
"name": "baseline",
|
|
473
|
+
"required": false,
|
|
474
|
+
"type": "number"
|
|
475
|
+
},
|
|
476
|
+
"color": {
|
|
477
|
+
"name": "color",
|
|
478
|
+
"required": false,
|
|
479
|
+
"type": "string"
|
|
480
|
+
},
|
|
481
|
+
"label": {
|
|
482
|
+
"name": "label",
|
|
483
|
+
"required": false,
|
|
484
|
+
"type": "string"
|
|
485
|
+
},
|
|
486
|
+
"opacity": {
|
|
487
|
+
"name": "opacity",
|
|
488
|
+
"required": false,
|
|
489
|
+
"type": "number"
|
|
490
|
+
},
|
|
491
|
+
"samples": {
|
|
492
|
+
"items": {
|
|
493
|
+
"properties": {
|
|
494
|
+
"x": {
|
|
495
|
+
"name": "x",
|
|
496
|
+
"required": true,
|
|
497
|
+
"type": "number"
|
|
498
|
+
},
|
|
499
|
+
"y": {
|
|
500
|
+
"name": "y",
|
|
501
|
+
"required": true,
|
|
502
|
+
"type": "number"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"type": "object"
|
|
506
|
+
},
|
|
507
|
+
"name": "samples",
|
|
508
|
+
"required": true,
|
|
509
|
+
"type": "array"
|
|
510
|
+
},
|
|
511
|
+
"samples2": {
|
|
512
|
+
"items": {
|
|
513
|
+
"properties": {
|
|
514
|
+
"x": {
|
|
515
|
+
"name": "x",
|
|
516
|
+
"required": true,
|
|
517
|
+
"type": "number"
|
|
518
|
+
},
|
|
519
|
+
"y": {
|
|
520
|
+
"name": "y",
|
|
521
|
+
"required": true,
|
|
522
|
+
"type": "number"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"type": "object"
|
|
526
|
+
},
|
|
527
|
+
"name": "samples2",
|
|
528
|
+
"required": false,
|
|
529
|
+
"type": "array"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"type": "object"
|
|
533
|
+
},
|
|
534
|
+
"label": "Regions",
|
|
535
|
+
"tier": "presentation",
|
|
536
|
+
"type": "[MathCanvasRegionsItem]"
|
|
537
|
+
},
|
|
255
538
|
"shapes": {
|
|
256
539
|
"default": [],
|
|
257
540
|
"description": "Extra declarative shapes in canvas pixel coordinates.",
|
|
@@ -281,6 +564,20 @@
|
|
|
281
564
|
"required": false,
|
|
282
565
|
"type": "string"
|
|
283
566
|
},
|
|
567
|
+
"dash": {
|
|
568
|
+
"name": "dash",
|
|
569
|
+
"required": false,
|
|
570
|
+
"type": "string",
|
|
571
|
+
"values": [
|
|
572
|
+
"dashed",
|
|
573
|
+
"dotted"
|
|
574
|
+
]
|
|
575
|
+
},
|
|
576
|
+
"endAngle": {
|
|
577
|
+
"name": "endAngle",
|
|
578
|
+
"required": false,
|
|
579
|
+
"type": "number"
|
|
580
|
+
},
|
|
284
581
|
"fill": {
|
|
285
582
|
"name": "fill",
|
|
286
583
|
"required": false,
|
|
@@ -356,6 +653,11 @@
|
|
|
356
653
|
"required": false,
|
|
357
654
|
"type": "number"
|
|
358
655
|
},
|
|
656
|
+
"startAngle": {
|
|
657
|
+
"name": "startAngle",
|
|
658
|
+
"required": false,
|
|
659
|
+
"type": "number"
|
|
660
|
+
},
|
|
359
661
|
"step": {
|
|
360
662
|
"name": "step",
|
|
361
663
|
"required": false,
|
|
@@ -374,6 +676,7 @@
|
|
|
374
676
|
"line",
|
|
375
677
|
"arrow",
|
|
376
678
|
"circle",
|
|
679
|
+
"ellipse",
|
|
377
680
|
"rect",
|
|
378
681
|
"polygon",
|
|
379
682
|
"path",
|
|
@@ -431,6 +734,13 @@
|
|
|
431
734
|
"tier": "presentation",
|
|
432
735
|
"type": "boolean"
|
|
433
736
|
},
|
|
737
|
+
"showCurveLabels": {
|
|
738
|
+
"default": false,
|
|
739
|
+
"description": "Draw each curve's `label` at its last in-range sample (default false).",
|
|
740
|
+
"label": "Show Curve Labels",
|
|
741
|
+
"tier": "presentation",
|
|
742
|
+
"type": "boolean"
|
|
743
|
+
},
|
|
434
744
|
"showGrid": {
|
|
435
745
|
"default": true,
|
|
436
746
|
"description": "showGrid prop",
|
|
@@ -438,33 +748,137 @@
|
|
|
438
748
|
"tier": "presentation",
|
|
439
749
|
"type": "boolean"
|
|
440
750
|
},
|
|
751
|
+
"showTickLabels": {
|
|
752
|
+
"default": false,
|
|
753
|
+
"description": "Draw numeric labels on grid lines (default false).",
|
|
754
|
+
"label": "Show Tick Labels",
|
|
755
|
+
"tier": "presentation",
|
|
756
|
+
"type": "boolean"
|
|
757
|
+
},
|
|
441
758
|
"title": {
|
|
442
759
|
"description": "title prop",
|
|
443
760
|
"label": "Title",
|
|
444
761
|
"tier": "presentation",
|
|
445
762
|
"type": "string"
|
|
446
763
|
},
|
|
447
|
-
"
|
|
764
|
+
"traces": {
|
|
448
765
|
"default": [],
|
|
449
|
-
"description": "
|
|
766
|
+
"description": "Inset sparkline panels, forwarded verbatim to LearningCanvas.",
|
|
450
767
|
"items": {
|
|
451
768
|
"properties": {
|
|
452
|
-
"
|
|
453
|
-
"name": "
|
|
769
|
+
"backgroundColor": {
|
|
770
|
+
"name": "backgroundColor",
|
|
454
771
|
"required": false,
|
|
455
772
|
"type": "string"
|
|
456
773
|
},
|
|
457
|
-
"
|
|
458
|
-
"name": "
|
|
774
|
+
"backgroundOpacity": {
|
|
775
|
+
"name": "backgroundOpacity",
|
|
459
776
|
"required": false,
|
|
460
|
-
"type": "string"
|
|
461
|
-
},
|
|
462
|
-
"vx": {
|
|
463
|
-
"name": "vx",
|
|
464
|
-
"required": true,
|
|
465
777
|
"type": "number"
|
|
466
778
|
},
|
|
467
|
-
"
|
|
779
|
+
"frameColor": {
|
|
780
|
+
"name": "frameColor",
|
|
781
|
+
"required": false,
|
|
782
|
+
"type": "string"
|
|
783
|
+
},
|
|
784
|
+
"height": {
|
|
785
|
+
"name": "height",
|
|
786
|
+
"required": false,
|
|
787
|
+
"type": "number"
|
|
788
|
+
},
|
|
789
|
+
"series": {
|
|
790
|
+
"items": {
|
|
791
|
+
"properties": {
|
|
792
|
+
"color": {
|
|
793
|
+
"name": "color",
|
|
794
|
+
"required": false,
|
|
795
|
+
"type": "string"
|
|
796
|
+
},
|
|
797
|
+
"label": {
|
|
798
|
+
"name": "label",
|
|
799
|
+
"required": false,
|
|
800
|
+
"type": "string"
|
|
801
|
+
},
|
|
802
|
+
"samples": {
|
|
803
|
+
"items": {
|
|
804
|
+
"properties": {
|
|
805
|
+
"x": {
|
|
806
|
+
"name": "x",
|
|
807
|
+
"required": true,
|
|
808
|
+
"type": "number"
|
|
809
|
+
},
|
|
810
|
+
"y": {
|
|
811
|
+
"name": "y",
|
|
812
|
+
"required": true,
|
|
813
|
+
"type": "number"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
"type": "object"
|
|
817
|
+
},
|
|
818
|
+
"name": "samples",
|
|
819
|
+
"required": true,
|
|
820
|
+
"type": "array"
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
"type": "object"
|
|
824
|
+
},
|
|
825
|
+
"name": "series",
|
|
826
|
+
"required": true,
|
|
827
|
+
"type": "array"
|
|
828
|
+
},
|
|
829
|
+
"width": {
|
|
830
|
+
"name": "width",
|
|
831
|
+
"required": false,
|
|
832
|
+
"type": "number"
|
|
833
|
+
},
|
|
834
|
+
"x": {
|
|
835
|
+
"name": "x",
|
|
836
|
+
"required": false,
|
|
837
|
+
"type": "number"
|
|
838
|
+
},
|
|
839
|
+
"xLabel": {
|
|
840
|
+
"name": "xLabel",
|
|
841
|
+
"required": false,
|
|
842
|
+
"type": "string"
|
|
843
|
+
},
|
|
844
|
+
"y": {
|
|
845
|
+
"name": "y",
|
|
846
|
+
"required": false,
|
|
847
|
+
"type": "number"
|
|
848
|
+
},
|
|
849
|
+
"yLabel": {
|
|
850
|
+
"name": "yLabel",
|
|
851
|
+
"required": false,
|
|
852
|
+
"type": "string"
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
"type": "object"
|
|
856
|
+
},
|
|
857
|
+
"label": "Traces",
|
|
858
|
+
"tier": "presentation",
|
|
859
|
+
"type": "[MathCanvasTracesItem]"
|
|
860
|
+
},
|
|
861
|
+
"vectors": {
|
|
862
|
+
"default": [],
|
|
863
|
+
"description": "vectors prop",
|
|
864
|
+
"items": {
|
|
865
|
+
"properties": {
|
|
866
|
+
"color": {
|
|
867
|
+
"name": "color",
|
|
868
|
+
"required": false,
|
|
869
|
+
"type": "string"
|
|
870
|
+
},
|
|
871
|
+
"label": {
|
|
872
|
+
"name": "label",
|
|
873
|
+
"required": false,
|
|
874
|
+
"type": "string"
|
|
875
|
+
},
|
|
876
|
+
"vx": {
|
|
877
|
+
"name": "vx",
|
|
878
|
+
"required": true,
|
|
879
|
+
"type": "number"
|
|
880
|
+
},
|
|
881
|
+
"vy": {
|
|
468
882
|
"name": "vy",
|
|
469
883
|
"required": true,
|
|
470
884
|
"type": "number"
|
|
@@ -605,6 +1019,10 @@
|
|
|
605
1019
|
],
|
|
606
1020
|
"required": true,
|
|
607
1021
|
"type": "[object]"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"name": "dash",
|
|
1025
|
+
"type": "string"
|
|
608
1026
|
}
|
|
609
1027
|
],
|
|
610
1028
|
"type": "[object]"
|
|
@@ -633,6 +1051,10 @@
|
|
|
633
1051
|
{
|
|
634
1052
|
"name": "radius",
|
|
635
1053
|
"type": "number"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"name": "style",
|
|
1057
|
+
"type": "string"
|
|
636
1058
|
}
|
|
637
1059
|
],
|
|
638
1060
|
"type": "[object]"
|
|
@@ -671,6 +1093,184 @@
|
|
|
671
1093
|
],
|
|
672
1094
|
"type": "[object]"
|
|
673
1095
|
},
|
|
1096
|
+
{
|
|
1097
|
+
"name": "regions",
|
|
1098
|
+
"properties": [
|
|
1099
|
+
{
|
|
1100
|
+
"name": "samples",
|
|
1101
|
+
"properties": [
|
|
1102
|
+
{
|
|
1103
|
+
"name": "x",
|
|
1104
|
+
"required": true,
|
|
1105
|
+
"type": "number"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"name": "y",
|
|
1109
|
+
"required": true,
|
|
1110
|
+
"type": "number"
|
|
1111
|
+
}
|
|
1112
|
+
],
|
|
1113
|
+
"required": true,
|
|
1114
|
+
"type": "[object]"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"name": "samples2",
|
|
1118
|
+
"properties": [
|
|
1119
|
+
{
|
|
1120
|
+
"name": "x",
|
|
1121
|
+
"required": true,
|
|
1122
|
+
"type": "number"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"name": "y",
|
|
1126
|
+
"required": true,
|
|
1127
|
+
"type": "number"
|
|
1128
|
+
}
|
|
1129
|
+
],
|
|
1130
|
+
"type": "[object]"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"name": "baseline",
|
|
1134
|
+
"type": "number"
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"name": "color",
|
|
1138
|
+
"type": "string"
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"name": "opacity",
|
|
1142
|
+
"type": "number"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"name": "label",
|
|
1146
|
+
"type": "string"
|
|
1147
|
+
}
|
|
1148
|
+
],
|
|
1149
|
+
"type": "[object]"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"name": "bars",
|
|
1153
|
+
"properties": [
|
|
1154
|
+
{
|
|
1155
|
+
"name": "x",
|
|
1156
|
+
"required": true,
|
|
1157
|
+
"type": "number"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"name": "width",
|
|
1161
|
+
"required": true,
|
|
1162
|
+
"type": "number"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"name": "y0",
|
|
1166
|
+
"type": "number"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"name": "y1",
|
|
1170
|
+
"required": true,
|
|
1171
|
+
"type": "number"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"name": "color",
|
|
1175
|
+
"type": "string"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"name": "opacity",
|
|
1179
|
+
"type": "number"
|
|
1180
|
+
}
|
|
1181
|
+
],
|
|
1182
|
+
"type": "[object]"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"name": "guides",
|
|
1186
|
+
"properties": [
|
|
1187
|
+
{
|
|
1188
|
+
"name": "kind",
|
|
1189
|
+
"required": true,
|
|
1190
|
+
"type": "string"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"name": "at",
|
|
1194
|
+
"required": true,
|
|
1195
|
+
"type": "number"
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"name": "color",
|
|
1199
|
+
"type": "string"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"name": "dash",
|
|
1203
|
+
"type": "string"
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"name": "label",
|
|
1207
|
+
"type": "string"
|
|
1208
|
+
}
|
|
1209
|
+
],
|
|
1210
|
+
"type": "[object]"
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"name": "angles",
|
|
1214
|
+
"properties": [
|
|
1215
|
+
{
|
|
1216
|
+
"name": "x",
|
|
1217
|
+
"required": true,
|
|
1218
|
+
"type": "number"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"name": "y",
|
|
1222
|
+
"required": true,
|
|
1223
|
+
"type": "number"
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"name": "from",
|
|
1227
|
+
"required": true,
|
|
1228
|
+
"type": "number"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"name": "to",
|
|
1232
|
+
"required": true,
|
|
1233
|
+
"type": "number"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"name": "radius",
|
|
1237
|
+
"type": "number"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"name": "color",
|
|
1241
|
+
"type": "string"
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"name": "label",
|
|
1245
|
+
"type": "string"
|
|
1246
|
+
}
|
|
1247
|
+
],
|
|
1248
|
+
"type": "[object]"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"name": "hops",
|
|
1252
|
+
"properties": [
|
|
1253
|
+
{
|
|
1254
|
+
"name": "from",
|
|
1255
|
+
"required": true,
|
|
1256
|
+
"type": "number"
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"name": "to",
|
|
1260
|
+
"required": true,
|
|
1261
|
+
"type": "number"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"name": "color",
|
|
1265
|
+
"type": "string"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"name": "label",
|
|
1269
|
+
"type": "string"
|
|
1270
|
+
}
|
|
1271
|
+
],
|
|
1272
|
+
"type": "[object]"
|
|
1273
|
+
},
|
|
674
1274
|
{
|
|
675
1275
|
"name": "shapes",
|
|
676
1276
|
"properties": [
|
|
@@ -786,6 +1386,112 @@
|
|
|
786
1386
|
{
|
|
787
1387
|
"name": "opacity",
|
|
788
1388
|
"type": "number"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"name": "startAngle",
|
|
1392
|
+
"type": "number"
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
"name": "endAngle",
|
|
1396
|
+
"type": "number"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"name": "dash",
|
|
1400
|
+
"type": "string"
|
|
1401
|
+
}
|
|
1402
|
+
],
|
|
1403
|
+
"type": "[object]"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"name": "readouts",
|
|
1407
|
+
"properties": [
|
|
1408
|
+
{
|
|
1409
|
+
"name": "label",
|
|
1410
|
+
"required": true,
|
|
1411
|
+
"type": "string"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"name": "value",
|
|
1415
|
+
"required": true,
|
|
1416
|
+
"type": "string"
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
"name": "color",
|
|
1420
|
+
"type": "string"
|
|
1421
|
+
}
|
|
1422
|
+
],
|
|
1423
|
+
"type": "[object]"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"name": "traces",
|
|
1427
|
+
"properties": [
|
|
1428
|
+
{
|
|
1429
|
+
"name": "x",
|
|
1430
|
+
"type": "number"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"name": "y",
|
|
1434
|
+
"type": "number"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"name": "width",
|
|
1438
|
+
"type": "number"
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"name": "height",
|
|
1442
|
+
"type": "number"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"name": "series",
|
|
1446
|
+
"properties": [
|
|
1447
|
+
{
|
|
1448
|
+
"name": "samples",
|
|
1449
|
+
"properties": [
|
|
1450
|
+
{
|
|
1451
|
+
"name": "x",
|
|
1452
|
+
"required": true,
|
|
1453
|
+
"type": "number"
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
"name": "y",
|
|
1457
|
+
"required": true,
|
|
1458
|
+
"type": "number"
|
|
1459
|
+
}
|
|
1460
|
+
],
|
|
1461
|
+
"required": true,
|
|
1462
|
+
"type": "[object]"
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
"name": "color",
|
|
1466
|
+
"type": "string"
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
"name": "label",
|
|
1470
|
+
"type": "string"
|
|
1471
|
+
}
|
|
1472
|
+
],
|
|
1473
|
+
"required": true,
|
|
1474
|
+
"type": "[object]"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"name": "xLabel",
|
|
1478
|
+
"type": "string"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"name": "yLabel",
|
|
1482
|
+
"type": "string"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"name": "frameColor",
|
|
1486
|
+
"type": "string"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"name": "backgroundColor",
|
|
1490
|
+
"type": "string"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"name": "backgroundOpacity",
|
|
1494
|
+
"type": "number"
|
|
789
1495
|
}
|
|
790
1496
|
],
|
|
791
1497
|
"type": "[object]"
|
|
@@ -836,20 +1542,29 @@
|
|
|
836
1542
|
"render-ui",
|
|
837
1543
|
"main",
|
|
838
1544
|
{
|
|
1545
|
+
"angles": "@config.angles",
|
|
839
1546
|
"animate": "@config.animate",
|
|
1547
|
+
"bars": "@config.bars",
|
|
840
1548
|
"className": "@config.className",
|
|
841
1549
|
"curves": "@config.curves",
|
|
842
1550
|
"error": "@config.error",
|
|
843
1551
|
"gridStep": "@config.gridStep",
|
|
1552
|
+
"guides": "@config.guides",
|
|
844
1553
|
"height": "@config.height",
|
|
1554
|
+
"hops": "@config.hops",
|
|
845
1555
|
"interactive": "@config.interactive",
|
|
846
1556
|
"isLoading": "@config.isLoading",
|
|
847
1557
|
"onShapeClick": "@config.onShapeClick",
|
|
848
1558
|
"points": "@config.points",
|
|
1559
|
+
"readouts": "@config.readouts",
|
|
1560
|
+
"regions": "@config.regions",
|
|
849
1561
|
"shapes": "@config.shapes",
|
|
850
1562
|
"showAxes": "@config.showAxes",
|
|
1563
|
+
"showCurveLabels": "@config.showCurveLabels",
|
|
851
1564
|
"showGrid": "@config.showGrid",
|
|
1565
|
+
"showTickLabels": "@config.showTickLabels",
|
|
852
1566
|
"title": "@config.title",
|
|
1567
|
+
"traces": "@config.traces",
|
|
853
1568
|
"type": "math-canvas",
|
|
854
1569
|
"vectors": "@config.vectors",
|
|
855
1570
|
"width": "@config.width",
|
|
@@ -871,20 +1586,29 @@
|
|
|
871
1586
|
"render-ui",
|
|
872
1587
|
"main",
|
|
873
1588
|
{
|
|
1589
|
+
"angles": "@payload.angles",
|
|
874
1590
|
"animate": "@config.animate",
|
|
1591
|
+
"bars": "@payload.bars",
|
|
875
1592
|
"className": "@config.className",
|
|
876
1593
|
"curves": "@payload.curves",
|
|
877
1594
|
"error": "@config.error",
|
|
878
1595
|
"gridStep": "@config.gridStep",
|
|
1596
|
+
"guides": "@payload.guides",
|
|
879
1597
|
"height": "@config.height",
|
|
1598
|
+
"hops": "@payload.hops",
|
|
880
1599
|
"interactive": "@config.interactive",
|
|
881
1600
|
"isLoading": "@config.isLoading",
|
|
882
1601
|
"onShapeClick": "@config.onShapeClick",
|
|
883
1602
|
"points": "@payload.points",
|
|
1603
|
+
"readouts": "@payload.readouts",
|
|
1604
|
+
"regions": "@payload.regions",
|
|
884
1605
|
"shapes": "@payload.shapes",
|
|
885
1606
|
"showAxes": "@config.showAxes",
|
|
1607
|
+
"showCurveLabels": "@config.showCurveLabels",
|
|
886
1608
|
"showGrid": "@config.showGrid",
|
|
1609
|
+
"showTickLabels": "@config.showTickLabels",
|
|
887
1610
|
"title": "@config.title",
|
|
1611
|
+
"traces": "@payload.traces",
|
|
888
1612
|
"type": "math-canvas",
|
|
889
1613
|
"vectors": "@payload.vectors",
|
|
890
1614
|
"width": "@config.width",
|