@almadar/core 10.81.0 → 10.82.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/dist/builders.d.ts +3 -3
- package/dist/builders.js +10 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-BHoSW19_.d.ts → effect-Baldm2vM.d.ts} +114 -4
- package/dist/{entityAccess-0POr1WuY.d.ts → entityAccess-CDYT7WWR.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +570 -0
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +10 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-rVlLkZJu.d.ts → index-R8PyPrGg.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +587 -5
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +10 -0
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +11 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1270 -6
- package/dist/patterns/index.js +576 -4
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +1 -1
- package/dist/patterns/patterns-registry.json +561 -1
- package/dist/patterns/registry.json +561 -1
- package/dist/patterns/services-registry.json +1 -1
- package/dist/{schema-CkTTGH6l.d.ts → schema-1KQUz2pE.d.ts} +2 -2
- package/dist/{trait-D269f6pt.d.ts → trait-Dsp0vmGp.d.ts} +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +13 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-7PHjoE7m.d.ts → types-DJYozDXK.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-09-
|
|
3
|
+
"exportedAt": "2026-09-03T18:48:23.816Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -32708,6 +32708,20 @@
|
|
|
32708
32708
|
"role",
|
|
32709
32709
|
"category"
|
|
32710
32710
|
]
|
|
32711
|
+
},
|
|
32712
|
+
"toggleEvent": {
|
|
32713
|
+
"types": [
|
|
32714
|
+
"string"
|
|
32715
|
+
],
|
|
32716
|
+
"description": "Event dispatched via event bus on toggle, carrying the new muted state.",
|
|
32717
|
+
"kind": "event-ref",
|
|
32718
|
+
"emitPayloadSchema": [
|
|
32719
|
+
{
|
|
32720
|
+
"name": "muted",
|
|
32721
|
+
"type": "boolean",
|
|
32722
|
+
"required": true
|
|
32723
|
+
}
|
|
32724
|
+
]
|
|
32711
32725
|
}
|
|
32712
32726
|
}
|
|
32713
32727
|
},
|
|
@@ -37810,6 +37824,92 @@
|
|
|
37810
37824
|
]
|
|
37811
37825
|
}
|
|
37812
37826
|
},
|
|
37827
|
+
"editable": {
|
|
37828
|
+
"types": [
|
|
37829
|
+
"boolean"
|
|
37830
|
+
],
|
|
37831
|
+
"description": "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely",
|
|
37832
|
+
"default": false
|
|
37833
|
+
},
|
|
37834
|
+
"selectedId": {
|
|
37835
|
+
"types": [
|
|
37836
|
+
"string"
|
|
37837
|
+
],
|
|
37838
|
+
"description": "The currently-selected drawable id (controlled); `null`/undefined = none.",
|
|
37839
|
+
"default": null
|
|
37840
|
+
},
|
|
37841
|
+
"onSelect": {
|
|
37842
|
+
"types": [
|
|
37843
|
+
"function"
|
|
37844
|
+
],
|
|
37845
|
+
"description": "Fired on a click that changes selection — before `selectEvent`.",
|
|
37846
|
+
"kind": "callback",
|
|
37847
|
+
"callbackArgs": [
|
|
37848
|
+
{
|
|
37849
|
+
"name": "id",
|
|
37850
|
+
"type": "string"
|
|
37851
|
+
}
|
|
37852
|
+
]
|
|
37853
|
+
},
|
|
37854
|
+
"onMove": {
|
|
37855
|
+
"types": [
|
|
37856
|
+
"function"
|
|
37857
|
+
],
|
|
37858
|
+
"description": "Fired once per drag gesture, on drop — before `moveEvent`.",
|
|
37859
|
+
"kind": "callback",
|
|
37860
|
+
"callbackArgs": [
|
|
37861
|
+
{
|
|
37862
|
+
"name": "id",
|
|
37863
|
+
"type": "string"
|
|
37864
|
+
},
|
|
37865
|
+
{
|
|
37866
|
+
"name": "x",
|
|
37867
|
+
"type": "number"
|
|
37868
|
+
},
|
|
37869
|
+
{
|
|
37870
|
+
"name": "y",
|
|
37871
|
+
"type": "number"
|
|
37872
|
+
}
|
|
37873
|
+
]
|
|
37874
|
+
},
|
|
37875
|
+
"selectEvent": {
|
|
37876
|
+
"types": [
|
|
37877
|
+
"string"
|
|
37878
|
+
],
|
|
37879
|
+
"description": "Declarative selection event, `UI:{selectEvent} { id }`.",
|
|
37880
|
+
"kind": "event-ref",
|
|
37881
|
+
"emitPayloadSchema": [
|
|
37882
|
+
{
|
|
37883
|
+
"name": "id",
|
|
37884
|
+
"type": "string",
|
|
37885
|
+
"required": true
|
|
37886
|
+
}
|
|
37887
|
+
]
|
|
37888
|
+
},
|
|
37889
|
+
"moveEvent": {
|
|
37890
|
+
"types": [
|
|
37891
|
+
"string"
|
|
37892
|
+
],
|
|
37893
|
+
"description": "Declarative move event, `UI:{moveEvent} { id, x, y }` — fired once on drop.",
|
|
37894
|
+
"kind": "event-ref",
|
|
37895
|
+
"emitPayloadSchema": [
|
|
37896
|
+
{
|
|
37897
|
+
"name": "id",
|
|
37898
|
+
"type": "string",
|
|
37899
|
+
"required": true
|
|
37900
|
+
},
|
|
37901
|
+
{
|
|
37902
|
+
"name": "x",
|
|
37903
|
+
"type": "number",
|
|
37904
|
+
"required": true
|
|
37905
|
+
},
|
|
37906
|
+
{
|
|
37907
|
+
"name": "y",
|
|
37908
|
+
"type": "number",
|
|
37909
|
+
"required": true
|
|
37910
|
+
}
|
|
37911
|
+
]
|
|
37912
|
+
},
|
|
37813
37913
|
"camera": {
|
|
37814
37914
|
"types": [
|
|
37815
37915
|
"string"
|
|
@@ -38985,6 +39085,12 @@
|
|
|
38985
39085
|
],
|
|
38986
39086
|
"description": "Background color (default transparent)."
|
|
38987
39087
|
},
|
|
39088
|
+
"fontFamily": {
|
|
39089
|
+
"types": [
|
|
39090
|
+
"string"
|
|
39091
|
+
],
|
|
39092
|
+
"description": "Canvas text font family. Falls back to the theme's --font-family-body."
|
|
39093
|
+
},
|
|
38988
39094
|
"shapes": {
|
|
38989
39095
|
"types": [
|
|
38990
39096
|
"array"
|
|
@@ -39109,6 +39215,11 @@
|
|
|
39109
39215
|
"number"
|
|
39110
39216
|
]
|
|
39111
39217
|
},
|
|
39218
|
+
"fontFamily": {
|
|
39219
|
+
"types": [
|
|
39220
|
+
"string"
|
|
39221
|
+
]
|
|
39222
|
+
},
|
|
39112
39223
|
"align": {
|
|
39113
39224
|
"types": [
|
|
39114
39225
|
"string"
|
|
@@ -40481,6 +40592,11 @@
|
|
|
40481
40592
|
"number"
|
|
40482
40593
|
]
|
|
40483
40594
|
},
|
|
40595
|
+
"fontFamily": {
|
|
40596
|
+
"types": [
|
|
40597
|
+
"string"
|
|
40598
|
+
]
|
|
40599
|
+
},
|
|
40484
40600
|
"align": {
|
|
40485
40601
|
"types": [
|
|
40486
40602
|
"string"
|
|
@@ -41756,6 +41872,11 @@
|
|
|
41756
41872
|
"number"
|
|
41757
41873
|
]
|
|
41758
41874
|
},
|
|
41875
|
+
"fontFamily": {
|
|
41876
|
+
"types": [
|
|
41877
|
+
"string"
|
|
41878
|
+
]
|
|
41879
|
+
},
|
|
41759
41880
|
"align": {
|
|
41760
41881
|
"types": [
|
|
41761
41882
|
"string"
|
|
@@ -42232,6 +42353,12 @@
|
|
|
42232
42353
|
"description": "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12).",
|
|
42233
42354
|
"default": 12
|
|
42234
42355
|
},
|
|
42356
|
+
"fontFamily": {
|
|
42357
|
+
"types": [
|
|
42358
|
+
"string"
|
|
42359
|
+
],
|
|
42360
|
+
"description": "Canvas text font family. Accepts a known game-font key (e.g. \"future-narrow\") or a CSS font-family string."
|
|
42361
|
+
},
|
|
42235
42362
|
"showCurveLabels": {
|
|
42236
42363
|
"types": [
|
|
42237
42364
|
"boolean"
|
|
@@ -42809,6 +42936,11 @@
|
|
|
42809
42936
|
"number"
|
|
42810
42937
|
]
|
|
42811
42938
|
},
|
|
42939
|
+
"fontFamily": {
|
|
42940
|
+
"types": [
|
|
42941
|
+
"string"
|
|
42942
|
+
]
|
|
42943
|
+
},
|
|
42812
42944
|
"align": {
|
|
42813
42945
|
"types": [
|
|
42814
42946
|
"string"
|
|
@@ -44344,6 +44476,11 @@
|
|
|
44344
44476
|
"number"
|
|
44345
44477
|
]
|
|
44346
44478
|
},
|
|
44479
|
+
"fontFamily": {
|
|
44480
|
+
"types": [
|
|
44481
|
+
"string"
|
|
44482
|
+
]
|
|
44483
|
+
},
|
|
44347
44484
|
"align": {
|
|
44348
44485
|
"types": [
|
|
44349
44486
|
"string"
|
|
@@ -45553,6 +45690,11 @@
|
|
|
45553
45690
|
"number"
|
|
45554
45691
|
]
|
|
45555
45692
|
},
|
|
45693
|
+
"fontFamily": {
|
|
45694
|
+
"types": [
|
|
45695
|
+
"string"
|
|
45696
|
+
]
|
|
45697
|
+
},
|
|
45556
45698
|
"align": {
|
|
45557
45699
|
"types": [
|
|
45558
45700
|
"string"
|
|
@@ -48835,6 +48977,90 @@
|
|
|
48835
48977
|
]
|
|
48836
48978
|
}
|
|
48837
48979
|
},
|
|
48980
|
+
"editable": {
|
|
48981
|
+
"types": [
|
|
48982
|
+
"boolean"
|
|
48983
|
+
],
|
|
48984
|
+
"description": "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely"
|
|
48985
|
+
},
|
|
48986
|
+
"selectedId": {
|
|
48987
|
+
"types": [
|
|
48988
|
+
"string"
|
|
48989
|
+
],
|
|
48990
|
+
"description": "The currently-selected drawable id (controlled); `null`/undefined = none."
|
|
48991
|
+
},
|
|
48992
|
+
"onSelect": {
|
|
48993
|
+
"types": [
|
|
48994
|
+
"function"
|
|
48995
|
+
],
|
|
48996
|
+
"description": "Fired on a click that changes selection — before `selectEvent`.",
|
|
48997
|
+
"kind": "callback",
|
|
48998
|
+
"callbackArgs": [
|
|
48999
|
+
{
|
|
49000
|
+
"name": "id",
|
|
49001
|
+
"type": "string"
|
|
49002
|
+
}
|
|
49003
|
+
]
|
|
49004
|
+
},
|
|
49005
|
+
"onMove": {
|
|
49006
|
+
"types": [
|
|
49007
|
+
"function"
|
|
49008
|
+
],
|
|
49009
|
+
"description": "Fired once per drag gesture, on drop — before `moveEvent`.",
|
|
49010
|
+
"kind": "callback",
|
|
49011
|
+
"callbackArgs": [
|
|
49012
|
+
{
|
|
49013
|
+
"name": "id",
|
|
49014
|
+
"type": "string"
|
|
49015
|
+
},
|
|
49016
|
+
{
|
|
49017
|
+
"name": "x",
|
|
49018
|
+
"type": "number"
|
|
49019
|
+
},
|
|
49020
|
+
{
|
|
49021
|
+
"name": "y",
|
|
49022
|
+
"type": "number"
|
|
49023
|
+
}
|
|
49024
|
+
]
|
|
49025
|
+
},
|
|
49026
|
+
"selectEvent": {
|
|
49027
|
+
"types": [
|
|
49028
|
+
"string"
|
|
49029
|
+
],
|
|
49030
|
+
"description": "Declarative selection event, `UI:{selectEvent} { id }`.",
|
|
49031
|
+
"kind": "event-ref",
|
|
49032
|
+
"emitPayloadSchema": [
|
|
49033
|
+
{
|
|
49034
|
+
"name": "id",
|
|
49035
|
+
"type": "string",
|
|
49036
|
+
"required": true
|
|
49037
|
+
}
|
|
49038
|
+
]
|
|
49039
|
+
},
|
|
49040
|
+
"moveEvent": {
|
|
49041
|
+
"types": [
|
|
49042
|
+
"string"
|
|
49043
|
+
],
|
|
49044
|
+
"description": "Declarative move event, `UI:{moveEvent} { id, x, y }` — fired once on drop.",
|
|
49045
|
+
"kind": "event-ref",
|
|
49046
|
+
"emitPayloadSchema": [
|
|
49047
|
+
{
|
|
49048
|
+
"name": "id",
|
|
49049
|
+
"type": "string",
|
|
49050
|
+
"required": true
|
|
49051
|
+
},
|
|
49052
|
+
{
|
|
49053
|
+
"name": "x",
|
|
49054
|
+
"type": "number",
|
|
49055
|
+
"required": true
|
|
49056
|
+
},
|
|
49057
|
+
{
|
|
49058
|
+
"name": "y",
|
|
49059
|
+
"type": "number",
|
|
49060
|
+
"required": true
|
|
49061
|
+
}
|
|
49062
|
+
]
|
|
49063
|
+
},
|
|
48838
49064
|
"children": {
|
|
48839
49065
|
"types": [
|
|
48840
49066
|
"node"
|
|
@@ -50363,6 +50589,11 @@
|
|
|
50363
50589
|
"number"
|
|
50364
50590
|
]
|
|
50365
50591
|
},
|
|
50592
|
+
"fontFamily": {
|
|
50593
|
+
"types": [
|
|
50594
|
+
"string"
|
|
50595
|
+
]
|
|
50596
|
+
},
|
|
50366
50597
|
"align": {
|
|
50367
50598
|
"types": [
|
|
50368
50599
|
"string"
|
|
@@ -51679,6 +51910,11 @@
|
|
|
51679
51910
|
"types": [
|
|
51680
51911
|
"boolean"
|
|
51681
51912
|
]
|
|
51913
|
+
},
|
|
51914
|
+
"testId": {
|
|
51915
|
+
"types": [
|
|
51916
|
+
"string"
|
|
51917
|
+
]
|
|
51682
51918
|
}
|
|
51683
51919
|
},
|
|
51684
51920
|
"required": [
|
|
@@ -51935,6 +52171,330 @@
|
|
|
51935
52171
|
"description": "secondarySidebarClassName prop"
|
|
51936
52172
|
}
|
|
51937
52173
|
}
|
|
52174
|
+
},
|
|
52175
|
+
"command-palette": {
|
|
52176
|
+
"type": "command-palette",
|
|
52177
|
+
"category": "component",
|
|
52178
|
+
"tier": "molecules",
|
|
52179
|
+
"family": "core",
|
|
52180
|
+
"description": "CommandPalette component",
|
|
52181
|
+
"suggestedFor": [
|
|
52182
|
+
"command",
|
|
52183
|
+
"palette",
|
|
52184
|
+
"command palette"
|
|
52185
|
+
],
|
|
52186
|
+
"typicalSize": "medium",
|
|
52187
|
+
"propsSchema": {
|
|
52188
|
+
"open": {
|
|
52189
|
+
"types": [
|
|
52190
|
+
"boolean"
|
|
52191
|
+
],
|
|
52192
|
+
"description": "Whether the palette overlay is open",
|
|
52193
|
+
"required": true
|
|
52194
|
+
},
|
|
52195
|
+
"onOpenChange": {
|
|
52196
|
+
"types": [
|
|
52197
|
+
"function"
|
|
52198
|
+
],
|
|
52199
|
+
"description": "Called to open/close the overlay (Escape, overlay click, or a selection)",
|
|
52200
|
+
"required": true,
|
|
52201
|
+
"kind": "callback",
|
|
52202
|
+
"callbackArgs": [
|
|
52203
|
+
{
|
|
52204
|
+
"name": "open",
|
|
52205
|
+
"type": "boolean"
|
|
52206
|
+
}
|
|
52207
|
+
]
|
|
52208
|
+
},
|
|
52209
|
+
"commands": {
|
|
52210
|
+
"types": [
|
|
52211
|
+
"array"
|
|
52212
|
+
],
|
|
52213
|
+
"description": "Commands listed in the palette, filtered as the user types",
|
|
52214
|
+
"required": true,
|
|
52215
|
+
"items": {
|
|
52216
|
+
"types": [
|
|
52217
|
+
"object"
|
|
52218
|
+
],
|
|
52219
|
+
"properties": {
|
|
52220
|
+
"id": {
|
|
52221
|
+
"types": [
|
|
52222
|
+
"string"
|
|
52223
|
+
]
|
|
52224
|
+
},
|
|
52225
|
+
"label": {
|
|
52226
|
+
"types": [
|
|
52227
|
+
"string"
|
|
52228
|
+
]
|
|
52229
|
+
},
|
|
52230
|
+
"icon": {
|
|
52231
|
+
"types": [
|
|
52232
|
+
"icon",
|
|
52233
|
+
"string"
|
|
52234
|
+
]
|
|
52235
|
+
},
|
|
52236
|
+
"shortcut": {
|
|
52237
|
+
"types": [
|
|
52238
|
+
"string"
|
|
52239
|
+
]
|
|
52240
|
+
},
|
|
52241
|
+
"keywords": {
|
|
52242
|
+
"types": [
|
|
52243
|
+
"array"
|
|
52244
|
+
],
|
|
52245
|
+
"items": {
|
|
52246
|
+
"types": [
|
|
52247
|
+
"string"
|
|
52248
|
+
]
|
|
52249
|
+
}
|
|
52250
|
+
},
|
|
52251
|
+
"group": {
|
|
52252
|
+
"types": [
|
|
52253
|
+
"string"
|
|
52254
|
+
]
|
|
52255
|
+
},
|
|
52256
|
+
"disabled": {
|
|
52257
|
+
"types": [
|
|
52258
|
+
"boolean"
|
|
52259
|
+
]
|
|
52260
|
+
},
|
|
52261
|
+
"event": {
|
|
52262
|
+
"types": [
|
|
52263
|
+
"string"
|
|
52264
|
+
]
|
|
52265
|
+
},
|
|
52266
|
+
"action": {
|
|
52267
|
+
"types": [
|
|
52268
|
+
"string"
|
|
52269
|
+
]
|
|
52270
|
+
},
|
|
52271
|
+
"actionPayload": {
|
|
52272
|
+
"types": [
|
|
52273
|
+
"object"
|
|
52274
|
+
],
|
|
52275
|
+
"freeform": true,
|
|
52276
|
+
"eventPayloadBrand": true
|
|
52277
|
+
}
|
|
52278
|
+
},
|
|
52279
|
+
"required": [
|
|
52280
|
+
"id",
|
|
52281
|
+
"label"
|
|
52282
|
+
]
|
|
52283
|
+
}
|
|
52284
|
+
},
|
|
52285
|
+
"onSelect": {
|
|
52286
|
+
"types": [
|
|
52287
|
+
"function"
|
|
52288
|
+
],
|
|
52289
|
+
"description": "Called with the selected command (click, or Enter on the highlighted row)",
|
|
52290
|
+
"kind": "callback",
|
|
52291
|
+
"callbackArgs": [
|
|
52292
|
+
{
|
|
52293
|
+
"name": "command",
|
|
52294
|
+
"type": "object",
|
|
52295
|
+
"schema": {
|
|
52296
|
+
"types": [
|
|
52297
|
+
"object"
|
|
52298
|
+
],
|
|
52299
|
+
"properties": {
|
|
52300
|
+
"id": {
|
|
52301
|
+
"types": [
|
|
52302
|
+
"string"
|
|
52303
|
+
]
|
|
52304
|
+
},
|
|
52305
|
+
"label": {
|
|
52306
|
+
"types": [
|
|
52307
|
+
"string"
|
|
52308
|
+
]
|
|
52309
|
+
},
|
|
52310
|
+
"icon": {
|
|
52311
|
+
"types": [
|
|
52312
|
+
"icon",
|
|
52313
|
+
"string"
|
|
52314
|
+
]
|
|
52315
|
+
},
|
|
52316
|
+
"shortcut": {
|
|
52317
|
+
"types": [
|
|
52318
|
+
"string"
|
|
52319
|
+
]
|
|
52320
|
+
},
|
|
52321
|
+
"keywords": {
|
|
52322
|
+
"types": [
|
|
52323
|
+
"array"
|
|
52324
|
+
],
|
|
52325
|
+
"items": {
|
|
52326
|
+
"types": [
|
|
52327
|
+
"string"
|
|
52328
|
+
]
|
|
52329
|
+
}
|
|
52330
|
+
},
|
|
52331
|
+
"group": {
|
|
52332
|
+
"types": [
|
|
52333
|
+
"string"
|
|
52334
|
+
]
|
|
52335
|
+
},
|
|
52336
|
+
"disabled": {
|
|
52337
|
+
"types": [
|
|
52338
|
+
"boolean"
|
|
52339
|
+
]
|
|
52340
|
+
},
|
|
52341
|
+
"event": {
|
|
52342
|
+
"types": [
|
|
52343
|
+
"string"
|
|
52344
|
+
]
|
|
52345
|
+
},
|
|
52346
|
+
"action": {
|
|
52347
|
+
"types": [
|
|
52348
|
+
"string"
|
|
52349
|
+
]
|
|
52350
|
+
},
|
|
52351
|
+
"actionPayload": {
|
|
52352
|
+
"types": [
|
|
52353
|
+
"object"
|
|
52354
|
+
],
|
|
52355
|
+
"freeform": true,
|
|
52356
|
+
"eventPayloadBrand": true
|
|
52357
|
+
}
|
|
52358
|
+
},
|
|
52359
|
+
"required": [
|
|
52360
|
+
"id",
|
|
52361
|
+
"label"
|
|
52362
|
+
]
|
|
52363
|
+
}
|
|
52364
|
+
}
|
|
52365
|
+
]
|
|
52366
|
+
},
|
|
52367
|
+
"placeholder": {
|
|
52368
|
+
"types": [
|
|
52369
|
+
"string"
|
|
52370
|
+
],
|
|
52371
|
+
"description": "Search field placeholder. Consumers own i18n — plain string prop, no package-internal translation (matches FloatingToolbar's convention).",
|
|
52372
|
+
"default": "Type a command..."
|
|
52373
|
+
},
|
|
52374
|
+
"emptyLabel": {
|
|
52375
|
+
"types": [
|
|
52376
|
+
"string"
|
|
52377
|
+
],
|
|
52378
|
+
"description": "Label shown when no command matches the query",
|
|
52379
|
+
"default": "No matching commands"
|
|
52380
|
+
},
|
|
52381
|
+
"className": {
|
|
52382
|
+
"types": [
|
|
52383
|
+
"string"
|
|
52384
|
+
],
|
|
52385
|
+
"description": "Additional CSS classes on the overlay's dialog"
|
|
52386
|
+
}
|
|
52387
|
+
}
|
|
52388
|
+
},
|
|
52389
|
+
"game-audio-cue": {
|
|
52390
|
+
"type": "game-audio-cue",
|
|
52391
|
+
"category": "game",
|
|
52392
|
+
"tier": "atoms",
|
|
52393
|
+
"family": "game",
|
|
52394
|
+
"description": "GameAudioCue component",
|
|
52395
|
+
"suggestedFor": [
|
|
52396
|
+
"game",
|
|
52397
|
+
"audio",
|
|
52398
|
+
"cue",
|
|
52399
|
+
"game audio cue"
|
|
52400
|
+
],
|
|
52401
|
+
"typicalSize": "small",
|
|
52402
|
+
"propsSchema": {
|
|
52403
|
+
"cue": {
|
|
52404
|
+
"types": [
|
|
52405
|
+
"string"
|
|
52406
|
+
],
|
|
52407
|
+
"description": "Manifest key played as a one-shot SFX each time `cueSeq` advances."
|
|
52408
|
+
},
|
|
52409
|
+
"cueSeq": {
|
|
52410
|
+
"types": [
|
|
52411
|
+
"number"
|
|
52412
|
+
],
|
|
52413
|
+
"description": "Monotonically increasing counter — bumping it re-triggers `cue`."
|
|
52414
|
+
},
|
|
52415
|
+
"music": {
|
|
52416
|
+
"types": [
|
|
52417
|
+
"string"
|
|
52418
|
+
],
|
|
52419
|
+
"description": "Manifest key to crossfade to as looping background music; unset/empty stops music."
|
|
52420
|
+
},
|
|
52421
|
+
"muted": {
|
|
52422
|
+
"types": [
|
|
52423
|
+
"boolean"
|
|
52424
|
+
],
|
|
52425
|
+
"description": "Muted state, owned externally and mirrored into the hook."
|
|
52426
|
+
},
|
|
52427
|
+
"volume": {
|
|
52428
|
+
"types": [
|
|
52429
|
+
"number"
|
|
52430
|
+
],
|
|
52431
|
+
"description": "Master volume 0-1, owned externally and mirrored into the hook."
|
|
52432
|
+
},
|
|
52433
|
+
"manifest": {
|
|
52434
|
+
"types": [
|
|
52435
|
+
"object"
|
|
52436
|
+
],
|
|
52437
|
+
"description": "Sound manifest — keys mapped to sound definitions (path, volume, loop, ...).",
|
|
52438
|
+
"required": true,
|
|
52439
|
+
"mapValue": {
|
|
52440
|
+
"types": [
|
|
52441
|
+
"object"
|
|
52442
|
+
],
|
|
52443
|
+
"properties": {
|
|
52444
|
+
"path": {
|
|
52445
|
+
"types": [
|
|
52446
|
+
"string",
|
|
52447
|
+
"array"
|
|
52448
|
+
],
|
|
52449
|
+
"items": {
|
|
52450
|
+
"types": [
|
|
52451
|
+
"string"
|
|
52452
|
+
]
|
|
52453
|
+
}
|
|
52454
|
+
},
|
|
52455
|
+
"volume": {
|
|
52456
|
+
"types": [
|
|
52457
|
+
"number"
|
|
52458
|
+
]
|
|
52459
|
+
},
|
|
52460
|
+
"loop": {
|
|
52461
|
+
"types": [
|
|
52462
|
+
"boolean"
|
|
52463
|
+
]
|
|
52464
|
+
},
|
|
52465
|
+
"poolSize": {
|
|
52466
|
+
"types": [
|
|
52467
|
+
"number"
|
|
52468
|
+
]
|
|
52469
|
+
},
|
|
52470
|
+
"autostart": {
|
|
52471
|
+
"types": [
|
|
52472
|
+
"boolean"
|
|
52473
|
+
]
|
|
52474
|
+
},
|
|
52475
|
+
"crossfade": {
|
|
52476
|
+
"types": [
|
|
52477
|
+
"boolean"
|
|
52478
|
+
]
|
|
52479
|
+
},
|
|
52480
|
+
"crossfadeDurationMs": {
|
|
52481
|
+
"types": [
|
|
52482
|
+
"number"
|
|
52483
|
+
]
|
|
52484
|
+
}
|
|
52485
|
+
},
|
|
52486
|
+
"required": [
|
|
52487
|
+
"path"
|
|
52488
|
+
]
|
|
52489
|
+
}
|
|
52490
|
+
},
|
|
52491
|
+
"baseUrl": {
|
|
52492
|
+
"types": [
|
|
52493
|
+
"string"
|
|
52494
|
+
],
|
|
52495
|
+
"description": "Base URL prepended to every manifest path."
|
|
52496
|
+
}
|
|
52497
|
+
}
|
|
51938
52498
|
}
|
|
51939
52499
|
},
|
|
51940
52500
|
"categories": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as TraitTypeParamDef, h as Trait } from './trait-
|
|
1
|
+
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as TraitTypeParamDef, h as Trait } from './trait-Dsp0vmGp.js';
|
|
2
2
|
import { J as JsonValue, E as Expression, S as SExpr, R as RuntimeValue } from './expression-Fk8bQWef.js';
|
|
3
|
-
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-
|
|
3
|
+
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-Baldm2vM.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-
|
|
1
|
+
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-Baldm2vM.js';
|
|
2
2
|
import { E as Expression, S as SExpr, J as JsonValue } from './expression-Fk8bQWef.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|