@almadar/std 16.178.0 → 16.180.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.
Files changed (80) hide show
  1. package/behaviors/lolo/ui/core/atoms/std-detail-layout.lolo +82 -0
  2. package/behaviors/lolo/ui/core/molecules/ui-breadcrumb.lolo +20 -2
  3. package/behaviors/lolo/ui/core/molecules/ui-fx-overlay.lolo +63 -0
  4. package/behaviors/lolo/ui/core/molecules/ui-page-header.lolo +1 -1
  5. package/behaviors/lolo/ui/core/organisms/ui-detail-panel.lolo +6 -0
  6. package/behaviors/lolo/ui/core/organisms/ui-form-section.lolo +2 -2
  7. package/behaviors/lolo/ui/core/organisms/ui-form.lolo +2 -2
  8. package/behaviors/lolo/ui/core/templates/ui-dashboard-layout.lolo +2 -2
  9. package/behaviors/lolo/ui/game/atoms/std-fx-particles.lolo +23 -4
  10. package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +251 -0
  11. package/behaviors/lolo/ui/game/atoms/ui-draw-fx-layer.lolo +109 -0
  12. package/behaviors/lolo/ui/game/organisms/std-arcade-board-3d.lolo +32 -2
  13. package/behaviors/lolo/ui/game/organisms/std-crew-board-2d.lolo +32 -2
  14. package/behaviors/lolo/ui/game/organisms/std-dungeon-board-2d.lolo +32 -2
  15. package/behaviors/lolo/ui/game/organisms/std-market-board-3d.lolo +32 -2
  16. package/behaviors/lolo/ui/game/organisms/std-objective-board-3d.lolo +32 -2
  17. package/behaviors/lolo/ui/game/organisms/std-platformer-board-2d.lolo +391 -0
  18. package/behaviors/lolo/ui/game/organisms/std-survival-board-3d.lolo +32 -2
  19. package/behaviors/lolo/ui/game/organisms/std-tactics-board-2d.lolo +34 -6
  20. package/behaviors/lolo/ui/game/organisms/std-tactics-board-3d.lolo +34 -4
  21. package/behaviors/lolo/ui/learning/atoms/std-learn-arrangement.lolo +8 -0
  22. package/behaviors/lolo/ui/learning/atoms/std-learn-classify.lolo +8 -0
  23. package/behaviors/lolo/ui/learning/atoms/std-learn-derivation.lolo +8 -0
  24. package/behaviors/lolo/ui/learning/atoms/std-learn-doser.lolo +9 -0
  25. package/behaviors/lolo/ui/learning/atoms/std-learn-estimate.lolo +8 -0
  26. package/behaviors/lolo/ui/learning/atoms/std-learn-fx-cues.lolo +147 -0
  27. package/behaviors/lolo/ui/learning/atoms/std-learn-goal-seek.lolo +8 -0
  28. package/behaviors/lolo/ui/learning/atoms/std-learn-hotspot.lolo +8 -0
  29. package/behaviors/lolo/ui/learning/atoms/std-learn-predict.lolo +8 -0
  30. package/behaviors/lolo/ui/learning/atoms/std-learn-scatter-fit.lolo +9 -0
  31. package/behaviors/lolo/ui/learning/atoms/std-learn-speed-drill.lolo +8 -0
  32. package/behaviors/lolo/ui/learning/atoms/std-learn-tour-3d.lolo +9 -0
  33. package/behaviors/registry/ui/core/atoms/std-detail-layout.orb +265 -0
  34. package/behaviors/registry/ui/core/molecules/ui-breadcrumb.orb +55 -17
  35. package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +281 -0
  36. package/behaviors/registry/ui/core/molecules/ui-page-header.orb +1 -1
  37. package/behaviors/registry/ui/core/organisms/ui-detail-panel.orb +8 -0
  38. package/behaviors/registry/ui/core/organisms/ui-form-section.orb +6 -0
  39. package/behaviors/registry/ui/core/organisms/ui-form.orb +6 -0
  40. package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +2 -2
  41. package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +265 -4
  42. package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +2136 -0
  43. package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +523 -0
  44. package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +159 -70
  45. package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +148 -58
  46. package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +169 -58
  47. package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +160 -70
  48. package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +151 -60
  49. package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +2981 -0
  50. package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +150 -60
  51. package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +163 -316
  52. package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +156 -184
  53. package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +62 -0
  54. package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +73 -0
  55. package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +66 -0
  56. package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +71 -0
  57. package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +72 -0
  58. package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +1546 -0
  59. package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +58 -0
  60. package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +72 -0
  61. package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +72 -0
  62. package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +71 -0
  63. package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +72 -0
  64. package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +176 -0
  65. package/canonical-operators.json +14 -2
  66. package/dist/behaviors/exports-reader.js +8655 -5239
  67. package/dist/behaviors/functions/index.d.ts +686 -16
  68. package/dist/behaviors/functions/index.js +8637 -5240
  69. package/dist/behaviors/index.d.ts +1 -1
  70. package/dist/behaviors/index.js +8656 -5240
  71. package/dist/behaviors/query.js +8655 -5239
  72. package/dist/behaviors-embeddings.hash.json +3 -3
  73. package/dist/behaviors-embeddings.json +381 -353
  74. package/dist/behaviors-registry.json +2415 -443
  75. package/dist/index.d.ts +1 -1
  76. package/dist/index.js +8656 -5240
  77. package/dist/knob-embeddings.hash.json +3 -3
  78. package/dist/knob-embeddings.json +1 -1
  79. package/dist/registry/factory-signatures.json +1 -1
  80. package/package.json +2 -2
@@ -91,6 +91,15 @@
91
91
  "parent": "trt_01M0CGZ8SPD6WYV3H0J6SV7NBD",
92
92
  "renames": []
93
93
  },
94
+ "evt_01M0GTSZ6G05SHZYRFF1Q2YSR0": {
95
+ "bakedName": "LEARN_ROUND_COMPLETE",
96
+ "curName": "LEARN_ROUND_COMPLETE",
97
+ "id": "evt_01M0GTSZ6G05SHZYRFF1Q2YSR0",
98
+ "kind": "event",
99
+ "owner": "workspace",
100
+ "parent": "trt_01M0CGZ8SPD6WYV3H0J6SV7NBD",
101
+ "renames": []
102
+ },
94
103
  "orb_01M0CGZ8SPVWFV0VMERY7EXKM3": {
95
104
  "bakedName": "LearnDoserOrbital",
96
105
  "curName": "LearnDoserOrbital",
@@ -523,6 +532,24 @@
523
532
  "scope": "external",
524
533
  "synonyms": "drip toggle, running state, auto-dose",
525
534
  "tier": "domain"
535
+ },
536
+ {
537
+ "description": "Fired once when the dose crosses into a terminal band and latches done — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
538
+ "event": "LEARN_ROUND_COMPLETE",
539
+ "eventId": "evt_01M0GTSZ6G05SHZYRFF1Q2YSR0",
540
+ "payloadSchema": [
541
+ {
542
+ "name": "score",
543
+ "type": "number"
544
+ },
545
+ {
546
+ "name": "total",
547
+ "type": "number"
548
+ }
549
+ ],
550
+ "scope": "external",
551
+ "synonyms": "round complete, finished, done, completion, terminal band",
552
+ "tier": "domain"
526
553
  }
527
554
  ],
528
555
  "entityContract": {
@@ -650,6 +677,24 @@
650
677
  ],
651
678
  "synonyms": "drip toggle, running state, auto-dose",
652
679
  "tier": "domain"
680
+ },
681
+ {
682
+ "description": "Fired once when the dose crosses into a terminal band and latches done — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
683
+ "id": "evt_01M0GTSZ6G05SHZYRFF1Q2YSR0",
684
+ "key": "LEARN_ROUND_COMPLETE",
685
+ "name": "Learn Round Complete",
686
+ "payloadSchema": [
687
+ {
688
+ "name": "score",
689
+ "type": "number"
690
+ },
691
+ {
692
+ "name": "total",
693
+ "type": "number"
694
+ }
695
+ ],
696
+ "synonyms": "round complete, finished, done, completion, terminal band",
697
+ "tier": "domain"
653
698
  }
654
699
  ],
655
700
  "states": [
@@ -2243,6 +2288,19 @@
2243
2288
  "done": "@entity.done",
2244
2289
  "dose": "@entity.dose"
2245
2290
  }
2291
+ ],
2292
+ [
2293
+ "if",
2294
+ "@entity.done",
2295
+ [
2296
+ "emit",
2297
+ "LEARN_ROUND_COMPLETE",
2298
+ {
2299
+ "score": 1.0,
2300
+ "total": 1.0
2301
+ }
2302
+ ],
2303
+ null
2246
2304
  ]
2247
2305
  ],
2248
2306
  "event": "ADD_SMALL",
@@ -2787,6 +2845,19 @@
2787
2845
  "done": "@entity.done",
2788
2846
  "dose": "@entity.dose"
2789
2847
  }
2848
+ ],
2849
+ [
2850
+ "if",
2851
+ "@entity.done",
2852
+ [
2853
+ "emit",
2854
+ "LEARN_ROUND_COMPLETE",
2855
+ {
2856
+ "score": 1.0,
2857
+ "total": 1.0
2858
+ }
2859
+ ],
2860
+ null
2790
2861
  ]
2791
2862
  ],
2792
2863
  "event": "ADD_LARGE",
@@ -91,6 +91,15 @@
91
91
  "parent": "trt_01M07580RX52695MAC42HPZBTK",
92
92
  "renames": []
93
93
  },
94
+ "evt_01M0GTSZ8KYMMCH404XA6K8T24": {
95
+ "bakedName": "LEARN_ROUND_COMPLETE",
96
+ "curName": "LEARN_ROUND_COMPLETE",
97
+ "id": "evt_01M0GTSZ8KYMMCH404XA6K8T24",
98
+ "kind": "event",
99
+ "owner": "workspace",
100
+ "parent": "trt_01M07580RX52695MAC42HPZBTK",
101
+ "renames": []
102
+ },
94
103
  "orb_01M07580RX0RP4X8BB9P83K6CW": {
95
104
  "bakedName": "EstimateOrbital",
96
105
  "curName": "EstimateOrbital",
@@ -420,6 +429,24 @@
420
429
  ],
421
430
  "scope": "external",
422
431
  "tier": "domain"
432
+ },
433
+ {
434
+ "description": "Fired once when the round finishes (advancing past the final prompt) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
435
+ "event": "LEARN_ROUND_COMPLETE",
436
+ "eventId": "evt_01M0GTSZ8KYMMCH404XA6K8T24",
437
+ "payloadSchema": [
438
+ {
439
+ "name": "score",
440
+ "type": "number"
441
+ },
442
+ {
443
+ "name": "total",
444
+ "type": "number"
445
+ }
446
+ ],
447
+ "scope": "external",
448
+ "synonyms": "round complete, finished, done, completion",
449
+ "tier": "domain"
423
450
  }
424
451
  ],
425
452
  "entityContract": {
@@ -564,6 +591,24 @@
564
591
  }
565
592
  ],
566
593
  "tier": "domain"
594
+ },
595
+ {
596
+ "description": "Fired once when the round finishes (advancing past the final prompt) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
597
+ "id": "evt_01M0GTSZ8KYMMCH404XA6K8T24",
598
+ "key": "LEARN_ROUND_COMPLETE",
599
+ "name": "Learn Round Complete",
600
+ "payloadSchema": [
601
+ {
602
+ "name": "score",
603
+ "type": "number"
604
+ },
605
+ {
606
+ "name": "total",
607
+ "type": "number"
608
+ }
609
+ ],
610
+ "synonyms": "round complete, finished, done, completion",
611
+ "tier": "domain"
567
612
  }
568
613
  ],
569
614
  "states": [
@@ -1729,6 +1774,33 @@
1729
1774
  },
1730
1775
  {
1731
1776
  "effects": [
1777
+ [
1778
+ "if",
1779
+ [
1780
+ ">=",
1781
+ [
1782
+ "+",
1783
+ "@entity.promptIndex",
1784
+ 1.0
1785
+ ],
1786
+ [
1787
+ "array/len",
1788
+ "@config.prompts"
1789
+ ]
1790
+ ],
1791
+ [
1792
+ "emit",
1793
+ "LEARN_ROUND_COMPLETE",
1794
+ {
1795
+ "score": "@entity.score",
1796
+ "total": [
1797
+ "array/len",
1798
+ "@config.prompts"
1799
+ ]
1800
+ }
1801
+ ],
1802
+ null
1803
+ ],
1732
1804
  [
1733
1805
  "let",
1734
1806
  [