@almadar/core 10.61.0 → 10.63.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-a1W_hXyG.d.ts → effect-CgDrWfKW.d.ts} +60 -8
- package/dist/{entityAccess-DU_mdtr5.d.ts → entityAccess-Dr7XPoi_.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- 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-C-qK6t2U.d.ts → index-D2rQS1PS.d.ts} +4 -4
- package/dist/index.d.ts +11 -11
- package/dist/index.js +855 -15
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +30 -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 +1788 -15
- package/dist/patterns/index.js +835 -13
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +817 -10
- package/dist/patterns/registry.json +817 -10
- package/dist/{schema-Dj4GC3Vo.d.ts → schema-KdqDOMXm.d.ts} +2 -2
- package/dist/{trait-DgZ5Exel.d.ts → trait-CesmHKZ2.d.ts} +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +16 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CGjZ7Odu.d.ts → types-mYXAkmBy.d.ts} +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -172,6 +172,8 @@ var FIELD_TYPES = [
|
|
|
172
172
|
"phone",
|
|
173
173
|
"uuid",
|
|
174
174
|
"image",
|
|
175
|
+
"money",
|
|
176
|
+
"file",
|
|
175
177
|
"array",
|
|
176
178
|
"object",
|
|
177
179
|
"enum",
|
|
@@ -229,6 +231,15 @@ function isPhoneValue(value) {
|
|
|
229
231
|
function isUuidValue(value) {
|
|
230
232
|
return UUID_RE.test(value);
|
|
231
233
|
}
|
|
234
|
+
var FileValueSchema = z.object({
|
|
235
|
+
name: z.string(),
|
|
236
|
+
url: z.string(),
|
|
237
|
+
mimeType: z.string(),
|
|
238
|
+
sizeBytes: z.number()
|
|
239
|
+
});
|
|
240
|
+
function isFileValue(value) {
|
|
241
|
+
return FileValueSchema.safeParse(value).success;
|
|
242
|
+
}
|
|
232
243
|
function isSemanticStringValue(type, value) {
|
|
233
244
|
switch (type) {
|
|
234
245
|
case "email":
|
|
@@ -299,6 +310,8 @@ var EntityFieldSchema = z.lazy(() => {
|
|
|
299
310
|
scalarVariant("slot"),
|
|
300
311
|
scalarVariant("pattern"),
|
|
301
312
|
scalarVariant("node"),
|
|
313
|
+
scalarVariant("money"),
|
|
314
|
+
scalarVariant("file"),
|
|
302
315
|
// Enum variant — REQUIRES non-empty values.
|
|
303
316
|
z.object({
|
|
304
317
|
...baseFieldShape,
|
|
@@ -2221,7 +2234,7 @@ function getInteractionModelForDomain(domain) {
|
|
|
2221
2234
|
// src/patterns/patterns-registry.json
|
|
2222
2235
|
var patterns_registry_default = {
|
|
2223
2236
|
version: "1.0.0",
|
|
2224
|
-
exportedAt: "2026-08-
|
|
2237
|
+
exportedAt: "2026-08-20T23:14:19.545Z",
|
|
2225
2238
|
patterns: {
|
|
2226
2239
|
"entity-table": {
|
|
2227
2240
|
type: "entity-table",
|
|
@@ -3457,6 +3470,7 @@ var patterns_registry_default = {
|
|
|
3457
3470
|
tier: "organisms",
|
|
3458
3471
|
family: "core",
|
|
3459
3472
|
description: "Detail view panel for drawers/sidebars",
|
|
3473
|
+
fieldsContract: "display",
|
|
3460
3474
|
suggestedFor: [
|
|
3461
3475
|
"drawer content",
|
|
3462
3476
|
"side panels",
|
|
@@ -3738,6 +3752,54 @@ var patterns_registry_default = {
|
|
|
3738
3752
|
]
|
|
3739
3753
|
}
|
|
3740
3754
|
},
|
|
3755
|
+
backAction: {
|
|
3756
|
+
types: [
|
|
3757
|
+
"object"
|
|
3758
|
+
],
|
|
3759
|
+
description: "Navigation-back affordance. Renders top-LEFT before the title (OS/back convention \u2014 Almadar_UX \xA78.4), spatially separated from the right-aligned action buttons + close X. Never inferred from actions[] labels.",
|
|
3760
|
+
properties: {
|
|
3761
|
+
label: {
|
|
3762
|
+
types: [
|
|
3763
|
+
"string"
|
|
3764
|
+
]
|
|
3765
|
+
},
|
|
3766
|
+
icon: {
|
|
3767
|
+
types: [
|
|
3768
|
+
"icon",
|
|
3769
|
+
"string"
|
|
3770
|
+
]
|
|
3771
|
+
},
|
|
3772
|
+
onClick: {
|
|
3773
|
+
types: [
|
|
3774
|
+
"function"
|
|
3775
|
+
]
|
|
3776
|
+
},
|
|
3777
|
+
event: {
|
|
3778
|
+
types: [
|
|
3779
|
+
"string"
|
|
3780
|
+
]
|
|
3781
|
+
},
|
|
3782
|
+
navigatesTo: {
|
|
3783
|
+
types: [
|
|
3784
|
+
"string"
|
|
3785
|
+
]
|
|
3786
|
+
},
|
|
3787
|
+
variant: {
|
|
3788
|
+
types: [
|
|
3789
|
+
"string"
|
|
3790
|
+
],
|
|
3791
|
+
enumValues: [
|
|
3792
|
+
"primary",
|
|
3793
|
+
"secondary",
|
|
3794
|
+
"ghost",
|
|
3795
|
+
"danger"
|
|
3796
|
+
]
|
|
3797
|
+
}
|
|
3798
|
+
},
|
|
3799
|
+
propertyRequired: [
|
|
3800
|
+
"label"
|
|
3801
|
+
]
|
|
3802
|
+
},
|
|
3741
3803
|
footer: {
|
|
3742
3804
|
types: [
|
|
3743
3805
|
"node"
|
|
@@ -3772,6 +3834,26 @@ var patterns_registry_default = {
|
|
|
3772
3834
|
types: [
|
|
3773
3835
|
"string"
|
|
3774
3836
|
]
|
|
3837
|
+
},
|
|
3838
|
+
type: {
|
|
3839
|
+
types: [
|
|
3840
|
+
"string"
|
|
3841
|
+
]
|
|
3842
|
+
},
|
|
3843
|
+
values: {
|
|
3844
|
+
types: [
|
|
3845
|
+
"array"
|
|
3846
|
+
],
|
|
3847
|
+
items: {
|
|
3848
|
+
types: [
|
|
3849
|
+
"string"
|
|
3850
|
+
]
|
|
3851
|
+
}
|
|
3852
|
+
},
|
|
3853
|
+
relation: {
|
|
3854
|
+
types: [
|
|
3855
|
+
"string"
|
|
3856
|
+
]
|
|
3775
3857
|
}
|
|
3776
3858
|
},
|
|
3777
3859
|
required: [
|
|
@@ -3836,6 +3918,48 @@ var patterns_registry_default = {
|
|
|
3836
3918
|
"boolean"
|
|
3837
3919
|
],
|
|
3838
3920
|
description: "Show actions flag"
|
|
3921
|
+
},
|
|
3922
|
+
relationsData: {
|
|
3923
|
+
types: [
|
|
3924
|
+
"object"
|
|
3925
|
+
],
|
|
3926
|
+
description: "Relation display data: { fieldName: [{value, label}] } \u2014 injected server-side by the runtime (relation-option injection) or bound by compiled codegen; resolves stored foreign ids to display names.",
|
|
3927
|
+
mapValue: {
|
|
3928
|
+
types: [
|
|
3929
|
+
"array"
|
|
3930
|
+
],
|
|
3931
|
+
items: {
|
|
3932
|
+
types: [
|
|
3933
|
+
"object"
|
|
3934
|
+
],
|
|
3935
|
+
properties: {
|
|
3936
|
+
value: {
|
|
3937
|
+
types: [
|
|
3938
|
+
"string"
|
|
3939
|
+
]
|
|
3940
|
+
},
|
|
3941
|
+
label: {
|
|
3942
|
+
types: [
|
|
3943
|
+
"string"
|
|
3944
|
+
]
|
|
3945
|
+
},
|
|
3946
|
+
description: {
|
|
3947
|
+
types: [
|
|
3948
|
+
"string"
|
|
3949
|
+
]
|
|
3950
|
+
},
|
|
3951
|
+
disabled: {
|
|
3952
|
+
types: [
|
|
3953
|
+
"boolean"
|
|
3954
|
+
]
|
|
3955
|
+
}
|
|
3956
|
+
},
|
|
3957
|
+
required: [
|
|
3958
|
+
"value",
|
|
3959
|
+
"label"
|
|
3960
|
+
]
|
|
3961
|
+
}
|
|
3962
|
+
}
|
|
3839
3963
|
}
|
|
3840
3964
|
}
|
|
3841
3965
|
},
|
|
@@ -3910,9 +4034,10 @@ var patterns_registry_default = {
|
|
|
3910
4034
|
},
|
|
3911
4035
|
status: {
|
|
3912
4036
|
types: [
|
|
3913
|
-
"object"
|
|
4037
|
+
"object",
|
|
4038
|
+
"string"
|
|
3914
4039
|
],
|
|
3915
|
-
description: "Status badge",
|
|
4040
|
+
description: "Status badge \u2014 a bare string (an entity's status field bound directly, e.g. `status: @entity.status`) renders as a default-variant badge",
|
|
3916
4041
|
properties: {
|
|
3917
4042
|
label: {
|
|
3918
4043
|
types: [
|
|
@@ -4107,6 +4232,7 @@ var patterns_registry_default = {
|
|
|
4107
4232
|
tier: "organisms",
|
|
4108
4233
|
family: "core",
|
|
4109
4234
|
description: "Complete form with fields and actions",
|
|
4235
|
+
fieldsContract: "form",
|
|
4110
4236
|
suggestedFor: [
|
|
4111
4237
|
"create forms",
|
|
4112
4238
|
"edit forms",
|
|
@@ -4339,6 +4465,11 @@ var patterns_registry_default = {
|
|
|
4339
4465
|
types: [
|
|
4340
4466
|
"boolean"
|
|
4341
4467
|
]
|
|
4468
|
+
},
|
|
4469
|
+
hint: {
|
|
4470
|
+
types: [
|
|
4471
|
+
"string"
|
|
4472
|
+
]
|
|
4342
4473
|
}
|
|
4343
4474
|
}
|
|
4344
4475
|
}
|
|
@@ -4491,6 +4622,42 @@ var patterns_registry_default = {
|
|
|
4491
4622
|
},
|
|
4492
4623
|
default: {}
|
|
4493
4624
|
},
|
|
4625
|
+
fieldOverrides: {
|
|
4626
|
+
types: [
|
|
4627
|
+
"array"
|
|
4628
|
+
],
|
|
4629
|
+
description: "Per-field display-copy overrides (label/placeholder/hint), merged by field name over the schema-enriched fields.",
|
|
4630
|
+
items: {
|
|
4631
|
+
types: [
|
|
4632
|
+
"object"
|
|
4633
|
+
],
|
|
4634
|
+
properties: {
|
|
4635
|
+
name: {
|
|
4636
|
+
types: [
|
|
4637
|
+
"string"
|
|
4638
|
+
]
|
|
4639
|
+
},
|
|
4640
|
+
label: {
|
|
4641
|
+
types: [
|
|
4642
|
+
"string"
|
|
4643
|
+
]
|
|
4644
|
+
},
|
|
4645
|
+
placeholder: {
|
|
4646
|
+
types: [
|
|
4647
|
+
"string"
|
|
4648
|
+
]
|
|
4649
|
+
},
|
|
4650
|
+
hint: {
|
|
4651
|
+
types: [
|
|
4652
|
+
"string"
|
|
4653
|
+
]
|
|
4654
|
+
}
|
|
4655
|
+
},
|
|
4656
|
+
required: [
|
|
4657
|
+
"name"
|
|
4658
|
+
]
|
|
4659
|
+
}
|
|
4660
|
+
},
|
|
4494
4661
|
conditionalFields: {
|
|
4495
4662
|
types: [
|
|
4496
4663
|
"object",
|
|
@@ -4617,7 +4784,12 @@ var patterns_registry_default = {
|
|
|
4617
4784
|
formValues: {
|
|
4618
4785
|
types: [
|
|
4619
4786
|
"object"
|
|
4620
|
-
]
|
|
4787
|
+
],
|
|
4788
|
+
mapValue: {
|
|
4789
|
+
types: [
|
|
4790
|
+
"object"
|
|
4791
|
+
]
|
|
4792
|
+
}
|
|
4621
4793
|
},
|
|
4622
4794
|
globalVariables: {
|
|
4623
4795
|
types: [
|
|
@@ -4644,7 +4816,12 @@ var patterns_registry_default = {
|
|
|
4644
4816
|
entity: {
|
|
4645
4817
|
types: [
|
|
4646
4818
|
"object"
|
|
4647
|
-
]
|
|
4819
|
+
],
|
|
4820
|
+
mapValue: {
|
|
4821
|
+
types: [
|
|
4822
|
+
"object"
|
|
4823
|
+
]
|
|
4824
|
+
}
|
|
4648
4825
|
}
|
|
4649
4826
|
},
|
|
4650
4827
|
propertyRequired: [
|
|
@@ -4833,6 +5010,11 @@ var patterns_registry_default = {
|
|
|
4833
5010
|
types: [
|
|
4834
5011
|
"boolean"
|
|
4835
5012
|
]
|
|
5013
|
+
},
|
|
5014
|
+
hint: {
|
|
5015
|
+
types: [
|
|
5016
|
+
"string"
|
|
5017
|
+
]
|
|
4836
5018
|
}
|
|
4837
5019
|
}
|
|
4838
5020
|
}
|
|
@@ -4916,6 +5098,7 @@ var patterns_registry_default = {
|
|
|
4916
5098
|
tier: "organisms",
|
|
4917
5099
|
family: "core",
|
|
4918
5100
|
description: "Alias for form \u2014 Complete form with fields and actions",
|
|
5101
|
+
fieldsContract: "form",
|
|
4919
5102
|
suggestedFor: [
|
|
4920
5103
|
"create forms",
|
|
4921
5104
|
"edit forms",
|
|
@@ -5148,6 +5331,11 @@ var patterns_registry_default = {
|
|
|
5148
5331
|
types: [
|
|
5149
5332
|
"boolean"
|
|
5150
5333
|
]
|
|
5334
|
+
},
|
|
5335
|
+
hint: {
|
|
5336
|
+
types: [
|
|
5337
|
+
"string"
|
|
5338
|
+
]
|
|
5151
5339
|
}
|
|
5152
5340
|
}
|
|
5153
5341
|
}
|
|
@@ -5300,6 +5488,42 @@ var patterns_registry_default = {
|
|
|
5300
5488
|
},
|
|
5301
5489
|
default: {}
|
|
5302
5490
|
},
|
|
5491
|
+
fieldOverrides: {
|
|
5492
|
+
types: [
|
|
5493
|
+
"array"
|
|
5494
|
+
],
|
|
5495
|
+
description: "Per-field display-copy overrides (label/placeholder/hint), merged by field name over the schema-enriched fields.",
|
|
5496
|
+
items: {
|
|
5497
|
+
types: [
|
|
5498
|
+
"object"
|
|
5499
|
+
],
|
|
5500
|
+
properties: {
|
|
5501
|
+
name: {
|
|
5502
|
+
types: [
|
|
5503
|
+
"string"
|
|
5504
|
+
]
|
|
5505
|
+
},
|
|
5506
|
+
label: {
|
|
5507
|
+
types: [
|
|
5508
|
+
"string"
|
|
5509
|
+
]
|
|
5510
|
+
},
|
|
5511
|
+
placeholder: {
|
|
5512
|
+
types: [
|
|
5513
|
+
"string"
|
|
5514
|
+
]
|
|
5515
|
+
},
|
|
5516
|
+
hint: {
|
|
5517
|
+
types: [
|
|
5518
|
+
"string"
|
|
5519
|
+
]
|
|
5520
|
+
}
|
|
5521
|
+
},
|
|
5522
|
+
required: [
|
|
5523
|
+
"name"
|
|
5524
|
+
]
|
|
5525
|
+
}
|
|
5526
|
+
},
|
|
5303
5527
|
conditionalFields: {
|
|
5304
5528
|
types: [
|
|
5305
5529
|
"object",
|
|
@@ -5426,7 +5650,12 @@ var patterns_registry_default = {
|
|
|
5426
5650
|
formValues: {
|
|
5427
5651
|
types: [
|
|
5428
5652
|
"object"
|
|
5429
|
-
]
|
|
5653
|
+
],
|
|
5654
|
+
mapValue: {
|
|
5655
|
+
types: [
|
|
5656
|
+
"object"
|
|
5657
|
+
]
|
|
5658
|
+
}
|
|
5430
5659
|
},
|
|
5431
5660
|
globalVariables: {
|
|
5432
5661
|
types: [
|
|
@@ -5453,7 +5682,12 @@ var patterns_registry_default = {
|
|
|
5453
5682
|
entity: {
|
|
5454
5683
|
types: [
|
|
5455
5684
|
"object"
|
|
5456
|
-
]
|
|
5685
|
+
],
|
|
5686
|
+
mapValue: {
|
|
5687
|
+
types: [
|
|
5688
|
+
"object"
|
|
5689
|
+
]
|
|
5690
|
+
}
|
|
5457
5691
|
}
|
|
5458
5692
|
},
|
|
5459
5693
|
propertyRequired: [
|
|
@@ -5642,6 +5876,11 @@ var patterns_registry_default = {
|
|
|
5642
5876
|
types: [
|
|
5643
5877
|
"boolean"
|
|
5644
5878
|
]
|
|
5879
|
+
},
|
|
5880
|
+
hint: {
|
|
5881
|
+
types: [
|
|
5882
|
+
"string"
|
|
5883
|
+
]
|
|
5645
5884
|
}
|
|
5646
5885
|
}
|
|
5647
5886
|
}
|
|
@@ -15035,7 +15274,7 @@ var patterns_registry_default = {
|
|
|
15035
15274
|
types: [
|
|
15036
15275
|
"object"
|
|
15037
15276
|
],
|
|
15038
|
-
description: "Current user info (optional - auto-populated from auth context if not provided)",
|
|
15277
|
+
description: "Current user info (optional - auto-populated from auth context if not provided). Accepts `null` as well as `undefined`: the `.lolo` substrate's signed-out spelling is `(if @config.viewerName {\u2026} null)`, and the compiled path passes that `null` through verbatim.",
|
|
15039
15278
|
properties: {
|
|
15040
15279
|
name: {
|
|
15041
15280
|
types: [
|
|
@@ -15054,8 +15293,7 @@ var patterns_registry_default = {
|
|
|
15054
15293
|
}
|
|
15055
15294
|
},
|
|
15056
15295
|
propertyRequired: [
|
|
15057
|
-
"name"
|
|
15058
|
-
"email"
|
|
15296
|
+
"name"
|
|
15059
15297
|
]
|
|
15060
15298
|
},
|
|
15061
15299
|
headerActions: {
|
|
@@ -42273,6 +42511,28 @@ var patterns_registry_default = {
|
|
|
42273
42511
|
}
|
|
42274
42512
|
]
|
|
42275
42513
|
},
|
|
42514
|
+
keyMap: {
|
|
42515
|
+
types: [
|
|
42516
|
+
"object"
|
|
42517
|
+
],
|
|
42518
|
+
description: "Maps a keydown `e.code` \u2192 the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` \u2014 same contract as the game canvas keyMap.",
|
|
42519
|
+
mapValue: {
|
|
42520
|
+
types: [
|
|
42521
|
+
"string"
|
|
42522
|
+
]
|
|
42523
|
+
}
|
|
42524
|
+
},
|
|
42525
|
+
keyUpMap: {
|
|
42526
|
+
types: [
|
|
42527
|
+
"object"
|
|
42528
|
+
],
|
|
42529
|
+
description: "Maps a keyup `e.code` \u2192 the board's SEMANTIC event.",
|
|
42530
|
+
mapValue: {
|
|
42531
|
+
types: [
|
|
42532
|
+
"string"
|
|
42533
|
+
]
|
|
42534
|
+
}
|
|
42535
|
+
},
|
|
42276
42536
|
isLoading: {
|
|
42277
42537
|
types: [
|
|
42278
42538
|
"boolean"
|
|
@@ -48985,6 +49245,566 @@ var patterns_registry_default = {
|
|
|
48985
49245
|
]
|
|
48986
49246
|
}
|
|
48987
49247
|
}
|
|
49248
|
+
},
|
|
49249
|
+
"fx-overlay": {
|
|
49250
|
+
type: "fx-overlay",
|
|
49251
|
+
category: "container",
|
|
49252
|
+
tier: "molecules",
|
|
49253
|
+
family: "core",
|
|
49254
|
+
description: "FxOverlay component",
|
|
49255
|
+
suggestedFor: [
|
|
49256
|
+
"overlay",
|
|
49257
|
+
"fx overlay"
|
|
49258
|
+
],
|
|
49259
|
+
typicalSize: "medium",
|
|
49260
|
+
propsSchema: {
|
|
49261
|
+
items: {
|
|
49262
|
+
types: [
|
|
49263
|
+
"array"
|
|
49264
|
+
],
|
|
49265
|
+
description: "Live screen-space fx entries (the mechanic's fx list filtered to `space == \"screen\"`); mount starts each item's animation, ttl decay unmounts it.",
|
|
49266
|
+
required: true,
|
|
49267
|
+
items: {
|
|
49268
|
+
types: [
|
|
49269
|
+
"object"
|
|
49270
|
+
],
|
|
49271
|
+
properties: {
|
|
49272
|
+
id: {
|
|
49273
|
+
types: [
|
|
49274
|
+
"string"
|
|
49275
|
+
]
|
|
49276
|
+
},
|
|
49277
|
+
type: {
|
|
49278
|
+
types: [
|
|
49279
|
+
"string"
|
|
49280
|
+
]
|
|
49281
|
+
},
|
|
49282
|
+
effect: {
|
|
49283
|
+
types: [
|
|
49284
|
+
"string"
|
|
49285
|
+
],
|
|
49286
|
+
enumValues: [
|
|
49287
|
+
"confetti",
|
|
49288
|
+
"flash",
|
|
49289
|
+
"shake",
|
|
49290
|
+
"sparkle",
|
|
49291
|
+
"float-text",
|
|
49292
|
+
"streak-glow"
|
|
49293
|
+
]
|
|
49294
|
+
},
|
|
49295
|
+
message: {
|
|
49296
|
+
types: [
|
|
49297
|
+
"string"
|
|
49298
|
+
]
|
|
49299
|
+
},
|
|
49300
|
+
color: {
|
|
49301
|
+
types: [
|
|
49302
|
+
"string"
|
|
49303
|
+
]
|
|
49304
|
+
},
|
|
49305
|
+
size: {
|
|
49306
|
+
types: [
|
|
49307
|
+
"number"
|
|
49308
|
+
]
|
|
49309
|
+
},
|
|
49310
|
+
x: {
|
|
49311
|
+
types: [
|
|
49312
|
+
"number"
|
|
49313
|
+
]
|
|
49314
|
+
},
|
|
49315
|
+
z: {
|
|
49316
|
+
types: [
|
|
49317
|
+
"number"
|
|
49318
|
+
]
|
|
49319
|
+
},
|
|
49320
|
+
y: {
|
|
49321
|
+
types: [
|
|
49322
|
+
"number"
|
|
49323
|
+
]
|
|
49324
|
+
},
|
|
49325
|
+
ttl: {
|
|
49326
|
+
types: [
|
|
49327
|
+
"number"
|
|
49328
|
+
]
|
|
49329
|
+
},
|
|
49330
|
+
maxTtl: {
|
|
49331
|
+
types: [
|
|
49332
|
+
"number"
|
|
49333
|
+
]
|
|
49334
|
+
},
|
|
49335
|
+
bornAt: {
|
|
49336
|
+
types: [
|
|
49337
|
+
"number"
|
|
49338
|
+
]
|
|
49339
|
+
},
|
|
49340
|
+
space: {
|
|
49341
|
+
types: [
|
|
49342
|
+
"string"
|
|
49343
|
+
],
|
|
49344
|
+
enumValues: [
|
|
49345
|
+
"world",
|
|
49346
|
+
"screen"
|
|
49347
|
+
]
|
|
49348
|
+
},
|
|
49349
|
+
particleCount: {
|
|
49350
|
+
types: [
|
|
49351
|
+
"number"
|
|
49352
|
+
]
|
|
49353
|
+
},
|
|
49354
|
+
vx: {
|
|
49355
|
+
types: [
|
|
49356
|
+
"number"
|
|
49357
|
+
]
|
|
49358
|
+
},
|
|
49359
|
+
vy: {
|
|
49360
|
+
types: [
|
|
49361
|
+
"number"
|
|
49362
|
+
]
|
|
49363
|
+
},
|
|
49364
|
+
vz: {
|
|
49365
|
+
types: [
|
|
49366
|
+
"number"
|
|
49367
|
+
]
|
|
49368
|
+
}
|
|
49369
|
+
},
|
|
49370
|
+
required: [
|
|
49371
|
+
"id",
|
|
49372
|
+
"type",
|
|
49373
|
+
"ttl"
|
|
49374
|
+
]
|
|
49375
|
+
}
|
|
49376
|
+
},
|
|
49377
|
+
tickMs: {
|
|
49378
|
+
types: [
|
|
49379
|
+
"number"
|
|
49380
|
+
],
|
|
49381
|
+
description: "The fx mechanic's decay tick period in ms; per-item animation duration = maxTtl \xD7 tickMs. Default 500."
|
|
49382
|
+
},
|
|
49383
|
+
children: {
|
|
49384
|
+
types: [
|
|
49385
|
+
"node"
|
|
49386
|
+
],
|
|
49387
|
+
description: "Wrapped content \u2014 the `shake` target and the overlay's bounds."
|
|
49388
|
+
},
|
|
49389
|
+
className: {
|
|
49390
|
+
types: [
|
|
49391
|
+
"string"
|
|
49392
|
+
],
|
|
49393
|
+
description: "Additional class names on the outermost element."
|
|
49394
|
+
}
|
|
49395
|
+
}
|
|
49396
|
+
},
|
|
49397
|
+
"draw-fx-layer": {
|
|
49398
|
+
type: "draw-fx-layer",
|
|
49399
|
+
category: "game",
|
|
49400
|
+
tier: "molecules",
|
|
49401
|
+
family: "game",
|
|
49402
|
+
description: "DrawFxLayer component",
|
|
49403
|
+
suggestedFor: [
|
|
49404
|
+
"draw",
|
|
49405
|
+
"layer",
|
|
49406
|
+
"draw fx layer"
|
|
49407
|
+
],
|
|
49408
|
+
typicalSize: "medium",
|
|
49409
|
+
propsSchema: {
|
|
49410
|
+
id: {
|
|
49411
|
+
types: [
|
|
49412
|
+
"string"
|
|
49413
|
+
],
|
|
49414
|
+
description: "Optional source-tagged hit-test handle \u2014 the host indexes the drawable's ScenePos\u2192id so a pointer/raycast at that cell resolves to this id (unit/entity click). No id \u2192 the host emits only the coordinate (tile click)."
|
|
49415
|
+
},
|
|
49416
|
+
type: {
|
|
49417
|
+
types: [
|
|
49418
|
+
"unknown"
|
|
49419
|
+
],
|
|
49420
|
+
description: "type prop",
|
|
49421
|
+
required: true
|
|
49422
|
+
},
|
|
49423
|
+
items: {
|
|
49424
|
+
types: [
|
|
49425
|
+
"array"
|
|
49426
|
+
],
|
|
49427
|
+
description: 'The live fx entries \u2014 the mechanic\'s `@entity.fx` list passed whole; `space: "screen"` entries are skipped (the overlay owns those).',
|
|
49428
|
+
required: true,
|
|
49429
|
+
items: {
|
|
49430
|
+
types: [
|
|
49431
|
+
"object"
|
|
49432
|
+
],
|
|
49433
|
+
properties: {
|
|
49434
|
+
id: {
|
|
49435
|
+
types: [
|
|
49436
|
+
"string"
|
|
49437
|
+
]
|
|
49438
|
+
},
|
|
49439
|
+
type: {
|
|
49440
|
+
types: [
|
|
49441
|
+
"string"
|
|
49442
|
+
]
|
|
49443
|
+
},
|
|
49444
|
+
position: {
|
|
49445
|
+
types: [
|
|
49446
|
+
"object"
|
|
49447
|
+
],
|
|
49448
|
+
scenePos: true,
|
|
49449
|
+
properties: {
|
|
49450
|
+
x: {
|
|
49451
|
+
types: [
|
|
49452
|
+
"number"
|
|
49453
|
+
]
|
|
49454
|
+
},
|
|
49455
|
+
y: {
|
|
49456
|
+
types: [
|
|
49457
|
+
"number"
|
|
49458
|
+
]
|
|
49459
|
+
},
|
|
49460
|
+
z: {
|
|
49461
|
+
types: [
|
|
49462
|
+
"number"
|
|
49463
|
+
]
|
|
49464
|
+
}
|
|
49465
|
+
},
|
|
49466
|
+
required: [
|
|
49467
|
+
"x",
|
|
49468
|
+
"y"
|
|
49469
|
+
]
|
|
49470
|
+
},
|
|
49471
|
+
x: {
|
|
49472
|
+
types: [
|
|
49473
|
+
"number"
|
|
49474
|
+
]
|
|
49475
|
+
},
|
|
49476
|
+
z: {
|
|
49477
|
+
types: [
|
|
49478
|
+
"number"
|
|
49479
|
+
]
|
|
49480
|
+
},
|
|
49481
|
+
y: {
|
|
49482
|
+
types: [
|
|
49483
|
+
"number"
|
|
49484
|
+
]
|
|
49485
|
+
},
|
|
49486
|
+
message: {
|
|
49487
|
+
types: [
|
|
49488
|
+
"string"
|
|
49489
|
+
]
|
|
49490
|
+
},
|
|
49491
|
+
ttl: {
|
|
49492
|
+
types: [
|
|
49493
|
+
"number"
|
|
49494
|
+
]
|
|
49495
|
+
},
|
|
49496
|
+
maxTtl: {
|
|
49497
|
+
types: [
|
|
49498
|
+
"number"
|
|
49499
|
+
]
|
|
49500
|
+
},
|
|
49501
|
+
bornAt: {
|
|
49502
|
+
types: [
|
|
49503
|
+
"number"
|
|
49504
|
+
]
|
|
49505
|
+
},
|
|
49506
|
+
space: {
|
|
49507
|
+
types: [
|
|
49508
|
+
"string"
|
|
49509
|
+
],
|
|
49510
|
+
enumValues: [
|
|
49511
|
+
"world",
|
|
49512
|
+
"screen"
|
|
49513
|
+
]
|
|
49514
|
+
},
|
|
49515
|
+
effect: {
|
|
49516
|
+
types: [
|
|
49517
|
+
"string"
|
|
49518
|
+
],
|
|
49519
|
+
enumValues: [
|
|
49520
|
+
"confetti",
|
|
49521
|
+
"flash",
|
|
49522
|
+
"shake",
|
|
49523
|
+
"sparkle",
|
|
49524
|
+
"float-text",
|
|
49525
|
+
"streak-glow"
|
|
49526
|
+
]
|
|
49527
|
+
},
|
|
49528
|
+
color: {
|
|
49529
|
+
types: [
|
|
49530
|
+
"string"
|
|
49531
|
+
]
|
|
49532
|
+
},
|
|
49533
|
+
size: {
|
|
49534
|
+
types: [
|
|
49535
|
+
"number"
|
|
49536
|
+
]
|
|
49537
|
+
},
|
|
49538
|
+
vx: {
|
|
49539
|
+
types: [
|
|
49540
|
+
"number"
|
|
49541
|
+
]
|
|
49542
|
+
},
|
|
49543
|
+
vy: {
|
|
49544
|
+
types: [
|
|
49545
|
+
"number"
|
|
49546
|
+
]
|
|
49547
|
+
},
|
|
49548
|
+
vz: {
|
|
49549
|
+
types: [
|
|
49550
|
+
"number"
|
|
49551
|
+
]
|
|
49552
|
+
},
|
|
49553
|
+
particleCount: {
|
|
49554
|
+
types: [
|
|
49555
|
+
"number"
|
|
49556
|
+
]
|
|
49557
|
+
}
|
|
49558
|
+
},
|
|
49559
|
+
required: [
|
|
49560
|
+
"id",
|
|
49561
|
+
"type",
|
|
49562
|
+
"x",
|
|
49563
|
+
"ttl"
|
|
49564
|
+
]
|
|
49565
|
+
}
|
|
49566
|
+
},
|
|
49567
|
+
presets: {
|
|
49568
|
+
types: [
|
|
49569
|
+
"array"
|
|
49570
|
+
],
|
|
49571
|
+
description: "Consumer-declared effect vocabulary \u2014 one row per fx `type` (look + recipe). Unknown types fall back to a neutral spark burst.",
|
|
49572
|
+
items: {
|
|
49573
|
+
types: [
|
|
49574
|
+
"object"
|
|
49575
|
+
],
|
|
49576
|
+
properties: {
|
|
49577
|
+
type: {
|
|
49578
|
+
types: [
|
|
49579
|
+
"string"
|
|
49580
|
+
]
|
|
49581
|
+
},
|
|
49582
|
+
color: {
|
|
49583
|
+
types: [
|
|
49584
|
+
"string"
|
|
49585
|
+
]
|
|
49586
|
+
},
|
|
49587
|
+
color2: {
|
|
49588
|
+
types: [
|
|
49589
|
+
"string"
|
|
49590
|
+
]
|
|
49591
|
+
},
|
|
49592
|
+
size: {
|
|
49593
|
+
types: [
|
|
49594
|
+
"number"
|
|
49595
|
+
]
|
|
49596
|
+
},
|
|
49597
|
+
shape: {
|
|
49598
|
+
types: [
|
|
49599
|
+
"string"
|
|
49600
|
+
],
|
|
49601
|
+
enumValues: [
|
|
49602
|
+
"spark",
|
|
49603
|
+
"ring",
|
|
49604
|
+
"puff",
|
|
49605
|
+
"streak"
|
|
49606
|
+
]
|
|
49607
|
+
},
|
|
49608
|
+
count: {
|
|
49609
|
+
types: [
|
|
49610
|
+
"number"
|
|
49611
|
+
]
|
|
49612
|
+
},
|
|
49613
|
+
glow: {
|
|
49614
|
+
types: [
|
|
49615
|
+
"number"
|
|
49616
|
+
]
|
|
49617
|
+
},
|
|
49618
|
+
gravity: {
|
|
49619
|
+
types: [
|
|
49620
|
+
"number"
|
|
49621
|
+
]
|
|
49622
|
+
},
|
|
49623
|
+
vx: {
|
|
49624
|
+
types: [
|
|
49625
|
+
"number"
|
|
49626
|
+
]
|
|
49627
|
+
},
|
|
49628
|
+
vy: {
|
|
49629
|
+
types: [
|
|
49630
|
+
"number"
|
|
49631
|
+
]
|
|
49632
|
+
},
|
|
49633
|
+
vz: {
|
|
49634
|
+
types: [
|
|
49635
|
+
"number"
|
|
49636
|
+
]
|
|
49637
|
+
},
|
|
49638
|
+
space: {
|
|
49639
|
+
types: [
|
|
49640
|
+
"string"
|
|
49641
|
+
],
|
|
49642
|
+
enumValues: [
|
|
49643
|
+
"world",
|
|
49644
|
+
"screen"
|
|
49645
|
+
]
|
|
49646
|
+
},
|
|
49647
|
+
effect: {
|
|
49648
|
+
types: [
|
|
49649
|
+
"string"
|
|
49650
|
+
],
|
|
49651
|
+
enumValues: [
|
|
49652
|
+
"confetti",
|
|
49653
|
+
"flash",
|
|
49654
|
+
"shake",
|
|
49655
|
+
"sparkle",
|
|
49656
|
+
"float-text",
|
|
49657
|
+
"streak-glow"
|
|
49658
|
+
]
|
|
49659
|
+
},
|
|
49660
|
+
particleCount: {
|
|
49661
|
+
types: [
|
|
49662
|
+
"number"
|
|
49663
|
+
]
|
|
49664
|
+
}
|
|
49665
|
+
},
|
|
49666
|
+
required: [
|
|
49667
|
+
"type"
|
|
49668
|
+
]
|
|
49669
|
+
}
|
|
49670
|
+
},
|
|
49671
|
+
art: {
|
|
49672
|
+
types: [
|
|
49673
|
+
"object"
|
|
49674
|
+
],
|
|
49675
|
+
description: "Vector art per fx type (an asset-art map: type \u2192 anim-state \u2192 drawables); a type's `idle` state wins over sprites/procedural.",
|
|
49676
|
+
mapValue: {
|
|
49677
|
+
types: [
|
|
49678
|
+
"object"
|
|
49679
|
+
],
|
|
49680
|
+
mapValue: {
|
|
49681
|
+
types: [
|
|
49682
|
+
"array"
|
|
49683
|
+
],
|
|
49684
|
+
items: {
|
|
49685
|
+
types: [
|
|
49686
|
+
"object"
|
|
49687
|
+
],
|
|
49688
|
+
drawableSlot: true
|
|
49689
|
+
}
|
|
49690
|
+
}
|
|
49691
|
+
}
|
|
49692
|
+
},
|
|
49693
|
+
sprites: {
|
|
49694
|
+
types: [
|
|
49695
|
+
"object"
|
|
49696
|
+
],
|
|
49697
|
+
description: "Sprite asset per fx type (an asset-manifest effects map) \u2014 used when no vector art matches.",
|
|
49698
|
+
mapValue: {
|
|
49699
|
+
types: [
|
|
49700
|
+
"object"
|
|
49701
|
+
],
|
|
49702
|
+
properties: {
|
|
49703
|
+
url: {
|
|
49704
|
+
types: [
|
|
49705
|
+
"asset"
|
|
49706
|
+
]
|
|
49707
|
+
},
|
|
49708
|
+
role: {
|
|
49709
|
+
types: [
|
|
49710
|
+
"string"
|
|
49711
|
+
]
|
|
49712
|
+
},
|
|
49713
|
+
category: {
|
|
49714
|
+
types: [
|
|
49715
|
+
"string"
|
|
49716
|
+
]
|
|
49717
|
+
},
|
|
49718
|
+
animations: {
|
|
49719
|
+
types: [
|
|
49720
|
+
"array"
|
|
49721
|
+
],
|
|
49722
|
+
items: {
|
|
49723
|
+
types: [
|
|
49724
|
+
"string"
|
|
49725
|
+
]
|
|
49726
|
+
}
|
|
49727
|
+
},
|
|
49728
|
+
style: {
|
|
49729
|
+
types: [
|
|
49730
|
+
"string"
|
|
49731
|
+
],
|
|
49732
|
+
enumValues: [
|
|
49733
|
+
"pixel",
|
|
49734
|
+
"vector",
|
|
49735
|
+
"hd",
|
|
49736
|
+
"1-bit",
|
|
49737
|
+
"isometric"
|
|
49738
|
+
]
|
|
49739
|
+
},
|
|
49740
|
+
variant: {
|
|
49741
|
+
types: [
|
|
49742
|
+
"string"
|
|
49743
|
+
]
|
|
49744
|
+
},
|
|
49745
|
+
dimension: {
|
|
49746
|
+
types: [
|
|
49747
|
+
"string"
|
|
49748
|
+
],
|
|
49749
|
+
enumValues: [
|
|
49750
|
+
"2d",
|
|
49751
|
+
"3d"
|
|
49752
|
+
]
|
|
49753
|
+
},
|
|
49754
|
+
aspect: {
|
|
49755
|
+
types: [
|
|
49756
|
+
"string"
|
|
49757
|
+
],
|
|
49758
|
+
enumValues: [
|
|
49759
|
+
"1:1",
|
|
49760
|
+
"16:9",
|
|
49761
|
+
"5:7",
|
|
49762
|
+
"8:1"
|
|
49763
|
+
]
|
|
49764
|
+
},
|
|
49765
|
+
atlas: {
|
|
49766
|
+
types: [
|
|
49767
|
+
"asset"
|
|
49768
|
+
]
|
|
49769
|
+
},
|
|
49770
|
+
sprite: {
|
|
49771
|
+
types: [
|
|
49772
|
+
"string"
|
|
49773
|
+
]
|
|
49774
|
+
},
|
|
49775
|
+
name: {
|
|
49776
|
+
types: [
|
|
49777
|
+
"string"
|
|
49778
|
+
]
|
|
49779
|
+
},
|
|
49780
|
+
thumbnailUrl: {
|
|
49781
|
+
types: [
|
|
49782
|
+
"string"
|
|
49783
|
+
]
|
|
49784
|
+
}
|
|
49785
|
+
},
|
|
49786
|
+
required: [
|
|
49787
|
+
"url",
|
|
49788
|
+
"role",
|
|
49789
|
+
"category"
|
|
49790
|
+
]
|
|
49791
|
+
}
|
|
49792
|
+
},
|
|
49793
|
+
tickMs: {
|
|
49794
|
+
types: [
|
|
49795
|
+
"number"
|
|
49796
|
+
],
|
|
49797
|
+
description: "The fx mechanic's decay tick period in ms; lifetime = maxTtl \xD7 tickMs. Default 500."
|
|
49798
|
+
},
|
|
49799
|
+
textColor: {
|
|
49800
|
+
types: [
|
|
49801
|
+
"string"
|
|
49802
|
+
],
|
|
49803
|
+
description: "Floating-message text color when an item declares none. Default `#ffe066`."
|
|
49804
|
+
}
|
|
49805
|
+
},
|
|
49806
|
+
drawable: true,
|
|
49807
|
+
drawHost: true
|
|
48988
49808
|
}
|
|
48989
49809
|
},
|
|
48990
49810
|
categories: [
|
|
@@ -49969,7 +50789,7 @@ var integrators_registry_default = {
|
|
|
49969
50789
|
// src/patterns/component-mapping.json
|
|
49970
50790
|
var component_mapping_default = {
|
|
49971
50791
|
version: "1.0.0",
|
|
49972
|
-
exportedAt: "2026-08-
|
|
50792
|
+
exportedAt: "2026-08-20T23:14:19.545Z",
|
|
49973
50793
|
mappings: {
|
|
49974
50794
|
"page-header": {
|
|
49975
50795
|
component: "PageHeader",
|
|
@@ -51362,6 +52182,16 @@ var component_mapping_default = {
|
|
|
51362
52182
|
component: "AlgoGraphCanvas",
|
|
51363
52183
|
importPath: "@/components/learning/molecules/AlgoGraphCanvas",
|
|
51364
52184
|
category: "learning"
|
|
52185
|
+
},
|
|
52186
|
+
"fx-overlay": {
|
|
52187
|
+
component: "FxOverlay",
|
|
52188
|
+
importPath: "@/components/core/molecules/FxOverlay",
|
|
52189
|
+
category: "container"
|
|
52190
|
+
},
|
|
52191
|
+
"draw-fx-layer": {
|
|
52192
|
+
component: "DrawFxLayer",
|
|
52193
|
+
importPath: "@/components/game/molecules/DrawFxLayer",
|
|
52194
|
+
category: "game"
|
|
51365
52195
|
}
|
|
51366
52196
|
}
|
|
51367
52197
|
};
|
|
@@ -51369,7 +52199,7 @@ var component_mapping_default = {
|
|
|
51369
52199
|
// src/patterns/event-contracts.json
|
|
51370
52200
|
var event_contracts_default = {
|
|
51371
52201
|
version: "1.0.0",
|
|
51372
|
-
exportedAt: "2026-08-
|
|
52202
|
+
exportedAt: "2026-08-20T23:14:19.545Z",
|
|
51373
52203
|
contracts: {
|
|
51374
52204
|
form: {
|
|
51375
52205
|
emits: [
|
|
@@ -52607,6 +53437,7 @@ var PATTERN_TYPES = [
|
|
|
52607
53437
|
"doc-sidebar",
|
|
52608
53438
|
"doc-toc",
|
|
52609
53439
|
"document-viewer",
|
|
53440
|
+
"draw-fx-layer",
|
|
52610
53441
|
"draw-group",
|
|
52611
53442
|
"draw-mesh",
|
|
52612
53443
|
"draw-shape",
|
|
@@ -52642,6 +53473,7 @@ var PATTERN_TYPES = [
|
|
|
52642
53473
|
"form-layout",
|
|
52643
53474
|
"form-section",
|
|
52644
53475
|
"form-section-header",
|
|
53476
|
+
"fx-overlay",
|
|
52645
53477
|
"game-audio-toggle",
|
|
52646
53478
|
"game-hud",
|
|
52647
53479
|
"game-icon",
|
|
@@ -53265,6 +54097,9 @@ function eventListPropsOf(patternType) {
|
|
|
53265
54097
|
eventListPropsCache.set(patternType, out);
|
|
53266
54098
|
return out;
|
|
53267
54099
|
}
|
|
54100
|
+
function getPatternFieldsContract(patternType) {
|
|
54101
|
+
return getPatternDefinition(patternType)?.fieldsContract;
|
|
54102
|
+
}
|
|
53268
54103
|
function isDrawablePattern(patternType) {
|
|
53269
54104
|
const definition = getPatternDefinition(patternType);
|
|
53270
54105
|
if (!definition) return false;
|
|
@@ -53811,8 +54646,11 @@ function schemaToIR(schema, useCache = true) {
|
|
|
53811
54646
|
description: field.description,
|
|
53812
54647
|
default: field.default,
|
|
53813
54648
|
required: field.required ?? false,
|
|
53814
|
-
|
|
53815
|
-
|
|
54649
|
+
// lolo string unions lower to `type:'string'` + a `values` sidecar
|
|
54650
|
+
// (FieldType::Enum is never emitted) — read values off any variant
|
|
54651
|
+
// that carries them, not just `enum`.
|
|
54652
|
+
values: "values" in field && field.values?.length ? field.values : void 0,
|
|
54653
|
+
enumValues: "values" in field && field.values?.length ? field.values : void 0,
|
|
53816
54654
|
relation: field.type === "relation" ? field.relation : void 0
|
|
53817
54655
|
})),
|
|
53818
54656
|
runtime: entityDef.persistence === "runtime",
|
|
@@ -53916,6 +54754,8 @@ function inferTsType2(schemaType) {
|
|
|
53916
54754
|
date: "Date",
|
|
53917
54755
|
datetime: "Date",
|
|
53918
54756
|
timestamp: "number",
|
|
54757
|
+
money: "number",
|
|
54758
|
+
file: "FileValue",
|
|
53919
54759
|
array: "unknown[]",
|
|
53920
54760
|
object: "Record<string, unknown>",
|
|
53921
54761
|
any: "unknown"
|
|
@@ -56802,6 +57642,6 @@ function mergeEntityFrame(current, orderedWrites) {
|
|
|
56802
57642
|
return next;
|
|
56803
57643
|
}
|
|
56804
57644
|
|
|
56805
|
-
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_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, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, 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, 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, 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, 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, deref, deriveCollection, deriveExpectations, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, 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, 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, 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, mapTensorLastDim, mergeEntityFrame, mintId, navigate, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
|
|
57645
|
+
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_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, 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, 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, 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, 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, deref, deriveCollection, deriveExpectations, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, 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, mapTensorLastDim, mergeEntityFrame, mintId, navigate, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
|
|
56806
57646
|
//# sourceMappingURL=index.js.map
|
|
56807
57647
|
//# sourceMappingURL=index.js.map
|