@almadar/core 10.81.0 → 10.83.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 (34) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +10 -0
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-BHoSW19_.d.ts → effect-DruTSW2O.d.ts} +123 -4
  5. package/dist/{entityAccess-0POr1WuY.d.ts → entityAccess-BoYVXf3b.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +863 -5
  8. package/dist/factory/index.js.map +1 -1
  9. package/dist/factory-runtime/index.d.ts +3 -3
  10. package/dist/factory-runtime/index.js +10 -0
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/{index-rVlLkZJu.d.ts → index-76Ff6JCE.d.ts} +4 -4
  13. package/dist/index.d.ts +10 -10
  14. package/dist/index.js +894 -10
  15. package/dist/index.js.map +1 -1
  16. package/dist/mock/index.d.ts +4 -4
  17. package/dist/mock/index.js +10 -0
  18. package/dist/mock/index.js.map +1 -1
  19. package/dist/patterns/component-mapping.json +11 -1
  20. package/dist/patterns/event-contracts.json +15 -1
  21. package/dist/patterns/index.d.ts +1861 -23
  22. package/dist/patterns/index.js +883 -9
  23. package/dist/patterns/index.js.map +1 -1
  24. package/dist/patterns/integrators-registry.json +1 -1
  25. package/dist/patterns/patterns-registry.json +854 -6
  26. package/dist/patterns/registry.json +854 -6
  27. package/dist/patterns/services-registry.json +1 -1
  28. package/dist/{schema-CkTTGH6l.d.ts → schema-BdeZ8R35.d.ts} +4482 -4482
  29. package/dist/{trait-D269f6pt.d.ts → trait-DKJWX0Ru.d.ts} +1 -1
  30. package/dist/types/index.d.ts +5 -5
  31. package/dist/types/index.js +13 -1
  32. package/dist/types/index.js.map +1 -1
  33. package/dist/{types-7PHjoE7m.d.ts → types-CRr2IuTj.d.ts} +2 -2
  34. package/package.json +1 -1
@@ -1,10 +1,10 @@
1
- import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, bj as PatternType } from '../effect-BHoSW19_.js';
2
- export { bc as PATTERN_TYPES, bg as PatternConfig, bh as PatternProps, bi as PatternPropsMap, de as isValidPatternType } from '../effect-BHoSW19_.js';
1
+ import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, bl as PatternType } from '../effect-DruTSW2O.js';
2
+ export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, di as isValidPatternType } from '../effect-DruTSW2O.js';
3
3
  import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Fk8bQWef.js';
4
4
  import 'zod';
5
5
 
6
6
  var version$3 = "1.0.0";
7
- var exportedAt$3 = "2026-09-03T03:26:05.097Z";
7
+ var exportedAt$3 = "2026-09-04T03:53:29.561Z";
8
8
  var patterns = {
9
9
  "entity-table": {
10
10
  type: "entity-table",
@@ -16463,7 +16463,7 @@ var patterns = {
16463
16463
  types: [
16464
16464
  "object"
16465
16465
  ],
16466
- description: "GAP-80: line-level error/warning highlights for editable mode. Map of 1-based line number → severity. The overlay paints a colored background on each line: error = red, warning = yellow. Pass undefined (default) to disable. The consumer is responsible for computing the path → line map from the schema + validation results.",
16466
+ description: "GAP-80: line-level error/warning highlights. Map of 1-based line number → severity. Paints a colored background on each line: error = red, warning = yellow. Honored by the editable overlay and (GAP-84) by viewer mode's non-diff highlight; pass undefined (default) to disable. The consumer is responsible for computing the path → line map from the schema + validation results.",
16467
16467
  nonAuthorable: true
16468
16468
  },
16469
16469
  title: {
@@ -16752,6 +16752,265 @@ var patterns = {
16752
16752
  "boolean"
16753
16753
  ],
16754
16754
  description: "Show copy button (viewer alias for showCopyButton)"
16755
+ },
16756
+ editorId: {
16757
+ types: [
16758
+ "string"
16759
+ ],
16760
+ description: "Stable identity for the keyboard router / plugin host to target this editor. Unset = this instance never receives capability events.",
16761
+ tier: "presentation"
16762
+ },
16763
+ onEditorFocus: {
16764
+ types: [
16765
+ "string"
16766
+ ],
16767
+ description: "Declarative bus emit fired when this editor gains focus.",
16768
+ kind: "event-ref",
16769
+ emitPayloadSchema: [
16770
+ {
16771
+ name: "editorId",
16772
+ type: "string",
16773
+ required: true
16774
+ }
16775
+ ],
16776
+ "default": "EDITOR_FOCUS",
16777
+ tier: "presentation"
16778
+ },
16779
+ onEditorBlur: {
16780
+ types: [
16781
+ "string"
16782
+ ],
16783
+ description: "Declarative bus emit fired when this editor loses focus.",
16784
+ kind: "event-ref",
16785
+ emitPayloadSchema: [
16786
+ {
16787
+ name: "editorId",
16788
+ type: "string",
16789
+ required: true
16790
+ }
16791
+ ],
16792
+ "default": "EDITOR_BLUR",
16793
+ tier: "presentation"
16794
+ },
16795
+ onMotion: {
16796
+ types: [
16797
+ "string"
16798
+ ],
16799
+ description: "Declarative bus listen: move the cursor per the vim-style motion vocabulary.",
16800
+ kind: "event-listen",
16801
+ listenPayloadSchema: [
16802
+ {
16803
+ name: "editorId",
16804
+ type: "string",
16805
+ required: true
16806
+ },
16807
+ {
16808
+ name: "motion",
16809
+ type: "string",
16810
+ required: true,
16811
+ enumValues: [
16812
+ "left",
16813
+ "right",
16814
+ "up",
16815
+ "down",
16816
+ "word-forward",
16817
+ "word-back",
16818
+ "word-end",
16819
+ "line-start",
16820
+ "line-end",
16821
+ "first-nonblank",
16822
+ "doc-start",
16823
+ "doc-end",
16824
+ "paragraph-forward",
16825
+ "paragraph-back",
16826
+ "line",
16827
+ "selection"
16828
+ ]
16829
+ },
16830
+ {
16831
+ name: "count",
16832
+ type: "number",
16833
+ required: true
16834
+ }
16835
+ ],
16836
+ "default": "MOTION",
16837
+ tier: "presentation"
16838
+ },
16839
+ onOperate: {
16840
+ types: [
16841
+ "string"
16842
+ ],
16843
+ description: "Declarative bus listen: apply a text operator over a motion's range.",
16844
+ kind: "event-listen",
16845
+ listenPayloadSchema: [
16846
+ {
16847
+ name: "editorId",
16848
+ type: "string",
16849
+ required: true
16850
+ },
16851
+ {
16852
+ name: "operator",
16853
+ type: "string",
16854
+ required: true,
16855
+ enumValues: [
16856
+ "delete",
16857
+ "yank",
16858
+ "change"
16859
+ ]
16860
+ },
16861
+ {
16862
+ name: "motion",
16863
+ type: "string",
16864
+ required: true,
16865
+ enumValues: [
16866
+ "left",
16867
+ "right",
16868
+ "up",
16869
+ "down",
16870
+ "word-forward",
16871
+ "word-back",
16872
+ "word-end",
16873
+ "line-start",
16874
+ "line-end",
16875
+ "first-nonblank",
16876
+ "doc-start",
16877
+ "doc-end",
16878
+ "paragraph-forward",
16879
+ "paragraph-back",
16880
+ "line",
16881
+ "selection"
16882
+ ]
16883
+ },
16884
+ {
16885
+ name: "count",
16886
+ type: "number",
16887
+ required: true
16888
+ }
16889
+ ],
16890
+ "default": "OPERATE",
16891
+ tier: "presentation"
16892
+ },
16893
+ onInsertText: {
16894
+ types: [
16895
+ "string"
16896
+ ],
16897
+ description: "Declarative bus listen: insert literal text at the cursor.",
16898
+ kind: "event-listen",
16899
+ listenPayloadSchema: [
16900
+ {
16901
+ name: "editorId",
16902
+ type: "string",
16903
+ required: true
16904
+ },
16905
+ {
16906
+ name: "text",
16907
+ type: "string",
16908
+ required: true
16909
+ }
16910
+ ],
16911
+ "default": "INSERT_TEXT",
16912
+ tier: "presentation"
16913
+ },
16914
+ onSetMode: {
16915
+ types: [
16916
+ "string"
16917
+ ],
16918
+ description: "Declarative bus listen: switch editor mode and caret style.",
16919
+ kind: "event-listen",
16920
+ listenPayloadSchema: [
16921
+ {
16922
+ name: "editorId",
16923
+ type: "string",
16924
+ required: true
16925
+ },
16926
+ {
16927
+ name: "mode",
16928
+ type: "string",
16929
+ required: true
16930
+ },
16931
+ {
16932
+ name: "caret",
16933
+ type: "string",
16934
+ required: true,
16935
+ enumValues: [
16936
+ "bar",
16937
+ "block",
16938
+ "underline"
16939
+ ]
16940
+ }
16941
+ ],
16942
+ "default": "SET_MODE",
16943
+ tier: "presentation"
16944
+ },
16945
+ motions: {
16946
+ types: [
16947
+ "array"
16948
+ ],
16949
+ description: "Motion vocabulary this editor accepts. Default: the full `EditorMotion` set.",
16950
+ items: {
16951
+ types: [
16952
+ "string"
16953
+ ],
16954
+ enumValues: [
16955
+ "left",
16956
+ "right",
16957
+ "up",
16958
+ "down",
16959
+ "word-forward",
16960
+ "word-back",
16961
+ "word-end",
16962
+ "line-start",
16963
+ "line-end",
16964
+ "first-nonblank",
16965
+ "doc-start",
16966
+ "doc-end",
16967
+ "paragraph-forward",
16968
+ "paragraph-back",
16969
+ "line",
16970
+ "selection"
16971
+ ]
16972
+ },
16973
+ "default": [
16974
+ "left",
16975
+ "right",
16976
+ "up",
16977
+ "down",
16978
+ "word-forward",
16979
+ "word-back",
16980
+ "word-end",
16981
+ "line-start",
16982
+ "line-end",
16983
+ "first-nonblank",
16984
+ "doc-start",
16985
+ "doc-end",
16986
+ "paragraph-forward",
16987
+ "paragraph-back",
16988
+ "line",
16989
+ "selection"
16990
+ ],
16991
+ tier: "presentation"
16992
+ },
16993
+ operators: {
16994
+ types: [
16995
+ "array"
16996
+ ],
16997
+ description: "Operator vocabulary this editor accepts. Default: the full `EditorOperator` set.",
16998
+ items: {
16999
+ types: [
17000
+ "string"
17001
+ ],
17002
+ enumValues: [
17003
+ "delete",
17004
+ "yank",
17005
+ "change"
17006
+ ]
17007
+ },
17008
+ "default": [
17009
+ "delete",
17010
+ "yank",
17011
+ "change"
17012
+ ],
17013
+ tier: "presentation"
16755
17014
  }
16756
17015
  }
16757
17016
  },
@@ -26828,7 +27087,12 @@ var patterns = {
26828
27087
  {
26829
27088
  name: "next",
26830
27089
  type: "string",
26831
- required: true
27090
+ required: true,
27091
+ enumValues: [
27092
+ "up",
27093
+ "down",
27094
+ "none"
27095
+ ]
26832
27096
  }
26833
27097
  ]
26834
27098
  },
@@ -27296,7 +27560,12 @@ var patterns = {
27296
27560
  {
27297
27561
  name: "vote",
27298
27562
  type: "string",
27299
- required: true
27563
+ required: true,
27564
+ enumValues: [
27565
+ "up",
27566
+ "down",
27567
+ "none"
27568
+ ]
27300
27569
  }
27301
27570
  ]
27302
27571
  },
@@ -32789,6 +33058,20 @@ var patterns = {
32789
33058
  "role",
32790
33059
  "category"
32791
33060
  ]
33061
+ },
33062
+ toggleEvent: {
33063
+ types: [
33064
+ "string"
33065
+ ],
33066
+ description: "Event dispatched via event bus on toggle, carrying the new muted state.",
33067
+ kind: "event-ref",
33068
+ emitPayloadSchema: [
33069
+ {
33070
+ name: "muted",
33071
+ type: "boolean",
33072
+ required: true
33073
+ }
33074
+ ]
32792
33075
  }
32793
33076
  }
32794
33077
  },
@@ -36364,7 +36647,11 @@ var patterns = {
36364
36647
  {
36365
36648
  name: "direction",
36366
36649
  type: "string",
36367
- required: true
36650
+ required: true,
36651
+ enumValues: [
36652
+ "asc",
36653
+ "desc"
36654
+ ]
36368
36655
  }
36369
36656
  ]
36370
36657
  },
@@ -37896,6 +38183,92 @@ var patterns = {
37896
38183
  ]
37897
38184
  }
37898
38185
  },
38186
+ editable: {
38187
+ types: [
38188
+ "boolean"
38189
+ ],
38190
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely",
38191
+ "default": false
38192
+ },
38193
+ selectedId: {
38194
+ types: [
38195
+ "string"
38196
+ ],
38197
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none.",
38198
+ "default": null
38199
+ },
38200
+ onSelect: {
38201
+ types: [
38202
+ "function"
38203
+ ],
38204
+ description: "Fired on a click that changes selection — before `selectEvent`.",
38205
+ kind: "callback",
38206
+ callbackArgs: [
38207
+ {
38208
+ name: "id",
38209
+ type: "string"
38210
+ }
38211
+ ]
38212
+ },
38213
+ onMove: {
38214
+ types: [
38215
+ "function"
38216
+ ],
38217
+ description: "Fired once per drag gesture, on drop — before `moveEvent`.",
38218
+ kind: "callback",
38219
+ callbackArgs: [
38220
+ {
38221
+ name: "id",
38222
+ type: "string"
38223
+ },
38224
+ {
38225
+ name: "x",
38226
+ type: "number"
38227
+ },
38228
+ {
38229
+ name: "y",
38230
+ type: "number"
38231
+ }
38232
+ ]
38233
+ },
38234
+ selectEvent: {
38235
+ types: [
38236
+ "string"
38237
+ ],
38238
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
38239
+ kind: "event-ref",
38240
+ emitPayloadSchema: [
38241
+ {
38242
+ name: "id",
38243
+ type: "string",
38244
+ required: true
38245
+ }
38246
+ ]
38247
+ },
38248
+ moveEvent: {
38249
+ types: [
38250
+ "string"
38251
+ ],
38252
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` — fired once on drop.",
38253
+ kind: "event-ref",
38254
+ emitPayloadSchema: [
38255
+ {
38256
+ name: "id",
38257
+ type: "string",
38258
+ required: true
38259
+ },
38260
+ {
38261
+ name: "x",
38262
+ type: "number",
38263
+ required: true
38264
+ },
38265
+ {
38266
+ name: "y",
38267
+ type: "number",
38268
+ required: true
38269
+ }
38270
+ ]
38271
+ },
37899
38272
  camera: {
37900
38273
  types: [
37901
38274
  "string"
@@ -38244,7 +38617,13 @@ var patterns = {
38244
38617
  {
38245
38618
  name: "direction",
38246
38619
  type: "string",
38247
- required: true
38620
+ required: true,
38621
+ enumValues: [
38622
+ "up",
38623
+ "down",
38624
+ "left",
38625
+ "right"
38626
+ ]
38248
38627
  },
38249
38628
  {
38250
38629
  name: "pressed",
@@ -39071,6 +39450,12 @@ var patterns = {
39071
39450
  ],
39072
39451
  description: "Background color (default transparent)."
39073
39452
  },
39453
+ fontFamily: {
39454
+ types: [
39455
+ "string"
39456
+ ],
39457
+ description: "Canvas text font family. Falls back to the theme's --font-family-body."
39458
+ },
39074
39459
  shapes: {
39075
39460
  types: [
39076
39461
  "array"
@@ -39195,6 +39580,11 @@ var patterns = {
39195
39580
  "number"
39196
39581
  ]
39197
39582
  },
39583
+ fontFamily: {
39584
+ types: [
39585
+ "string"
39586
+ ]
39587
+ },
39198
39588
  align: {
39199
39589
  types: [
39200
39590
  "string"
@@ -39264,6 +39654,7 @@ var patterns = {
39264
39654
  "string"
39265
39655
  ],
39266
39656
  enumValues: [
39657
+ "solid",
39267
39658
  "dashed",
39268
39659
  "dotted"
39269
39660
  ]
@@ -40573,6 +40964,11 @@ var patterns = {
40573
40964
  "number"
40574
40965
  ]
40575
40966
  },
40967
+ fontFamily: {
40968
+ types: [
40969
+ "string"
40970
+ ]
40971
+ },
40576
40972
  align: {
40577
40973
  types: [
40578
40974
  "string"
@@ -40642,6 +41038,7 @@ var patterns = {
40642
41038
  "string"
40643
41039
  ],
40644
41040
  enumValues: [
41041
+ "solid",
40645
41042
  "dashed",
40646
41043
  "dotted"
40647
41044
  ]
@@ -41853,6 +42250,11 @@ var patterns = {
41853
42250
  "number"
41854
42251
  ]
41855
42252
  },
42253
+ fontFamily: {
42254
+ types: [
42255
+ "string"
42256
+ ]
42257
+ },
41856
42258
  align: {
41857
42259
  types: [
41858
42260
  "string"
@@ -41922,6 +42324,7 @@ var patterns = {
41922
42324
  "string"
41923
42325
  ],
41924
42326
  enumValues: [
42327
+ "solid",
41925
42328
  "dashed",
41926
42329
  "dotted"
41927
42330
  ]
@@ -42330,6 +42733,12 @@ var patterns = {
42330
42733
  description: "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12).",
42331
42734
  "default": 12
42332
42735
  },
42736
+ fontFamily: {
42737
+ types: [
42738
+ "string"
42739
+ ],
42740
+ description: "Canvas text font family. Accepts a known game-font key (e.g. \"future-narrow\") or a CSS font-family string."
42741
+ },
42333
42742
  showCurveLabels: {
42334
42743
  types: [
42335
42744
  "boolean"
@@ -42388,6 +42797,7 @@ var patterns = {
42388
42797
  "string"
42389
42798
  ],
42390
42799
  enumValues: [
42800
+ "solid",
42391
42801
  "dashed",
42392
42802
  "dotted"
42393
42803
  ]
@@ -42678,6 +43088,7 @@ var patterns = {
42678
43088
  "string"
42679
43089
  ],
42680
43090
  enumValues: [
43091
+ "solid",
42681
43092
  "dashed",
42682
43093
  "dotted"
42683
43094
  ]
@@ -42915,6 +43326,11 @@ var patterns = {
42915
43326
  "number"
42916
43327
  ]
42917
43328
  },
43329
+ fontFamily: {
43330
+ types: [
43331
+ "string"
43332
+ ]
43333
+ },
42918
43334
  align: {
42919
43335
  types: [
42920
43336
  "string"
@@ -42984,6 +43400,7 @@ var patterns = {
42984
43400
  "string"
42985
43401
  ],
42986
43402
  enumValues: [
43403
+ "solid",
42987
43404
  "dashed",
42988
43405
  "dotted"
42989
43406
  ]
@@ -44459,6 +44876,11 @@ var patterns = {
44459
44876
  "number"
44460
44877
  ]
44461
44878
  },
44879
+ fontFamily: {
44880
+ types: [
44881
+ "string"
44882
+ ]
44883
+ },
44462
44884
  align: {
44463
44885
  types: [
44464
44886
  "string"
@@ -44528,6 +44950,7 @@ var patterns = {
44528
44950
  "string"
44529
44951
  ],
44530
44952
  enumValues: [
44953
+ "solid",
44531
44954
  "dashed",
44532
44955
  "dotted"
44533
44956
  ]
@@ -45680,6 +46103,11 @@ var patterns = {
45680
46103
  "number"
45681
46104
  ]
45682
46105
  },
46106
+ fontFamily: {
46107
+ types: [
46108
+ "string"
46109
+ ]
46110
+ },
45683
46111
  align: {
45684
46112
  types: [
45685
46113
  "string"
@@ -45749,6 +46177,7 @@ var patterns = {
45749
46177
  "string"
45750
46178
  ],
45751
46179
  enumValues: [
46180
+ "solid",
45752
46181
  "dashed",
45753
46182
  "dotted"
45754
46183
  ]
@@ -48964,6 +49393,90 @@ var patterns = {
48964
49393
  ]
48965
49394
  }
48966
49395
  },
49396
+ editable: {
49397
+ types: [
49398
+ "boolean"
49399
+ ],
49400
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely"
49401
+ },
49402
+ selectedId: {
49403
+ types: [
49404
+ "string"
49405
+ ],
49406
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none."
49407
+ },
49408
+ onSelect: {
49409
+ types: [
49410
+ "function"
49411
+ ],
49412
+ description: "Fired on a click that changes selection — before `selectEvent`.",
49413
+ kind: "callback",
49414
+ callbackArgs: [
49415
+ {
49416
+ name: "id",
49417
+ type: "string"
49418
+ }
49419
+ ]
49420
+ },
49421
+ onMove: {
49422
+ types: [
49423
+ "function"
49424
+ ],
49425
+ description: "Fired once per drag gesture, on drop — before `moveEvent`.",
49426
+ kind: "callback",
49427
+ callbackArgs: [
49428
+ {
49429
+ name: "id",
49430
+ type: "string"
49431
+ },
49432
+ {
49433
+ name: "x",
49434
+ type: "number"
49435
+ },
49436
+ {
49437
+ name: "y",
49438
+ type: "number"
49439
+ }
49440
+ ]
49441
+ },
49442
+ selectEvent: {
49443
+ types: [
49444
+ "string"
49445
+ ],
49446
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
49447
+ kind: "event-ref",
49448
+ emitPayloadSchema: [
49449
+ {
49450
+ name: "id",
49451
+ type: "string",
49452
+ required: true
49453
+ }
49454
+ ]
49455
+ },
49456
+ moveEvent: {
49457
+ types: [
49458
+ "string"
49459
+ ],
49460
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` — fired once on drop.",
49461
+ kind: "event-ref",
49462
+ emitPayloadSchema: [
49463
+ {
49464
+ name: "id",
49465
+ type: "string",
49466
+ required: true
49467
+ },
49468
+ {
49469
+ name: "x",
49470
+ type: "number",
49471
+ required: true
49472
+ },
49473
+ {
49474
+ name: "y",
49475
+ type: "number",
49476
+ required: true
49477
+ }
49478
+ ]
49479
+ },
48967
49480
  children: {
48968
49481
  types: [
48969
49482
  "node"
@@ -50497,6 +51010,11 @@ var patterns = {
50497
51010
  "number"
50498
51011
  ]
50499
51012
  },
51013
+ fontFamily: {
51014
+ types: [
51015
+ "string"
51016
+ ]
51017
+ },
50500
51018
  align: {
50501
51019
  types: [
50502
51020
  "string"
@@ -50566,6 +51084,7 @@ var patterns = {
50566
51084
  "string"
50567
51085
  ],
50568
51086
  enumValues: [
51087
+ "solid",
50569
51088
  "dashed",
50570
51089
  "dotted"
50571
51090
  ]
@@ -51814,6 +52333,11 @@ var patterns = {
51814
52333
  types: [
51815
52334
  "boolean"
51816
52335
  ]
52336
+ },
52337
+ testId: {
52338
+ types: [
52339
+ "string"
52340
+ ]
51817
52341
  }
51818
52342
  },
51819
52343
  required: [
@@ -52070,6 +52594,330 @@ var patterns = {
52070
52594
  description: "secondarySidebarClassName prop"
52071
52595
  }
52072
52596
  }
52597
+ },
52598
+ "command-palette": {
52599
+ type: "command-palette",
52600
+ category: "component",
52601
+ tier: "molecules",
52602
+ family: "core",
52603
+ description: "CommandPalette component",
52604
+ suggestedFor: [
52605
+ "command",
52606
+ "palette",
52607
+ "command palette"
52608
+ ],
52609
+ typicalSize: "medium",
52610
+ propsSchema: {
52611
+ open: {
52612
+ types: [
52613
+ "boolean"
52614
+ ],
52615
+ description: "Whether the palette overlay is open",
52616
+ required: true
52617
+ },
52618
+ onOpenChange: {
52619
+ types: [
52620
+ "function"
52621
+ ],
52622
+ description: "Called to open/close the overlay (Escape, overlay click, or a selection)",
52623
+ required: true,
52624
+ kind: "callback",
52625
+ callbackArgs: [
52626
+ {
52627
+ name: "open",
52628
+ type: "boolean"
52629
+ }
52630
+ ]
52631
+ },
52632
+ commands: {
52633
+ types: [
52634
+ "array"
52635
+ ],
52636
+ description: "Commands listed in the palette, filtered as the user types",
52637
+ required: true,
52638
+ items: {
52639
+ types: [
52640
+ "object"
52641
+ ],
52642
+ properties: {
52643
+ id: {
52644
+ types: [
52645
+ "string"
52646
+ ]
52647
+ },
52648
+ label: {
52649
+ types: [
52650
+ "string"
52651
+ ]
52652
+ },
52653
+ icon: {
52654
+ types: [
52655
+ "icon",
52656
+ "string"
52657
+ ]
52658
+ },
52659
+ shortcut: {
52660
+ types: [
52661
+ "string"
52662
+ ]
52663
+ },
52664
+ keywords: {
52665
+ types: [
52666
+ "array"
52667
+ ],
52668
+ items: {
52669
+ types: [
52670
+ "string"
52671
+ ]
52672
+ }
52673
+ },
52674
+ group: {
52675
+ types: [
52676
+ "string"
52677
+ ]
52678
+ },
52679
+ disabled: {
52680
+ types: [
52681
+ "boolean"
52682
+ ]
52683
+ },
52684
+ event: {
52685
+ types: [
52686
+ "string"
52687
+ ]
52688
+ },
52689
+ action: {
52690
+ types: [
52691
+ "string"
52692
+ ]
52693
+ },
52694
+ actionPayload: {
52695
+ types: [
52696
+ "object"
52697
+ ],
52698
+ freeform: true,
52699
+ eventPayloadBrand: true
52700
+ }
52701
+ },
52702
+ required: [
52703
+ "id",
52704
+ "label"
52705
+ ]
52706
+ }
52707
+ },
52708
+ onSelect: {
52709
+ types: [
52710
+ "function"
52711
+ ],
52712
+ description: "Called with the selected command (click, or Enter on the highlighted row)",
52713
+ kind: "callback",
52714
+ callbackArgs: [
52715
+ {
52716
+ name: "command",
52717
+ type: "object",
52718
+ schema: {
52719
+ types: [
52720
+ "object"
52721
+ ],
52722
+ properties: {
52723
+ id: {
52724
+ types: [
52725
+ "string"
52726
+ ]
52727
+ },
52728
+ label: {
52729
+ types: [
52730
+ "string"
52731
+ ]
52732
+ },
52733
+ icon: {
52734
+ types: [
52735
+ "icon",
52736
+ "string"
52737
+ ]
52738
+ },
52739
+ shortcut: {
52740
+ types: [
52741
+ "string"
52742
+ ]
52743
+ },
52744
+ keywords: {
52745
+ types: [
52746
+ "array"
52747
+ ],
52748
+ items: {
52749
+ types: [
52750
+ "string"
52751
+ ]
52752
+ }
52753
+ },
52754
+ group: {
52755
+ types: [
52756
+ "string"
52757
+ ]
52758
+ },
52759
+ disabled: {
52760
+ types: [
52761
+ "boolean"
52762
+ ]
52763
+ },
52764
+ event: {
52765
+ types: [
52766
+ "string"
52767
+ ]
52768
+ },
52769
+ action: {
52770
+ types: [
52771
+ "string"
52772
+ ]
52773
+ },
52774
+ actionPayload: {
52775
+ types: [
52776
+ "object"
52777
+ ],
52778
+ freeform: true,
52779
+ eventPayloadBrand: true
52780
+ }
52781
+ },
52782
+ required: [
52783
+ "id",
52784
+ "label"
52785
+ ]
52786
+ }
52787
+ }
52788
+ ]
52789
+ },
52790
+ placeholder: {
52791
+ types: [
52792
+ "string"
52793
+ ],
52794
+ description: "Search field placeholder. Consumers own i18n — plain string prop, no package-internal translation (matches FloatingToolbar's convention).",
52795
+ "default": "Type a command..."
52796
+ },
52797
+ emptyLabel: {
52798
+ types: [
52799
+ "string"
52800
+ ],
52801
+ description: "Label shown when no command matches the query",
52802
+ "default": "No matching commands"
52803
+ },
52804
+ className: {
52805
+ types: [
52806
+ "string"
52807
+ ],
52808
+ description: "Additional CSS classes on the overlay's dialog"
52809
+ }
52810
+ }
52811
+ },
52812
+ "game-audio-cue": {
52813
+ type: "game-audio-cue",
52814
+ category: "game",
52815
+ tier: "atoms",
52816
+ family: "game",
52817
+ description: "GameAudioCue component",
52818
+ suggestedFor: [
52819
+ "game",
52820
+ "audio",
52821
+ "cue",
52822
+ "game audio cue"
52823
+ ],
52824
+ typicalSize: "small",
52825
+ propsSchema: {
52826
+ cue: {
52827
+ types: [
52828
+ "string"
52829
+ ],
52830
+ description: "Manifest key played as a one-shot SFX each time `cueSeq` advances."
52831
+ },
52832
+ cueSeq: {
52833
+ types: [
52834
+ "number"
52835
+ ],
52836
+ description: "Monotonically increasing counter — bumping it re-triggers `cue`."
52837
+ },
52838
+ music: {
52839
+ types: [
52840
+ "string"
52841
+ ],
52842
+ description: "Manifest key to crossfade to as looping background music; unset/empty stops music."
52843
+ },
52844
+ muted: {
52845
+ types: [
52846
+ "boolean"
52847
+ ],
52848
+ description: "Muted state, owned externally and mirrored into the hook."
52849
+ },
52850
+ volume: {
52851
+ types: [
52852
+ "number"
52853
+ ],
52854
+ description: "Master volume 0-1, owned externally and mirrored into the hook."
52855
+ },
52856
+ manifest: {
52857
+ types: [
52858
+ "object"
52859
+ ],
52860
+ description: "Sound manifest — keys mapped to sound definitions (path, volume, loop, ...).",
52861
+ required: true,
52862
+ mapValue: {
52863
+ types: [
52864
+ "object"
52865
+ ],
52866
+ properties: {
52867
+ path: {
52868
+ types: [
52869
+ "string",
52870
+ "array"
52871
+ ],
52872
+ items: {
52873
+ types: [
52874
+ "string"
52875
+ ]
52876
+ }
52877
+ },
52878
+ volume: {
52879
+ types: [
52880
+ "number"
52881
+ ]
52882
+ },
52883
+ loop: {
52884
+ types: [
52885
+ "boolean"
52886
+ ]
52887
+ },
52888
+ poolSize: {
52889
+ types: [
52890
+ "number"
52891
+ ]
52892
+ },
52893
+ autostart: {
52894
+ types: [
52895
+ "boolean"
52896
+ ]
52897
+ },
52898
+ crossfade: {
52899
+ types: [
52900
+ "boolean"
52901
+ ]
52902
+ },
52903
+ crossfadeDurationMs: {
52904
+ types: [
52905
+ "number"
52906
+ ]
52907
+ }
52908
+ },
52909
+ required: [
52910
+ "path"
52911
+ ]
52912
+ }
52913
+ },
52914
+ baseUrl: {
52915
+ types: [
52916
+ "string"
52917
+ ],
52918
+ description: "Base URL prepended to every manifest path."
52919
+ }
52920
+ }
52073
52921
  }
52074
52922
  };
52075
52923
  var categories$1 = [
@@ -52098,7 +52946,7 @@ var patternsRegistry = {
52098
52946
  };
52099
52947
 
52100
52948
  var version$2 = "1.0.0";
52101
- var exportedAt$2 = "2026-09-03T08:33:38.850Z";
52949
+ var exportedAt$2 = "2026-09-03T18:48:24.308Z";
52102
52950
  var integrators = {
52103
52951
  github: {
52104
52952
  name: "github",
@@ -55625,7 +56473,7 @@ var integratorsRegistry = {
55625
56473
  };
55626
56474
 
55627
56475
  var version$1 = "1.0.0";
55628
- var exportedAt$1 = "2026-09-03T03:26:05.097Z";
56476
+ var exportedAt$1 = "2026-09-04T03:53:29.561Z";
55629
56477
  var mappings = {
55630
56478
  "page-header": {
55631
56479
  component: "PageHeader",
@@ -57048,6 +57896,16 @@ var mappings = {
57048
57896
  component: "DockLayout",
57049
57897
  importPath: "@/components/core/organisms/DockLayout",
57050
57898
  category: "layout"
57899
+ },
57900
+ "command-palette": {
57901
+ component: "CommandPalette",
57902
+ importPath: "@/components/core/molecules/CommandPalette",
57903
+ category: "component"
57904
+ },
57905
+ "game-audio-cue": {
57906
+ component: "GameAudioCue",
57907
+ importPath: "@/components/game/atoms/GameAudioCue",
57908
+ category: "game"
57051
57909
  }
57052
57910
  };
57053
57911
  var componentMapping = {
@@ -57057,7 +57915,7 @@ var componentMapping = {
57057
57915
  };
57058
57916
 
57059
57917
  var version = "1.0.0";
57060
- var exportedAt = "2026-09-03T03:26:05.097Z";
57918
+ var exportedAt = "2026-09-04T03:53:29.561Z";
57061
57919
  var contracts = {
57062
57920
  form: {
57063
57921
  emits: [
@@ -58000,6 +58858,20 @@ var contracts = {
58000
58858
  payload: {
58001
58859
  type: "object"
58002
58860
  }
58861
+ },
58862
+ {
58863
+ event: "EDITOR_FOCUS",
58864
+ trigger: "action",
58865
+ payload: {
58866
+ type: "object"
58867
+ }
58868
+ },
58869
+ {
58870
+ event: "EDITOR_BLUR",
58871
+ trigger: "action",
58872
+ payload: {
58873
+ type: "object"
58874
+ }
58003
58875
  }
58004
58876
  ],
58005
58877
  requires: [
@@ -58404,6 +59276,10 @@ interface PatternPayloadField {
58404
59276
  name: string;
58405
59277
  type: string;
58406
59278
  required?: boolean;
59279
+ /** Allowed literal values when the field's TS type is a string-literal
59280
+ * union (directly, or via a type alias) — `type` stays `"string"`.
59281
+ * Mirrors {@link PatternPropTypeSchema.enumValues}. */
59282
+ enumValues?: string[];
58407
59283
  }
58408
59284
  /**
58409
59285
  * One positional parameter of a React callback prop. Validator (L2.2)
@@ -69049,6 +69925,121 @@ declare const registry: {
69049
69925
  types: string[];
69050
69926
  description: string;
69051
69927
  };
69928
+ editorId: {
69929
+ types: string[];
69930
+ description: string;
69931
+ tier: string;
69932
+ };
69933
+ onEditorFocus: {
69934
+ types: string[];
69935
+ description: string;
69936
+ kind: string;
69937
+ emitPayloadSchema: {
69938
+ name: string;
69939
+ type: string;
69940
+ required: boolean;
69941
+ }[];
69942
+ default: string;
69943
+ tier: string;
69944
+ };
69945
+ onEditorBlur: {
69946
+ types: string[];
69947
+ description: string;
69948
+ kind: string;
69949
+ emitPayloadSchema: {
69950
+ name: string;
69951
+ type: string;
69952
+ required: boolean;
69953
+ }[];
69954
+ default: string;
69955
+ tier: string;
69956
+ };
69957
+ onMotion: {
69958
+ types: string[];
69959
+ description: string;
69960
+ kind: string;
69961
+ listenPayloadSchema: ({
69962
+ name: string;
69963
+ type: string;
69964
+ required: boolean;
69965
+ enumValues?: undefined;
69966
+ } | {
69967
+ name: string;
69968
+ type: string;
69969
+ required: boolean;
69970
+ enumValues: string[];
69971
+ })[];
69972
+ default: string;
69973
+ tier: string;
69974
+ };
69975
+ onOperate: {
69976
+ types: string[];
69977
+ description: string;
69978
+ kind: string;
69979
+ listenPayloadSchema: ({
69980
+ name: string;
69981
+ type: string;
69982
+ required: boolean;
69983
+ enumValues?: undefined;
69984
+ } | {
69985
+ name: string;
69986
+ type: string;
69987
+ required: boolean;
69988
+ enumValues: string[];
69989
+ })[];
69990
+ default: string;
69991
+ tier: string;
69992
+ };
69993
+ onInsertText: {
69994
+ types: string[];
69995
+ description: string;
69996
+ kind: string;
69997
+ listenPayloadSchema: {
69998
+ name: string;
69999
+ type: string;
70000
+ required: boolean;
70001
+ }[];
70002
+ default: string;
70003
+ tier: string;
70004
+ };
70005
+ onSetMode: {
70006
+ types: string[];
70007
+ description: string;
70008
+ kind: string;
70009
+ listenPayloadSchema: ({
70010
+ name: string;
70011
+ type: string;
70012
+ required: boolean;
70013
+ enumValues?: undefined;
70014
+ } | {
70015
+ name: string;
70016
+ type: string;
70017
+ required: boolean;
70018
+ enumValues: string[];
70019
+ })[];
70020
+ default: string;
70021
+ tier: string;
70022
+ };
70023
+ motions: {
70024
+ types: string[];
70025
+ description: string;
70026
+ items: {
70027
+ types: string[];
70028
+ enumValues: string[];
70029
+ };
70030
+ default: string[];
70031
+ tier: string;
70032
+ };
70033
+ operators: {
70034
+ types: string[];
70035
+ description: string;
70036
+ items: {
70037
+ types: string[];
70038
+ enumValues: string[];
70039
+ };
70040
+ default: string[];
70041
+ tier: string;
70042
+ };
69052
70043
  };
69053
70044
  };
69054
70045
  "markdown-content": {
@@ -75302,6 +76293,7 @@ declare const registry: {
75302
76293
  name: string;
75303
76294
  type: string;
75304
76295
  required: boolean;
76296
+ enumValues: string[];
75305
76297
  }[];
75306
76298
  };
75307
76299
  disabled: {
@@ -75569,11 +76561,17 @@ declare const registry: {
75569
76561
  types: string[];
75570
76562
  description: string;
75571
76563
  kind: string;
75572
- emitPayloadSchema: {
76564
+ emitPayloadSchema: ({
75573
76565
  name: string;
75574
76566
  type: string;
75575
76567
  required: boolean;
75576
- }[];
76568
+ enumValues?: undefined;
76569
+ } | {
76570
+ name: string;
76571
+ type: string;
76572
+ required: boolean;
76573
+ enumValues: string[];
76574
+ })[];
75577
76575
  };
75578
76576
  replyEvent: {
75579
76577
  types: string[];
@@ -78938,6 +79936,16 @@ declare const registry: {
78938
79936
  };
78939
79937
  propertyRequired: string[];
78940
79938
  };
79939
+ toggleEvent: {
79940
+ types: string[];
79941
+ description: string;
79942
+ kind: string;
79943
+ emitPayloadSchema: {
79944
+ name: string;
79945
+ type: string;
79946
+ required: boolean;
79947
+ }[];
79948
+ };
78941
79949
  };
78942
79950
  };
78943
79951
  "trait-slot": {
@@ -81040,11 +82048,17 @@ declare const registry: {
81040
82048
  types: string[];
81041
82049
  description: string;
81042
82050
  kind: string;
81043
- emitPayloadSchema: {
82051
+ emitPayloadSchema: ({
81044
82052
  name: string;
81045
82053
  type: string;
81046
82054
  required: boolean;
81047
- }[];
82055
+ enumValues?: undefined;
82056
+ } | {
82057
+ name: string;
82058
+ type: string;
82059
+ required: boolean;
82060
+ enumValues: string[];
82061
+ })[];
81048
82062
  };
81049
82063
  sortColumn: {
81050
82064
  types: string[];
@@ -81996,6 +83010,54 @@ declare const registry: {
81996
83010
  types: string[];
81997
83011
  };
81998
83012
  };
83013
+ editable: {
83014
+ types: string[];
83015
+ description: string;
83016
+ default: boolean;
83017
+ };
83018
+ selectedId: {
83019
+ types: string[];
83020
+ description: string;
83021
+ default: null;
83022
+ };
83023
+ onSelect: {
83024
+ types: string[];
83025
+ description: string;
83026
+ kind: string;
83027
+ callbackArgs: {
83028
+ name: string;
83029
+ type: string;
83030
+ }[];
83031
+ };
83032
+ onMove: {
83033
+ types: string[];
83034
+ description: string;
83035
+ kind: string;
83036
+ callbackArgs: {
83037
+ name: string;
83038
+ type: string;
83039
+ }[];
83040
+ };
83041
+ selectEvent: {
83042
+ types: string[];
83043
+ description: string;
83044
+ kind: string;
83045
+ emitPayloadSchema: {
83046
+ name: string;
83047
+ type: string;
83048
+ required: boolean;
83049
+ }[];
83050
+ };
83051
+ moveEvent: {
83052
+ types: string[];
83053
+ description: string;
83054
+ kind: string;
83055
+ emitPayloadSchema: {
83056
+ name: string;
83057
+ type: string;
83058
+ required: boolean;
83059
+ }[];
83060
+ };
81999
83061
  camera: {
82000
83062
  types: string[];
82001
83063
  description: string;
@@ -82195,11 +83257,17 @@ declare const registry: {
82195
83257
  types: string[];
82196
83258
  description: string;
82197
83259
  kind: string;
82198
- emitPayloadSchema: {
83260
+ emitPayloadSchema: ({
82199
83261
  name: string;
82200
83262
  type: string;
82201
83263
  required: boolean;
82202
- }[];
83264
+ enumValues: string[];
83265
+ } | {
83266
+ name: string;
83267
+ type: string;
83268
+ required: boolean;
83269
+ enumValues?: undefined;
83270
+ })[];
82203
83271
  };
82204
83272
  directionEvents: {
82205
83273
  types: string[];
@@ -82696,6 +83764,10 @@ declare const registry: {
82696
83764
  types: string[];
82697
83765
  description: string;
82698
83766
  };
83767
+ fontFamily: {
83768
+ types: string[];
83769
+ description: string;
83770
+ };
82699
83771
  shapes: {
82700
83772
  types: string[];
82701
83773
  description: string;
@@ -82763,6 +83835,9 @@ declare const registry: {
82763
83835
  fontSize: {
82764
83836
  types: string[];
82765
83837
  };
83838
+ fontFamily: {
83839
+ types: string[];
83840
+ };
82766
83841
  align: {
82767
83842
  types: string[];
82768
83843
  enumValues: string[];
@@ -83573,6 +84648,9 @@ declare const registry: {
83573
84648
  fontSize: {
83574
84649
  types: string[];
83575
84650
  };
84651
+ fontFamily: {
84652
+ types: string[];
84653
+ };
83576
84654
  align: {
83577
84655
  types: string[];
83578
84656
  enumValues: string[];
@@ -84325,6 +85403,9 @@ declare const registry: {
84325
85403
  fontSize: {
84326
85404
  types: string[];
84327
85405
  };
85406
+ fontFamily: {
85407
+ types: string[];
85408
+ };
84328
85409
  align: {
84329
85410
  types: string[];
84330
85411
  enumValues: string[];
@@ -84624,6 +85705,10 @@ declare const registry: {
84624
85705
  description: string;
84625
85706
  default: number;
84626
85707
  };
85708
+ fontFamily: {
85709
+ types: string[];
85710
+ description: string;
85711
+ };
84627
85712
  showCurveLabels: {
84628
85713
  types: string[];
84629
85714
  description: string;
@@ -84956,6 +86041,9 @@ declare const registry: {
84956
86041
  fontSize: {
84957
86042
  types: string[];
84958
86043
  };
86044
+ fontFamily: {
86045
+ types: string[];
86046
+ };
84959
86047
  align: {
84960
86048
  types: string[];
84961
86049
  enumValues: string[];
@@ -85869,6 +86957,9 @@ declare const registry: {
85869
86957
  fontSize: {
85870
86958
  types: string[];
85871
86959
  };
86960
+ fontFamily: {
86961
+ types: string[];
86962
+ };
85872
86963
  align: {
85873
86964
  types: string[];
85874
86965
  enumValues: string[];
@@ -86604,6 +87695,9 @@ declare const registry: {
86604
87695
  fontSize: {
86605
87696
  types: string[];
86606
87697
  };
87698
+ fontFamily: {
87699
+ types: string[];
87700
+ };
86607
87701
  align: {
86608
87702
  types: string[];
86609
87703
  enumValues: string[];
@@ -88478,6 +89572,52 @@ declare const registry: {
88478
89572
  types: string[];
88479
89573
  };
88480
89574
  };
89575
+ editable: {
89576
+ types: string[];
89577
+ description: string;
89578
+ };
89579
+ selectedId: {
89580
+ types: string[];
89581
+ description: string;
89582
+ };
89583
+ onSelect: {
89584
+ types: string[];
89585
+ description: string;
89586
+ kind: string;
89587
+ callbackArgs: {
89588
+ name: string;
89589
+ type: string;
89590
+ }[];
89591
+ };
89592
+ onMove: {
89593
+ types: string[];
89594
+ description: string;
89595
+ kind: string;
89596
+ callbackArgs: {
89597
+ name: string;
89598
+ type: string;
89599
+ }[];
89600
+ };
89601
+ selectEvent: {
89602
+ types: string[];
89603
+ description: string;
89604
+ kind: string;
89605
+ emitPayloadSchema: {
89606
+ name: string;
89607
+ type: string;
89608
+ required: boolean;
89609
+ }[];
89610
+ };
89611
+ moveEvent: {
89612
+ types: string[];
89613
+ description: string;
89614
+ kind: string;
89615
+ emitPayloadSchema: {
89616
+ name: string;
89617
+ type: string;
89618
+ required: boolean;
89619
+ }[];
89620
+ };
88481
89621
  children: {
88482
89622
  types: string[];
88483
89623
  description: string;
@@ -89418,6 +90558,9 @@ declare const registry: {
89418
90558
  fontSize: {
89419
90559
  types: string[];
89420
90560
  };
90561
+ fontFamily: {
90562
+ types: string[];
90563
+ };
89421
90564
  align: {
89422
90565
  types: string[];
89423
90566
  enumValues: string[];
@@ -90207,6 +91350,9 @@ declare const registry: {
90207
91350
  disabled: {
90208
91351
  types: string[];
90209
91352
  };
91353
+ testId: {
91354
+ types: string[];
91355
+ };
90210
91356
  };
90211
91357
  required: string[];
90212
91358
  };
@@ -90381,6 +91527,212 @@ declare const registry: {
90381
91527
  };
90382
91528
  };
90383
91529
  };
91530
+ "command-palette": {
91531
+ type: string;
91532
+ category: string;
91533
+ tier: string;
91534
+ family: string;
91535
+ description: string;
91536
+ suggestedFor: string[];
91537
+ typicalSize: string;
91538
+ propsSchema: {
91539
+ open: {
91540
+ types: string[];
91541
+ description: string;
91542
+ required: boolean;
91543
+ };
91544
+ onOpenChange: {
91545
+ types: string[];
91546
+ description: string;
91547
+ required: boolean;
91548
+ kind: string;
91549
+ callbackArgs: {
91550
+ name: string;
91551
+ type: string;
91552
+ }[];
91553
+ };
91554
+ commands: {
91555
+ types: string[];
91556
+ description: string;
91557
+ required: boolean;
91558
+ items: {
91559
+ types: string[];
91560
+ properties: {
91561
+ id: {
91562
+ types: string[];
91563
+ };
91564
+ label: {
91565
+ types: string[];
91566
+ };
91567
+ icon: {
91568
+ types: string[];
91569
+ };
91570
+ shortcut: {
91571
+ types: string[];
91572
+ };
91573
+ keywords: {
91574
+ types: string[];
91575
+ items: {
91576
+ types: string[];
91577
+ };
91578
+ };
91579
+ group: {
91580
+ types: string[];
91581
+ };
91582
+ disabled: {
91583
+ types: string[];
91584
+ };
91585
+ event: {
91586
+ types: string[];
91587
+ };
91588
+ action: {
91589
+ types: string[];
91590
+ };
91591
+ actionPayload: {
91592
+ types: string[];
91593
+ freeform: boolean;
91594
+ eventPayloadBrand: boolean;
91595
+ };
91596
+ };
91597
+ required: string[];
91598
+ };
91599
+ };
91600
+ onSelect: {
91601
+ types: string[];
91602
+ description: string;
91603
+ kind: string;
91604
+ callbackArgs: {
91605
+ name: string;
91606
+ type: string;
91607
+ schema: {
91608
+ types: string[];
91609
+ properties: {
91610
+ id: {
91611
+ types: string[];
91612
+ };
91613
+ label: {
91614
+ types: string[];
91615
+ };
91616
+ icon: {
91617
+ types: string[];
91618
+ };
91619
+ shortcut: {
91620
+ types: string[];
91621
+ };
91622
+ keywords: {
91623
+ types: string[];
91624
+ items: {
91625
+ types: string[];
91626
+ };
91627
+ };
91628
+ group: {
91629
+ types: string[];
91630
+ };
91631
+ disabled: {
91632
+ types: string[];
91633
+ };
91634
+ event: {
91635
+ types: string[];
91636
+ };
91637
+ action: {
91638
+ types: string[];
91639
+ };
91640
+ actionPayload: {
91641
+ types: string[];
91642
+ freeform: boolean;
91643
+ eventPayloadBrand: boolean;
91644
+ };
91645
+ };
91646
+ required: string[];
91647
+ };
91648
+ }[];
91649
+ };
91650
+ placeholder: {
91651
+ types: string[];
91652
+ description: string;
91653
+ default: string;
91654
+ };
91655
+ emptyLabel: {
91656
+ types: string[];
91657
+ description: string;
91658
+ default: string;
91659
+ };
91660
+ className: {
91661
+ types: string[];
91662
+ description: string;
91663
+ };
91664
+ };
91665
+ };
91666
+ "game-audio-cue": {
91667
+ type: string;
91668
+ category: string;
91669
+ tier: string;
91670
+ family: string;
91671
+ description: string;
91672
+ suggestedFor: string[];
91673
+ typicalSize: string;
91674
+ propsSchema: {
91675
+ cue: {
91676
+ types: string[];
91677
+ description: string;
91678
+ };
91679
+ cueSeq: {
91680
+ types: string[];
91681
+ description: string;
91682
+ };
91683
+ music: {
91684
+ types: string[];
91685
+ description: string;
91686
+ };
91687
+ muted: {
91688
+ types: string[];
91689
+ description: string;
91690
+ };
91691
+ volume: {
91692
+ types: string[];
91693
+ description: string;
91694
+ };
91695
+ manifest: {
91696
+ types: string[];
91697
+ description: string;
91698
+ required: boolean;
91699
+ mapValue: {
91700
+ types: string[];
91701
+ properties: {
91702
+ path: {
91703
+ types: string[];
91704
+ items: {
91705
+ types: string[];
91706
+ };
91707
+ };
91708
+ volume: {
91709
+ types: string[];
91710
+ };
91711
+ loop: {
91712
+ types: string[];
91713
+ };
91714
+ poolSize: {
91715
+ types: string[];
91716
+ };
91717
+ autostart: {
91718
+ types: string[];
91719
+ };
91720
+ crossfade: {
91721
+ types: string[];
91722
+ };
91723
+ crossfadeDurationMs: {
91724
+ types: string[];
91725
+ };
91726
+ };
91727
+ required: string[];
91728
+ };
91729
+ };
91730
+ baseUrl: {
91731
+ types: string[];
91732
+ description: string;
91733
+ };
91734
+ };
91735
+ };
90384
91736
  };
90385
91737
  categories: string[];
90386
91738
  };
@@ -100547,6 +101899,121 @@ declare const PATTERN_REGISTRY: {
100547
101899
  types: string[];
100548
101900
  description: string;
100549
101901
  };
101902
+ editorId: {
101903
+ types: string[];
101904
+ description: string;
101905
+ tier: string;
101906
+ };
101907
+ onEditorFocus: {
101908
+ types: string[];
101909
+ description: string;
101910
+ kind: string;
101911
+ emitPayloadSchema: {
101912
+ name: string;
101913
+ type: string;
101914
+ required: boolean;
101915
+ }[];
101916
+ default: string;
101917
+ tier: string;
101918
+ };
101919
+ onEditorBlur: {
101920
+ types: string[];
101921
+ description: string;
101922
+ kind: string;
101923
+ emitPayloadSchema: {
101924
+ name: string;
101925
+ type: string;
101926
+ required: boolean;
101927
+ }[];
101928
+ default: string;
101929
+ tier: string;
101930
+ };
101931
+ onMotion: {
101932
+ types: string[];
101933
+ description: string;
101934
+ kind: string;
101935
+ listenPayloadSchema: ({
101936
+ name: string;
101937
+ type: string;
101938
+ required: boolean;
101939
+ enumValues?: undefined;
101940
+ } | {
101941
+ name: string;
101942
+ type: string;
101943
+ required: boolean;
101944
+ enumValues: string[];
101945
+ })[];
101946
+ default: string;
101947
+ tier: string;
101948
+ };
101949
+ onOperate: {
101950
+ types: string[];
101951
+ description: string;
101952
+ kind: string;
101953
+ listenPayloadSchema: ({
101954
+ name: string;
101955
+ type: string;
101956
+ required: boolean;
101957
+ enumValues?: undefined;
101958
+ } | {
101959
+ name: string;
101960
+ type: string;
101961
+ required: boolean;
101962
+ enumValues: string[];
101963
+ })[];
101964
+ default: string;
101965
+ tier: string;
101966
+ };
101967
+ onInsertText: {
101968
+ types: string[];
101969
+ description: string;
101970
+ kind: string;
101971
+ listenPayloadSchema: {
101972
+ name: string;
101973
+ type: string;
101974
+ required: boolean;
101975
+ }[];
101976
+ default: string;
101977
+ tier: string;
101978
+ };
101979
+ onSetMode: {
101980
+ types: string[];
101981
+ description: string;
101982
+ kind: string;
101983
+ listenPayloadSchema: ({
101984
+ name: string;
101985
+ type: string;
101986
+ required: boolean;
101987
+ enumValues?: undefined;
101988
+ } | {
101989
+ name: string;
101990
+ type: string;
101991
+ required: boolean;
101992
+ enumValues: string[];
101993
+ })[];
101994
+ default: string;
101995
+ tier: string;
101996
+ };
101997
+ motions: {
101998
+ types: string[];
101999
+ description: string;
102000
+ items: {
102001
+ types: string[];
102002
+ enumValues: string[];
102003
+ };
102004
+ default: string[];
102005
+ tier: string;
102006
+ };
102007
+ operators: {
102008
+ types: string[];
102009
+ description: string;
102010
+ items: {
102011
+ types: string[];
102012
+ enumValues: string[];
102013
+ };
102014
+ default: string[];
102015
+ tier: string;
102016
+ };
100550
102017
  };
100551
102018
  };
100552
102019
  "markdown-content": {
@@ -106800,6 +108267,7 @@ declare const PATTERN_REGISTRY: {
106800
108267
  name: string;
106801
108268
  type: string;
106802
108269
  required: boolean;
108270
+ enumValues: string[];
106803
108271
  }[];
106804
108272
  };
106805
108273
  disabled: {
@@ -107067,11 +108535,17 @@ declare const PATTERN_REGISTRY: {
107067
108535
  types: string[];
107068
108536
  description: string;
107069
108537
  kind: string;
107070
- emitPayloadSchema: {
108538
+ emitPayloadSchema: ({
107071
108539
  name: string;
107072
108540
  type: string;
107073
108541
  required: boolean;
107074
- }[];
108542
+ enumValues?: undefined;
108543
+ } | {
108544
+ name: string;
108545
+ type: string;
108546
+ required: boolean;
108547
+ enumValues: string[];
108548
+ })[];
107075
108549
  };
107076
108550
  replyEvent: {
107077
108551
  types: string[];
@@ -110436,6 +111910,16 @@ declare const PATTERN_REGISTRY: {
110436
111910
  };
110437
111911
  propertyRequired: string[];
110438
111912
  };
111913
+ toggleEvent: {
111914
+ types: string[];
111915
+ description: string;
111916
+ kind: string;
111917
+ emitPayloadSchema: {
111918
+ name: string;
111919
+ type: string;
111920
+ required: boolean;
111921
+ }[];
111922
+ };
110439
111923
  };
110440
111924
  };
110441
111925
  "trait-slot": {
@@ -112538,11 +114022,17 @@ declare const PATTERN_REGISTRY: {
112538
114022
  types: string[];
112539
114023
  description: string;
112540
114024
  kind: string;
112541
- emitPayloadSchema: {
114025
+ emitPayloadSchema: ({
112542
114026
  name: string;
112543
114027
  type: string;
112544
114028
  required: boolean;
112545
- }[];
114029
+ enumValues?: undefined;
114030
+ } | {
114031
+ name: string;
114032
+ type: string;
114033
+ required: boolean;
114034
+ enumValues: string[];
114035
+ })[];
112546
114036
  };
112547
114037
  sortColumn: {
112548
114038
  types: string[];
@@ -113494,6 +114984,54 @@ declare const PATTERN_REGISTRY: {
113494
114984
  types: string[];
113495
114985
  };
113496
114986
  };
114987
+ editable: {
114988
+ types: string[];
114989
+ description: string;
114990
+ default: boolean;
114991
+ };
114992
+ selectedId: {
114993
+ types: string[];
114994
+ description: string;
114995
+ default: null;
114996
+ };
114997
+ onSelect: {
114998
+ types: string[];
114999
+ description: string;
115000
+ kind: string;
115001
+ callbackArgs: {
115002
+ name: string;
115003
+ type: string;
115004
+ }[];
115005
+ };
115006
+ onMove: {
115007
+ types: string[];
115008
+ description: string;
115009
+ kind: string;
115010
+ callbackArgs: {
115011
+ name: string;
115012
+ type: string;
115013
+ }[];
115014
+ };
115015
+ selectEvent: {
115016
+ types: string[];
115017
+ description: string;
115018
+ kind: string;
115019
+ emitPayloadSchema: {
115020
+ name: string;
115021
+ type: string;
115022
+ required: boolean;
115023
+ }[];
115024
+ };
115025
+ moveEvent: {
115026
+ types: string[];
115027
+ description: string;
115028
+ kind: string;
115029
+ emitPayloadSchema: {
115030
+ name: string;
115031
+ type: string;
115032
+ required: boolean;
115033
+ }[];
115034
+ };
113497
115035
  camera: {
113498
115036
  types: string[];
113499
115037
  description: string;
@@ -113693,11 +115231,17 @@ declare const PATTERN_REGISTRY: {
113693
115231
  types: string[];
113694
115232
  description: string;
113695
115233
  kind: string;
113696
- emitPayloadSchema: {
115234
+ emitPayloadSchema: ({
113697
115235
  name: string;
113698
115236
  type: string;
113699
115237
  required: boolean;
113700
- }[];
115238
+ enumValues: string[];
115239
+ } | {
115240
+ name: string;
115241
+ type: string;
115242
+ required: boolean;
115243
+ enumValues?: undefined;
115244
+ })[];
113701
115245
  };
113702
115246
  directionEvents: {
113703
115247
  types: string[];
@@ -114194,6 +115738,10 @@ declare const PATTERN_REGISTRY: {
114194
115738
  types: string[];
114195
115739
  description: string;
114196
115740
  };
115741
+ fontFamily: {
115742
+ types: string[];
115743
+ description: string;
115744
+ };
114197
115745
  shapes: {
114198
115746
  types: string[];
114199
115747
  description: string;
@@ -114261,6 +115809,9 @@ declare const PATTERN_REGISTRY: {
114261
115809
  fontSize: {
114262
115810
  types: string[];
114263
115811
  };
115812
+ fontFamily: {
115813
+ types: string[];
115814
+ };
114264
115815
  align: {
114265
115816
  types: string[];
114266
115817
  enumValues: string[];
@@ -115071,6 +116622,9 @@ declare const PATTERN_REGISTRY: {
115071
116622
  fontSize: {
115072
116623
  types: string[];
115073
116624
  };
116625
+ fontFamily: {
116626
+ types: string[];
116627
+ };
115074
116628
  align: {
115075
116629
  types: string[];
115076
116630
  enumValues: string[];
@@ -115823,6 +117377,9 @@ declare const PATTERN_REGISTRY: {
115823
117377
  fontSize: {
115824
117378
  types: string[];
115825
117379
  };
117380
+ fontFamily: {
117381
+ types: string[];
117382
+ };
115826
117383
  align: {
115827
117384
  types: string[];
115828
117385
  enumValues: string[];
@@ -116122,6 +117679,10 @@ declare const PATTERN_REGISTRY: {
116122
117679
  description: string;
116123
117680
  default: number;
116124
117681
  };
117682
+ fontFamily: {
117683
+ types: string[];
117684
+ description: string;
117685
+ };
116125
117686
  showCurveLabels: {
116126
117687
  types: string[];
116127
117688
  description: string;
@@ -116454,6 +118015,9 @@ declare const PATTERN_REGISTRY: {
116454
118015
  fontSize: {
116455
118016
  types: string[];
116456
118017
  };
118018
+ fontFamily: {
118019
+ types: string[];
118020
+ };
116457
118021
  align: {
116458
118022
  types: string[];
116459
118023
  enumValues: string[];
@@ -117367,6 +118931,9 @@ declare const PATTERN_REGISTRY: {
117367
118931
  fontSize: {
117368
118932
  types: string[];
117369
118933
  };
118934
+ fontFamily: {
118935
+ types: string[];
118936
+ };
117370
118937
  align: {
117371
118938
  types: string[];
117372
118939
  enumValues: string[];
@@ -118102,6 +119669,9 @@ declare const PATTERN_REGISTRY: {
118102
119669
  fontSize: {
118103
119670
  types: string[];
118104
119671
  };
119672
+ fontFamily: {
119673
+ types: string[];
119674
+ };
118105
119675
  align: {
118106
119676
  types: string[];
118107
119677
  enumValues: string[];
@@ -119976,6 +121546,52 @@ declare const PATTERN_REGISTRY: {
119976
121546
  types: string[];
119977
121547
  };
119978
121548
  };
121549
+ editable: {
121550
+ types: string[];
121551
+ description: string;
121552
+ };
121553
+ selectedId: {
121554
+ types: string[];
121555
+ description: string;
121556
+ };
121557
+ onSelect: {
121558
+ types: string[];
121559
+ description: string;
121560
+ kind: string;
121561
+ callbackArgs: {
121562
+ name: string;
121563
+ type: string;
121564
+ }[];
121565
+ };
121566
+ onMove: {
121567
+ types: string[];
121568
+ description: string;
121569
+ kind: string;
121570
+ callbackArgs: {
121571
+ name: string;
121572
+ type: string;
121573
+ }[];
121574
+ };
121575
+ selectEvent: {
121576
+ types: string[];
121577
+ description: string;
121578
+ kind: string;
121579
+ emitPayloadSchema: {
121580
+ name: string;
121581
+ type: string;
121582
+ required: boolean;
121583
+ }[];
121584
+ };
121585
+ moveEvent: {
121586
+ types: string[];
121587
+ description: string;
121588
+ kind: string;
121589
+ emitPayloadSchema: {
121590
+ name: string;
121591
+ type: string;
121592
+ required: boolean;
121593
+ }[];
121594
+ };
119979
121595
  children: {
119980
121596
  types: string[];
119981
121597
  description: string;
@@ -120916,6 +122532,9 @@ declare const PATTERN_REGISTRY: {
120916
122532
  fontSize: {
120917
122533
  types: string[];
120918
122534
  };
122535
+ fontFamily: {
122536
+ types: string[];
122537
+ };
120919
122538
  align: {
120920
122539
  types: string[];
120921
122540
  enumValues: string[];
@@ -121705,6 +123324,9 @@ declare const PATTERN_REGISTRY: {
121705
123324
  disabled: {
121706
123325
  types: string[];
121707
123326
  };
123327
+ testId: {
123328
+ types: string[];
123329
+ };
121708
123330
  };
121709
123331
  required: string[];
121710
123332
  };
@@ -121879,6 +123501,212 @@ declare const PATTERN_REGISTRY: {
121879
123501
  };
121880
123502
  };
121881
123503
  };
123504
+ "command-palette": {
123505
+ type: string;
123506
+ category: string;
123507
+ tier: string;
123508
+ family: string;
123509
+ description: string;
123510
+ suggestedFor: string[];
123511
+ typicalSize: string;
123512
+ propsSchema: {
123513
+ open: {
123514
+ types: string[];
123515
+ description: string;
123516
+ required: boolean;
123517
+ };
123518
+ onOpenChange: {
123519
+ types: string[];
123520
+ description: string;
123521
+ required: boolean;
123522
+ kind: string;
123523
+ callbackArgs: {
123524
+ name: string;
123525
+ type: string;
123526
+ }[];
123527
+ };
123528
+ commands: {
123529
+ types: string[];
123530
+ description: string;
123531
+ required: boolean;
123532
+ items: {
123533
+ types: string[];
123534
+ properties: {
123535
+ id: {
123536
+ types: string[];
123537
+ };
123538
+ label: {
123539
+ types: string[];
123540
+ };
123541
+ icon: {
123542
+ types: string[];
123543
+ };
123544
+ shortcut: {
123545
+ types: string[];
123546
+ };
123547
+ keywords: {
123548
+ types: string[];
123549
+ items: {
123550
+ types: string[];
123551
+ };
123552
+ };
123553
+ group: {
123554
+ types: string[];
123555
+ };
123556
+ disabled: {
123557
+ types: string[];
123558
+ };
123559
+ event: {
123560
+ types: string[];
123561
+ };
123562
+ action: {
123563
+ types: string[];
123564
+ };
123565
+ actionPayload: {
123566
+ types: string[];
123567
+ freeform: boolean;
123568
+ eventPayloadBrand: boolean;
123569
+ };
123570
+ };
123571
+ required: string[];
123572
+ };
123573
+ };
123574
+ onSelect: {
123575
+ types: string[];
123576
+ description: string;
123577
+ kind: string;
123578
+ callbackArgs: {
123579
+ name: string;
123580
+ type: string;
123581
+ schema: {
123582
+ types: string[];
123583
+ properties: {
123584
+ id: {
123585
+ types: string[];
123586
+ };
123587
+ label: {
123588
+ types: string[];
123589
+ };
123590
+ icon: {
123591
+ types: string[];
123592
+ };
123593
+ shortcut: {
123594
+ types: string[];
123595
+ };
123596
+ keywords: {
123597
+ types: string[];
123598
+ items: {
123599
+ types: string[];
123600
+ };
123601
+ };
123602
+ group: {
123603
+ types: string[];
123604
+ };
123605
+ disabled: {
123606
+ types: string[];
123607
+ };
123608
+ event: {
123609
+ types: string[];
123610
+ };
123611
+ action: {
123612
+ types: string[];
123613
+ };
123614
+ actionPayload: {
123615
+ types: string[];
123616
+ freeform: boolean;
123617
+ eventPayloadBrand: boolean;
123618
+ };
123619
+ };
123620
+ required: string[];
123621
+ };
123622
+ }[];
123623
+ };
123624
+ placeholder: {
123625
+ types: string[];
123626
+ description: string;
123627
+ default: string;
123628
+ };
123629
+ emptyLabel: {
123630
+ types: string[];
123631
+ description: string;
123632
+ default: string;
123633
+ };
123634
+ className: {
123635
+ types: string[];
123636
+ description: string;
123637
+ };
123638
+ };
123639
+ };
123640
+ "game-audio-cue": {
123641
+ type: string;
123642
+ category: string;
123643
+ tier: string;
123644
+ family: string;
123645
+ description: string;
123646
+ suggestedFor: string[];
123647
+ typicalSize: string;
123648
+ propsSchema: {
123649
+ cue: {
123650
+ types: string[];
123651
+ description: string;
123652
+ };
123653
+ cueSeq: {
123654
+ types: string[];
123655
+ description: string;
123656
+ };
123657
+ music: {
123658
+ types: string[];
123659
+ description: string;
123660
+ };
123661
+ muted: {
123662
+ types: string[];
123663
+ description: string;
123664
+ };
123665
+ volume: {
123666
+ types: string[];
123667
+ description: string;
123668
+ };
123669
+ manifest: {
123670
+ types: string[];
123671
+ description: string;
123672
+ required: boolean;
123673
+ mapValue: {
123674
+ types: string[];
123675
+ properties: {
123676
+ path: {
123677
+ types: string[];
123678
+ items: {
123679
+ types: string[];
123680
+ };
123681
+ };
123682
+ volume: {
123683
+ types: string[];
123684
+ };
123685
+ loop: {
123686
+ types: string[];
123687
+ };
123688
+ poolSize: {
123689
+ types: string[];
123690
+ };
123691
+ autostart: {
123692
+ types: string[];
123693
+ };
123694
+ crossfade: {
123695
+ types: string[];
123696
+ };
123697
+ crossfadeDurationMs: {
123698
+ types: string[];
123699
+ };
123700
+ };
123701
+ required: string[];
123702
+ };
123703
+ };
123704
+ baseUrl: {
123705
+ types: string[];
123706
+ description: string;
123707
+ };
123708
+ };
123709
+ };
121882
123710
  };
121883
123711
  categories: string[];
121884
123712
  };
@@ -126167,6 +127995,16 @@ declare const COMPONENT_MAPPING: {
126167
127995
  importPath: string;
126168
127996
  category: string;
126169
127997
  };
127998
+ "command-palette": {
127999
+ component: string;
128000
+ importPath: string;
128001
+ category: string;
128002
+ };
128003
+ "game-audio-cue": {
128004
+ component: string;
128005
+ importPath: string;
128006
+ category: string;
128007
+ };
126170
128008
  };
126171
128009
  };
126172
128010
  declare const EVENT_CONTRACTS: {