@almadar/core 10.81.0 → 10.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +10 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-BHoSW19_.d.ts → effect-Baldm2vM.d.ts} +114 -4
- package/dist/{entityAccess-0POr1WuY.d.ts → entityAccess-CDYT7WWR.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +570 -0
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +10 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-rVlLkZJu.d.ts → index-R8PyPrGg.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +587 -5
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +10 -0
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +11 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1270 -6
- package/dist/patterns/index.js +576 -4
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +1 -1
- package/dist/patterns/patterns-registry.json +561 -1
- package/dist/patterns/registry.json +561 -1
- package/dist/patterns/services-registry.json +1 -1
- package/dist/{schema-CkTTGH6l.d.ts → schema-1KQUz2pE.d.ts} +2 -2
- package/dist/{trait-D269f6pt.d.ts → trait-Dsp0vmGp.d.ts} +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +13 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-7PHjoE7m.d.ts → types-DJYozDXK.d.ts} +2 -2
- package/package.json +1 -1
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-
|
|
2478
|
+
exportedAt: "2026-09-03T18:48:23.816Z",
|
|
2469
2479
|
patterns: {
|
|
2470
2480
|
"entity-table": {
|
|
2471
2481
|
type: "entity-table",
|
|
@@ -35173,6 +35183,20 @@ var patterns_registry_default = {
|
|
|
35173
35183
|
"role",
|
|
35174
35184
|
"category"
|
|
35175
35185
|
]
|
|
35186
|
+
},
|
|
35187
|
+
toggleEvent: {
|
|
35188
|
+
types: [
|
|
35189
|
+
"string"
|
|
35190
|
+
],
|
|
35191
|
+
description: "Event dispatched via event bus on toggle, carrying the new muted state.",
|
|
35192
|
+
kind: "event-ref",
|
|
35193
|
+
emitPayloadSchema: [
|
|
35194
|
+
{
|
|
35195
|
+
name: "muted",
|
|
35196
|
+
type: "boolean",
|
|
35197
|
+
required: true
|
|
35198
|
+
}
|
|
35199
|
+
]
|
|
35176
35200
|
}
|
|
35177
35201
|
}
|
|
35178
35202
|
},
|
|
@@ -40275,6 +40299,92 @@ var patterns_registry_default = {
|
|
|
40275
40299
|
]
|
|
40276
40300
|
}
|
|
40277
40301
|
},
|
|
40302
|
+
editable: {
|
|
40303
|
+
types: [
|
|
40304
|
+
"boolean"
|
|
40305
|
+
],
|
|
40306
|
+
description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely",
|
|
40307
|
+
default: false
|
|
40308
|
+
},
|
|
40309
|
+
selectedId: {
|
|
40310
|
+
types: [
|
|
40311
|
+
"string"
|
|
40312
|
+
],
|
|
40313
|
+
description: "The currently-selected drawable id (controlled); `null`/undefined = none.",
|
|
40314
|
+
default: null
|
|
40315
|
+
},
|
|
40316
|
+
onSelect: {
|
|
40317
|
+
types: [
|
|
40318
|
+
"function"
|
|
40319
|
+
],
|
|
40320
|
+
description: "Fired on a click that changes selection \u2014 before `selectEvent`.",
|
|
40321
|
+
kind: "callback",
|
|
40322
|
+
callbackArgs: [
|
|
40323
|
+
{
|
|
40324
|
+
name: "id",
|
|
40325
|
+
type: "string"
|
|
40326
|
+
}
|
|
40327
|
+
]
|
|
40328
|
+
},
|
|
40329
|
+
onMove: {
|
|
40330
|
+
types: [
|
|
40331
|
+
"function"
|
|
40332
|
+
],
|
|
40333
|
+
description: "Fired once per drag gesture, on drop \u2014 before `moveEvent`.",
|
|
40334
|
+
kind: "callback",
|
|
40335
|
+
callbackArgs: [
|
|
40336
|
+
{
|
|
40337
|
+
name: "id",
|
|
40338
|
+
type: "string"
|
|
40339
|
+
},
|
|
40340
|
+
{
|
|
40341
|
+
name: "x",
|
|
40342
|
+
type: "number"
|
|
40343
|
+
},
|
|
40344
|
+
{
|
|
40345
|
+
name: "y",
|
|
40346
|
+
type: "number"
|
|
40347
|
+
}
|
|
40348
|
+
]
|
|
40349
|
+
},
|
|
40350
|
+
selectEvent: {
|
|
40351
|
+
types: [
|
|
40352
|
+
"string"
|
|
40353
|
+
],
|
|
40354
|
+
description: "Declarative selection event, `UI:{selectEvent} { id }`.",
|
|
40355
|
+
kind: "event-ref",
|
|
40356
|
+
emitPayloadSchema: [
|
|
40357
|
+
{
|
|
40358
|
+
name: "id",
|
|
40359
|
+
type: "string",
|
|
40360
|
+
required: true
|
|
40361
|
+
}
|
|
40362
|
+
]
|
|
40363
|
+
},
|
|
40364
|
+
moveEvent: {
|
|
40365
|
+
types: [
|
|
40366
|
+
"string"
|
|
40367
|
+
],
|
|
40368
|
+
description: "Declarative move event, `UI:{moveEvent} { id, x, y }` \u2014 fired once on drop.",
|
|
40369
|
+
kind: "event-ref",
|
|
40370
|
+
emitPayloadSchema: [
|
|
40371
|
+
{
|
|
40372
|
+
name: "id",
|
|
40373
|
+
type: "string",
|
|
40374
|
+
required: true
|
|
40375
|
+
},
|
|
40376
|
+
{
|
|
40377
|
+
name: "x",
|
|
40378
|
+
type: "number",
|
|
40379
|
+
required: true
|
|
40380
|
+
},
|
|
40381
|
+
{
|
|
40382
|
+
name: "y",
|
|
40383
|
+
type: "number",
|
|
40384
|
+
required: true
|
|
40385
|
+
}
|
|
40386
|
+
]
|
|
40387
|
+
},
|
|
40278
40388
|
camera: {
|
|
40279
40389
|
types: [
|
|
40280
40390
|
"string"
|
|
@@ -41450,6 +41560,12 @@ var patterns_registry_default = {
|
|
|
41450
41560
|
],
|
|
41451
41561
|
description: "Background color (default transparent)."
|
|
41452
41562
|
},
|
|
41563
|
+
fontFamily: {
|
|
41564
|
+
types: [
|
|
41565
|
+
"string"
|
|
41566
|
+
],
|
|
41567
|
+
description: "Canvas text font family. Falls back to the theme's --font-family-body."
|
|
41568
|
+
},
|
|
41453
41569
|
shapes: {
|
|
41454
41570
|
types: [
|
|
41455
41571
|
"array"
|
|
@@ -41574,6 +41690,11 @@ var patterns_registry_default = {
|
|
|
41574
41690
|
"number"
|
|
41575
41691
|
]
|
|
41576
41692
|
},
|
|
41693
|
+
fontFamily: {
|
|
41694
|
+
types: [
|
|
41695
|
+
"string"
|
|
41696
|
+
]
|
|
41697
|
+
},
|
|
41577
41698
|
align: {
|
|
41578
41699
|
types: [
|
|
41579
41700
|
"string"
|
|
@@ -42946,6 +43067,11 @@ var patterns_registry_default = {
|
|
|
42946
43067
|
"number"
|
|
42947
43068
|
]
|
|
42948
43069
|
},
|
|
43070
|
+
fontFamily: {
|
|
43071
|
+
types: [
|
|
43072
|
+
"string"
|
|
43073
|
+
]
|
|
43074
|
+
},
|
|
42949
43075
|
align: {
|
|
42950
43076
|
types: [
|
|
42951
43077
|
"string"
|
|
@@ -44221,6 +44347,11 @@ var patterns_registry_default = {
|
|
|
44221
44347
|
"number"
|
|
44222
44348
|
]
|
|
44223
44349
|
},
|
|
44350
|
+
fontFamily: {
|
|
44351
|
+
types: [
|
|
44352
|
+
"string"
|
|
44353
|
+
]
|
|
44354
|
+
},
|
|
44224
44355
|
align: {
|
|
44225
44356
|
types: [
|
|
44226
44357
|
"string"
|
|
@@ -44697,6 +44828,12 @@ var patterns_registry_default = {
|
|
|
44697
44828
|
description: "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12).",
|
|
44698
44829
|
default: 12
|
|
44699
44830
|
},
|
|
44831
|
+
fontFamily: {
|
|
44832
|
+
types: [
|
|
44833
|
+
"string"
|
|
44834
|
+
],
|
|
44835
|
+
description: 'Canvas text font family. Accepts a known game-font key (e.g. "future-narrow") or a CSS font-family string.'
|
|
44836
|
+
},
|
|
44700
44837
|
showCurveLabels: {
|
|
44701
44838
|
types: [
|
|
44702
44839
|
"boolean"
|
|
@@ -45274,6 +45411,11 @@ var patterns_registry_default = {
|
|
|
45274
45411
|
"number"
|
|
45275
45412
|
]
|
|
45276
45413
|
},
|
|
45414
|
+
fontFamily: {
|
|
45415
|
+
types: [
|
|
45416
|
+
"string"
|
|
45417
|
+
]
|
|
45418
|
+
},
|
|
45277
45419
|
align: {
|
|
45278
45420
|
types: [
|
|
45279
45421
|
"string"
|
|
@@ -46809,6 +46951,11 @@ var patterns_registry_default = {
|
|
|
46809
46951
|
"number"
|
|
46810
46952
|
]
|
|
46811
46953
|
},
|
|
46954
|
+
fontFamily: {
|
|
46955
|
+
types: [
|
|
46956
|
+
"string"
|
|
46957
|
+
]
|
|
46958
|
+
},
|
|
46812
46959
|
align: {
|
|
46813
46960
|
types: [
|
|
46814
46961
|
"string"
|
|
@@ -48018,6 +48165,11 @@ var patterns_registry_default = {
|
|
|
48018
48165
|
"number"
|
|
48019
48166
|
]
|
|
48020
48167
|
},
|
|
48168
|
+
fontFamily: {
|
|
48169
|
+
types: [
|
|
48170
|
+
"string"
|
|
48171
|
+
]
|
|
48172
|
+
},
|
|
48021
48173
|
align: {
|
|
48022
48174
|
types: [
|
|
48023
48175
|
"string"
|
|
@@ -51300,6 +51452,90 @@ var patterns_registry_default = {
|
|
|
51300
51452
|
]
|
|
51301
51453
|
}
|
|
51302
51454
|
},
|
|
51455
|
+
editable: {
|
|
51456
|
+
types: [
|
|
51457
|
+
"boolean"
|
|
51458
|
+
],
|
|
51459
|
+
description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely"
|
|
51460
|
+
},
|
|
51461
|
+
selectedId: {
|
|
51462
|
+
types: [
|
|
51463
|
+
"string"
|
|
51464
|
+
],
|
|
51465
|
+
description: "The currently-selected drawable id (controlled); `null`/undefined = none."
|
|
51466
|
+
},
|
|
51467
|
+
onSelect: {
|
|
51468
|
+
types: [
|
|
51469
|
+
"function"
|
|
51470
|
+
],
|
|
51471
|
+
description: "Fired on a click that changes selection \u2014 before `selectEvent`.",
|
|
51472
|
+
kind: "callback",
|
|
51473
|
+
callbackArgs: [
|
|
51474
|
+
{
|
|
51475
|
+
name: "id",
|
|
51476
|
+
type: "string"
|
|
51477
|
+
}
|
|
51478
|
+
]
|
|
51479
|
+
},
|
|
51480
|
+
onMove: {
|
|
51481
|
+
types: [
|
|
51482
|
+
"function"
|
|
51483
|
+
],
|
|
51484
|
+
description: "Fired once per drag gesture, on drop \u2014 before `moveEvent`.",
|
|
51485
|
+
kind: "callback",
|
|
51486
|
+
callbackArgs: [
|
|
51487
|
+
{
|
|
51488
|
+
name: "id",
|
|
51489
|
+
type: "string"
|
|
51490
|
+
},
|
|
51491
|
+
{
|
|
51492
|
+
name: "x",
|
|
51493
|
+
type: "number"
|
|
51494
|
+
},
|
|
51495
|
+
{
|
|
51496
|
+
name: "y",
|
|
51497
|
+
type: "number"
|
|
51498
|
+
}
|
|
51499
|
+
]
|
|
51500
|
+
},
|
|
51501
|
+
selectEvent: {
|
|
51502
|
+
types: [
|
|
51503
|
+
"string"
|
|
51504
|
+
],
|
|
51505
|
+
description: "Declarative selection event, `UI:{selectEvent} { id }`.",
|
|
51506
|
+
kind: "event-ref",
|
|
51507
|
+
emitPayloadSchema: [
|
|
51508
|
+
{
|
|
51509
|
+
name: "id",
|
|
51510
|
+
type: "string",
|
|
51511
|
+
required: true
|
|
51512
|
+
}
|
|
51513
|
+
]
|
|
51514
|
+
},
|
|
51515
|
+
moveEvent: {
|
|
51516
|
+
types: [
|
|
51517
|
+
"string"
|
|
51518
|
+
],
|
|
51519
|
+
description: "Declarative move event, `UI:{moveEvent} { id, x, y }` \u2014 fired once on drop.",
|
|
51520
|
+
kind: "event-ref",
|
|
51521
|
+
emitPayloadSchema: [
|
|
51522
|
+
{
|
|
51523
|
+
name: "id",
|
|
51524
|
+
type: "string",
|
|
51525
|
+
required: true
|
|
51526
|
+
},
|
|
51527
|
+
{
|
|
51528
|
+
name: "x",
|
|
51529
|
+
type: "number",
|
|
51530
|
+
required: true
|
|
51531
|
+
},
|
|
51532
|
+
{
|
|
51533
|
+
name: "y",
|
|
51534
|
+
type: "number",
|
|
51535
|
+
required: true
|
|
51536
|
+
}
|
|
51537
|
+
]
|
|
51538
|
+
},
|
|
51303
51539
|
children: {
|
|
51304
51540
|
types: [
|
|
51305
51541
|
"node"
|
|
@@ -52828,6 +53064,11 @@ var patterns_registry_default = {
|
|
|
52828
53064
|
"number"
|
|
52829
53065
|
]
|
|
52830
53066
|
},
|
|
53067
|
+
fontFamily: {
|
|
53068
|
+
types: [
|
|
53069
|
+
"string"
|
|
53070
|
+
]
|
|
53071
|
+
},
|
|
52831
53072
|
align: {
|
|
52832
53073
|
types: [
|
|
52833
53074
|
"string"
|
|
@@ -54144,6 +54385,11 @@ var patterns_registry_default = {
|
|
|
54144
54385
|
types: [
|
|
54145
54386
|
"boolean"
|
|
54146
54387
|
]
|
|
54388
|
+
},
|
|
54389
|
+
testId: {
|
|
54390
|
+
types: [
|
|
54391
|
+
"string"
|
|
54392
|
+
]
|
|
54147
54393
|
}
|
|
54148
54394
|
},
|
|
54149
54395
|
required: [
|
|
@@ -54400,6 +54646,330 @@ var patterns_registry_default = {
|
|
|
54400
54646
|
description: "secondarySidebarClassName prop"
|
|
54401
54647
|
}
|
|
54402
54648
|
}
|
|
54649
|
+
},
|
|
54650
|
+
"command-palette": {
|
|
54651
|
+
type: "command-palette",
|
|
54652
|
+
category: "component",
|
|
54653
|
+
tier: "molecules",
|
|
54654
|
+
family: "core",
|
|
54655
|
+
description: "CommandPalette component",
|
|
54656
|
+
suggestedFor: [
|
|
54657
|
+
"command",
|
|
54658
|
+
"palette",
|
|
54659
|
+
"command palette"
|
|
54660
|
+
],
|
|
54661
|
+
typicalSize: "medium",
|
|
54662
|
+
propsSchema: {
|
|
54663
|
+
open: {
|
|
54664
|
+
types: [
|
|
54665
|
+
"boolean"
|
|
54666
|
+
],
|
|
54667
|
+
description: "Whether the palette overlay is open",
|
|
54668
|
+
required: true
|
|
54669
|
+
},
|
|
54670
|
+
onOpenChange: {
|
|
54671
|
+
types: [
|
|
54672
|
+
"function"
|
|
54673
|
+
],
|
|
54674
|
+
description: "Called to open/close the overlay (Escape, overlay click, or a selection)",
|
|
54675
|
+
required: true,
|
|
54676
|
+
kind: "callback",
|
|
54677
|
+
callbackArgs: [
|
|
54678
|
+
{
|
|
54679
|
+
name: "open",
|
|
54680
|
+
type: "boolean"
|
|
54681
|
+
}
|
|
54682
|
+
]
|
|
54683
|
+
},
|
|
54684
|
+
commands: {
|
|
54685
|
+
types: [
|
|
54686
|
+
"array"
|
|
54687
|
+
],
|
|
54688
|
+
description: "Commands listed in the palette, filtered as the user types",
|
|
54689
|
+
required: true,
|
|
54690
|
+
items: {
|
|
54691
|
+
types: [
|
|
54692
|
+
"object"
|
|
54693
|
+
],
|
|
54694
|
+
properties: {
|
|
54695
|
+
id: {
|
|
54696
|
+
types: [
|
|
54697
|
+
"string"
|
|
54698
|
+
]
|
|
54699
|
+
},
|
|
54700
|
+
label: {
|
|
54701
|
+
types: [
|
|
54702
|
+
"string"
|
|
54703
|
+
]
|
|
54704
|
+
},
|
|
54705
|
+
icon: {
|
|
54706
|
+
types: [
|
|
54707
|
+
"icon",
|
|
54708
|
+
"string"
|
|
54709
|
+
]
|
|
54710
|
+
},
|
|
54711
|
+
shortcut: {
|
|
54712
|
+
types: [
|
|
54713
|
+
"string"
|
|
54714
|
+
]
|
|
54715
|
+
},
|
|
54716
|
+
keywords: {
|
|
54717
|
+
types: [
|
|
54718
|
+
"array"
|
|
54719
|
+
],
|
|
54720
|
+
items: {
|
|
54721
|
+
types: [
|
|
54722
|
+
"string"
|
|
54723
|
+
]
|
|
54724
|
+
}
|
|
54725
|
+
},
|
|
54726
|
+
group: {
|
|
54727
|
+
types: [
|
|
54728
|
+
"string"
|
|
54729
|
+
]
|
|
54730
|
+
},
|
|
54731
|
+
disabled: {
|
|
54732
|
+
types: [
|
|
54733
|
+
"boolean"
|
|
54734
|
+
]
|
|
54735
|
+
},
|
|
54736
|
+
event: {
|
|
54737
|
+
types: [
|
|
54738
|
+
"string"
|
|
54739
|
+
]
|
|
54740
|
+
},
|
|
54741
|
+
action: {
|
|
54742
|
+
types: [
|
|
54743
|
+
"string"
|
|
54744
|
+
]
|
|
54745
|
+
},
|
|
54746
|
+
actionPayload: {
|
|
54747
|
+
types: [
|
|
54748
|
+
"object"
|
|
54749
|
+
],
|
|
54750
|
+
freeform: true,
|
|
54751
|
+
eventPayloadBrand: true
|
|
54752
|
+
}
|
|
54753
|
+
},
|
|
54754
|
+
required: [
|
|
54755
|
+
"id",
|
|
54756
|
+
"label"
|
|
54757
|
+
]
|
|
54758
|
+
}
|
|
54759
|
+
},
|
|
54760
|
+
onSelect: {
|
|
54761
|
+
types: [
|
|
54762
|
+
"function"
|
|
54763
|
+
],
|
|
54764
|
+
description: "Called with the selected command (click, or Enter on the highlighted row)",
|
|
54765
|
+
kind: "callback",
|
|
54766
|
+
callbackArgs: [
|
|
54767
|
+
{
|
|
54768
|
+
name: "command",
|
|
54769
|
+
type: "object",
|
|
54770
|
+
schema: {
|
|
54771
|
+
types: [
|
|
54772
|
+
"object"
|
|
54773
|
+
],
|
|
54774
|
+
properties: {
|
|
54775
|
+
id: {
|
|
54776
|
+
types: [
|
|
54777
|
+
"string"
|
|
54778
|
+
]
|
|
54779
|
+
},
|
|
54780
|
+
label: {
|
|
54781
|
+
types: [
|
|
54782
|
+
"string"
|
|
54783
|
+
]
|
|
54784
|
+
},
|
|
54785
|
+
icon: {
|
|
54786
|
+
types: [
|
|
54787
|
+
"icon",
|
|
54788
|
+
"string"
|
|
54789
|
+
]
|
|
54790
|
+
},
|
|
54791
|
+
shortcut: {
|
|
54792
|
+
types: [
|
|
54793
|
+
"string"
|
|
54794
|
+
]
|
|
54795
|
+
},
|
|
54796
|
+
keywords: {
|
|
54797
|
+
types: [
|
|
54798
|
+
"array"
|
|
54799
|
+
],
|
|
54800
|
+
items: {
|
|
54801
|
+
types: [
|
|
54802
|
+
"string"
|
|
54803
|
+
]
|
|
54804
|
+
}
|
|
54805
|
+
},
|
|
54806
|
+
group: {
|
|
54807
|
+
types: [
|
|
54808
|
+
"string"
|
|
54809
|
+
]
|
|
54810
|
+
},
|
|
54811
|
+
disabled: {
|
|
54812
|
+
types: [
|
|
54813
|
+
"boolean"
|
|
54814
|
+
]
|
|
54815
|
+
},
|
|
54816
|
+
event: {
|
|
54817
|
+
types: [
|
|
54818
|
+
"string"
|
|
54819
|
+
]
|
|
54820
|
+
},
|
|
54821
|
+
action: {
|
|
54822
|
+
types: [
|
|
54823
|
+
"string"
|
|
54824
|
+
]
|
|
54825
|
+
},
|
|
54826
|
+
actionPayload: {
|
|
54827
|
+
types: [
|
|
54828
|
+
"object"
|
|
54829
|
+
],
|
|
54830
|
+
freeform: true,
|
|
54831
|
+
eventPayloadBrand: true
|
|
54832
|
+
}
|
|
54833
|
+
},
|
|
54834
|
+
required: [
|
|
54835
|
+
"id",
|
|
54836
|
+
"label"
|
|
54837
|
+
]
|
|
54838
|
+
}
|
|
54839
|
+
}
|
|
54840
|
+
]
|
|
54841
|
+
},
|
|
54842
|
+
placeholder: {
|
|
54843
|
+
types: [
|
|
54844
|
+
"string"
|
|
54845
|
+
],
|
|
54846
|
+
description: "Search field placeholder. Consumers own i18n \u2014 plain string prop, no package-internal translation (matches FloatingToolbar's convention).",
|
|
54847
|
+
default: "Type a command..."
|
|
54848
|
+
},
|
|
54849
|
+
emptyLabel: {
|
|
54850
|
+
types: [
|
|
54851
|
+
"string"
|
|
54852
|
+
],
|
|
54853
|
+
description: "Label shown when no command matches the query",
|
|
54854
|
+
default: "No matching commands"
|
|
54855
|
+
},
|
|
54856
|
+
className: {
|
|
54857
|
+
types: [
|
|
54858
|
+
"string"
|
|
54859
|
+
],
|
|
54860
|
+
description: "Additional CSS classes on the overlay's dialog"
|
|
54861
|
+
}
|
|
54862
|
+
}
|
|
54863
|
+
},
|
|
54864
|
+
"game-audio-cue": {
|
|
54865
|
+
type: "game-audio-cue",
|
|
54866
|
+
category: "game",
|
|
54867
|
+
tier: "atoms",
|
|
54868
|
+
family: "game",
|
|
54869
|
+
description: "GameAudioCue component",
|
|
54870
|
+
suggestedFor: [
|
|
54871
|
+
"game",
|
|
54872
|
+
"audio",
|
|
54873
|
+
"cue",
|
|
54874
|
+
"game audio cue"
|
|
54875
|
+
],
|
|
54876
|
+
typicalSize: "small",
|
|
54877
|
+
propsSchema: {
|
|
54878
|
+
cue: {
|
|
54879
|
+
types: [
|
|
54880
|
+
"string"
|
|
54881
|
+
],
|
|
54882
|
+
description: "Manifest key played as a one-shot SFX each time `cueSeq` advances."
|
|
54883
|
+
},
|
|
54884
|
+
cueSeq: {
|
|
54885
|
+
types: [
|
|
54886
|
+
"number"
|
|
54887
|
+
],
|
|
54888
|
+
description: "Monotonically increasing counter \u2014 bumping it re-triggers `cue`."
|
|
54889
|
+
},
|
|
54890
|
+
music: {
|
|
54891
|
+
types: [
|
|
54892
|
+
"string"
|
|
54893
|
+
],
|
|
54894
|
+
description: "Manifest key to crossfade to as looping background music; unset/empty stops music."
|
|
54895
|
+
},
|
|
54896
|
+
muted: {
|
|
54897
|
+
types: [
|
|
54898
|
+
"boolean"
|
|
54899
|
+
],
|
|
54900
|
+
description: "Muted state, owned externally and mirrored into the hook."
|
|
54901
|
+
},
|
|
54902
|
+
volume: {
|
|
54903
|
+
types: [
|
|
54904
|
+
"number"
|
|
54905
|
+
],
|
|
54906
|
+
description: "Master volume 0-1, owned externally and mirrored into the hook."
|
|
54907
|
+
},
|
|
54908
|
+
manifest: {
|
|
54909
|
+
types: [
|
|
54910
|
+
"object"
|
|
54911
|
+
],
|
|
54912
|
+
description: "Sound manifest \u2014 keys mapped to sound definitions (path, volume, loop, ...).",
|
|
54913
|
+
required: true,
|
|
54914
|
+
mapValue: {
|
|
54915
|
+
types: [
|
|
54916
|
+
"object"
|
|
54917
|
+
],
|
|
54918
|
+
properties: {
|
|
54919
|
+
path: {
|
|
54920
|
+
types: [
|
|
54921
|
+
"string",
|
|
54922
|
+
"array"
|
|
54923
|
+
],
|
|
54924
|
+
items: {
|
|
54925
|
+
types: [
|
|
54926
|
+
"string"
|
|
54927
|
+
]
|
|
54928
|
+
}
|
|
54929
|
+
},
|
|
54930
|
+
volume: {
|
|
54931
|
+
types: [
|
|
54932
|
+
"number"
|
|
54933
|
+
]
|
|
54934
|
+
},
|
|
54935
|
+
loop: {
|
|
54936
|
+
types: [
|
|
54937
|
+
"boolean"
|
|
54938
|
+
]
|
|
54939
|
+
},
|
|
54940
|
+
poolSize: {
|
|
54941
|
+
types: [
|
|
54942
|
+
"number"
|
|
54943
|
+
]
|
|
54944
|
+
},
|
|
54945
|
+
autostart: {
|
|
54946
|
+
types: [
|
|
54947
|
+
"boolean"
|
|
54948
|
+
]
|
|
54949
|
+
},
|
|
54950
|
+
crossfade: {
|
|
54951
|
+
types: [
|
|
54952
|
+
"boolean"
|
|
54953
|
+
]
|
|
54954
|
+
},
|
|
54955
|
+
crossfadeDurationMs: {
|
|
54956
|
+
types: [
|
|
54957
|
+
"number"
|
|
54958
|
+
]
|
|
54959
|
+
}
|
|
54960
|
+
},
|
|
54961
|
+
required: [
|
|
54962
|
+
"path"
|
|
54963
|
+
]
|
|
54964
|
+
}
|
|
54965
|
+
},
|
|
54966
|
+
baseUrl: {
|
|
54967
|
+
types: [
|
|
54968
|
+
"string"
|
|
54969
|
+
],
|
|
54970
|
+
description: "Base URL prepended to every manifest path."
|
|
54971
|
+
}
|
|
54972
|
+
}
|
|
54403
54973
|
}
|
|
54404
54974
|
},
|
|
54405
54975
|
categories: [
|
|
@@ -54425,7 +54995,7 @@ var patterns_registry_default = {
|
|
|
54425
54995
|
// src/patterns/integrators-registry.json
|
|
54426
54996
|
var integrators_registry_default = {
|
|
54427
54997
|
version: "1.0.0",
|
|
54428
|
-
exportedAt: "2026-09-
|
|
54998
|
+
exportedAt: "2026-09-03T18:48:24.308Z",
|
|
54429
54999
|
integrators: {
|
|
54430
55000
|
github: {
|
|
54431
55001
|
name: "github",
|
|
@@ -57943,7 +58513,7 @@ var integrators_registry_default = {
|
|
|
57943
58513
|
// src/patterns/component-mapping.json
|
|
57944
58514
|
var component_mapping_default = {
|
|
57945
58515
|
version: "1.0.0",
|
|
57946
|
-
exportedAt: "2026-09-
|
|
58516
|
+
exportedAt: "2026-09-03T18:48:23.816Z",
|
|
57947
58517
|
mappings: {
|
|
57948
58518
|
"page-header": {
|
|
57949
58519
|
component: "PageHeader",
|
|
@@ -59366,6 +59936,16 @@ var component_mapping_default = {
|
|
|
59366
59936
|
component: "DockLayout",
|
|
59367
59937
|
importPath: "@/components/core/organisms/DockLayout",
|
|
59368
59938
|
category: "layout"
|
|
59939
|
+
},
|
|
59940
|
+
"command-palette": {
|
|
59941
|
+
component: "CommandPalette",
|
|
59942
|
+
importPath: "@/components/core/molecules/CommandPalette",
|
|
59943
|
+
category: "component"
|
|
59944
|
+
},
|
|
59945
|
+
"game-audio-cue": {
|
|
59946
|
+
component: "GameAudioCue",
|
|
59947
|
+
importPath: "@/components/game/atoms/GameAudioCue",
|
|
59948
|
+
category: "game"
|
|
59369
59949
|
}
|
|
59370
59950
|
}
|
|
59371
59951
|
};
|
|
@@ -59373,7 +59953,7 @@ var component_mapping_default = {
|
|
|
59373
59953
|
// src/patterns/event-contracts.json
|
|
59374
59954
|
var event_contracts_default = {
|
|
59375
59955
|
version: "1.0.0",
|
|
59376
|
-
exportedAt: "2026-09-
|
|
59956
|
+
exportedAt: "2026-09-03T18:48:23.816Z",
|
|
59377
59957
|
contracts: {
|
|
59378
59958
|
form: {
|
|
59379
59959
|
emits: [
|
|
@@ -60588,6 +61168,7 @@ var PATTERN_TYPES = [
|
|
|
60588
61168
|
"choice-button",
|
|
60589
61169
|
"code-block",
|
|
60590
61170
|
"code-runner-panel",
|
|
61171
|
+
"command-palette",
|
|
60591
61172
|
"community-links",
|
|
60592
61173
|
"conditional-wrapper",
|
|
60593
61174
|
"confetti-effect",
|
|
@@ -60658,6 +61239,7 @@ var PATTERN_TYPES = [
|
|
|
60658
61239
|
"form-section",
|
|
60659
61240
|
"form-section-header",
|
|
60660
61241
|
"fx-overlay",
|
|
61242
|
+
"game-audio-cue",
|
|
60661
61243
|
"game-audio-toggle",
|
|
60662
61244
|
"game-hud",
|
|
60663
61245
|
"game-icon",
|
|
@@ -65451,6 +66033,6 @@ function mergeEntityFrame(current, orderedWrites) {
|
|
|
65451
66033
|
return next;
|
|
65452
66034
|
}
|
|
65453
66035
|
|
|
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 };
|
|
66036
|
+
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
66037
|
//# sourceMappingURL=index.js.map
|
|
65456
66038
|
//# sourceMappingURL=index.js.map
|