@almadar/std 16.178.0 → 16.179.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-fx-overlay.lolo +63 -0
- package/behaviors/lolo/ui/core/molecules/ui-page-header.lolo +1 -1
- 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/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-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/dist/behaviors/exports-reader.js +8369 -5005
- package/dist/behaviors/functions/index.d.ts +604 -14
- package/dist/behaviors/functions/index.js +8354 -5006
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +8370 -5006
- package/dist/behaviors/query.js +8369 -5005
- package/dist/behaviors-embeddings.hash.json +3 -3
- package/dist/behaviors-embeddings.json +351 -331
- package/dist/behaviors-registry.json +1879 -344
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8370 -5006
- 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",
|