@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
|
@@ -105,6 +105,33 @@
|
|
|
105
105
|
"tier": "presentation",
|
|
106
106
|
"type": "boolean"
|
|
107
107
|
},
|
|
108
|
+
"auxBars": {
|
|
109
|
+
"default": [],
|
|
110
|
+
"description": "Secondary bar strip inside the bars panel (e.g. a running total beside the primary values).",
|
|
111
|
+
"items": {
|
|
112
|
+
"properties": {
|
|
113
|
+
"color": {
|
|
114
|
+
"name": "color",
|
|
115
|
+
"required": false,
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
"label": {
|
|
119
|
+
"name": "label",
|
|
120
|
+
"required": false,
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"value": {
|
|
124
|
+
"name": "value",
|
|
125
|
+
"required": true,
|
|
126
|
+
"type": "number"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"type": "object"
|
|
130
|
+
},
|
|
131
|
+
"label": "Aux Bars",
|
|
132
|
+
"tier": "presentation",
|
|
133
|
+
"type": "[AlgorithmCanvasAuxBarsItem]"
|
|
134
|
+
},
|
|
108
135
|
"backgroundColor": {
|
|
109
136
|
"description": "backgroundColor prop",
|
|
110
137
|
"label": "Background Color",
|
|
@@ -138,6 +165,53 @@
|
|
|
138
165
|
"tier": "presentation",
|
|
139
166
|
"type": "[AlgorithmCanvasBarsItem]"
|
|
140
167
|
},
|
|
168
|
+
"buckets": {
|
|
169
|
+
"default": [],
|
|
170
|
+
"description": "Hash-table buckets; each row is an index chip plus its chained entries.",
|
|
171
|
+
"items": {
|
|
172
|
+
"properties": {
|
|
173
|
+
"entries": {
|
|
174
|
+
"items": {
|
|
175
|
+
"properties": {
|
|
176
|
+
"color": {
|
|
177
|
+
"name": "color",
|
|
178
|
+
"required": false,
|
|
179
|
+
"type": "string"
|
|
180
|
+
},
|
|
181
|
+
"label": {
|
|
182
|
+
"name": "label",
|
|
183
|
+
"required": true,
|
|
184
|
+
"type": "string"
|
|
185
|
+
},
|
|
186
|
+
"state": {
|
|
187
|
+
"name": "state",
|
|
188
|
+
"required": false,
|
|
189
|
+
"type": "string",
|
|
190
|
+
"values": [
|
|
191
|
+
"default",
|
|
192
|
+
"highlight",
|
|
193
|
+
"probing"
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"type": "object"
|
|
198
|
+
},
|
|
199
|
+
"name": "entries",
|
|
200
|
+
"required": true,
|
|
201
|
+
"type": "array"
|
|
202
|
+
},
|
|
203
|
+
"index": {
|
|
204
|
+
"name": "index",
|
|
205
|
+
"required": true,
|
|
206
|
+
"type": "number"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"type": "object"
|
|
210
|
+
},
|
|
211
|
+
"label": "Buckets",
|
|
212
|
+
"tier": "presentation",
|
|
213
|
+
"type": "[AlgorithmCanvasBucketsItem]"
|
|
214
|
+
},
|
|
141
215
|
"cells": {
|
|
142
216
|
"default": [],
|
|
143
217
|
"description": "Grid/array/DP cells; laid out on a row/col lattice sized to the extent.",
|
|
@@ -153,6 +227,33 @@
|
|
|
153
227
|
"required": false,
|
|
154
228
|
"type": "string"
|
|
155
229
|
},
|
|
230
|
+
"corner": {
|
|
231
|
+
"name": "corner",
|
|
232
|
+
"properties": {
|
|
233
|
+
"bl": {
|
|
234
|
+
"name": "bl",
|
|
235
|
+
"required": false,
|
|
236
|
+
"type": "string"
|
|
237
|
+
},
|
|
238
|
+
"br": {
|
|
239
|
+
"name": "br",
|
|
240
|
+
"required": false,
|
|
241
|
+
"type": "string"
|
|
242
|
+
},
|
|
243
|
+
"tl": {
|
|
244
|
+
"name": "tl",
|
|
245
|
+
"required": false,
|
|
246
|
+
"type": "string"
|
|
247
|
+
},
|
|
248
|
+
"tr": {
|
|
249
|
+
"name": "tr",
|
|
250
|
+
"required": false,
|
|
251
|
+
"type": "string"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"required": false,
|
|
255
|
+
"type": "object"
|
|
256
|
+
},
|
|
156
257
|
"label": {
|
|
157
258
|
"name": "label",
|
|
158
259
|
"required": false,
|
|
@@ -181,6 +282,33 @@
|
|
|
181
282
|
"tier": "presentation",
|
|
182
283
|
"type": "string"
|
|
183
284
|
},
|
|
285
|
+
"colLabels": {
|
|
286
|
+
"default": [],
|
|
287
|
+
"description": "Column-header labels drawn above the cells grid.",
|
|
288
|
+
"items": {
|
|
289
|
+
"properties": {
|
|
290
|
+
"color": {
|
|
291
|
+
"name": "color",
|
|
292
|
+
"required": false,
|
|
293
|
+
"type": "string"
|
|
294
|
+
},
|
|
295
|
+
"index": {
|
|
296
|
+
"name": "index",
|
|
297
|
+
"required": true,
|
|
298
|
+
"type": "number"
|
|
299
|
+
},
|
|
300
|
+
"text": {
|
|
301
|
+
"name": "text",
|
|
302
|
+
"required": true,
|
|
303
|
+
"type": "string"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"type": "object"
|
|
307
|
+
},
|
|
308
|
+
"label": "Col Labels",
|
|
309
|
+
"tier": "presentation",
|
|
310
|
+
"type": "[AlgorithmCanvasColLabelsItem]"
|
|
311
|
+
},
|
|
184
312
|
"error": {
|
|
185
313
|
"description": "error prop",
|
|
186
314
|
"label": "Error",
|
|
@@ -209,6 +337,43 @@
|
|
|
209
337
|
"tier": "presentation",
|
|
210
338
|
"type": "AlgorithmCanvasError"
|
|
211
339
|
},
|
|
340
|
+
"frames": {
|
|
341
|
+
"default": [],
|
|
342
|
+
"description": "Recursion/call-stack frames; laid out bottom-up like a real call stack.",
|
|
343
|
+
"items": {
|
|
344
|
+
"properties": {
|
|
345
|
+
"color": {
|
|
346
|
+
"name": "color",
|
|
347
|
+
"required": false,
|
|
348
|
+
"type": "string"
|
|
349
|
+
},
|
|
350
|
+
"detail": {
|
|
351
|
+
"name": "detail",
|
|
352
|
+
"required": false,
|
|
353
|
+
"type": "string"
|
|
354
|
+
},
|
|
355
|
+
"label": {
|
|
356
|
+
"name": "label",
|
|
357
|
+
"required": true,
|
|
358
|
+
"type": "string"
|
|
359
|
+
},
|
|
360
|
+
"state": {
|
|
361
|
+
"name": "state",
|
|
362
|
+
"required": false,
|
|
363
|
+
"type": "string",
|
|
364
|
+
"values": [
|
|
365
|
+
"active",
|
|
366
|
+
"returning",
|
|
367
|
+
"done"
|
|
368
|
+
]
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"type": "object"
|
|
372
|
+
},
|
|
373
|
+
"label": "Frames",
|
|
374
|
+
"tier": "presentation",
|
|
375
|
+
"type": "[AlgorithmCanvasFramesItem]"
|
|
376
|
+
},
|
|
212
377
|
"height": {
|
|
213
378
|
"default": 400.0,
|
|
214
379
|
"description": "height prop",
|
|
@@ -238,7 +403,7 @@
|
|
|
238
403
|
},
|
|
239
404
|
"pointers": {
|
|
240
405
|
"default": [],
|
|
241
|
-
"description": "Index cursors (i/j/lo/hi/mid); drawn as markers beneath the referenced bar/
|
|
406
|
+
"description": "Index cursors (i/j/lo/hi/mid); drawn as markers beneath the referenced bar/slot column.",
|
|
242
407
|
"items": {
|
|
243
408
|
"properties": {
|
|
244
409
|
"color": {
|
|
@@ -263,6 +428,74 @@
|
|
|
263
428
|
"tier": "presentation",
|
|
264
429
|
"type": "[AlgorithmCanvasPointersItem]"
|
|
265
430
|
},
|
|
431
|
+
"ranges": {
|
|
432
|
+
"default": [],
|
|
433
|
+
"description": "Highlighted index ranges over the bars panel (translucent fill bands or labeled brackets).",
|
|
434
|
+
"items": {
|
|
435
|
+
"properties": {
|
|
436
|
+
"color": {
|
|
437
|
+
"name": "color",
|
|
438
|
+
"required": false,
|
|
439
|
+
"type": "string"
|
|
440
|
+
},
|
|
441
|
+
"from": {
|
|
442
|
+
"name": "from",
|
|
443
|
+
"required": true,
|
|
444
|
+
"type": "number"
|
|
445
|
+
},
|
|
446
|
+
"kind": {
|
|
447
|
+
"name": "kind",
|
|
448
|
+
"required": false,
|
|
449
|
+
"type": "string",
|
|
450
|
+
"values": [
|
|
451
|
+
"fill",
|
|
452
|
+
"bracket"
|
|
453
|
+
]
|
|
454
|
+
},
|
|
455
|
+
"label": {
|
|
456
|
+
"name": "label",
|
|
457
|
+
"required": false,
|
|
458
|
+
"type": "string"
|
|
459
|
+
},
|
|
460
|
+
"to": {
|
|
461
|
+
"name": "to",
|
|
462
|
+
"required": true,
|
|
463
|
+
"type": "number"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"type": "object"
|
|
467
|
+
},
|
|
468
|
+
"label": "Ranges",
|
|
469
|
+
"tier": "presentation",
|
|
470
|
+
"type": "[AlgorithmCanvasRangesItem]"
|
|
471
|
+
},
|
|
472
|
+
"rowLabels": {
|
|
473
|
+
"default": [],
|
|
474
|
+
"description": "Row-header labels drawn to the left of the cells grid.",
|
|
475
|
+
"items": {
|
|
476
|
+
"properties": {
|
|
477
|
+
"color": {
|
|
478
|
+
"name": "color",
|
|
479
|
+
"required": false,
|
|
480
|
+
"type": "string"
|
|
481
|
+
},
|
|
482
|
+
"index": {
|
|
483
|
+
"name": "index",
|
|
484
|
+
"required": true,
|
|
485
|
+
"type": "number"
|
|
486
|
+
},
|
|
487
|
+
"text": {
|
|
488
|
+
"name": "text",
|
|
489
|
+
"required": true,
|
|
490
|
+
"type": "string"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"type": "object"
|
|
494
|
+
},
|
|
495
|
+
"label": "Row Labels",
|
|
496
|
+
"tier": "presentation",
|
|
497
|
+
"type": "[AlgorithmCanvasRowLabelsItem]"
|
|
498
|
+
},
|
|
266
499
|
"shapes": {
|
|
267
500
|
"default": [],
|
|
268
501
|
"description": "Extra declarative shapes in canvas pixel coordinates.",
|
|
@@ -292,6 +525,20 @@
|
|
|
292
525
|
"required": false,
|
|
293
526
|
"type": "string"
|
|
294
527
|
},
|
|
528
|
+
"dash": {
|
|
529
|
+
"name": "dash",
|
|
530
|
+
"required": false,
|
|
531
|
+
"type": "string",
|
|
532
|
+
"values": [
|
|
533
|
+
"dashed",
|
|
534
|
+
"dotted"
|
|
535
|
+
]
|
|
536
|
+
},
|
|
537
|
+
"endAngle": {
|
|
538
|
+
"name": "endAngle",
|
|
539
|
+
"required": false,
|
|
540
|
+
"type": "number"
|
|
541
|
+
},
|
|
295
542
|
"fill": {
|
|
296
543
|
"name": "fill",
|
|
297
544
|
"required": false,
|
|
@@ -367,6 +614,11 @@
|
|
|
367
614
|
"required": false,
|
|
368
615
|
"type": "number"
|
|
369
616
|
},
|
|
617
|
+
"startAngle": {
|
|
618
|
+
"name": "startAngle",
|
|
619
|
+
"required": false,
|
|
620
|
+
"type": "number"
|
|
621
|
+
},
|
|
370
622
|
"step": {
|
|
371
623
|
"name": "step",
|
|
372
624
|
"required": false,
|
|
@@ -385,6 +637,7 @@
|
|
|
385
637
|
"line",
|
|
386
638
|
"arrow",
|
|
387
639
|
"circle",
|
|
640
|
+
"ellipse",
|
|
388
641
|
"rect",
|
|
389
642
|
"polygon",
|
|
390
643
|
"path",
|
|
@@ -435,6 +688,49 @@
|
|
|
435
688
|
"tier": "presentation",
|
|
436
689
|
"type": "[AlgorithmCanvasShapesItem]"
|
|
437
690
|
},
|
|
691
|
+
"slotOrientation": {
|
|
692
|
+
"default": "horizontal",
|
|
693
|
+
"description": "Slot stack direction; horizontal lays slots left-to-right, vertical stacks bottom-up.",
|
|
694
|
+
"label": "Slot Orientation",
|
|
695
|
+
"tier": "presentation",
|
|
696
|
+
"type": "string",
|
|
697
|
+
"values": [
|
|
698
|
+
"horizontal",
|
|
699
|
+
"vertical"
|
|
700
|
+
]
|
|
701
|
+
},
|
|
702
|
+
"slots": {
|
|
703
|
+
"default": [],
|
|
704
|
+
"description": "Discrete value slots (registers/variables); laid out in a row or a vertical stack.",
|
|
705
|
+
"items": {
|
|
706
|
+
"properties": {
|
|
707
|
+
"color": {
|
|
708
|
+
"name": "color",
|
|
709
|
+
"required": false,
|
|
710
|
+
"type": "string"
|
|
711
|
+
},
|
|
712
|
+
"state": {
|
|
713
|
+
"name": "state",
|
|
714
|
+
"required": false,
|
|
715
|
+
"type": "string",
|
|
716
|
+
"values": [
|
|
717
|
+
"empty",
|
|
718
|
+
"filled",
|
|
719
|
+
"highlight"
|
|
720
|
+
]
|
|
721
|
+
},
|
|
722
|
+
"value": {
|
|
723
|
+
"name": "value",
|
|
724
|
+
"required": false,
|
|
725
|
+
"type": "string"
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
"type": "object"
|
|
729
|
+
},
|
|
730
|
+
"label": "Slots",
|
|
731
|
+
"tier": "presentation",
|
|
732
|
+
"type": "[AlgorithmCanvasSlotsItem]"
|
|
733
|
+
},
|
|
438
734
|
"title": {
|
|
439
735
|
"description": "title prop",
|
|
440
736
|
"label": "Title",
|
|
@@ -548,6 +844,28 @@
|
|
|
548
844
|
{
|
|
549
845
|
"name": "label",
|
|
550
846
|
"type": "string"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"name": "corner",
|
|
850
|
+
"properties": [
|
|
851
|
+
{
|
|
852
|
+
"name": "tl",
|
|
853
|
+
"type": "string"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"name": "tr",
|
|
857
|
+
"type": "string"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"name": "bl",
|
|
861
|
+
"type": "string"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"name": "br",
|
|
865
|
+
"type": "string"
|
|
866
|
+
}
|
|
867
|
+
],
|
|
868
|
+
"type": "object"
|
|
551
869
|
}
|
|
552
870
|
],
|
|
553
871
|
"type": "[object]"
|
|
@@ -571,6 +889,165 @@
|
|
|
571
889
|
],
|
|
572
890
|
"type": "[object]"
|
|
573
891
|
},
|
|
892
|
+
{
|
|
893
|
+
"name": "ranges",
|
|
894
|
+
"properties": [
|
|
895
|
+
{
|
|
896
|
+
"name": "from",
|
|
897
|
+
"required": true,
|
|
898
|
+
"type": "number"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "to",
|
|
902
|
+
"required": true,
|
|
903
|
+
"type": "number"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"name": "color",
|
|
907
|
+
"type": "string"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"name": "label",
|
|
911
|
+
"type": "string"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"name": "kind",
|
|
915
|
+
"type": "string"
|
|
916
|
+
}
|
|
917
|
+
],
|
|
918
|
+
"type": "[object]"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"name": "slots",
|
|
922
|
+
"properties": [
|
|
923
|
+
{
|
|
924
|
+
"name": "value",
|
|
925
|
+
"type": "string"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"name": "state",
|
|
929
|
+
"type": "string"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"name": "color",
|
|
933
|
+
"type": "string"
|
|
934
|
+
}
|
|
935
|
+
],
|
|
936
|
+
"type": "[object]"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"name": "frames",
|
|
940
|
+
"properties": [
|
|
941
|
+
{
|
|
942
|
+
"name": "label",
|
|
943
|
+
"required": true,
|
|
944
|
+
"type": "string"
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"name": "detail",
|
|
948
|
+
"type": "string"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"name": "state",
|
|
952
|
+
"type": "string"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"name": "color",
|
|
956
|
+
"type": "string"
|
|
957
|
+
}
|
|
958
|
+
],
|
|
959
|
+
"type": "[object]"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"name": "buckets",
|
|
963
|
+
"properties": [
|
|
964
|
+
{
|
|
965
|
+
"name": "index",
|
|
966
|
+
"required": true,
|
|
967
|
+
"type": "number"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"name": "entries",
|
|
971
|
+
"properties": [
|
|
972
|
+
{
|
|
973
|
+
"name": "label",
|
|
974
|
+
"required": true,
|
|
975
|
+
"type": "string"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"name": "state",
|
|
979
|
+
"type": "string"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"name": "color",
|
|
983
|
+
"type": "string"
|
|
984
|
+
}
|
|
985
|
+
],
|
|
986
|
+
"required": true,
|
|
987
|
+
"type": "[object]"
|
|
988
|
+
}
|
|
989
|
+
],
|
|
990
|
+
"type": "[object]"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"name": "auxBars",
|
|
994
|
+
"properties": [
|
|
995
|
+
{
|
|
996
|
+
"name": "value",
|
|
997
|
+
"required": true,
|
|
998
|
+
"type": "number"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"name": "color",
|
|
1002
|
+
"type": "string"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"name": "label",
|
|
1006
|
+
"type": "string"
|
|
1007
|
+
}
|
|
1008
|
+
],
|
|
1009
|
+
"type": "[object]"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"name": "rowLabels",
|
|
1013
|
+
"properties": [
|
|
1014
|
+
{
|
|
1015
|
+
"name": "index",
|
|
1016
|
+
"required": true,
|
|
1017
|
+
"type": "number"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"name": "text",
|
|
1021
|
+
"required": true,
|
|
1022
|
+
"type": "string"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"name": "color",
|
|
1026
|
+
"type": "string"
|
|
1027
|
+
}
|
|
1028
|
+
],
|
|
1029
|
+
"type": "[object]"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"name": "colLabels",
|
|
1033
|
+
"properties": [
|
|
1034
|
+
{
|
|
1035
|
+
"name": "index",
|
|
1036
|
+
"required": true,
|
|
1037
|
+
"type": "number"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"name": "text",
|
|
1041
|
+
"required": true,
|
|
1042
|
+
"type": "string"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"name": "color",
|
|
1046
|
+
"type": "string"
|
|
1047
|
+
}
|
|
1048
|
+
],
|
|
1049
|
+
"type": "[object]"
|
|
1050
|
+
},
|
|
574
1051
|
{
|
|
575
1052
|
"name": "shapes",
|
|
576
1053
|
"properties": [
|
|
@@ -686,6 +1163,18 @@
|
|
|
686
1163
|
{
|
|
687
1164
|
"name": "opacity",
|
|
688
1165
|
"type": "number"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"name": "startAngle",
|
|
1169
|
+
"type": "number"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"name": "endAngle",
|
|
1173
|
+
"type": "number"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"name": "dash",
|
|
1177
|
+
"type": "string"
|
|
689
1178
|
}
|
|
690
1179
|
],
|
|
691
1180
|
"type": "[object]"
|
|
@@ -737,17 +1226,25 @@
|
|
|
737
1226
|
"main",
|
|
738
1227
|
{
|
|
739
1228
|
"animate": "@config.animate",
|
|
1229
|
+
"auxBars": "@config.auxBars",
|
|
740
1230
|
"backgroundColor": "@config.backgroundColor",
|
|
741
1231
|
"bars": "@config.bars",
|
|
1232
|
+
"buckets": "@config.buckets",
|
|
742
1233
|
"cells": "@config.cells",
|
|
743
1234
|
"className": "@config.className",
|
|
1235
|
+
"colLabels": "@config.colLabels",
|
|
744
1236
|
"error": "@config.error",
|
|
1237
|
+
"frames": "@config.frames",
|
|
745
1238
|
"height": "@config.height",
|
|
746
1239
|
"interactive": "@config.interactive",
|
|
747
1240
|
"isLoading": "@config.isLoading",
|
|
748
1241
|
"onShapeClick": "@config.onShapeClick",
|
|
749
1242
|
"pointers": "@config.pointers",
|
|
1243
|
+
"ranges": "@config.ranges",
|
|
1244
|
+
"rowLabels": "@config.rowLabels",
|
|
750
1245
|
"shapes": "@config.shapes",
|
|
1246
|
+
"slotOrientation": "@config.slotOrientation",
|
|
1247
|
+
"slots": "@config.slots",
|
|
751
1248
|
"title": "@config.title",
|
|
752
1249
|
"type": "algorithm-canvas",
|
|
753
1250
|
"width": "@config.width"
|
|
@@ -766,17 +1263,25 @@
|
|
|
766
1263
|
"main",
|
|
767
1264
|
{
|
|
768
1265
|
"animate": "@config.animate",
|
|
1266
|
+
"auxBars": "@payload.auxBars",
|
|
769
1267
|
"backgroundColor": "@config.backgroundColor",
|
|
770
1268
|
"bars": "@payload.bars",
|
|
1269
|
+
"buckets": "@payload.buckets",
|
|
771
1270
|
"cells": "@payload.cells",
|
|
772
1271
|
"className": "@config.className",
|
|
1272
|
+
"colLabels": "@payload.colLabels",
|
|
773
1273
|
"error": "@config.error",
|
|
1274
|
+
"frames": "@payload.frames",
|
|
774
1275
|
"height": "@config.height",
|
|
775
1276
|
"interactive": "@config.interactive",
|
|
776
1277
|
"isLoading": "@config.isLoading",
|
|
777
1278
|
"onShapeClick": "@config.onShapeClick",
|
|
778
1279
|
"pointers": "@payload.pointers",
|
|
1280
|
+
"ranges": "@payload.ranges",
|
|
1281
|
+
"rowLabels": "@payload.rowLabels",
|
|
779
1282
|
"shapes": "@payload.shapes",
|
|
1283
|
+
"slotOrientation": "@config.slotOrientation",
|
|
1284
|
+
"slots": "@payload.slots",
|
|
780
1285
|
"title": "@config.title",
|
|
781
1286
|
"type": "algorithm-canvas",
|
|
782
1287
|
"width": "@config.width"
|