@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
package/dist/index.js CHANGED
@@ -540,6 +540,16 @@ function defaultUnitAtlas(sheets, opts) {
540
540
  }
541
541
  var MANIFEST_ENTRY_KINDS = ["model", "image", "spritesheet", "audio", "json"];
542
542
  var ManifestEntryKindSchema = z.enum(MANIFEST_ENTRY_KINDS);
543
+ var SoundEntrySchema = z.object({
544
+ path: z.union([z.string(), z.array(z.string())]),
545
+ volume: z.number().optional(),
546
+ loop: z.boolean().optional(),
547
+ poolSize: z.number().optional(),
548
+ autostart: z.boolean().optional(),
549
+ crossfade: z.boolean().optional(),
550
+ crossfadeDurationMs: z.number().optional()
551
+ });
552
+ var AudioManifestSchema = z.record(z.string(), SoundEntrySchema);
543
553
  var MANIFEST_CANVAS_AFFINITIES = ["isometric", "hex", "flat", "side", "3d", "none"];
544
554
  var ManifestCanvasAffinitySchema = z.enum(MANIFEST_CANVAS_AFFINITIES);
545
555
  var MANIFEST_SOURCE_CATALOGS = ["kenny", "kekec-assets", "iram-assets", "trait-wars-assets", "kflow-assets"];
@@ -2465,7 +2475,7 @@ function getInteractionModelForDomain(domain) {
2465
2475
  // src/patterns/patterns-registry.json
2466
2476
  var patterns_registry_default = {
2467
2477
  version: "1.0.0",
2468
- exportedAt: "2026-09-03T03:26:05.097Z",
2478
+ exportedAt: "2026-09-04T03:53:29.561Z",
2469
2479
  patterns: {
2470
2480
  "entity-table": {
2471
2481
  type: "entity-table",
@@ -18866,7 +18876,7 @@ var patterns_registry_default = {
18866
18876
  types: [
18867
18877
  "object"
18868
18878
  ],
18869
- description: "GAP-80: line-level error/warning highlights for editable mode. Map of 1-based line number \u2192 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 \u2192 line map from the schema + validation results.",
18879
+ description: "GAP-80: line-level error/warning highlights. Map of 1-based line number \u2192 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 \u2192 line map from the schema + validation results.",
18870
18880
  nonAuthorable: true
18871
18881
  },
18872
18882
  title: {
@@ -19155,6 +19165,265 @@ var patterns_registry_default = {
19155
19165
  "boolean"
19156
19166
  ],
19157
19167
  description: "Show copy button (viewer alias for showCopyButton)"
19168
+ },
19169
+ editorId: {
19170
+ types: [
19171
+ "string"
19172
+ ],
19173
+ description: "Stable identity for the keyboard router / plugin host to target this editor. Unset = this instance never receives capability events.",
19174
+ tier: "presentation"
19175
+ },
19176
+ onEditorFocus: {
19177
+ types: [
19178
+ "string"
19179
+ ],
19180
+ description: "Declarative bus emit fired when this editor gains focus.",
19181
+ kind: "event-ref",
19182
+ emitPayloadSchema: [
19183
+ {
19184
+ name: "editorId",
19185
+ type: "string",
19186
+ required: true
19187
+ }
19188
+ ],
19189
+ default: "EDITOR_FOCUS",
19190
+ tier: "presentation"
19191
+ },
19192
+ onEditorBlur: {
19193
+ types: [
19194
+ "string"
19195
+ ],
19196
+ description: "Declarative bus emit fired when this editor loses focus.",
19197
+ kind: "event-ref",
19198
+ emitPayloadSchema: [
19199
+ {
19200
+ name: "editorId",
19201
+ type: "string",
19202
+ required: true
19203
+ }
19204
+ ],
19205
+ default: "EDITOR_BLUR",
19206
+ tier: "presentation"
19207
+ },
19208
+ onMotion: {
19209
+ types: [
19210
+ "string"
19211
+ ],
19212
+ description: "Declarative bus listen: move the cursor per the vim-style motion vocabulary.",
19213
+ kind: "event-listen",
19214
+ listenPayloadSchema: [
19215
+ {
19216
+ name: "editorId",
19217
+ type: "string",
19218
+ required: true
19219
+ },
19220
+ {
19221
+ name: "motion",
19222
+ type: "string",
19223
+ required: true,
19224
+ enumValues: [
19225
+ "left",
19226
+ "right",
19227
+ "up",
19228
+ "down",
19229
+ "word-forward",
19230
+ "word-back",
19231
+ "word-end",
19232
+ "line-start",
19233
+ "line-end",
19234
+ "first-nonblank",
19235
+ "doc-start",
19236
+ "doc-end",
19237
+ "paragraph-forward",
19238
+ "paragraph-back",
19239
+ "line",
19240
+ "selection"
19241
+ ]
19242
+ },
19243
+ {
19244
+ name: "count",
19245
+ type: "number",
19246
+ required: true
19247
+ }
19248
+ ],
19249
+ default: "MOTION",
19250
+ tier: "presentation"
19251
+ },
19252
+ onOperate: {
19253
+ types: [
19254
+ "string"
19255
+ ],
19256
+ description: "Declarative bus listen: apply a text operator over a motion's range.",
19257
+ kind: "event-listen",
19258
+ listenPayloadSchema: [
19259
+ {
19260
+ name: "editorId",
19261
+ type: "string",
19262
+ required: true
19263
+ },
19264
+ {
19265
+ name: "operator",
19266
+ type: "string",
19267
+ required: true,
19268
+ enumValues: [
19269
+ "delete",
19270
+ "yank",
19271
+ "change"
19272
+ ]
19273
+ },
19274
+ {
19275
+ name: "motion",
19276
+ type: "string",
19277
+ required: true,
19278
+ enumValues: [
19279
+ "left",
19280
+ "right",
19281
+ "up",
19282
+ "down",
19283
+ "word-forward",
19284
+ "word-back",
19285
+ "word-end",
19286
+ "line-start",
19287
+ "line-end",
19288
+ "first-nonblank",
19289
+ "doc-start",
19290
+ "doc-end",
19291
+ "paragraph-forward",
19292
+ "paragraph-back",
19293
+ "line",
19294
+ "selection"
19295
+ ]
19296
+ },
19297
+ {
19298
+ name: "count",
19299
+ type: "number",
19300
+ required: true
19301
+ }
19302
+ ],
19303
+ default: "OPERATE",
19304
+ tier: "presentation"
19305
+ },
19306
+ onInsertText: {
19307
+ types: [
19308
+ "string"
19309
+ ],
19310
+ description: "Declarative bus listen: insert literal text at the cursor.",
19311
+ kind: "event-listen",
19312
+ listenPayloadSchema: [
19313
+ {
19314
+ name: "editorId",
19315
+ type: "string",
19316
+ required: true
19317
+ },
19318
+ {
19319
+ name: "text",
19320
+ type: "string",
19321
+ required: true
19322
+ }
19323
+ ],
19324
+ default: "INSERT_TEXT",
19325
+ tier: "presentation"
19326
+ },
19327
+ onSetMode: {
19328
+ types: [
19329
+ "string"
19330
+ ],
19331
+ description: "Declarative bus listen: switch editor mode and caret style.",
19332
+ kind: "event-listen",
19333
+ listenPayloadSchema: [
19334
+ {
19335
+ name: "editorId",
19336
+ type: "string",
19337
+ required: true
19338
+ },
19339
+ {
19340
+ name: "mode",
19341
+ type: "string",
19342
+ required: true
19343
+ },
19344
+ {
19345
+ name: "caret",
19346
+ type: "string",
19347
+ required: true,
19348
+ enumValues: [
19349
+ "bar",
19350
+ "block",
19351
+ "underline"
19352
+ ]
19353
+ }
19354
+ ],
19355
+ default: "SET_MODE",
19356
+ tier: "presentation"
19357
+ },
19358
+ motions: {
19359
+ types: [
19360
+ "array"
19361
+ ],
19362
+ description: "Motion vocabulary this editor accepts. Default: the full `EditorMotion` set.",
19363
+ items: {
19364
+ types: [
19365
+ "string"
19366
+ ],
19367
+ enumValues: [
19368
+ "left",
19369
+ "right",
19370
+ "up",
19371
+ "down",
19372
+ "word-forward",
19373
+ "word-back",
19374
+ "word-end",
19375
+ "line-start",
19376
+ "line-end",
19377
+ "first-nonblank",
19378
+ "doc-start",
19379
+ "doc-end",
19380
+ "paragraph-forward",
19381
+ "paragraph-back",
19382
+ "line",
19383
+ "selection"
19384
+ ]
19385
+ },
19386
+ default: [
19387
+ "left",
19388
+ "right",
19389
+ "up",
19390
+ "down",
19391
+ "word-forward",
19392
+ "word-back",
19393
+ "word-end",
19394
+ "line-start",
19395
+ "line-end",
19396
+ "first-nonblank",
19397
+ "doc-start",
19398
+ "doc-end",
19399
+ "paragraph-forward",
19400
+ "paragraph-back",
19401
+ "line",
19402
+ "selection"
19403
+ ],
19404
+ tier: "presentation"
19405
+ },
19406
+ operators: {
19407
+ types: [
19408
+ "array"
19409
+ ],
19410
+ description: "Operator vocabulary this editor accepts. Default: the full `EditorOperator` set.",
19411
+ items: {
19412
+ types: [
19413
+ "string"
19414
+ ],
19415
+ enumValues: [
19416
+ "delete",
19417
+ "yank",
19418
+ "change"
19419
+ ]
19420
+ },
19421
+ default: [
19422
+ "delete",
19423
+ "yank",
19424
+ "change"
19425
+ ],
19426
+ tier: "presentation"
19158
19427
  }
19159
19428
  }
19160
19429
  },
@@ -29217,7 +29486,12 @@ var patterns_registry_default = {
29217
29486
  {
29218
29487
  name: "next",
29219
29488
  type: "string",
29220
- required: true
29489
+ required: true,
29490
+ enumValues: [
29491
+ "up",
29492
+ "down",
29493
+ "none"
29494
+ ]
29221
29495
  }
29222
29496
  ]
29223
29497
  },
@@ -29685,7 +29959,12 @@ var patterns_registry_default = {
29685
29959
  {
29686
29960
  name: "vote",
29687
29961
  type: "string",
29688
- required: true
29962
+ required: true,
29963
+ enumValues: [
29964
+ "up",
29965
+ "down",
29966
+ "none"
29967
+ ]
29689
29968
  }
29690
29969
  ]
29691
29970
  },
@@ -35173,6 +35452,20 @@ var patterns_registry_default = {
35173
35452
  "role",
35174
35453
  "category"
35175
35454
  ]
35455
+ },
35456
+ toggleEvent: {
35457
+ types: [
35458
+ "string"
35459
+ ],
35460
+ description: "Event dispatched via event bus on toggle, carrying the new muted state.",
35461
+ kind: "event-ref",
35462
+ emitPayloadSchema: [
35463
+ {
35464
+ name: "muted",
35465
+ type: "boolean",
35466
+ required: true
35467
+ }
35468
+ ]
35176
35469
  }
35177
35470
  }
35178
35471
  },
@@ -38745,7 +39038,11 @@ var patterns_registry_default = {
38745
39038
  {
38746
39039
  name: "direction",
38747
39040
  type: "string",
38748
- required: true
39041
+ required: true,
39042
+ enumValues: [
39043
+ "asc",
39044
+ "desc"
39045
+ ]
38749
39046
  }
38750
39047
  ]
38751
39048
  },
@@ -40275,6 +40572,92 @@ var patterns_registry_default = {
40275
40572
  ]
40276
40573
  }
40277
40574
  },
40575
+ editable: {
40576
+ types: [
40577
+ "boolean"
40578
+ ],
40579
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely",
40580
+ default: false
40581
+ },
40582
+ selectedId: {
40583
+ types: [
40584
+ "string"
40585
+ ],
40586
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none.",
40587
+ default: null
40588
+ },
40589
+ onSelect: {
40590
+ types: [
40591
+ "function"
40592
+ ],
40593
+ description: "Fired on a click that changes selection \u2014 before `selectEvent`.",
40594
+ kind: "callback",
40595
+ callbackArgs: [
40596
+ {
40597
+ name: "id",
40598
+ type: "string"
40599
+ }
40600
+ ]
40601
+ },
40602
+ onMove: {
40603
+ types: [
40604
+ "function"
40605
+ ],
40606
+ description: "Fired once per drag gesture, on drop \u2014 before `moveEvent`.",
40607
+ kind: "callback",
40608
+ callbackArgs: [
40609
+ {
40610
+ name: "id",
40611
+ type: "string"
40612
+ },
40613
+ {
40614
+ name: "x",
40615
+ type: "number"
40616
+ },
40617
+ {
40618
+ name: "y",
40619
+ type: "number"
40620
+ }
40621
+ ]
40622
+ },
40623
+ selectEvent: {
40624
+ types: [
40625
+ "string"
40626
+ ],
40627
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
40628
+ kind: "event-ref",
40629
+ emitPayloadSchema: [
40630
+ {
40631
+ name: "id",
40632
+ type: "string",
40633
+ required: true
40634
+ }
40635
+ ]
40636
+ },
40637
+ moveEvent: {
40638
+ types: [
40639
+ "string"
40640
+ ],
40641
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` \u2014 fired once on drop.",
40642
+ kind: "event-ref",
40643
+ emitPayloadSchema: [
40644
+ {
40645
+ name: "id",
40646
+ type: "string",
40647
+ required: true
40648
+ },
40649
+ {
40650
+ name: "x",
40651
+ type: "number",
40652
+ required: true
40653
+ },
40654
+ {
40655
+ name: "y",
40656
+ type: "number",
40657
+ required: true
40658
+ }
40659
+ ]
40660
+ },
40278
40661
  camera: {
40279
40662
  types: [
40280
40663
  "string"
@@ -40623,7 +41006,13 @@ var patterns_registry_default = {
40623
41006
  {
40624
41007
  name: "direction",
40625
41008
  type: "string",
40626
- required: true
41009
+ required: true,
41010
+ enumValues: [
41011
+ "up",
41012
+ "down",
41013
+ "left",
41014
+ "right"
41015
+ ]
40627
41016
  },
40628
41017
  {
40629
41018
  name: "pressed",
@@ -41450,6 +41839,12 @@ var patterns_registry_default = {
41450
41839
  ],
41451
41840
  description: "Background color (default transparent)."
41452
41841
  },
41842
+ fontFamily: {
41843
+ types: [
41844
+ "string"
41845
+ ],
41846
+ description: "Canvas text font family. Falls back to the theme's --font-family-body."
41847
+ },
41453
41848
  shapes: {
41454
41849
  types: [
41455
41850
  "array"
@@ -41574,6 +41969,11 @@ var patterns_registry_default = {
41574
41969
  "number"
41575
41970
  ]
41576
41971
  },
41972
+ fontFamily: {
41973
+ types: [
41974
+ "string"
41975
+ ]
41976
+ },
41577
41977
  align: {
41578
41978
  types: [
41579
41979
  "string"
@@ -41643,6 +42043,7 @@ var patterns_registry_default = {
41643
42043
  "string"
41644
42044
  ],
41645
42045
  enumValues: [
42046
+ "solid",
41646
42047
  "dashed",
41647
42048
  "dotted"
41648
42049
  ]
@@ -42946,6 +43347,11 @@ var patterns_registry_default = {
42946
43347
  "number"
42947
43348
  ]
42948
43349
  },
43350
+ fontFamily: {
43351
+ types: [
43352
+ "string"
43353
+ ]
43354
+ },
42949
43355
  align: {
42950
43356
  types: [
42951
43357
  "string"
@@ -43015,6 +43421,7 @@ var patterns_registry_default = {
43015
43421
  "string"
43016
43422
  ],
43017
43423
  enumValues: [
43424
+ "solid",
43018
43425
  "dashed",
43019
43426
  "dotted"
43020
43427
  ]
@@ -44221,6 +44628,11 @@ var patterns_registry_default = {
44221
44628
  "number"
44222
44629
  ]
44223
44630
  },
44631
+ fontFamily: {
44632
+ types: [
44633
+ "string"
44634
+ ]
44635
+ },
44224
44636
  align: {
44225
44637
  types: [
44226
44638
  "string"
@@ -44290,6 +44702,7 @@ var patterns_registry_default = {
44290
44702
  "string"
44291
44703
  ],
44292
44704
  enumValues: [
44705
+ "solid",
44293
44706
  "dashed",
44294
44707
  "dotted"
44295
44708
  ]
@@ -44697,6 +45110,12 @@ var patterns_registry_default = {
44697
45110
  description: "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12).",
44698
45111
  default: 12
44699
45112
  },
45113
+ fontFamily: {
45114
+ types: [
45115
+ "string"
45116
+ ],
45117
+ description: 'Canvas text font family. Accepts a known game-font key (e.g. "future-narrow") or a CSS font-family string.'
45118
+ },
44700
45119
  showCurveLabels: {
44701
45120
  types: [
44702
45121
  "boolean"
@@ -44755,6 +45174,7 @@ var patterns_registry_default = {
44755
45174
  "string"
44756
45175
  ],
44757
45176
  enumValues: [
45177
+ "solid",
44758
45178
  "dashed",
44759
45179
  "dotted"
44760
45180
  ]
@@ -45040,6 +45460,7 @@ var patterns_registry_default = {
45040
45460
  "string"
45041
45461
  ],
45042
45462
  enumValues: [
45463
+ "solid",
45043
45464
  "dashed",
45044
45465
  "dotted"
45045
45466
  ]
@@ -45274,6 +45695,11 @@ var patterns_registry_default = {
45274
45695
  "number"
45275
45696
  ]
45276
45697
  },
45698
+ fontFamily: {
45699
+ types: [
45700
+ "string"
45701
+ ]
45702
+ },
45277
45703
  align: {
45278
45704
  types: [
45279
45705
  "string"
@@ -45343,6 +45769,7 @@ var patterns_registry_default = {
45343
45769
  "string"
45344
45770
  ],
45345
45771
  enumValues: [
45772
+ "solid",
45346
45773
  "dashed",
45347
45774
  "dotted"
45348
45775
  ]
@@ -46809,6 +47236,11 @@ var patterns_registry_default = {
46809
47236
  "number"
46810
47237
  ]
46811
47238
  },
47239
+ fontFamily: {
47240
+ types: [
47241
+ "string"
47242
+ ]
47243
+ },
46812
47244
  align: {
46813
47245
  types: [
46814
47246
  "string"
@@ -46878,6 +47310,7 @@ var patterns_registry_default = {
46878
47310
  "string"
46879
47311
  ],
46880
47312
  enumValues: [
47313
+ "solid",
46881
47314
  "dashed",
46882
47315
  "dotted"
46883
47316
  ]
@@ -48018,6 +48451,11 @@ var patterns_registry_default = {
48018
48451
  "number"
48019
48452
  ]
48020
48453
  },
48454
+ fontFamily: {
48455
+ types: [
48456
+ "string"
48457
+ ]
48458
+ },
48021
48459
  align: {
48022
48460
  types: [
48023
48461
  "string"
@@ -48087,6 +48525,7 @@ var patterns_registry_default = {
48087
48525
  "string"
48088
48526
  ],
48089
48527
  enumValues: [
48528
+ "solid",
48090
48529
  "dashed",
48091
48530
  "dotted"
48092
48531
  ]
@@ -51300,6 +51739,90 @@ var patterns_registry_default = {
51300
51739
  ]
51301
51740
  }
51302
51741
  },
51742
+ editable: {
51743
+ types: [
51744
+ "boolean"
51745
+ ],
51746
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely"
51747
+ },
51748
+ selectedId: {
51749
+ types: [
51750
+ "string"
51751
+ ],
51752
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none."
51753
+ },
51754
+ onSelect: {
51755
+ types: [
51756
+ "function"
51757
+ ],
51758
+ description: "Fired on a click that changes selection \u2014 before `selectEvent`.",
51759
+ kind: "callback",
51760
+ callbackArgs: [
51761
+ {
51762
+ name: "id",
51763
+ type: "string"
51764
+ }
51765
+ ]
51766
+ },
51767
+ onMove: {
51768
+ types: [
51769
+ "function"
51770
+ ],
51771
+ description: "Fired once per drag gesture, on drop \u2014 before `moveEvent`.",
51772
+ kind: "callback",
51773
+ callbackArgs: [
51774
+ {
51775
+ name: "id",
51776
+ type: "string"
51777
+ },
51778
+ {
51779
+ name: "x",
51780
+ type: "number"
51781
+ },
51782
+ {
51783
+ name: "y",
51784
+ type: "number"
51785
+ }
51786
+ ]
51787
+ },
51788
+ selectEvent: {
51789
+ types: [
51790
+ "string"
51791
+ ],
51792
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
51793
+ kind: "event-ref",
51794
+ emitPayloadSchema: [
51795
+ {
51796
+ name: "id",
51797
+ type: "string",
51798
+ required: true
51799
+ }
51800
+ ]
51801
+ },
51802
+ moveEvent: {
51803
+ types: [
51804
+ "string"
51805
+ ],
51806
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` \u2014 fired once on drop.",
51807
+ kind: "event-ref",
51808
+ emitPayloadSchema: [
51809
+ {
51810
+ name: "id",
51811
+ type: "string",
51812
+ required: true
51813
+ },
51814
+ {
51815
+ name: "x",
51816
+ type: "number",
51817
+ required: true
51818
+ },
51819
+ {
51820
+ name: "y",
51821
+ type: "number",
51822
+ required: true
51823
+ }
51824
+ ]
51825
+ },
51303
51826
  children: {
51304
51827
  types: [
51305
51828
  "node"
@@ -52828,6 +53351,11 @@ var patterns_registry_default = {
52828
53351
  "number"
52829
53352
  ]
52830
53353
  },
53354
+ fontFamily: {
53355
+ types: [
53356
+ "string"
53357
+ ]
53358
+ },
52831
53359
  align: {
52832
53360
  types: [
52833
53361
  "string"
@@ -52897,6 +53425,7 @@ var patterns_registry_default = {
52897
53425
  "string"
52898
53426
  ],
52899
53427
  enumValues: [
53428
+ "solid",
52900
53429
  "dashed",
52901
53430
  "dotted"
52902
53431
  ]
@@ -54144,6 +54673,11 @@ var patterns_registry_default = {
54144
54673
  types: [
54145
54674
  "boolean"
54146
54675
  ]
54676
+ },
54677
+ testId: {
54678
+ types: [
54679
+ "string"
54680
+ ]
54147
54681
  }
54148
54682
  },
54149
54683
  required: [
@@ -54400,6 +54934,330 @@ var patterns_registry_default = {
54400
54934
  description: "secondarySidebarClassName prop"
54401
54935
  }
54402
54936
  }
54937
+ },
54938
+ "command-palette": {
54939
+ type: "command-palette",
54940
+ category: "component",
54941
+ tier: "molecules",
54942
+ family: "core",
54943
+ description: "CommandPalette component",
54944
+ suggestedFor: [
54945
+ "command",
54946
+ "palette",
54947
+ "command palette"
54948
+ ],
54949
+ typicalSize: "medium",
54950
+ propsSchema: {
54951
+ open: {
54952
+ types: [
54953
+ "boolean"
54954
+ ],
54955
+ description: "Whether the palette overlay is open",
54956
+ required: true
54957
+ },
54958
+ onOpenChange: {
54959
+ types: [
54960
+ "function"
54961
+ ],
54962
+ description: "Called to open/close the overlay (Escape, overlay click, or a selection)",
54963
+ required: true,
54964
+ kind: "callback",
54965
+ callbackArgs: [
54966
+ {
54967
+ name: "open",
54968
+ type: "boolean"
54969
+ }
54970
+ ]
54971
+ },
54972
+ commands: {
54973
+ types: [
54974
+ "array"
54975
+ ],
54976
+ description: "Commands listed in the palette, filtered as the user types",
54977
+ required: true,
54978
+ items: {
54979
+ types: [
54980
+ "object"
54981
+ ],
54982
+ properties: {
54983
+ id: {
54984
+ types: [
54985
+ "string"
54986
+ ]
54987
+ },
54988
+ label: {
54989
+ types: [
54990
+ "string"
54991
+ ]
54992
+ },
54993
+ icon: {
54994
+ types: [
54995
+ "icon",
54996
+ "string"
54997
+ ]
54998
+ },
54999
+ shortcut: {
55000
+ types: [
55001
+ "string"
55002
+ ]
55003
+ },
55004
+ keywords: {
55005
+ types: [
55006
+ "array"
55007
+ ],
55008
+ items: {
55009
+ types: [
55010
+ "string"
55011
+ ]
55012
+ }
55013
+ },
55014
+ group: {
55015
+ types: [
55016
+ "string"
55017
+ ]
55018
+ },
55019
+ disabled: {
55020
+ types: [
55021
+ "boolean"
55022
+ ]
55023
+ },
55024
+ event: {
55025
+ types: [
55026
+ "string"
55027
+ ]
55028
+ },
55029
+ action: {
55030
+ types: [
55031
+ "string"
55032
+ ]
55033
+ },
55034
+ actionPayload: {
55035
+ types: [
55036
+ "object"
55037
+ ],
55038
+ freeform: true,
55039
+ eventPayloadBrand: true
55040
+ }
55041
+ },
55042
+ required: [
55043
+ "id",
55044
+ "label"
55045
+ ]
55046
+ }
55047
+ },
55048
+ onSelect: {
55049
+ types: [
55050
+ "function"
55051
+ ],
55052
+ description: "Called with the selected command (click, or Enter on the highlighted row)",
55053
+ kind: "callback",
55054
+ callbackArgs: [
55055
+ {
55056
+ name: "command",
55057
+ type: "object",
55058
+ schema: {
55059
+ types: [
55060
+ "object"
55061
+ ],
55062
+ properties: {
55063
+ id: {
55064
+ types: [
55065
+ "string"
55066
+ ]
55067
+ },
55068
+ label: {
55069
+ types: [
55070
+ "string"
55071
+ ]
55072
+ },
55073
+ icon: {
55074
+ types: [
55075
+ "icon",
55076
+ "string"
55077
+ ]
55078
+ },
55079
+ shortcut: {
55080
+ types: [
55081
+ "string"
55082
+ ]
55083
+ },
55084
+ keywords: {
55085
+ types: [
55086
+ "array"
55087
+ ],
55088
+ items: {
55089
+ types: [
55090
+ "string"
55091
+ ]
55092
+ }
55093
+ },
55094
+ group: {
55095
+ types: [
55096
+ "string"
55097
+ ]
55098
+ },
55099
+ disabled: {
55100
+ types: [
55101
+ "boolean"
55102
+ ]
55103
+ },
55104
+ event: {
55105
+ types: [
55106
+ "string"
55107
+ ]
55108
+ },
55109
+ action: {
55110
+ types: [
55111
+ "string"
55112
+ ]
55113
+ },
55114
+ actionPayload: {
55115
+ types: [
55116
+ "object"
55117
+ ],
55118
+ freeform: true,
55119
+ eventPayloadBrand: true
55120
+ }
55121
+ },
55122
+ required: [
55123
+ "id",
55124
+ "label"
55125
+ ]
55126
+ }
55127
+ }
55128
+ ]
55129
+ },
55130
+ placeholder: {
55131
+ types: [
55132
+ "string"
55133
+ ],
55134
+ description: "Search field placeholder. Consumers own i18n \u2014 plain string prop, no package-internal translation (matches FloatingToolbar's convention).",
55135
+ default: "Type a command..."
55136
+ },
55137
+ emptyLabel: {
55138
+ types: [
55139
+ "string"
55140
+ ],
55141
+ description: "Label shown when no command matches the query",
55142
+ default: "No matching commands"
55143
+ },
55144
+ className: {
55145
+ types: [
55146
+ "string"
55147
+ ],
55148
+ description: "Additional CSS classes on the overlay's dialog"
55149
+ }
55150
+ }
55151
+ },
55152
+ "game-audio-cue": {
55153
+ type: "game-audio-cue",
55154
+ category: "game",
55155
+ tier: "atoms",
55156
+ family: "game",
55157
+ description: "GameAudioCue component",
55158
+ suggestedFor: [
55159
+ "game",
55160
+ "audio",
55161
+ "cue",
55162
+ "game audio cue"
55163
+ ],
55164
+ typicalSize: "small",
55165
+ propsSchema: {
55166
+ cue: {
55167
+ types: [
55168
+ "string"
55169
+ ],
55170
+ description: "Manifest key played as a one-shot SFX each time `cueSeq` advances."
55171
+ },
55172
+ cueSeq: {
55173
+ types: [
55174
+ "number"
55175
+ ],
55176
+ description: "Monotonically increasing counter \u2014 bumping it re-triggers `cue`."
55177
+ },
55178
+ music: {
55179
+ types: [
55180
+ "string"
55181
+ ],
55182
+ description: "Manifest key to crossfade to as looping background music; unset/empty stops music."
55183
+ },
55184
+ muted: {
55185
+ types: [
55186
+ "boolean"
55187
+ ],
55188
+ description: "Muted state, owned externally and mirrored into the hook."
55189
+ },
55190
+ volume: {
55191
+ types: [
55192
+ "number"
55193
+ ],
55194
+ description: "Master volume 0-1, owned externally and mirrored into the hook."
55195
+ },
55196
+ manifest: {
55197
+ types: [
55198
+ "object"
55199
+ ],
55200
+ description: "Sound manifest \u2014 keys mapped to sound definitions (path, volume, loop, ...).",
55201
+ required: true,
55202
+ mapValue: {
55203
+ types: [
55204
+ "object"
55205
+ ],
55206
+ properties: {
55207
+ path: {
55208
+ types: [
55209
+ "string",
55210
+ "array"
55211
+ ],
55212
+ items: {
55213
+ types: [
55214
+ "string"
55215
+ ]
55216
+ }
55217
+ },
55218
+ volume: {
55219
+ types: [
55220
+ "number"
55221
+ ]
55222
+ },
55223
+ loop: {
55224
+ types: [
55225
+ "boolean"
55226
+ ]
55227
+ },
55228
+ poolSize: {
55229
+ types: [
55230
+ "number"
55231
+ ]
55232
+ },
55233
+ autostart: {
55234
+ types: [
55235
+ "boolean"
55236
+ ]
55237
+ },
55238
+ crossfade: {
55239
+ types: [
55240
+ "boolean"
55241
+ ]
55242
+ },
55243
+ crossfadeDurationMs: {
55244
+ types: [
55245
+ "number"
55246
+ ]
55247
+ }
55248
+ },
55249
+ required: [
55250
+ "path"
55251
+ ]
55252
+ }
55253
+ },
55254
+ baseUrl: {
55255
+ types: [
55256
+ "string"
55257
+ ],
55258
+ description: "Base URL prepended to every manifest path."
55259
+ }
55260
+ }
54403
55261
  }
54404
55262
  },
54405
55263
  categories: [
@@ -54425,7 +55283,7 @@ var patterns_registry_default = {
54425
55283
  // src/patterns/integrators-registry.json
54426
55284
  var integrators_registry_default = {
54427
55285
  version: "1.0.0",
54428
- exportedAt: "2026-09-03T08:33:38.850Z",
55286
+ exportedAt: "2026-09-03T18:48:24.308Z",
54429
55287
  integrators: {
54430
55288
  github: {
54431
55289
  name: "github",
@@ -57943,7 +58801,7 @@ var integrators_registry_default = {
57943
58801
  // src/patterns/component-mapping.json
57944
58802
  var component_mapping_default = {
57945
58803
  version: "1.0.0",
57946
- exportedAt: "2026-09-03T03:26:05.097Z",
58804
+ exportedAt: "2026-09-04T03:53:29.561Z",
57947
58805
  mappings: {
57948
58806
  "page-header": {
57949
58807
  component: "PageHeader",
@@ -59366,6 +60224,16 @@ var component_mapping_default = {
59366
60224
  component: "DockLayout",
59367
60225
  importPath: "@/components/core/organisms/DockLayout",
59368
60226
  category: "layout"
60227
+ },
60228
+ "command-palette": {
60229
+ component: "CommandPalette",
60230
+ importPath: "@/components/core/molecules/CommandPalette",
60231
+ category: "component"
60232
+ },
60233
+ "game-audio-cue": {
60234
+ component: "GameAudioCue",
60235
+ importPath: "@/components/game/atoms/GameAudioCue",
60236
+ category: "game"
59369
60237
  }
59370
60238
  }
59371
60239
  };
@@ -59373,7 +60241,7 @@ var component_mapping_default = {
59373
60241
  // src/patterns/event-contracts.json
59374
60242
  var event_contracts_default = {
59375
60243
  version: "1.0.0",
59376
- exportedAt: "2026-09-03T03:26:05.097Z",
60244
+ exportedAt: "2026-09-04T03:53:29.561Z",
59377
60245
  contracts: {
59378
60246
  form: {
59379
60247
  emits: [
@@ -60283,6 +61151,20 @@ var event_contracts_default = {
60283
61151
  payload: {
60284
61152
  type: "object"
60285
61153
  }
61154
+ },
61155
+ {
61156
+ event: "EDITOR_FOCUS",
61157
+ trigger: "action",
61158
+ payload: {
61159
+ type: "object"
61160
+ }
61161
+ },
61162
+ {
61163
+ event: "EDITOR_BLUR",
61164
+ trigger: "action",
61165
+ payload: {
61166
+ type: "object"
61167
+ }
60286
61168
  }
60287
61169
  ],
60288
61170
  requires: [],
@@ -60588,6 +61470,7 @@ var PATTERN_TYPES = [
60588
61470
  "choice-button",
60589
61471
  "code-block",
60590
61472
  "code-runner-panel",
61473
+ "command-palette",
60591
61474
  "community-links",
60592
61475
  "conditional-wrapper",
60593
61476
  "confetti-effect",
@@ -60658,6 +61541,7 @@ var PATTERN_TYPES = [
60658
61541
  "form-section",
60659
61542
  "form-section-header",
60660
61543
  "fx-overlay",
61544
+ "game-audio-cue",
60661
61545
  "game-audio-toggle",
60662
61546
  "game-hud",
60663
61547
  "game-icon",
@@ -65451,6 +66335,6 @@ function mergeEntityFrame(current, orderedWrites) {
65451
66335
  return next;
65452
66336
  }
65453
66337
 
65454
- export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, PayloadTypeWhenSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, SPRITE_SHEET_LAYOUT, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, assertNoUnsatisfiableEnum, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, defaultUnitAtlas, deref, deriveCollection, deriveExpectations, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, expectedEntityName, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, ledgerCurName, ledgerRename, ledgerResolveName, manifestToAssetCatalog, mapTensorLastDim, maskSecretConfigValues, matchAssetQuery, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseAssetQuery, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, rehydrateKnobDefs, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, signatureToParamsSchema, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
66338
+ export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, AudioManifestSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, PayloadTypeWhenSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, SPRITE_SHEET_LAYOUT, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SoundEntrySchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, assertNoUnsatisfiableEnum, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, defaultUnitAtlas, deref, deriveCollection, deriveExpectations, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, expectedEntityName, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, ledgerCurName, ledgerRename, ledgerResolveName, manifestToAssetCatalog, mapTensorLastDim, maskSecretConfigValues, matchAssetQuery, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseAssetQuery, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, rehydrateKnobDefs, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, signatureToParamsSchema, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
65455
66339
  //# sourceMappingURL=index.js.map
65456
66340
  //# sourceMappingURL=index.js.map