@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
|
@@ -447,8 +447,138 @@
|
|
|
447
447
|
"default": {},
|
|
448
448
|
"description": "3D scene light rig as data; empty object uses the standard rig.",
|
|
449
449
|
"label": "Lighting",
|
|
450
|
+
"properties": {
|
|
451
|
+
"ambient": {
|
|
452
|
+
"name": "ambient",
|
|
453
|
+
"properties": {
|
|
454
|
+
"color": {
|
|
455
|
+
"name": "color",
|
|
456
|
+
"required": false,
|
|
457
|
+
"type": "string"
|
|
458
|
+
},
|
|
459
|
+
"intensity": {
|
|
460
|
+
"name": "intensity",
|
|
461
|
+
"required": false,
|
|
462
|
+
"type": "number"
|
|
463
|
+
},
|
|
464
|
+
"position": {
|
|
465
|
+
"items": {
|
|
466
|
+
"type": "number"
|
|
467
|
+
},
|
|
468
|
+
"name": "position",
|
|
469
|
+
"required": false,
|
|
470
|
+
"type": "array"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"required": false,
|
|
474
|
+
"type": "object"
|
|
475
|
+
},
|
|
476
|
+
"directional": {
|
|
477
|
+
"name": "directional",
|
|
478
|
+
"properties": {
|
|
479
|
+
"color": {
|
|
480
|
+
"name": "color",
|
|
481
|
+
"required": false,
|
|
482
|
+
"type": "string"
|
|
483
|
+
},
|
|
484
|
+
"intensity": {
|
|
485
|
+
"name": "intensity",
|
|
486
|
+
"required": false,
|
|
487
|
+
"type": "number"
|
|
488
|
+
},
|
|
489
|
+
"position": {
|
|
490
|
+
"items": {
|
|
491
|
+
"type": "number"
|
|
492
|
+
},
|
|
493
|
+
"name": "position",
|
|
494
|
+
"required": false,
|
|
495
|
+
"type": "array"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"required": false,
|
|
499
|
+
"type": "object"
|
|
500
|
+
},
|
|
501
|
+
"environment": {
|
|
502
|
+
"name": "environment",
|
|
503
|
+
"required": false,
|
|
504
|
+
"type": "string",
|
|
505
|
+
"values": [
|
|
506
|
+
"room",
|
|
507
|
+
"none"
|
|
508
|
+
]
|
|
509
|
+
},
|
|
510
|
+
"hemisphere": {
|
|
511
|
+
"name": "hemisphere",
|
|
512
|
+
"properties": {
|
|
513
|
+
"color": {
|
|
514
|
+
"name": "color",
|
|
515
|
+
"required": false,
|
|
516
|
+
"type": "string"
|
|
517
|
+
},
|
|
518
|
+
"groundColor": {
|
|
519
|
+
"name": "groundColor",
|
|
520
|
+
"required": false,
|
|
521
|
+
"type": "string"
|
|
522
|
+
},
|
|
523
|
+
"intensity": {
|
|
524
|
+
"name": "intensity",
|
|
525
|
+
"required": false,
|
|
526
|
+
"type": "number"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"required": false,
|
|
530
|
+
"type": "object"
|
|
531
|
+
},
|
|
532
|
+
"points": {
|
|
533
|
+
"items": {
|
|
534
|
+
"properties": {
|
|
535
|
+
"color": {
|
|
536
|
+
"name": "color",
|
|
537
|
+
"required": false,
|
|
538
|
+
"type": "string"
|
|
539
|
+
},
|
|
540
|
+
"decay": {
|
|
541
|
+
"name": "decay",
|
|
542
|
+
"required": false,
|
|
543
|
+
"type": "number"
|
|
544
|
+
},
|
|
545
|
+
"distance": {
|
|
546
|
+
"name": "distance",
|
|
547
|
+
"required": false,
|
|
548
|
+
"type": "number"
|
|
549
|
+
},
|
|
550
|
+
"intensity": {
|
|
551
|
+
"name": "intensity",
|
|
552
|
+
"required": false,
|
|
553
|
+
"type": "number"
|
|
554
|
+
},
|
|
555
|
+
"position": {
|
|
556
|
+
"items": {
|
|
557
|
+
"type": "number"
|
|
558
|
+
},
|
|
559
|
+
"name": "position",
|
|
560
|
+
"required": true,
|
|
561
|
+
"type": "array"
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
"type": "object"
|
|
565
|
+
},
|
|
566
|
+
"name": "points",
|
|
567
|
+
"required": false,
|
|
568
|
+
"type": "array"
|
|
569
|
+
},
|
|
570
|
+
"toneMapping": {
|
|
571
|
+
"name": "toneMapping",
|
|
572
|
+
"required": false,
|
|
573
|
+
"type": "string",
|
|
574
|
+
"values": [
|
|
575
|
+
"aces",
|
|
576
|
+
"none"
|
|
577
|
+
]
|
|
578
|
+
}
|
|
579
|
+
},
|
|
450
580
|
"tier": "presentation",
|
|
451
|
-
"type": "
|
|
581
|
+
"type": "Lighting3D"
|
|
452
582
|
},
|
|
453
583
|
"matchMode": {
|
|
454
584
|
"default": "",
|
|
@@ -461,8 +591,49 @@
|
|
|
461
591
|
"default": {},
|
|
462
592
|
"description": "3D post-processing stack (bloom/vignette) as data; empty object disables it.",
|
|
463
593
|
"label": "Post Processing",
|
|
594
|
+
"properties": {
|
|
595
|
+
"bloom": {
|
|
596
|
+
"name": "bloom",
|
|
597
|
+
"properties": {
|
|
598
|
+
"intensity": {
|
|
599
|
+
"name": "intensity",
|
|
600
|
+
"required": false,
|
|
601
|
+
"type": "number"
|
|
602
|
+
},
|
|
603
|
+
"smoothing": {
|
|
604
|
+
"name": "smoothing",
|
|
605
|
+
"required": false,
|
|
606
|
+
"type": "number"
|
|
607
|
+
},
|
|
608
|
+
"threshold": {
|
|
609
|
+
"name": "threshold",
|
|
610
|
+
"required": false,
|
|
611
|
+
"type": "number"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
"required": false,
|
|
615
|
+
"type": "object"
|
|
616
|
+
},
|
|
617
|
+
"vignette": {
|
|
618
|
+
"name": "vignette",
|
|
619
|
+
"properties": {
|
|
620
|
+
"darkness": {
|
|
621
|
+
"name": "darkness",
|
|
622
|
+
"required": false,
|
|
623
|
+
"type": "number"
|
|
624
|
+
},
|
|
625
|
+
"offset": {
|
|
626
|
+
"name": "offset",
|
|
627
|
+
"required": false,
|
|
628
|
+
"type": "number"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"required": false,
|
|
632
|
+
"type": "object"
|
|
633
|
+
}
|
|
634
|
+
},
|
|
464
635
|
"tier": "presentation",
|
|
465
|
-
"type": "
|
|
636
|
+
"type": "Post3D"
|
|
466
637
|
},
|
|
467
638
|
"resetLabel": {
|
|
468
639
|
"default": "Reset",
|