@almadar/core 10.81.0 → 10.82.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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-Baldm2vM.d.ts} +114 -4
  5. package/dist/{entityAccess-0POr1WuY.d.ts → entityAccess-CDYT7WWR.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +570 -0
  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-R8PyPrGg.d.ts} +4 -4
  13. package/dist/index.d.ts +10 -10
  14. package/dist/index.js +587 -5
  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 +1 -1
  21. package/dist/patterns/index.d.ts +1270 -6
  22. package/dist/patterns/index.js +576 -4
  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 +561 -1
  26. package/dist/patterns/registry.json +561 -1
  27. package/dist/patterns/services-registry.json +1 -1
  28. package/dist/{schema-CkTTGH6l.d.ts → schema-1KQUz2pE.d.ts} +2 -2
  29. package/dist/{trait-D269f6pt.d.ts → trait-Dsp0vmGp.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-DJYozDXK.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-Baldm2vM.js';
2
+ export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, di as isValidPatternType } from '../effect-Baldm2vM.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-03T18:48:23.816Z";
8
8
  var patterns = {
9
9
  "entity-table": {
10
10
  type: "entity-table",
@@ -32789,6 +32789,20 @@ var patterns = {
32789
32789
  "role",
32790
32790
  "category"
32791
32791
  ]
32792
+ },
32793
+ toggleEvent: {
32794
+ types: [
32795
+ "string"
32796
+ ],
32797
+ description: "Event dispatched via event bus on toggle, carrying the new muted state.",
32798
+ kind: "event-ref",
32799
+ emitPayloadSchema: [
32800
+ {
32801
+ name: "muted",
32802
+ type: "boolean",
32803
+ required: true
32804
+ }
32805
+ ]
32792
32806
  }
32793
32807
  }
32794
32808
  },
@@ -37896,6 +37910,92 @@ var patterns = {
37896
37910
  ]
37897
37911
  }
37898
37912
  },
37913
+ editable: {
37914
+ types: [
37915
+ "boolean"
37916
+ ],
37917
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely",
37918
+ "default": false
37919
+ },
37920
+ selectedId: {
37921
+ types: [
37922
+ "string"
37923
+ ],
37924
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none.",
37925
+ "default": null
37926
+ },
37927
+ onSelect: {
37928
+ types: [
37929
+ "function"
37930
+ ],
37931
+ description: "Fired on a click that changes selection — before `selectEvent`.",
37932
+ kind: "callback",
37933
+ callbackArgs: [
37934
+ {
37935
+ name: "id",
37936
+ type: "string"
37937
+ }
37938
+ ]
37939
+ },
37940
+ onMove: {
37941
+ types: [
37942
+ "function"
37943
+ ],
37944
+ description: "Fired once per drag gesture, on drop — before `moveEvent`.",
37945
+ kind: "callback",
37946
+ callbackArgs: [
37947
+ {
37948
+ name: "id",
37949
+ type: "string"
37950
+ },
37951
+ {
37952
+ name: "x",
37953
+ type: "number"
37954
+ },
37955
+ {
37956
+ name: "y",
37957
+ type: "number"
37958
+ }
37959
+ ]
37960
+ },
37961
+ selectEvent: {
37962
+ types: [
37963
+ "string"
37964
+ ],
37965
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
37966
+ kind: "event-ref",
37967
+ emitPayloadSchema: [
37968
+ {
37969
+ name: "id",
37970
+ type: "string",
37971
+ required: true
37972
+ }
37973
+ ]
37974
+ },
37975
+ moveEvent: {
37976
+ types: [
37977
+ "string"
37978
+ ],
37979
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` — fired once on drop.",
37980
+ kind: "event-ref",
37981
+ emitPayloadSchema: [
37982
+ {
37983
+ name: "id",
37984
+ type: "string",
37985
+ required: true
37986
+ },
37987
+ {
37988
+ name: "x",
37989
+ type: "number",
37990
+ required: true
37991
+ },
37992
+ {
37993
+ name: "y",
37994
+ type: "number",
37995
+ required: true
37996
+ }
37997
+ ]
37998
+ },
37899
37999
  camera: {
37900
38000
  types: [
37901
38001
  "string"
@@ -39071,6 +39171,12 @@ var patterns = {
39071
39171
  ],
39072
39172
  description: "Background color (default transparent)."
39073
39173
  },
39174
+ fontFamily: {
39175
+ types: [
39176
+ "string"
39177
+ ],
39178
+ description: "Canvas text font family. Falls back to the theme's --font-family-body."
39179
+ },
39074
39180
  shapes: {
39075
39181
  types: [
39076
39182
  "array"
@@ -39195,6 +39301,11 @@ var patterns = {
39195
39301
  "number"
39196
39302
  ]
39197
39303
  },
39304
+ fontFamily: {
39305
+ types: [
39306
+ "string"
39307
+ ]
39308
+ },
39198
39309
  align: {
39199
39310
  types: [
39200
39311
  "string"
@@ -40573,6 +40684,11 @@ var patterns = {
40573
40684
  "number"
40574
40685
  ]
40575
40686
  },
40687
+ fontFamily: {
40688
+ types: [
40689
+ "string"
40690
+ ]
40691
+ },
40576
40692
  align: {
40577
40693
  types: [
40578
40694
  "string"
@@ -41853,6 +41969,11 @@ var patterns = {
41853
41969
  "number"
41854
41970
  ]
41855
41971
  },
41972
+ fontFamily: {
41973
+ types: [
41974
+ "string"
41975
+ ]
41976
+ },
41856
41977
  align: {
41857
41978
  types: [
41858
41979
  "string"
@@ -42330,6 +42451,12 @@ var patterns = {
42330
42451
  description: "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12).",
42331
42452
  "default": 12
42332
42453
  },
42454
+ fontFamily: {
42455
+ types: [
42456
+ "string"
42457
+ ],
42458
+ description: "Canvas text font family. Accepts a known game-font key (e.g. \"future-narrow\") or a CSS font-family string."
42459
+ },
42333
42460
  showCurveLabels: {
42334
42461
  types: [
42335
42462
  "boolean"
@@ -42915,6 +43042,11 @@ var patterns = {
42915
43042
  "number"
42916
43043
  ]
42917
43044
  },
43045
+ fontFamily: {
43046
+ types: [
43047
+ "string"
43048
+ ]
43049
+ },
42918
43050
  align: {
42919
43051
  types: [
42920
43052
  "string"
@@ -44459,6 +44591,11 @@ var patterns = {
44459
44591
  "number"
44460
44592
  ]
44461
44593
  },
44594
+ fontFamily: {
44595
+ types: [
44596
+ "string"
44597
+ ]
44598
+ },
44462
44599
  align: {
44463
44600
  types: [
44464
44601
  "string"
@@ -45680,6 +45817,11 @@ var patterns = {
45680
45817
  "number"
45681
45818
  ]
45682
45819
  },
45820
+ fontFamily: {
45821
+ types: [
45822
+ "string"
45823
+ ]
45824
+ },
45683
45825
  align: {
45684
45826
  types: [
45685
45827
  "string"
@@ -48964,6 +49106,90 @@ var patterns = {
48964
49106
  ]
48965
49107
  }
48966
49108
  },
49109
+ editable: {
49110
+ types: [
49111
+ "boolean"
49112
+ ],
49113
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely"
49114
+ },
49115
+ selectedId: {
49116
+ types: [
49117
+ "string"
49118
+ ],
49119
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none."
49120
+ },
49121
+ onSelect: {
49122
+ types: [
49123
+ "function"
49124
+ ],
49125
+ description: "Fired on a click that changes selection — before `selectEvent`.",
49126
+ kind: "callback",
49127
+ callbackArgs: [
49128
+ {
49129
+ name: "id",
49130
+ type: "string"
49131
+ }
49132
+ ]
49133
+ },
49134
+ onMove: {
49135
+ types: [
49136
+ "function"
49137
+ ],
49138
+ description: "Fired once per drag gesture, on drop — before `moveEvent`.",
49139
+ kind: "callback",
49140
+ callbackArgs: [
49141
+ {
49142
+ name: "id",
49143
+ type: "string"
49144
+ },
49145
+ {
49146
+ name: "x",
49147
+ type: "number"
49148
+ },
49149
+ {
49150
+ name: "y",
49151
+ type: "number"
49152
+ }
49153
+ ]
49154
+ },
49155
+ selectEvent: {
49156
+ types: [
49157
+ "string"
49158
+ ],
49159
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
49160
+ kind: "event-ref",
49161
+ emitPayloadSchema: [
49162
+ {
49163
+ name: "id",
49164
+ type: "string",
49165
+ required: true
49166
+ }
49167
+ ]
49168
+ },
49169
+ moveEvent: {
49170
+ types: [
49171
+ "string"
49172
+ ],
49173
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` — fired once on drop.",
49174
+ kind: "event-ref",
49175
+ emitPayloadSchema: [
49176
+ {
49177
+ name: "id",
49178
+ type: "string",
49179
+ required: true
49180
+ },
49181
+ {
49182
+ name: "x",
49183
+ type: "number",
49184
+ required: true
49185
+ },
49186
+ {
49187
+ name: "y",
49188
+ type: "number",
49189
+ required: true
49190
+ }
49191
+ ]
49192
+ },
48967
49193
  children: {
48968
49194
  types: [
48969
49195
  "node"
@@ -50497,6 +50723,11 @@ var patterns = {
50497
50723
  "number"
50498
50724
  ]
50499
50725
  },
50726
+ fontFamily: {
50727
+ types: [
50728
+ "string"
50729
+ ]
50730
+ },
50500
50731
  align: {
50501
50732
  types: [
50502
50733
  "string"
@@ -51814,6 +52045,11 @@ var patterns = {
51814
52045
  types: [
51815
52046
  "boolean"
51816
52047
  ]
52048
+ },
52049
+ testId: {
52050
+ types: [
52051
+ "string"
52052
+ ]
51817
52053
  }
51818
52054
  },
51819
52055
  required: [
@@ -52070,6 +52306,330 @@ var patterns = {
52070
52306
  description: "secondarySidebarClassName prop"
52071
52307
  }
52072
52308
  }
52309
+ },
52310
+ "command-palette": {
52311
+ type: "command-palette",
52312
+ category: "component",
52313
+ tier: "molecules",
52314
+ family: "core",
52315
+ description: "CommandPalette component",
52316
+ suggestedFor: [
52317
+ "command",
52318
+ "palette",
52319
+ "command palette"
52320
+ ],
52321
+ typicalSize: "medium",
52322
+ propsSchema: {
52323
+ open: {
52324
+ types: [
52325
+ "boolean"
52326
+ ],
52327
+ description: "Whether the palette overlay is open",
52328
+ required: true
52329
+ },
52330
+ onOpenChange: {
52331
+ types: [
52332
+ "function"
52333
+ ],
52334
+ description: "Called to open/close the overlay (Escape, overlay click, or a selection)",
52335
+ required: true,
52336
+ kind: "callback",
52337
+ callbackArgs: [
52338
+ {
52339
+ name: "open",
52340
+ type: "boolean"
52341
+ }
52342
+ ]
52343
+ },
52344
+ commands: {
52345
+ types: [
52346
+ "array"
52347
+ ],
52348
+ description: "Commands listed in the palette, filtered as the user types",
52349
+ required: true,
52350
+ items: {
52351
+ types: [
52352
+ "object"
52353
+ ],
52354
+ properties: {
52355
+ id: {
52356
+ types: [
52357
+ "string"
52358
+ ]
52359
+ },
52360
+ label: {
52361
+ types: [
52362
+ "string"
52363
+ ]
52364
+ },
52365
+ icon: {
52366
+ types: [
52367
+ "icon",
52368
+ "string"
52369
+ ]
52370
+ },
52371
+ shortcut: {
52372
+ types: [
52373
+ "string"
52374
+ ]
52375
+ },
52376
+ keywords: {
52377
+ types: [
52378
+ "array"
52379
+ ],
52380
+ items: {
52381
+ types: [
52382
+ "string"
52383
+ ]
52384
+ }
52385
+ },
52386
+ group: {
52387
+ types: [
52388
+ "string"
52389
+ ]
52390
+ },
52391
+ disabled: {
52392
+ types: [
52393
+ "boolean"
52394
+ ]
52395
+ },
52396
+ event: {
52397
+ types: [
52398
+ "string"
52399
+ ]
52400
+ },
52401
+ action: {
52402
+ types: [
52403
+ "string"
52404
+ ]
52405
+ },
52406
+ actionPayload: {
52407
+ types: [
52408
+ "object"
52409
+ ],
52410
+ freeform: true,
52411
+ eventPayloadBrand: true
52412
+ }
52413
+ },
52414
+ required: [
52415
+ "id",
52416
+ "label"
52417
+ ]
52418
+ }
52419
+ },
52420
+ onSelect: {
52421
+ types: [
52422
+ "function"
52423
+ ],
52424
+ description: "Called with the selected command (click, or Enter on the highlighted row)",
52425
+ kind: "callback",
52426
+ callbackArgs: [
52427
+ {
52428
+ name: "command",
52429
+ type: "object",
52430
+ schema: {
52431
+ types: [
52432
+ "object"
52433
+ ],
52434
+ properties: {
52435
+ id: {
52436
+ types: [
52437
+ "string"
52438
+ ]
52439
+ },
52440
+ label: {
52441
+ types: [
52442
+ "string"
52443
+ ]
52444
+ },
52445
+ icon: {
52446
+ types: [
52447
+ "icon",
52448
+ "string"
52449
+ ]
52450
+ },
52451
+ shortcut: {
52452
+ types: [
52453
+ "string"
52454
+ ]
52455
+ },
52456
+ keywords: {
52457
+ types: [
52458
+ "array"
52459
+ ],
52460
+ items: {
52461
+ types: [
52462
+ "string"
52463
+ ]
52464
+ }
52465
+ },
52466
+ group: {
52467
+ types: [
52468
+ "string"
52469
+ ]
52470
+ },
52471
+ disabled: {
52472
+ types: [
52473
+ "boolean"
52474
+ ]
52475
+ },
52476
+ event: {
52477
+ types: [
52478
+ "string"
52479
+ ]
52480
+ },
52481
+ action: {
52482
+ types: [
52483
+ "string"
52484
+ ]
52485
+ },
52486
+ actionPayload: {
52487
+ types: [
52488
+ "object"
52489
+ ],
52490
+ freeform: true,
52491
+ eventPayloadBrand: true
52492
+ }
52493
+ },
52494
+ required: [
52495
+ "id",
52496
+ "label"
52497
+ ]
52498
+ }
52499
+ }
52500
+ ]
52501
+ },
52502
+ placeholder: {
52503
+ types: [
52504
+ "string"
52505
+ ],
52506
+ description: "Search field placeholder. Consumers own i18n — plain string prop, no package-internal translation (matches FloatingToolbar's convention).",
52507
+ "default": "Type a command..."
52508
+ },
52509
+ emptyLabel: {
52510
+ types: [
52511
+ "string"
52512
+ ],
52513
+ description: "Label shown when no command matches the query",
52514
+ "default": "No matching commands"
52515
+ },
52516
+ className: {
52517
+ types: [
52518
+ "string"
52519
+ ],
52520
+ description: "Additional CSS classes on the overlay's dialog"
52521
+ }
52522
+ }
52523
+ },
52524
+ "game-audio-cue": {
52525
+ type: "game-audio-cue",
52526
+ category: "game",
52527
+ tier: "atoms",
52528
+ family: "game",
52529
+ description: "GameAudioCue component",
52530
+ suggestedFor: [
52531
+ "game",
52532
+ "audio",
52533
+ "cue",
52534
+ "game audio cue"
52535
+ ],
52536
+ typicalSize: "small",
52537
+ propsSchema: {
52538
+ cue: {
52539
+ types: [
52540
+ "string"
52541
+ ],
52542
+ description: "Manifest key played as a one-shot SFX each time `cueSeq` advances."
52543
+ },
52544
+ cueSeq: {
52545
+ types: [
52546
+ "number"
52547
+ ],
52548
+ description: "Monotonically increasing counter — bumping it re-triggers `cue`."
52549
+ },
52550
+ music: {
52551
+ types: [
52552
+ "string"
52553
+ ],
52554
+ description: "Manifest key to crossfade to as looping background music; unset/empty stops music."
52555
+ },
52556
+ muted: {
52557
+ types: [
52558
+ "boolean"
52559
+ ],
52560
+ description: "Muted state, owned externally and mirrored into the hook."
52561
+ },
52562
+ volume: {
52563
+ types: [
52564
+ "number"
52565
+ ],
52566
+ description: "Master volume 0-1, owned externally and mirrored into the hook."
52567
+ },
52568
+ manifest: {
52569
+ types: [
52570
+ "object"
52571
+ ],
52572
+ description: "Sound manifest — keys mapped to sound definitions (path, volume, loop, ...).",
52573
+ required: true,
52574
+ mapValue: {
52575
+ types: [
52576
+ "object"
52577
+ ],
52578
+ properties: {
52579
+ path: {
52580
+ types: [
52581
+ "string",
52582
+ "array"
52583
+ ],
52584
+ items: {
52585
+ types: [
52586
+ "string"
52587
+ ]
52588
+ }
52589
+ },
52590
+ volume: {
52591
+ types: [
52592
+ "number"
52593
+ ]
52594
+ },
52595
+ loop: {
52596
+ types: [
52597
+ "boolean"
52598
+ ]
52599
+ },
52600
+ poolSize: {
52601
+ types: [
52602
+ "number"
52603
+ ]
52604
+ },
52605
+ autostart: {
52606
+ types: [
52607
+ "boolean"
52608
+ ]
52609
+ },
52610
+ crossfade: {
52611
+ types: [
52612
+ "boolean"
52613
+ ]
52614
+ },
52615
+ crossfadeDurationMs: {
52616
+ types: [
52617
+ "number"
52618
+ ]
52619
+ }
52620
+ },
52621
+ required: [
52622
+ "path"
52623
+ ]
52624
+ }
52625
+ },
52626
+ baseUrl: {
52627
+ types: [
52628
+ "string"
52629
+ ],
52630
+ description: "Base URL prepended to every manifest path."
52631
+ }
52632
+ }
52073
52633
  }
52074
52634
  };
52075
52635
  var categories$1 = [
@@ -52098,7 +52658,7 @@ var patternsRegistry = {
52098
52658
  };
52099
52659
 
52100
52660
  var version$2 = "1.0.0";
52101
- var exportedAt$2 = "2026-09-03T08:33:38.850Z";
52661
+ var exportedAt$2 = "2026-09-03T18:48:24.308Z";
52102
52662
  var integrators = {
52103
52663
  github: {
52104
52664
  name: "github",
@@ -55625,7 +56185,7 @@ var integratorsRegistry = {
55625
56185
  };
55626
56186
 
55627
56187
  var version$1 = "1.0.0";
55628
- var exportedAt$1 = "2026-09-03T03:26:05.097Z";
56188
+ var exportedAt$1 = "2026-09-03T18:48:23.816Z";
55629
56189
  var mappings = {
55630
56190
  "page-header": {
55631
56191
  component: "PageHeader",
@@ -57048,6 +57608,16 @@ var mappings = {
57048
57608
  component: "DockLayout",
57049
57609
  importPath: "@/components/core/organisms/DockLayout",
57050
57610
  category: "layout"
57611
+ },
57612
+ "command-palette": {
57613
+ component: "CommandPalette",
57614
+ importPath: "@/components/core/molecules/CommandPalette",
57615
+ category: "component"
57616
+ },
57617
+ "game-audio-cue": {
57618
+ component: "GameAudioCue",
57619
+ importPath: "@/components/game/atoms/GameAudioCue",
57620
+ category: "game"
57051
57621
  }
57052
57622
  };
57053
57623
  var componentMapping = {
@@ -57057,7 +57627,7 @@ var componentMapping = {
57057
57627
  };
57058
57628
 
57059
57629
  var version = "1.0.0";
57060
- var exportedAt = "2026-09-03T03:26:05.097Z";
57630
+ var exportedAt = "2026-09-03T18:48:23.816Z";
57061
57631
  var contracts = {
57062
57632
  form: {
57063
57633
  emits: [
@@ -78938,6 +79508,16 @@ declare const registry: {
78938
79508
  };
78939
79509
  propertyRequired: string[];
78940
79510
  };
79511
+ toggleEvent: {
79512
+ types: string[];
79513
+ description: string;
79514
+ kind: string;
79515
+ emitPayloadSchema: {
79516
+ name: string;
79517
+ type: string;
79518
+ required: boolean;
79519
+ }[];
79520
+ };
78941
79521
  };
78942
79522
  };
78943
79523
  "trait-slot": {
@@ -81996,6 +82576,54 @@ declare const registry: {
81996
82576
  types: string[];
81997
82577
  };
81998
82578
  };
82579
+ editable: {
82580
+ types: string[];
82581
+ description: string;
82582
+ default: boolean;
82583
+ };
82584
+ selectedId: {
82585
+ types: string[];
82586
+ description: string;
82587
+ default: null;
82588
+ };
82589
+ onSelect: {
82590
+ types: string[];
82591
+ description: string;
82592
+ kind: string;
82593
+ callbackArgs: {
82594
+ name: string;
82595
+ type: string;
82596
+ }[];
82597
+ };
82598
+ onMove: {
82599
+ types: string[];
82600
+ description: string;
82601
+ kind: string;
82602
+ callbackArgs: {
82603
+ name: string;
82604
+ type: string;
82605
+ }[];
82606
+ };
82607
+ selectEvent: {
82608
+ types: string[];
82609
+ description: string;
82610
+ kind: string;
82611
+ emitPayloadSchema: {
82612
+ name: string;
82613
+ type: string;
82614
+ required: boolean;
82615
+ }[];
82616
+ };
82617
+ moveEvent: {
82618
+ types: string[];
82619
+ description: string;
82620
+ kind: string;
82621
+ emitPayloadSchema: {
82622
+ name: string;
82623
+ type: string;
82624
+ required: boolean;
82625
+ }[];
82626
+ };
81999
82627
  camera: {
82000
82628
  types: string[];
82001
82629
  description: string;
@@ -82696,6 +83324,10 @@ declare const registry: {
82696
83324
  types: string[];
82697
83325
  description: string;
82698
83326
  };
83327
+ fontFamily: {
83328
+ types: string[];
83329
+ description: string;
83330
+ };
82699
83331
  shapes: {
82700
83332
  types: string[];
82701
83333
  description: string;
@@ -82763,6 +83395,9 @@ declare const registry: {
82763
83395
  fontSize: {
82764
83396
  types: string[];
82765
83397
  };
83398
+ fontFamily: {
83399
+ types: string[];
83400
+ };
82766
83401
  align: {
82767
83402
  types: string[];
82768
83403
  enumValues: string[];
@@ -83573,6 +84208,9 @@ declare const registry: {
83573
84208
  fontSize: {
83574
84209
  types: string[];
83575
84210
  };
84211
+ fontFamily: {
84212
+ types: string[];
84213
+ };
83576
84214
  align: {
83577
84215
  types: string[];
83578
84216
  enumValues: string[];
@@ -84325,6 +84963,9 @@ declare const registry: {
84325
84963
  fontSize: {
84326
84964
  types: string[];
84327
84965
  };
84966
+ fontFamily: {
84967
+ types: string[];
84968
+ };
84328
84969
  align: {
84329
84970
  types: string[];
84330
84971
  enumValues: string[];
@@ -84624,6 +85265,10 @@ declare const registry: {
84624
85265
  description: string;
84625
85266
  default: number;
84626
85267
  };
85268
+ fontFamily: {
85269
+ types: string[];
85270
+ description: string;
85271
+ };
84627
85272
  showCurveLabels: {
84628
85273
  types: string[];
84629
85274
  description: string;
@@ -84956,6 +85601,9 @@ declare const registry: {
84956
85601
  fontSize: {
84957
85602
  types: string[];
84958
85603
  };
85604
+ fontFamily: {
85605
+ types: string[];
85606
+ };
84959
85607
  align: {
84960
85608
  types: string[];
84961
85609
  enumValues: string[];
@@ -85869,6 +86517,9 @@ declare const registry: {
85869
86517
  fontSize: {
85870
86518
  types: string[];
85871
86519
  };
86520
+ fontFamily: {
86521
+ types: string[];
86522
+ };
85872
86523
  align: {
85873
86524
  types: string[];
85874
86525
  enumValues: string[];
@@ -86604,6 +87255,9 @@ declare const registry: {
86604
87255
  fontSize: {
86605
87256
  types: string[];
86606
87257
  };
87258
+ fontFamily: {
87259
+ types: string[];
87260
+ };
86607
87261
  align: {
86608
87262
  types: string[];
86609
87263
  enumValues: string[];
@@ -88478,6 +89132,52 @@ declare const registry: {
88478
89132
  types: string[];
88479
89133
  };
88480
89134
  };
89135
+ editable: {
89136
+ types: string[];
89137
+ description: string;
89138
+ };
89139
+ selectedId: {
89140
+ types: string[];
89141
+ description: string;
89142
+ };
89143
+ onSelect: {
89144
+ types: string[];
89145
+ description: string;
89146
+ kind: string;
89147
+ callbackArgs: {
89148
+ name: string;
89149
+ type: string;
89150
+ }[];
89151
+ };
89152
+ onMove: {
89153
+ types: string[];
89154
+ description: string;
89155
+ kind: string;
89156
+ callbackArgs: {
89157
+ name: string;
89158
+ type: string;
89159
+ }[];
89160
+ };
89161
+ selectEvent: {
89162
+ types: string[];
89163
+ description: string;
89164
+ kind: string;
89165
+ emitPayloadSchema: {
89166
+ name: string;
89167
+ type: string;
89168
+ required: boolean;
89169
+ }[];
89170
+ };
89171
+ moveEvent: {
89172
+ types: string[];
89173
+ description: string;
89174
+ kind: string;
89175
+ emitPayloadSchema: {
89176
+ name: string;
89177
+ type: string;
89178
+ required: boolean;
89179
+ }[];
89180
+ };
88481
89181
  children: {
88482
89182
  types: string[];
88483
89183
  description: string;
@@ -89418,6 +90118,9 @@ declare const registry: {
89418
90118
  fontSize: {
89419
90119
  types: string[];
89420
90120
  };
90121
+ fontFamily: {
90122
+ types: string[];
90123
+ };
89421
90124
  align: {
89422
90125
  types: string[];
89423
90126
  enumValues: string[];
@@ -90207,6 +90910,9 @@ declare const registry: {
90207
90910
  disabled: {
90208
90911
  types: string[];
90209
90912
  };
90913
+ testId: {
90914
+ types: string[];
90915
+ };
90210
90916
  };
90211
90917
  required: string[];
90212
90918
  };
@@ -90381,6 +91087,212 @@ declare const registry: {
90381
91087
  };
90382
91088
  };
90383
91089
  };
91090
+ "command-palette": {
91091
+ type: string;
91092
+ category: string;
91093
+ tier: string;
91094
+ family: string;
91095
+ description: string;
91096
+ suggestedFor: string[];
91097
+ typicalSize: string;
91098
+ propsSchema: {
91099
+ open: {
91100
+ types: string[];
91101
+ description: string;
91102
+ required: boolean;
91103
+ };
91104
+ onOpenChange: {
91105
+ types: string[];
91106
+ description: string;
91107
+ required: boolean;
91108
+ kind: string;
91109
+ callbackArgs: {
91110
+ name: string;
91111
+ type: string;
91112
+ }[];
91113
+ };
91114
+ commands: {
91115
+ types: string[];
91116
+ description: string;
91117
+ required: boolean;
91118
+ items: {
91119
+ types: string[];
91120
+ properties: {
91121
+ id: {
91122
+ types: string[];
91123
+ };
91124
+ label: {
91125
+ types: string[];
91126
+ };
91127
+ icon: {
91128
+ types: string[];
91129
+ };
91130
+ shortcut: {
91131
+ types: string[];
91132
+ };
91133
+ keywords: {
91134
+ types: string[];
91135
+ items: {
91136
+ types: string[];
91137
+ };
91138
+ };
91139
+ group: {
91140
+ types: string[];
91141
+ };
91142
+ disabled: {
91143
+ types: string[];
91144
+ };
91145
+ event: {
91146
+ types: string[];
91147
+ };
91148
+ action: {
91149
+ types: string[];
91150
+ };
91151
+ actionPayload: {
91152
+ types: string[];
91153
+ freeform: boolean;
91154
+ eventPayloadBrand: boolean;
91155
+ };
91156
+ };
91157
+ required: string[];
91158
+ };
91159
+ };
91160
+ onSelect: {
91161
+ types: string[];
91162
+ description: string;
91163
+ kind: string;
91164
+ callbackArgs: {
91165
+ name: string;
91166
+ type: string;
91167
+ schema: {
91168
+ types: string[];
91169
+ properties: {
91170
+ id: {
91171
+ types: string[];
91172
+ };
91173
+ label: {
91174
+ types: string[];
91175
+ };
91176
+ icon: {
91177
+ types: string[];
91178
+ };
91179
+ shortcut: {
91180
+ types: string[];
91181
+ };
91182
+ keywords: {
91183
+ types: string[];
91184
+ items: {
91185
+ types: string[];
91186
+ };
91187
+ };
91188
+ group: {
91189
+ types: string[];
91190
+ };
91191
+ disabled: {
91192
+ types: string[];
91193
+ };
91194
+ event: {
91195
+ types: string[];
91196
+ };
91197
+ action: {
91198
+ types: string[];
91199
+ };
91200
+ actionPayload: {
91201
+ types: string[];
91202
+ freeform: boolean;
91203
+ eventPayloadBrand: boolean;
91204
+ };
91205
+ };
91206
+ required: string[];
91207
+ };
91208
+ }[];
91209
+ };
91210
+ placeholder: {
91211
+ types: string[];
91212
+ description: string;
91213
+ default: string;
91214
+ };
91215
+ emptyLabel: {
91216
+ types: string[];
91217
+ description: string;
91218
+ default: string;
91219
+ };
91220
+ className: {
91221
+ types: string[];
91222
+ description: string;
91223
+ };
91224
+ };
91225
+ };
91226
+ "game-audio-cue": {
91227
+ type: string;
91228
+ category: string;
91229
+ tier: string;
91230
+ family: string;
91231
+ description: string;
91232
+ suggestedFor: string[];
91233
+ typicalSize: string;
91234
+ propsSchema: {
91235
+ cue: {
91236
+ types: string[];
91237
+ description: string;
91238
+ };
91239
+ cueSeq: {
91240
+ types: string[];
91241
+ description: string;
91242
+ };
91243
+ music: {
91244
+ types: string[];
91245
+ description: string;
91246
+ };
91247
+ muted: {
91248
+ types: string[];
91249
+ description: string;
91250
+ };
91251
+ volume: {
91252
+ types: string[];
91253
+ description: string;
91254
+ };
91255
+ manifest: {
91256
+ types: string[];
91257
+ description: string;
91258
+ required: boolean;
91259
+ mapValue: {
91260
+ types: string[];
91261
+ properties: {
91262
+ path: {
91263
+ types: string[];
91264
+ items: {
91265
+ types: string[];
91266
+ };
91267
+ };
91268
+ volume: {
91269
+ types: string[];
91270
+ };
91271
+ loop: {
91272
+ types: string[];
91273
+ };
91274
+ poolSize: {
91275
+ types: string[];
91276
+ };
91277
+ autostart: {
91278
+ types: string[];
91279
+ };
91280
+ crossfade: {
91281
+ types: string[];
91282
+ };
91283
+ crossfadeDurationMs: {
91284
+ types: string[];
91285
+ };
91286
+ };
91287
+ required: string[];
91288
+ };
91289
+ };
91290
+ baseUrl: {
91291
+ types: string[];
91292
+ description: string;
91293
+ };
91294
+ };
91295
+ };
90384
91296
  };
90385
91297
  categories: string[];
90386
91298
  };
@@ -110436,6 +111348,16 @@ declare const PATTERN_REGISTRY: {
110436
111348
  };
110437
111349
  propertyRequired: string[];
110438
111350
  };
111351
+ toggleEvent: {
111352
+ types: string[];
111353
+ description: string;
111354
+ kind: string;
111355
+ emitPayloadSchema: {
111356
+ name: string;
111357
+ type: string;
111358
+ required: boolean;
111359
+ }[];
111360
+ };
110439
111361
  };
110440
111362
  };
110441
111363
  "trait-slot": {
@@ -113494,6 +114416,54 @@ declare const PATTERN_REGISTRY: {
113494
114416
  types: string[];
113495
114417
  };
113496
114418
  };
114419
+ editable: {
114420
+ types: string[];
114421
+ description: string;
114422
+ default: boolean;
114423
+ };
114424
+ selectedId: {
114425
+ types: string[];
114426
+ description: string;
114427
+ default: null;
114428
+ };
114429
+ onSelect: {
114430
+ types: string[];
114431
+ description: string;
114432
+ kind: string;
114433
+ callbackArgs: {
114434
+ name: string;
114435
+ type: string;
114436
+ }[];
114437
+ };
114438
+ onMove: {
114439
+ types: string[];
114440
+ description: string;
114441
+ kind: string;
114442
+ callbackArgs: {
114443
+ name: string;
114444
+ type: string;
114445
+ }[];
114446
+ };
114447
+ selectEvent: {
114448
+ types: string[];
114449
+ description: string;
114450
+ kind: string;
114451
+ emitPayloadSchema: {
114452
+ name: string;
114453
+ type: string;
114454
+ required: boolean;
114455
+ }[];
114456
+ };
114457
+ moveEvent: {
114458
+ types: string[];
114459
+ description: string;
114460
+ kind: string;
114461
+ emitPayloadSchema: {
114462
+ name: string;
114463
+ type: string;
114464
+ required: boolean;
114465
+ }[];
114466
+ };
113497
114467
  camera: {
113498
114468
  types: string[];
113499
114469
  description: string;
@@ -114194,6 +115164,10 @@ declare const PATTERN_REGISTRY: {
114194
115164
  types: string[];
114195
115165
  description: string;
114196
115166
  };
115167
+ fontFamily: {
115168
+ types: string[];
115169
+ description: string;
115170
+ };
114197
115171
  shapes: {
114198
115172
  types: string[];
114199
115173
  description: string;
@@ -114261,6 +115235,9 @@ declare const PATTERN_REGISTRY: {
114261
115235
  fontSize: {
114262
115236
  types: string[];
114263
115237
  };
115238
+ fontFamily: {
115239
+ types: string[];
115240
+ };
114264
115241
  align: {
114265
115242
  types: string[];
114266
115243
  enumValues: string[];
@@ -115071,6 +116048,9 @@ declare const PATTERN_REGISTRY: {
115071
116048
  fontSize: {
115072
116049
  types: string[];
115073
116050
  };
116051
+ fontFamily: {
116052
+ types: string[];
116053
+ };
115074
116054
  align: {
115075
116055
  types: string[];
115076
116056
  enumValues: string[];
@@ -115823,6 +116803,9 @@ declare const PATTERN_REGISTRY: {
115823
116803
  fontSize: {
115824
116804
  types: string[];
115825
116805
  };
116806
+ fontFamily: {
116807
+ types: string[];
116808
+ };
115826
116809
  align: {
115827
116810
  types: string[];
115828
116811
  enumValues: string[];
@@ -116122,6 +117105,10 @@ declare const PATTERN_REGISTRY: {
116122
117105
  description: string;
116123
117106
  default: number;
116124
117107
  };
117108
+ fontFamily: {
117109
+ types: string[];
117110
+ description: string;
117111
+ };
116125
117112
  showCurveLabels: {
116126
117113
  types: string[];
116127
117114
  description: string;
@@ -116454,6 +117441,9 @@ declare const PATTERN_REGISTRY: {
116454
117441
  fontSize: {
116455
117442
  types: string[];
116456
117443
  };
117444
+ fontFamily: {
117445
+ types: string[];
117446
+ };
116457
117447
  align: {
116458
117448
  types: string[];
116459
117449
  enumValues: string[];
@@ -117367,6 +118357,9 @@ declare const PATTERN_REGISTRY: {
117367
118357
  fontSize: {
117368
118358
  types: string[];
117369
118359
  };
118360
+ fontFamily: {
118361
+ types: string[];
118362
+ };
117370
118363
  align: {
117371
118364
  types: string[];
117372
118365
  enumValues: string[];
@@ -118102,6 +119095,9 @@ declare const PATTERN_REGISTRY: {
118102
119095
  fontSize: {
118103
119096
  types: string[];
118104
119097
  };
119098
+ fontFamily: {
119099
+ types: string[];
119100
+ };
118105
119101
  align: {
118106
119102
  types: string[];
118107
119103
  enumValues: string[];
@@ -119976,6 +120972,52 @@ declare const PATTERN_REGISTRY: {
119976
120972
  types: string[];
119977
120973
  };
119978
120974
  };
120975
+ editable: {
120976
+ types: string[];
120977
+ description: string;
120978
+ };
120979
+ selectedId: {
120980
+ types: string[];
120981
+ description: string;
120982
+ };
120983
+ onSelect: {
120984
+ types: string[];
120985
+ description: string;
120986
+ kind: string;
120987
+ callbackArgs: {
120988
+ name: string;
120989
+ type: string;
120990
+ }[];
120991
+ };
120992
+ onMove: {
120993
+ types: string[];
120994
+ description: string;
120995
+ kind: string;
120996
+ callbackArgs: {
120997
+ name: string;
120998
+ type: string;
120999
+ }[];
121000
+ };
121001
+ selectEvent: {
121002
+ types: string[];
121003
+ description: string;
121004
+ kind: string;
121005
+ emitPayloadSchema: {
121006
+ name: string;
121007
+ type: string;
121008
+ required: boolean;
121009
+ }[];
121010
+ };
121011
+ moveEvent: {
121012
+ types: string[];
121013
+ description: string;
121014
+ kind: string;
121015
+ emitPayloadSchema: {
121016
+ name: string;
121017
+ type: string;
121018
+ required: boolean;
121019
+ }[];
121020
+ };
119979
121021
  children: {
119980
121022
  types: string[];
119981
121023
  description: string;
@@ -120916,6 +121958,9 @@ declare const PATTERN_REGISTRY: {
120916
121958
  fontSize: {
120917
121959
  types: string[];
120918
121960
  };
121961
+ fontFamily: {
121962
+ types: string[];
121963
+ };
120919
121964
  align: {
120920
121965
  types: string[];
120921
121966
  enumValues: string[];
@@ -121705,6 +122750,9 @@ declare const PATTERN_REGISTRY: {
121705
122750
  disabled: {
121706
122751
  types: string[];
121707
122752
  };
122753
+ testId: {
122754
+ types: string[];
122755
+ };
121708
122756
  };
121709
122757
  required: string[];
121710
122758
  };
@@ -121879,6 +122927,212 @@ declare const PATTERN_REGISTRY: {
121879
122927
  };
121880
122928
  };
121881
122929
  };
122930
+ "command-palette": {
122931
+ type: string;
122932
+ category: string;
122933
+ tier: string;
122934
+ family: string;
122935
+ description: string;
122936
+ suggestedFor: string[];
122937
+ typicalSize: string;
122938
+ propsSchema: {
122939
+ open: {
122940
+ types: string[];
122941
+ description: string;
122942
+ required: boolean;
122943
+ };
122944
+ onOpenChange: {
122945
+ types: string[];
122946
+ description: string;
122947
+ required: boolean;
122948
+ kind: string;
122949
+ callbackArgs: {
122950
+ name: string;
122951
+ type: string;
122952
+ }[];
122953
+ };
122954
+ commands: {
122955
+ types: string[];
122956
+ description: string;
122957
+ required: boolean;
122958
+ items: {
122959
+ types: string[];
122960
+ properties: {
122961
+ id: {
122962
+ types: string[];
122963
+ };
122964
+ label: {
122965
+ types: string[];
122966
+ };
122967
+ icon: {
122968
+ types: string[];
122969
+ };
122970
+ shortcut: {
122971
+ types: string[];
122972
+ };
122973
+ keywords: {
122974
+ types: string[];
122975
+ items: {
122976
+ types: string[];
122977
+ };
122978
+ };
122979
+ group: {
122980
+ types: string[];
122981
+ };
122982
+ disabled: {
122983
+ types: string[];
122984
+ };
122985
+ event: {
122986
+ types: string[];
122987
+ };
122988
+ action: {
122989
+ types: string[];
122990
+ };
122991
+ actionPayload: {
122992
+ types: string[];
122993
+ freeform: boolean;
122994
+ eventPayloadBrand: boolean;
122995
+ };
122996
+ };
122997
+ required: string[];
122998
+ };
122999
+ };
123000
+ onSelect: {
123001
+ types: string[];
123002
+ description: string;
123003
+ kind: string;
123004
+ callbackArgs: {
123005
+ name: string;
123006
+ type: string;
123007
+ schema: {
123008
+ types: string[];
123009
+ properties: {
123010
+ id: {
123011
+ types: string[];
123012
+ };
123013
+ label: {
123014
+ types: string[];
123015
+ };
123016
+ icon: {
123017
+ types: string[];
123018
+ };
123019
+ shortcut: {
123020
+ types: string[];
123021
+ };
123022
+ keywords: {
123023
+ types: string[];
123024
+ items: {
123025
+ types: string[];
123026
+ };
123027
+ };
123028
+ group: {
123029
+ types: string[];
123030
+ };
123031
+ disabled: {
123032
+ types: string[];
123033
+ };
123034
+ event: {
123035
+ types: string[];
123036
+ };
123037
+ action: {
123038
+ types: string[];
123039
+ };
123040
+ actionPayload: {
123041
+ types: string[];
123042
+ freeform: boolean;
123043
+ eventPayloadBrand: boolean;
123044
+ };
123045
+ };
123046
+ required: string[];
123047
+ };
123048
+ }[];
123049
+ };
123050
+ placeholder: {
123051
+ types: string[];
123052
+ description: string;
123053
+ default: string;
123054
+ };
123055
+ emptyLabel: {
123056
+ types: string[];
123057
+ description: string;
123058
+ default: string;
123059
+ };
123060
+ className: {
123061
+ types: string[];
123062
+ description: string;
123063
+ };
123064
+ };
123065
+ };
123066
+ "game-audio-cue": {
123067
+ type: string;
123068
+ category: string;
123069
+ tier: string;
123070
+ family: string;
123071
+ description: string;
123072
+ suggestedFor: string[];
123073
+ typicalSize: string;
123074
+ propsSchema: {
123075
+ cue: {
123076
+ types: string[];
123077
+ description: string;
123078
+ };
123079
+ cueSeq: {
123080
+ types: string[];
123081
+ description: string;
123082
+ };
123083
+ music: {
123084
+ types: string[];
123085
+ description: string;
123086
+ };
123087
+ muted: {
123088
+ types: string[];
123089
+ description: string;
123090
+ };
123091
+ volume: {
123092
+ types: string[];
123093
+ description: string;
123094
+ };
123095
+ manifest: {
123096
+ types: string[];
123097
+ description: string;
123098
+ required: boolean;
123099
+ mapValue: {
123100
+ types: string[];
123101
+ properties: {
123102
+ path: {
123103
+ types: string[];
123104
+ items: {
123105
+ types: string[];
123106
+ };
123107
+ };
123108
+ volume: {
123109
+ types: string[];
123110
+ };
123111
+ loop: {
123112
+ types: string[];
123113
+ };
123114
+ poolSize: {
123115
+ types: string[];
123116
+ };
123117
+ autostart: {
123118
+ types: string[];
123119
+ };
123120
+ crossfade: {
123121
+ types: string[];
123122
+ };
123123
+ crossfadeDurationMs: {
123124
+ types: string[];
123125
+ };
123126
+ };
123127
+ required: string[];
123128
+ };
123129
+ };
123130
+ baseUrl: {
123131
+ types: string[];
123132
+ description: string;
123133
+ };
123134
+ };
123135
+ };
121882
123136
  };
121883
123137
  categories: string[];
121884
123138
  };
@@ -126167,6 +127421,16 @@ declare const COMPONENT_MAPPING: {
126167
127421
  importPath: string;
126168
127422
  category: string;
126169
127423
  };
127424
+ "command-palette": {
127425
+ component: string;
127426
+ importPath: string;
127427
+ category: string;
127428
+ };
127429
+ "game-audio-cue": {
127430
+ component: string;
127431
+ importPath: string;
127432
+ category: string;
127433
+ };
126170
127434
  };
126171
127435
  };
126172
127436
  declare const EVENT_CONTRACTS: {