@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.
- package/behaviors/lolo/ui/core/atoms/std-detail-layout.lolo +82 -0
- package/behaviors/lolo/ui/core/molecules/ui-breadcrumb.lolo +20 -2
- package/behaviors/lolo/ui/core/molecules/ui-fx-overlay.lolo +63 -0
- package/behaviors/lolo/ui/core/molecules/ui-page-header.lolo +1 -1
- package/behaviors/lolo/ui/core/organisms/ui-detail-panel.lolo +6 -0
- package/behaviors/lolo/ui/core/organisms/ui-form-section.lolo +2 -2
- package/behaviors/lolo/ui/core/organisms/ui-form.lolo +2 -2
- package/behaviors/lolo/ui/core/templates/ui-dashboard-layout.lolo +2 -2
- package/behaviors/lolo/ui/game/atoms/std-fx-particles.lolo +23 -4
- package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +251 -0
- package/behaviors/lolo/ui/game/atoms/ui-draw-fx-layer.lolo +109 -0
- package/behaviors/lolo/ui/game/organisms/std-arcade-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-crew-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-dungeon-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-market-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-objective-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-platformer-board-2d.lolo +391 -0
- package/behaviors/lolo/ui/game/organisms/std-survival-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-2d.lolo +34 -6
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-3d.lolo +34 -4
- package/behaviors/lolo/ui/learning/atoms/std-learn-arrangement.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-classify.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-derivation.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-doser.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-estimate.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-fx-cues.lolo +147 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-goal-seek.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-hotspot.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-predict.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-scatter-fit.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-speed-drill.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-tour-3d.lolo +9 -0
- package/behaviors/registry/ui/core/atoms/std-detail-layout.orb +265 -0
- package/behaviors/registry/ui/core/molecules/ui-breadcrumb.orb +55 -17
- package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +281 -0
- package/behaviors/registry/ui/core/molecules/ui-page-header.orb +1 -1
- package/behaviors/registry/ui/core/organisms/ui-detail-panel.orb +8 -0
- package/behaviors/registry/ui/core/organisms/ui-form-section.orb +6 -0
- package/behaviors/registry/ui/core/organisms/ui-form.orb +6 -0
- package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +2 -2
- package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +265 -4
- package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +2136 -0
- package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +523 -0
- package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +159 -70
- package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +148 -58
- package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +169 -58
- package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +160 -70
- package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +151 -60
- package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +2981 -0
- package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +150 -60
- package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +163 -316
- package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +156 -184
- package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +62 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +73 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +66 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +1546 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +58 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +176 -0
- package/canonical-operators.json +14 -2
- package/dist/behaviors/exports-reader.js +8655 -5239
- package/dist/behaviors/functions/index.d.ts +686 -16
- package/dist/behaviors/functions/index.js +8637 -5240
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +8656 -5240
- package/dist/behaviors/query.js +8655 -5239
- package/dist/behaviors-embeddings.hash.json +3 -3
- package/dist/behaviors-embeddings.json +381 -353
- package/dist/behaviors-registry.json +2415 -443
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8656 -5240
- 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
|
@@ -73,6 +73,15 @@
|
|
|
73
73
|
"parent": "trt_01M07RCKW0YDADRTWKMBVKDWW3",
|
|
74
74
|
"renames": []
|
|
75
75
|
},
|
|
76
|
+
"evt_01M0GTSZJNSWKD2ZB0HPB1ZY0B": {
|
|
77
|
+
"bakedName": "LEARN_ROUND_COMPLETE",
|
|
78
|
+
"curName": "LEARN_ROUND_COMPLETE",
|
|
79
|
+
"id": "evt_01M0GTSZJNSWKD2ZB0HPB1ZY0B",
|
|
80
|
+
"kind": "event",
|
|
81
|
+
"owner": "workspace",
|
|
82
|
+
"parent": "trt_01M07RCKW0YDADRTWKMBVKDWW3",
|
|
83
|
+
"renames": []
|
|
84
|
+
},
|
|
76
85
|
"orb_01M07RCKW09E3TNXAZ8BMJS742": {
|
|
77
86
|
"bakedName": "LearnTour3DOrbital",
|
|
78
87
|
"curName": "LearnTour3DOrbital",
|
|
@@ -805,6 +814,24 @@
|
|
|
805
814
|
"scope": "external",
|
|
806
815
|
"synonyms": "select, choose, station, explore, tour, flythrough, pick",
|
|
807
816
|
"tier": "domain"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"description": "Fired once when the visit that completes the tour lands (every station explored) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
820
|
+
"event": "LEARN_ROUND_COMPLETE",
|
|
821
|
+
"eventId": "evt_01M0GTSZJNSWKD2ZB0HPB1ZY0B",
|
|
822
|
+
"payloadSchema": [
|
|
823
|
+
{
|
|
824
|
+
"name": "score",
|
|
825
|
+
"type": "number"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"name": "total",
|
|
829
|
+
"type": "number"
|
|
830
|
+
}
|
|
831
|
+
],
|
|
832
|
+
"scope": "external",
|
|
833
|
+
"synonyms": "round complete, finished, done, completion, tour complete",
|
|
834
|
+
"tier": "domain"
|
|
808
835
|
}
|
|
809
836
|
],
|
|
810
837
|
"entityContract": {
|
|
@@ -1057,6 +1084,24 @@
|
|
|
1057
1084
|
],
|
|
1058
1085
|
"synonyms": "select, choose, station, explore, tour, flythrough, pick",
|
|
1059
1086
|
"tier": "domain"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"description": "Fired once when the visit that completes the tour lands (every station explored) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
1090
|
+
"id": "evt_01M0GTSZJNSWKD2ZB0HPB1ZY0B",
|
|
1091
|
+
"key": "LEARN_ROUND_COMPLETE",
|
|
1092
|
+
"name": "Learn Round Complete",
|
|
1093
|
+
"payloadSchema": [
|
|
1094
|
+
{
|
|
1095
|
+
"name": "score",
|
|
1096
|
+
"type": "number"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"name": "total",
|
|
1100
|
+
"type": "number"
|
|
1101
|
+
}
|
|
1102
|
+
],
|
|
1103
|
+
"synonyms": "round complete, finished, done, completion, tour complete",
|
|
1104
|
+
"tier": "domain"
|
|
1060
1105
|
}
|
|
1061
1106
|
],
|
|
1062
1107
|
"states": [
|
|
@@ -1748,6 +1793,77 @@
|
|
|
1748
1793
|
},
|
|
1749
1794
|
{
|
|
1750
1795
|
"effects": [
|
|
1796
|
+
[
|
|
1797
|
+
"if",
|
|
1798
|
+
[
|
|
1799
|
+
"and",
|
|
1800
|
+
[
|
|
1801
|
+
"not",
|
|
1802
|
+
"@entity.tourComplete"
|
|
1803
|
+
],
|
|
1804
|
+
[
|
|
1805
|
+
"==",
|
|
1806
|
+
[
|
|
1807
|
+
"if",
|
|
1808
|
+
[
|
|
1809
|
+
"array/includes",
|
|
1810
|
+
"@entity.visitedIds",
|
|
1811
|
+
[
|
|
1812
|
+
"object/get",
|
|
1813
|
+
[
|
|
1814
|
+
"array/nth",
|
|
1815
|
+
"@entity.stations",
|
|
1816
|
+
[
|
|
1817
|
+
"math/mod",
|
|
1818
|
+
[
|
|
1819
|
+
"+",
|
|
1820
|
+
"@entity.selectedIndex",
|
|
1821
|
+
1.0
|
|
1822
|
+
],
|
|
1823
|
+
[
|
|
1824
|
+
"array/len",
|
|
1825
|
+
"@entity.stations"
|
|
1826
|
+
]
|
|
1827
|
+
]
|
|
1828
|
+
],
|
|
1829
|
+
"id"
|
|
1830
|
+
]
|
|
1831
|
+
],
|
|
1832
|
+
[
|
|
1833
|
+
"array/len",
|
|
1834
|
+
"@entity.visitedIds"
|
|
1835
|
+
],
|
|
1836
|
+
[
|
|
1837
|
+
"+",
|
|
1838
|
+
[
|
|
1839
|
+
"array/len",
|
|
1840
|
+
"@entity.visitedIds"
|
|
1841
|
+
],
|
|
1842
|
+
1.0
|
|
1843
|
+
]
|
|
1844
|
+
],
|
|
1845
|
+
[
|
|
1846
|
+
"array/len",
|
|
1847
|
+
"@entity.stations"
|
|
1848
|
+
]
|
|
1849
|
+
]
|
|
1850
|
+
],
|
|
1851
|
+
[
|
|
1852
|
+
"emit",
|
|
1853
|
+
"LEARN_ROUND_COMPLETE",
|
|
1854
|
+
{
|
|
1855
|
+
"score": [
|
|
1856
|
+
"array/len",
|
|
1857
|
+
"@entity.stations"
|
|
1858
|
+
],
|
|
1859
|
+
"total": [
|
|
1860
|
+
"array/len",
|
|
1861
|
+
"@entity.stations"
|
|
1862
|
+
]
|
|
1863
|
+
}
|
|
1864
|
+
],
|
|
1865
|
+
null
|
|
1866
|
+
],
|
|
1751
1867
|
[
|
|
1752
1868
|
"set",
|
|
1753
1869
|
"@entity.selectedIndex",
|
|
@@ -2134,6 +2250,66 @@
|
|
|
2134
2250
|
],
|
|
2135
2251
|
[
|
|
2136
2252
|
"do",
|
|
2253
|
+
[
|
|
2254
|
+
"if",
|
|
2255
|
+
[
|
|
2256
|
+
"and",
|
|
2257
|
+
[
|
|
2258
|
+
"not",
|
|
2259
|
+
"@entity.tourComplete"
|
|
2260
|
+
],
|
|
2261
|
+
[
|
|
2262
|
+
"==",
|
|
2263
|
+
[
|
|
2264
|
+
"if",
|
|
2265
|
+
[
|
|
2266
|
+
"array/includes",
|
|
2267
|
+
"@entity.visitedIds",
|
|
2268
|
+
[
|
|
2269
|
+
"object/get",
|
|
2270
|
+
[
|
|
2271
|
+
"array/nth",
|
|
2272
|
+
"@entity.stations",
|
|
2273
|
+
"@idx"
|
|
2274
|
+
],
|
|
2275
|
+
"id"
|
|
2276
|
+
]
|
|
2277
|
+
],
|
|
2278
|
+
[
|
|
2279
|
+
"array/len",
|
|
2280
|
+
"@entity.visitedIds"
|
|
2281
|
+
],
|
|
2282
|
+
[
|
|
2283
|
+
"+",
|
|
2284
|
+
[
|
|
2285
|
+
"array/len",
|
|
2286
|
+
"@entity.visitedIds"
|
|
2287
|
+
],
|
|
2288
|
+
1.0
|
|
2289
|
+
]
|
|
2290
|
+
],
|
|
2291
|
+
[
|
|
2292
|
+
"array/len",
|
|
2293
|
+
"@entity.stations"
|
|
2294
|
+
]
|
|
2295
|
+
]
|
|
2296
|
+
],
|
|
2297
|
+
[
|
|
2298
|
+
"emit",
|
|
2299
|
+
"LEARN_ROUND_COMPLETE",
|
|
2300
|
+
{
|
|
2301
|
+
"score": [
|
|
2302
|
+
"array/len",
|
|
2303
|
+
"@entity.stations"
|
|
2304
|
+
],
|
|
2305
|
+
"total": [
|
|
2306
|
+
"array/len",
|
|
2307
|
+
"@entity.stations"
|
|
2308
|
+
]
|
|
2309
|
+
}
|
|
2310
|
+
],
|
|
2311
|
+
null
|
|
2312
|
+
],
|
|
2137
2313
|
[
|
|
2138
2314
|
"set",
|
|
2139
2315
|
"@entity.selectedIndex",
|
package/canonical-operators.json
CHANGED
|
@@ -1929,15 +1929,27 @@
|
|
|
1929
1929
|
"navigate": {
|
|
1930
1930
|
"category": "effect",
|
|
1931
1931
|
"minArity": 1,
|
|
1932
|
-
"maxArity":
|
|
1932
|
+
"maxArity": 3,
|
|
1933
1933
|
"returnType": "void",
|
|
1934
|
-
"description": "Navigate to a route",
|
|
1934
|
+
"description": "Navigate to a route: (navigate path payload? options?) — options carries { crumb } labelling the navigation-stack entry for the target page",
|
|
1935
1935
|
"module": "core",
|
|
1936
1936
|
"hasSideEffects": true,
|
|
1937
1937
|
"effect": {
|
|
1938
1938
|
"kind": "navigate"
|
|
1939
1939
|
}
|
|
1940
1940
|
},
|
|
1941
|
+
"navigate-back": {
|
|
1942
|
+
"category": "effect",
|
|
1943
|
+
"minArity": 0,
|
|
1944
|
+
"maxArity": 0,
|
|
1945
|
+
"returnType": "void",
|
|
1946
|
+
"description": "Pop the orbital-scoped navigation stack and return to the previous entry",
|
|
1947
|
+
"module": "core",
|
|
1948
|
+
"hasSideEffects": true,
|
|
1949
|
+
"effect": {
|
|
1950
|
+
"kind": "navigate-back"
|
|
1951
|
+
}
|
|
1952
|
+
},
|
|
1941
1953
|
"nn/batchnorm": {
|
|
1942
1954
|
"category": "ml-arch",
|
|
1943
1955
|
"minArity": 1,
|