@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
|
@@ -152,6 +152,11 @@
|
|
|
152
152
|
"description": "atoms prop",
|
|
153
153
|
"items": {
|
|
154
154
|
"properties": {
|
|
155
|
+
"charge": {
|
|
156
|
+
"name": "charge",
|
|
157
|
+
"required": false,
|
|
158
|
+
"type": "string"
|
|
159
|
+
},
|
|
155
160
|
"color": {
|
|
156
161
|
"name": "color",
|
|
157
162
|
"required": false,
|
|
@@ -167,6 +172,11 @@
|
|
|
167
172
|
"required": false,
|
|
168
173
|
"type": "string"
|
|
169
174
|
},
|
|
175
|
+
"lonePairs": {
|
|
176
|
+
"name": "lonePairs",
|
|
177
|
+
"required": false,
|
|
178
|
+
"type": "number"
|
|
179
|
+
},
|
|
170
180
|
"radius": {
|
|
171
181
|
"name": "radius",
|
|
172
182
|
"required": false,
|
|
@@ -200,6 +210,17 @@
|
|
|
200
210
|
"tier": "presentation",
|
|
201
211
|
"type": "string"
|
|
202
212
|
},
|
|
213
|
+
"bondStyle": {
|
|
214
|
+
"default": "thick",
|
|
215
|
+
"description": "Bond line rendering: 'thick' varies stroke width by order (default), 'parallel' draws offset parallel strokes. 2D only.",
|
|
216
|
+
"label": "Bond Style",
|
|
217
|
+
"tier": "presentation",
|
|
218
|
+
"type": "string",
|
|
219
|
+
"values": [
|
|
220
|
+
"thick",
|
|
221
|
+
"parallel"
|
|
222
|
+
]
|
|
223
|
+
},
|
|
203
224
|
"bonds": {
|
|
204
225
|
"default": [],
|
|
205
226
|
"description": "bonds prop",
|
|
@@ -215,6 +236,17 @@
|
|
|
215
236
|
"required": true,
|
|
216
237
|
"type": "string"
|
|
217
238
|
},
|
|
239
|
+
"state": {
|
|
240
|
+
"name": "state",
|
|
241
|
+
"required": false,
|
|
242
|
+
"type": "string",
|
|
243
|
+
"values": [
|
|
244
|
+
"default",
|
|
245
|
+
"forming",
|
|
246
|
+
"breaking",
|
|
247
|
+
"highlight"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
218
250
|
"to": {
|
|
219
251
|
"name": "to",
|
|
220
252
|
"required": true,
|
|
@@ -250,6 +282,108 @@
|
|
|
250
282
|
"tier": "presentation",
|
|
251
283
|
"type": "string"
|
|
252
284
|
},
|
|
285
|
+
"containers": {
|
|
286
|
+
"default": [],
|
|
287
|
+
"description": "Beaker/flask/container outlines (2D only).",
|
|
288
|
+
"items": {
|
|
289
|
+
"properties": {
|
|
290
|
+
"color": {
|
|
291
|
+
"name": "color",
|
|
292
|
+
"required": false,
|
|
293
|
+
"type": "string"
|
|
294
|
+
},
|
|
295
|
+
"divider": {
|
|
296
|
+
"name": "divider",
|
|
297
|
+
"required": false,
|
|
298
|
+
"type": "string",
|
|
299
|
+
"values": [
|
|
300
|
+
"none",
|
|
301
|
+
"solid",
|
|
302
|
+
"dashed",
|
|
303
|
+
"dotted"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
"dividerColor": {
|
|
307
|
+
"name": "dividerColor",
|
|
308
|
+
"required": false,
|
|
309
|
+
"type": "string"
|
|
310
|
+
},
|
|
311
|
+
"fill": {
|
|
312
|
+
"name": "fill",
|
|
313
|
+
"required": false,
|
|
314
|
+
"type": "string"
|
|
315
|
+
},
|
|
316
|
+
"height": {
|
|
317
|
+
"name": "height",
|
|
318
|
+
"required": true,
|
|
319
|
+
"type": "number"
|
|
320
|
+
},
|
|
321
|
+
"label": {
|
|
322
|
+
"name": "label",
|
|
323
|
+
"required": false,
|
|
324
|
+
"type": "string"
|
|
325
|
+
},
|
|
326
|
+
"leftLabel": {
|
|
327
|
+
"name": "leftLabel",
|
|
328
|
+
"required": false,
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
331
|
+
"level": {
|
|
332
|
+
"name": "level",
|
|
333
|
+
"required": false,
|
|
334
|
+
"type": "number"
|
|
335
|
+
},
|
|
336
|
+
"levelColor": {
|
|
337
|
+
"name": "levelColor",
|
|
338
|
+
"required": false,
|
|
339
|
+
"type": "string"
|
|
340
|
+
},
|
|
341
|
+
"lineWidth": {
|
|
342
|
+
"name": "lineWidth",
|
|
343
|
+
"required": false,
|
|
344
|
+
"type": "number"
|
|
345
|
+
},
|
|
346
|
+
"rightLabel": {
|
|
347
|
+
"name": "rightLabel",
|
|
348
|
+
"required": false,
|
|
349
|
+
"type": "string"
|
|
350
|
+
},
|
|
351
|
+
"width": {
|
|
352
|
+
"name": "width",
|
|
353
|
+
"required": true,
|
|
354
|
+
"type": "number"
|
|
355
|
+
},
|
|
356
|
+
"x": {
|
|
357
|
+
"name": "x",
|
|
358
|
+
"required": true,
|
|
359
|
+
"type": "number"
|
|
360
|
+
},
|
|
361
|
+
"y": {
|
|
362
|
+
"name": "y",
|
|
363
|
+
"required": true,
|
|
364
|
+
"type": "number"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"type": "object"
|
|
368
|
+
},
|
|
369
|
+
"label": "Containers",
|
|
370
|
+
"synonyms": "beaker, flask, box, membrane, burette",
|
|
371
|
+
"tier": "presentation",
|
|
372
|
+
"type": "[ChemistryCanvasContainersItem]"
|
|
373
|
+
},
|
|
374
|
+
"equation": {
|
|
375
|
+
"description": "Reaction equation text centered at the top of the canvas. 2D only.",
|
|
376
|
+
"label": "Equation",
|
|
377
|
+
"synonyms": "reaction equation, formula",
|
|
378
|
+
"tier": "presentation",
|
|
379
|
+
"type": "string"
|
|
380
|
+
},
|
|
381
|
+
"equationColor": {
|
|
382
|
+
"description": "Equation text color (default '#111827').",
|
|
383
|
+
"label": "Equation Color",
|
|
384
|
+
"tier": "presentation",
|
|
385
|
+
"type": "string"
|
|
386
|
+
},
|
|
253
387
|
"error": {
|
|
254
388
|
"description": "error prop",
|
|
255
389
|
"label": "Error",
|
|
@@ -297,6 +431,164 @@
|
|
|
297
431
|
"tier": "presentation",
|
|
298
432
|
"type": "boolean"
|
|
299
433
|
},
|
|
434
|
+
"lattice3d": {
|
|
435
|
+
"description": "A 3D crystal lattice block (simple cubic, BCC, FCC, rock salt, diamond, ...). 3D only.",
|
|
436
|
+
"label": "Lattice3d",
|
|
437
|
+
"properties": {
|
|
438
|
+
"basis": {
|
|
439
|
+
"items": {
|
|
440
|
+
"properties": {
|
|
441
|
+
"color": {
|
|
442
|
+
"name": "color",
|
|
443
|
+
"required": false,
|
|
444
|
+
"type": "string"
|
|
445
|
+
},
|
|
446
|
+
"dx": {
|
|
447
|
+
"name": "dx",
|
|
448
|
+
"required": true,
|
|
449
|
+
"type": "number"
|
|
450
|
+
},
|
|
451
|
+
"dy": {
|
|
452
|
+
"name": "dy",
|
|
453
|
+
"required": true,
|
|
454
|
+
"type": "number"
|
|
455
|
+
},
|
|
456
|
+
"dz": {
|
|
457
|
+
"name": "dz",
|
|
458
|
+
"required": true,
|
|
459
|
+
"type": "number"
|
|
460
|
+
},
|
|
461
|
+
"element": {
|
|
462
|
+
"name": "element",
|
|
463
|
+
"required": false,
|
|
464
|
+
"type": "string"
|
|
465
|
+
},
|
|
466
|
+
"key": {
|
|
467
|
+
"name": "key",
|
|
468
|
+
"required": true,
|
|
469
|
+
"type": "string"
|
|
470
|
+
},
|
|
471
|
+
"radius": {
|
|
472
|
+
"name": "radius",
|
|
473
|
+
"required": false,
|
|
474
|
+
"type": "number"
|
|
475
|
+
},
|
|
476
|
+
"xEdge": {
|
|
477
|
+
"name": "xEdge",
|
|
478
|
+
"required": false,
|
|
479
|
+
"type": "boolean"
|
|
480
|
+
},
|
|
481
|
+
"yEdge": {
|
|
482
|
+
"name": "yEdge",
|
|
483
|
+
"required": false,
|
|
484
|
+
"type": "boolean"
|
|
485
|
+
},
|
|
486
|
+
"zEdge": {
|
|
487
|
+
"name": "zEdge",
|
|
488
|
+
"required": false,
|
|
489
|
+
"type": "boolean"
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
"type": "object"
|
|
493
|
+
},
|
|
494
|
+
"name": "basis",
|
|
495
|
+
"required": true,
|
|
496
|
+
"type": "array"
|
|
497
|
+
},
|
|
498
|
+
"bondRadius": {
|
|
499
|
+
"name": "bondRadius",
|
|
500
|
+
"required": false,
|
|
501
|
+
"type": "number"
|
|
502
|
+
},
|
|
503
|
+
"bonds": {
|
|
504
|
+
"items": {
|
|
505
|
+
"properties": {
|
|
506
|
+
"color": {
|
|
507
|
+
"name": "color",
|
|
508
|
+
"required": false,
|
|
509
|
+
"type": "string"
|
|
510
|
+
},
|
|
511
|
+
"dx": {
|
|
512
|
+
"name": "dx",
|
|
513
|
+
"required": false,
|
|
514
|
+
"type": "number"
|
|
515
|
+
},
|
|
516
|
+
"dy": {
|
|
517
|
+
"name": "dy",
|
|
518
|
+
"required": false,
|
|
519
|
+
"type": "number"
|
|
520
|
+
},
|
|
521
|
+
"dz": {
|
|
522
|
+
"name": "dz",
|
|
523
|
+
"required": false,
|
|
524
|
+
"type": "number"
|
|
525
|
+
},
|
|
526
|
+
"from": {
|
|
527
|
+
"name": "from",
|
|
528
|
+
"required": true,
|
|
529
|
+
"type": "string"
|
|
530
|
+
},
|
|
531
|
+
"to": {
|
|
532
|
+
"name": "to",
|
|
533
|
+
"required": true,
|
|
534
|
+
"type": "string"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
"type": "object"
|
|
538
|
+
},
|
|
539
|
+
"name": "bonds",
|
|
540
|
+
"required": false,
|
|
541
|
+
"type": "array"
|
|
542
|
+
},
|
|
543
|
+
"dimColor": {
|
|
544
|
+
"name": "dimColor",
|
|
545
|
+
"required": false,
|
|
546
|
+
"type": "string"
|
|
547
|
+
},
|
|
548
|
+
"highlightCell": {
|
|
549
|
+
"name": "highlightCell",
|
|
550
|
+
"required": false,
|
|
551
|
+
"type": "boolean"
|
|
552
|
+
},
|
|
553
|
+
"latticeConstant": {
|
|
554
|
+
"name": "latticeConstant",
|
|
555
|
+
"required": false,
|
|
556
|
+
"type": "number"
|
|
557
|
+
},
|
|
558
|
+
"nx": {
|
|
559
|
+
"name": "nx",
|
|
560
|
+
"required": false,
|
|
561
|
+
"type": "number"
|
|
562
|
+
},
|
|
563
|
+
"ny": {
|
|
564
|
+
"name": "ny",
|
|
565
|
+
"required": false,
|
|
566
|
+
"type": "number"
|
|
567
|
+
},
|
|
568
|
+
"nz": {
|
|
569
|
+
"name": "nz",
|
|
570
|
+
"required": false,
|
|
571
|
+
"type": "number"
|
|
572
|
+
},
|
|
573
|
+
"selectedColor": {
|
|
574
|
+
"name": "selectedColor",
|
|
575
|
+
"required": false,
|
|
576
|
+
"type": "string"
|
|
577
|
+
},
|
|
578
|
+
"selectedId": {
|
|
579
|
+
"name": "selectedId",
|
|
580
|
+
"required": false,
|
|
581
|
+
"type": "string"
|
|
582
|
+
},
|
|
583
|
+
"showLabels": {
|
|
584
|
+
"name": "showLabels",
|
|
585
|
+
"required": false,
|
|
586
|
+
"type": "boolean"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"tier": "presentation",
|
|
590
|
+
"type": "ChemistryCanvasLattice3d"
|
|
591
|
+
},
|
|
300
592
|
"lighting": {
|
|
301
593
|
"default": {},
|
|
302
594
|
"description": "3D only: scene light rig as data.",
|
|
@@ -329,6 +621,33 @@
|
|
|
329
621
|
"tier": "presentation",
|
|
330
622
|
"type": "json"
|
|
331
623
|
},
|
|
624
|
+
"readouts": {
|
|
625
|
+
"default": [],
|
|
626
|
+
"description": "Top-right status chip row, forwarded to LearningCanvas verbatim.",
|
|
627
|
+
"items": {
|
|
628
|
+
"properties": {
|
|
629
|
+
"color": {
|
|
630
|
+
"name": "color",
|
|
631
|
+
"required": false,
|
|
632
|
+
"type": "string"
|
|
633
|
+
},
|
|
634
|
+
"label": {
|
|
635
|
+
"name": "label",
|
|
636
|
+
"required": true,
|
|
637
|
+
"type": "string"
|
|
638
|
+
},
|
|
639
|
+
"value": {
|
|
640
|
+
"name": "value",
|
|
641
|
+
"required": true,
|
|
642
|
+
"type": "string"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"type": "object"
|
|
646
|
+
},
|
|
647
|
+
"label": "Readouts",
|
|
648
|
+
"tier": "presentation",
|
|
649
|
+
"type": "[ChemistryCanvasReadoutsItem]"
|
|
650
|
+
},
|
|
332
651
|
"shadows": {
|
|
333
652
|
"description": "3D only: enable shadows. Omitted → the host default.",
|
|
334
653
|
"label": "Shadows",
|
|
@@ -364,6 +683,20 @@
|
|
|
364
683
|
"required": false,
|
|
365
684
|
"type": "string"
|
|
366
685
|
},
|
|
686
|
+
"dash": {
|
|
687
|
+
"name": "dash",
|
|
688
|
+
"required": false,
|
|
689
|
+
"type": "string",
|
|
690
|
+
"values": [
|
|
691
|
+
"dashed",
|
|
692
|
+
"dotted"
|
|
693
|
+
]
|
|
694
|
+
},
|
|
695
|
+
"endAngle": {
|
|
696
|
+
"name": "endAngle",
|
|
697
|
+
"required": false,
|
|
698
|
+
"type": "number"
|
|
699
|
+
},
|
|
367
700
|
"fill": {
|
|
368
701
|
"name": "fill",
|
|
369
702
|
"required": false,
|
|
@@ -439,6 +772,11 @@
|
|
|
439
772
|
"required": false,
|
|
440
773
|
"type": "number"
|
|
441
774
|
},
|
|
775
|
+
"startAngle": {
|
|
776
|
+
"name": "startAngle",
|
|
777
|
+
"required": false,
|
|
778
|
+
"type": "number"
|
|
779
|
+
},
|
|
442
780
|
"step": {
|
|
443
781
|
"name": "step",
|
|
444
782
|
"required": false,
|
|
@@ -457,6 +795,7 @@
|
|
|
457
795
|
"line",
|
|
458
796
|
"arrow",
|
|
459
797
|
"circle",
|
|
798
|
+
"ellipse",
|
|
460
799
|
"rect",
|
|
461
800
|
"polygon",
|
|
462
801
|
"path",
|
|
@@ -519,6 +858,103 @@
|
|
|
519
858
|
"tier": "presentation",
|
|
520
859
|
"type": "string"
|
|
521
860
|
},
|
|
861
|
+
"traces": {
|
|
862
|
+
"default": [],
|
|
863
|
+
"description": "Inset sparkline panels, forwarded to LearningCanvas verbatim.",
|
|
864
|
+
"items": {
|
|
865
|
+
"properties": {
|
|
866
|
+
"backgroundColor": {
|
|
867
|
+
"name": "backgroundColor",
|
|
868
|
+
"required": false,
|
|
869
|
+
"type": "string"
|
|
870
|
+
},
|
|
871
|
+
"backgroundOpacity": {
|
|
872
|
+
"name": "backgroundOpacity",
|
|
873
|
+
"required": false,
|
|
874
|
+
"type": "number"
|
|
875
|
+
},
|
|
876
|
+
"frameColor": {
|
|
877
|
+
"name": "frameColor",
|
|
878
|
+
"required": false,
|
|
879
|
+
"type": "string"
|
|
880
|
+
},
|
|
881
|
+
"height": {
|
|
882
|
+
"name": "height",
|
|
883
|
+
"required": false,
|
|
884
|
+
"type": "number"
|
|
885
|
+
},
|
|
886
|
+
"series": {
|
|
887
|
+
"items": {
|
|
888
|
+
"properties": {
|
|
889
|
+
"color": {
|
|
890
|
+
"name": "color",
|
|
891
|
+
"required": false,
|
|
892
|
+
"type": "string"
|
|
893
|
+
},
|
|
894
|
+
"label": {
|
|
895
|
+
"name": "label",
|
|
896
|
+
"required": false,
|
|
897
|
+
"type": "string"
|
|
898
|
+
},
|
|
899
|
+
"samples": {
|
|
900
|
+
"items": {
|
|
901
|
+
"properties": {
|
|
902
|
+
"x": {
|
|
903
|
+
"name": "x",
|
|
904
|
+
"required": true,
|
|
905
|
+
"type": "number"
|
|
906
|
+
},
|
|
907
|
+
"y": {
|
|
908
|
+
"name": "y",
|
|
909
|
+
"required": true,
|
|
910
|
+
"type": "number"
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
"type": "object"
|
|
914
|
+
},
|
|
915
|
+
"name": "samples",
|
|
916
|
+
"required": true,
|
|
917
|
+
"type": "array"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
"type": "object"
|
|
921
|
+
},
|
|
922
|
+
"name": "series",
|
|
923
|
+
"required": true,
|
|
924
|
+
"type": "array"
|
|
925
|
+
},
|
|
926
|
+
"width": {
|
|
927
|
+
"name": "width",
|
|
928
|
+
"required": false,
|
|
929
|
+
"type": "number"
|
|
930
|
+
},
|
|
931
|
+
"x": {
|
|
932
|
+
"name": "x",
|
|
933
|
+
"required": false,
|
|
934
|
+
"type": "number"
|
|
935
|
+
},
|
|
936
|
+
"xLabel": {
|
|
937
|
+
"name": "xLabel",
|
|
938
|
+
"required": false,
|
|
939
|
+
"type": "string"
|
|
940
|
+
},
|
|
941
|
+
"y": {
|
|
942
|
+
"name": "y",
|
|
943
|
+
"required": false,
|
|
944
|
+
"type": "number"
|
|
945
|
+
},
|
|
946
|
+
"yLabel": {
|
|
947
|
+
"name": "yLabel",
|
|
948
|
+
"required": false,
|
|
949
|
+
"type": "string"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"type": "object"
|
|
953
|
+
},
|
|
954
|
+
"label": "Traces",
|
|
955
|
+
"tier": "presentation",
|
|
956
|
+
"type": "[ChemistryCanvasTracesItem]"
|
|
957
|
+
},
|
|
522
958
|
"width": {
|
|
523
959
|
"default": 600.0,
|
|
524
960
|
"description": "width prop",
|
|
@@ -615,6 +1051,14 @@
|
|
|
615
1051
|
{
|
|
616
1052
|
"name": "color",
|
|
617
1053
|
"type": "string"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"name": "charge",
|
|
1057
|
+
"type": "string"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"name": "lonePairs",
|
|
1061
|
+
"type": "number"
|
|
618
1062
|
}
|
|
619
1063
|
],
|
|
620
1064
|
"type": "[object]"
|
|
@@ -639,6 +1083,10 @@
|
|
|
639
1083
|
{
|
|
640
1084
|
"name": "color",
|
|
641
1085
|
"type": "string"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"name": "state",
|
|
1089
|
+
"type": "string"
|
|
642
1090
|
}
|
|
643
1091
|
],
|
|
644
1092
|
"type": "[object]"
|
|
@@ -675,6 +1123,72 @@
|
|
|
675
1123
|
],
|
|
676
1124
|
"type": "[object]"
|
|
677
1125
|
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "containers",
|
|
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": "color",
|
|
1151
|
+
"type": "string"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"name": "fill",
|
|
1155
|
+
"type": "string"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"name": "lineWidth",
|
|
1159
|
+
"type": "number"
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"name": "divider",
|
|
1163
|
+
"type": "string"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"name": "dividerColor",
|
|
1167
|
+
"type": "string"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"name": "leftLabel",
|
|
1171
|
+
"type": "string"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"name": "rightLabel",
|
|
1175
|
+
"type": "string"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"name": "label",
|
|
1179
|
+
"type": "string"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"name": "level",
|
|
1183
|
+
"type": "number"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"name": "levelColor",
|
|
1187
|
+
"type": "string"
|
|
1188
|
+
}
|
|
1189
|
+
],
|
|
1190
|
+
"type": "[object]"
|
|
1191
|
+
},
|
|
678
1192
|
{
|
|
679
1193
|
"name": "shapes",
|
|
680
1194
|
"properties": [
|
|
@@ -790,6 +1304,112 @@
|
|
|
790
1304
|
{
|
|
791
1305
|
"name": "opacity",
|
|
792
1306
|
"type": "number"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"name": "startAngle",
|
|
1310
|
+
"type": "number"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"name": "endAngle",
|
|
1314
|
+
"type": "number"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"name": "dash",
|
|
1318
|
+
"type": "string"
|
|
1319
|
+
}
|
|
1320
|
+
],
|
|
1321
|
+
"type": "[object]"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"name": "readouts",
|
|
1325
|
+
"properties": [
|
|
1326
|
+
{
|
|
1327
|
+
"name": "label",
|
|
1328
|
+
"required": true,
|
|
1329
|
+
"type": "string"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"name": "value",
|
|
1333
|
+
"required": true,
|
|
1334
|
+
"type": "string"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"name": "color",
|
|
1338
|
+
"type": "string"
|
|
1339
|
+
}
|
|
1340
|
+
],
|
|
1341
|
+
"type": "[object]"
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"name": "traces",
|
|
1345
|
+
"properties": [
|
|
1346
|
+
{
|
|
1347
|
+
"name": "x",
|
|
1348
|
+
"type": "number"
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"name": "y",
|
|
1352
|
+
"type": "number"
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"name": "width",
|
|
1356
|
+
"type": "number"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"name": "height",
|
|
1360
|
+
"type": "number"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"name": "series",
|
|
1364
|
+
"properties": [
|
|
1365
|
+
{
|
|
1366
|
+
"name": "samples",
|
|
1367
|
+
"properties": [
|
|
1368
|
+
{
|
|
1369
|
+
"name": "x",
|
|
1370
|
+
"required": true,
|
|
1371
|
+
"type": "number"
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"name": "y",
|
|
1375
|
+
"required": true,
|
|
1376
|
+
"type": "number"
|
|
1377
|
+
}
|
|
1378
|
+
],
|
|
1379
|
+
"required": true,
|
|
1380
|
+
"type": "[object]"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"name": "color",
|
|
1384
|
+
"type": "string"
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"name": "label",
|
|
1388
|
+
"type": "string"
|
|
1389
|
+
}
|
|
1390
|
+
],
|
|
1391
|
+
"required": true,
|
|
1392
|
+
"type": "[object]"
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
"name": "xLabel",
|
|
1396
|
+
"type": "string"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"name": "yLabel",
|
|
1400
|
+
"type": "string"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"name": "frameColor",
|
|
1404
|
+
"type": "string"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"name": "backgroundColor",
|
|
1408
|
+
"type": "string"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"name": "backgroundOpacity",
|
|
1412
|
+
"type": "number"
|
|
793
1413
|
}
|
|
794
1414
|
],
|
|
795
1415
|
"type": "[object]"
|
|
@@ -844,21 +1464,28 @@
|
|
|
844
1464
|
"arrows": "@config.arrows",
|
|
845
1465
|
"atoms": "@config.atoms",
|
|
846
1466
|
"backgroundColor": "@config.backgroundColor",
|
|
1467
|
+
"bondStyle": "@config.bondStyle",
|
|
847
1468
|
"bonds": "@config.bonds",
|
|
848
1469
|
"camera": "@config.camera",
|
|
849
1470
|
"className": "@config.className",
|
|
1471
|
+
"containers": "@config.containers",
|
|
1472
|
+
"equation": "@config.equation",
|
|
1473
|
+
"equationColor": "@config.equationColor",
|
|
850
1474
|
"error": "@config.error",
|
|
851
1475
|
"height": "@config.height",
|
|
852
1476
|
"interactive": "@config.interactive",
|
|
853
1477
|
"isLoading": "@config.isLoading",
|
|
1478
|
+
"lattice3d": "@config.lattice3d",
|
|
854
1479
|
"lighting": "@config.lighting",
|
|
855
1480
|
"mode": "@config.mode",
|
|
856
1481
|
"onShapeClick": "@config.onShapeClick",
|
|
857
1482
|
"post": "@config.post",
|
|
1483
|
+
"readouts": "@config.readouts",
|
|
858
1484
|
"shadows": "@config.shadows",
|
|
859
1485
|
"shapes": "@config.shapes",
|
|
860
1486
|
"showGrid": "@config.showGrid",
|
|
861
1487
|
"title": "@config.title",
|
|
1488
|
+
"traces": "@config.traces",
|
|
862
1489
|
"type": "chemistry-canvas",
|
|
863
1490
|
"width": "@config.width"
|
|
864
1491
|
}
|
|
@@ -879,21 +1506,28 @@
|
|
|
879
1506
|
"arrows": "@payload.arrows",
|
|
880
1507
|
"atoms": "@payload.atoms",
|
|
881
1508
|
"backgroundColor": "@config.backgroundColor",
|
|
1509
|
+
"bondStyle": "@config.bondStyle",
|
|
882
1510
|
"bonds": "@payload.bonds",
|
|
883
1511
|
"camera": "@config.camera",
|
|
884
1512
|
"className": "@config.className",
|
|
1513
|
+
"containers": "@payload.containers",
|
|
1514
|
+
"equation": "@config.equation",
|
|
1515
|
+
"equationColor": "@config.equationColor",
|
|
885
1516
|
"error": "@config.error",
|
|
886
1517
|
"height": "@config.height",
|
|
887
1518
|
"interactive": "@config.interactive",
|
|
888
1519
|
"isLoading": "@config.isLoading",
|
|
1520
|
+
"lattice3d": "@config.lattice3d",
|
|
889
1521
|
"lighting": "@config.lighting",
|
|
890
1522
|
"mode": "@config.mode",
|
|
891
1523
|
"onShapeClick": "@config.onShapeClick",
|
|
892
1524
|
"post": "@config.post",
|
|
1525
|
+
"readouts": "@payload.readouts",
|
|
893
1526
|
"shadows": "@config.shadows",
|
|
894
1527
|
"shapes": "@payload.shapes",
|
|
895
1528
|
"showGrid": "@config.showGrid",
|
|
896
1529
|
"title": "@config.title",
|
|
1530
|
+
"traces": "@payload.traces",
|
|
897
1531
|
"type": "chemistry-canvas",
|
|
898
1532
|
"width": "@config.width"
|
|
899
1533
|
}
|