@almadar/core 10.62.0 → 10.64.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/index.js CHANGED
@@ -710,9 +710,13 @@ function set(binding, value) {
710
710
  function emit(event, payload) {
711
711
  return payload ? ["emit", event, payload] : ["emit", event];
712
712
  }
713
- function navigate(path, params) {
713
+ function navigate(path, params, options) {
714
+ if (params && options) return ["navigate", path, params, options];
714
715
  return params ? ["navigate", path, params] : ["navigate", path];
715
716
  }
717
+ function navigateBack() {
718
+ return ["navigate-back"];
719
+ }
716
720
  function renderUI(target, pattern, props) {
717
721
  return props ? ["render-ui", target, pattern, props] : ["render-ui", target, pattern];
718
722
  }
@@ -2234,7 +2238,7 @@ function getInteractionModelForDomain(domain) {
2234
2238
  // src/patterns/patterns-registry.json
2235
2239
  var patterns_registry_default = {
2236
2240
  version: "1.0.0",
2237
- exportedAt: "2026-08-20T06:39:15.858Z",
2241
+ exportedAt: "2026-08-21T10:52:11.515Z",
2238
2242
  patterns: {
2239
2243
  "entity-table": {
2240
2244
  type: "entity-table",
@@ -3752,6 +3756,12 @@ var patterns_registry_default = {
3752
3756
  ]
3753
3757
  }
3754
3758
  },
3759
+ maxInlineActions: {
3760
+ types: [
3761
+ "number"
3762
+ ],
3763
+ description: `Max inline action buttons before the rest collapse into a "\u22EF" overflow menu (mirrors DataGrid's maxInlineActions). Omit = all inline.`
3764
+ },
3755
3765
  backAction: {
3756
3766
  types: [
3757
3767
  "object"
@@ -4034,9 +4044,10 @@ var patterns_registry_default = {
4034
4044
  },
4035
4045
  status: {
4036
4046
  types: [
4037
- "object"
4047
+ "object",
4048
+ "string"
4038
4049
  ],
4039
- description: "Status badge",
4050
+ 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",
4040
4051
  properties: {
4041
4052
  label: {
4042
4053
  types: [
@@ -4783,7 +4794,12 @@ var patterns_registry_default = {
4783
4794
  formValues: {
4784
4795
  types: [
4785
4796
  "object"
4786
- ]
4797
+ ],
4798
+ mapValue: {
4799
+ types: [
4800
+ "object"
4801
+ ]
4802
+ }
4787
4803
  },
4788
4804
  globalVariables: {
4789
4805
  types: [
@@ -4810,7 +4826,12 @@ var patterns_registry_default = {
4810
4826
  entity: {
4811
4827
  types: [
4812
4828
  "object"
4813
- ]
4829
+ ],
4830
+ mapValue: {
4831
+ types: [
4832
+ "object"
4833
+ ]
4834
+ }
4814
4835
  }
4815
4836
  },
4816
4837
  propertyRequired: [
@@ -5639,7 +5660,12 @@ var patterns_registry_default = {
5639
5660
  formValues: {
5640
5661
  types: [
5641
5662
  "object"
5642
- ]
5663
+ ],
5664
+ mapValue: {
5665
+ types: [
5666
+ "object"
5667
+ ]
5668
+ }
5643
5669
  },
5644
5670
  globalVariables: {
5645
5671
  types: [
@@ -5666,7 +5692,12 @@ var patterns_registry_default = {
5666
5692
  entity: {
5667
5693
  types: [
5668
5694
  "object"
5669
- ]
5695
+ ],
5696
+ mapValue: {
5697
+ types: [
5698
+ "object"
5699
+ ]
5700
+ }
5670
5701
  }
5671
5702
  },
5672
5703
  propertyRequired: [
@@ -6631,8 +6662,9 @@ var patterns_registry_default = {
6631
6662
  types: [
6632
6663
  "array"
6633
6664
  ],
6634
- description: "Breadcrumb items",
6635
- required: true,
6665
+ description: "Breadcrumb items. Omit together with `fromNavStack` to render the orbital-scoped navigation stack instead of an authored trail.",
6666
+ kind: "event-list",
6667
+ eventField: "event",
6636
6668
  items: {
6637
6669
  types: [
6638
6670
  "object"
@@ -6680,6 +6712,20 @@ var patterns_registry_default = {
6680
6712
  ]
6681
6713
  }
6682
6714
  },
6715
+ fromNavStack: {
6716
+ types: [
6717
+ "boolean"
6718
+ ],
6719
+ description: "Render the current orbital's navigation stack (NavStackProvider) as the trail: one crumb per visited/declared level, last entry current. The stack is client-session state both execution paths maintain; outside a provider this renders nothing.",
6720
+ default: false
6721
+ },
6722
+ itemEvent: {
6723
+ types: [
6724
+ "string"
6725
+ ],
6726
+ description: "Event emitted when a non-current crumb is clicked, with payload `{ label, href, index }` \u2014 the trait handles it with `(navigate ?href)`. Without it, stack crumbs navigate directly.",
6727
+ kind: "event"
6728
+ },
6683
6729
  separator: {
6684
6730
  types: [
6685
6731
  "icon",
@@ -15253,7 +15299,7 @@ var patterns_registry_default = {
15253
15299
  types: [
15254
15300
  "object"
15255
15301
  ],
15256
- description: "Current user info (optional - auto-populated from auth context if not provided)",
15302
+ 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.",
15257
15303
  properties: {
15258
15304
  name: {
15259
15305
  types: [
@@ -15272,8 +15318,7 @@ var patterns_registry_default = {
15272
15318
  }
15273
15319
  },
15274
15320
  propertyRequired: [
15275
- "name",
15276
- "email"
15321
+ "name"
15277
15322
  ]
15278
15323
  },
15279
15324
  headerActions: {
@@ -49225,6 +49270,566 @@ var patterns_registry_default = {
49225
49270
  ]
49226
49271
  }
49227
49272
  }
49273
+ },
49274
+ "fx-overlay": {
49275
+ type: "fx-overlay",
49276
+ category: "container",
49277
+ tier: "molecules",
49278
+ family: "core",
49279
+ description: "FxOverlay component",
49280
+ suggestedFor: [
49281
+ "overlay",
49282
+ "fx overlay"
49283
+ ],
49284
+ typicalSize: "medium",
49285
+ propsSchema: {
49286
+ items: {
49287
+ types: [
49288
+ "array"
49289
+ ],
49290
+ 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.",
49291
+ required: true,
49292
+ items: {
49293
+ types: [
49294
+ "object"
49295
+ ],
49296
+ properties: {
49297
+ id: {
49298
+ types: [
49299
+ "string"
49300
+ ]
49301
+ },
49302
+ type: {
49303
+ types: [
49304
+ "string"
49305
+ ]
49306
+ },
49307
+ effect: {
49308
+ types: [
49309
+ "string"
49310
+ ],
49311
+ enumValues: [
49312
+ "confetti",
49313
+ "flash",
49314
+ "shake",
49315
+ "sparkle",
49316
+ "float-text",
49317
+ "streak-glow"
49318
+ ]
49319
+ },
49320
+ message: {
49321
+ types: [
49322
+ "string"
49323
+ ]
49324
+ },
49325
+ color: {
49326
+ types: [
49327
+ "string"
49328
+ ]
49329
+ },
49330
+ size: {
49331
+ types: [
49332
+ "number"
49333
+ ]
49334
+ },
49335
+ x: {
49336
+ types: [
49337
+ "number"
49338
+ ]
49339
+ },
49340
+ z: {
49341
+ types: [
49342
+ "number"
49343
+ ]
49344
+ },
49345
+ y: {
49346
+ types: [
49347
+ "number"
49348
+ ]
49349
+ },
49350
+ ttl: {
49351
+ types: [
49352
+ "number"
49353
+ ]
49354
+ },
49355
+ maxTtl: {
49356
+ types: [
49357
+ "number"
49358
+ ]
49359
+ },
49360
+ bornAt: {
49361
+ types: [
49362
+ "number"
49363
+ ]
49364
+ },
49365
+ space: {
49366
+ types: [
49367
+ "string"
49368
+ ],
49369
+ enumValues: [
49370
+ "world",
49371
+ "screen"
49372
+ ]
49373
+ },
49374
+ particleCount: {
49375
+ types: [
49376
+ "number"
49377
+ ]
49378
+ },
49379
+ vx: {
49380
+ types: [
49381
+ "number"
49382
+ ]
49383
+ },
49384
+ vy: {
49385
+ types: [
49386
+ "number"
49387
+ ]
49388
+ },
49389
+ vz: {
49390
+ types: [
49391
+ "number"
49392
+ ]
49393
+ }
49394
+ },
49395
+ required: [
49396
+ "id",
49397
+ "type",
49398
+ "ttl"
49399
+ ]
49400
+ }
49401
+ },
49402
+ tickMs: {
49403
+ types: [
49404
+ "number"
49405
+ ],
49406
+ description: "The fx mechanic's decay tick period in ms; per-item animation duration = maxTtl \xD7 tickMs. Default 500."
49407
+ },
49408
+ children: {
49409
+ types: [
49410
+ "node"
49411
+ ],
49412
+ description: "Wrapped content \u2014 the `shake` target and the overlay's bounds."
49413
+ },
49414
+ className: {
49415
+ types: [
49416
+ "string"
49417
+ ],
49418
+ description: "Additional class names on the outermost element."
49419
+ }
49420
+ }
49421
+ },
49422
+ "draw-fx-layer": {
49423
+ type: "draw-fx-layer",
49424
+ category: "game",
49425
+ tier: "molecules",
49426
+ family: "game",
49427
+ description: "DrawFxLayer component",
49428
+ suggestedFor: [
49429
+ "draw",
49430
+ "layer",
49431
+ "draw fx layer"
49432
+ ],
49433
+ typicalSize: "medium",
49434
+ propsSchema: {
49435
+ id: {
49436
+ types: [
49437
+ "string"
49438
+ ],
49439
+ 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)."
49440
+ },
49441
+ type: {
49442
+ types: [
49443
+ "unknown"
49444
+ ],
49445
+ description: "type prop",
49446
+ required: true
49447
+ },
49448
+ items: {
49449
+ types: [
49450
+ "array"
49451
+ ],
49452
+ description: 'The live fx entries \u2014 the mechanic\'s `@entity.fx` list passed whole; `space: "screen"` entries are skipped (the overlay owns those).',
49453
+ required: true,
49454
+ items: {
49455
+ types: [
49456
+ "object"
49457
+ ],
49458
+ properties: {
49459
+ id: {
49460
+ types: [
49461
+ "string"
49462
+ ]
49463
+ },
49464
+ type: {
49465
+ types: [
49466
+ "string"
49467
+ ]
49468
+ },
49469
+ position: {
49470
+ types: [
49471
+ "object"
49472
+ ],
49473
+ scenePos: true,
49474
+ properties: {
49475
+ x: {
49476
+ types: [
49477
+ "number"
49478
+ ]
49479
+ },
49480
+ y: {
49481
+ types: [
49482
+ "number"
49483
+ ]
49484
+ },
49485
+ z: {
49486
+ types: [
49487
+ "number"
49488
+ ]
49489
+ }
49490
+ },
49491
+ required: [
49492
+ "x",
49493
+ "y"
49494
+ ]
49495
+ },
49496
+ x: {
49497
+ types: [
49498
+ "number"
49499
+ ]
49500
+ },
49501
+ z: {
49502
+ types: [
49503
+ "number"
49504
+ ]
49505
+ },
49506
+ y: {
49507
+ types: [
49508
+ "number"
49509
+ ]
49510
+ },
49511
+ message: {
49512
+ types: [
49513
+ "string"
49514
+ ]
49515
+ },
49516
+ ttl: {
49517
+ types: [
49518
+ "number"
49519
+ ]
49520
+ },
49521
+ maxTtl: {
49522
+ types: [
49523
+ "number"
49524
+ ]
49525
+ },
49526
+ bornAt: {
49527
+ types: [
49528
+ "number"
49529
+ ]
49530
+ },
49531
+ space: {
49532
+ types: [
49533
+ "string"
49534
+ ],
49535
+ enumValues: [
49536
+ "world",
49537
+ "screen"
49538
+ ]
49539
+ },
49540
+ effect: {
49541
+ types: [
49542
+ "string"
49543
+ ],
49544
+ enumValues: [
49545
+ "confetti",
49546
+ "flash",
49547
+ "shake",
49548
+ "sparkle",
49549
+ "float-text",
49550
+ "streak-glow"
49551
+ ]
49552
+ },
49553
+ color: {
49554
+ types: [
49555
+ "string"
49556
+ ]
49557
+ },
49558
+ size: {
49559
+ types: [
49560
+ "number"
49561
+ ]
49562
+ },
49563
+ vx: {
49564
+ types: [
49565
+ "number"
49566
+ ]
49567
+ },
49568
+ vy: {
49569
+ types: [
49570
+ "number"
49571
+ ]
49572
+ },
49573
+ vz: {
49574
+ types: [
49575
+ "number"
49576
+ ]
49577
+ },
49578
+ particleCount: {
49579
+ types: [
49580
+ "number"
49581
+ ]
49582
+ }
49583
+ },
49584
+ required: [
49585
+ "id",
49586
+ "type",
49587
+ "x",
49588
+ "ttl"
49589
+ ]
49590
+ }
49591
+ },
49592
+ presets: {
49593
+ types: [
49594
+ "array"
49595
+ ],
49596
+ description: "Consumer-declared effect vocabulary \u2014 one row per fx `type` (look + recipe). Unknown types fall back to a neutral spark burst.",
49597
+ items: {
49598
+ types: [
49599
+ "object"
49600
+ ],
49601
+ properties: {
49602
+ type: {
49603
+ types: [
49604
+ "string"
49605
+ ]
49606
+ },
49607
+ color: {
49608
+ types: [
49609
+ "string"
49610
+ ]
49611
+ },
49612
+ color2: {
49613
+ types: [
49614
+ "string"
49615
+ ]
49616
+ },
49617
+ size: {
49618
+ types: [
49619
+ "number"
49620
+ ]
49621
+ },
49622
+ shape: {
49623
+ types: [
49624
+ "string"
49625
+ ],
49626
+ enumValues: [
49627
+ "spark",
49628
+ "ring",
49629
+ "puff",
49630
+ "streak"
49631
+ ]
49632
+ },
49633
+ count: {
49634
+ types: [
49635
+ "number"
49636
+ ]
49637
+ },
49638
+ glow: {
49639
+ types: [
49640
+ "number"
49641
+ ]
49642
+ },
49643
+ gravity: {
49644
+ types: [
49645
+ "number"
49646
+ ]
49647
+ },
49648
+ vx: {
49649
+ types: [
49650
+ "number"
49651
+ ]
49652
+ },
49653
+ vy: {
49654
+ types: [
49655
+ "number"
49656
+ ]
49657
+ },
49658
+ vz: {
49659
+ types: [
49660
+ "number"
49661
+ ]
49662
+ },
49663
+ space: {
49664
+ types: [
49665
+ "string"
49666
+ ],
49667
+ enumValues: [
49668
+ "world",
49669
+ "screen"
49670
+ ]
49671
+ },
49672
+ effect: {
49673
+ types: [
49674
+ "string"
49675
+ ],
49676
+ enumValues: [
49677
+ "confetti",
49678
+ "flash",
49679
+ "shake",
49680
+ "sparkle",
49681
+ "float-text",
49682
+ "streak-glow"
49683
+ ]
49684
+ },
49685
+ particleCount: {
49686
+ types: [
49687
+ "number"
49688
+ ]
49689
+ }
49690
+ },
49691
+ required: [
49692
+ "type"
49693
+ ]
49694
+ }
49695
+ },
49696
+ art: {
49697
+ types: [
49698
+ "object"
49699
+ ],
49700
+ 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.",
49701
+ mapValue: {
49702
+ types: [
49703
+ "object"
49704
+ ],
49705
+ mapValue: {
49706
+ types: [
49707
+ "array"
49708
+ ],
49709
+ items: {
49710
+ types: [
49711
+ "object"
49712
+ ],
49713
+ drawableSlot: true
49714
+ }
49715
+ }
49716
+ }
49717
+ },
49718
+ sprites: {
49719
+ types: [
49720
+ "object"
49721
+ ],
49722
+ description: "Sprite asset per fx type (an asset-manifest effects map) \u2014 used when no vector art matches.",
49723
+ mapValue: {
49724
+ types: [
49725
+ "object"
49726
+ ],
49727
+ properties: {
49728
+ url: {
49729
+ types: [
49730
+ "asset"
49731
+ ]
49732
+ },
49733
+ role: {
49734
+ types: [
49735
+ "string"
49736
+ ]
49737
+ },
49738
+ category: {
49739
+ types: [
49740
+ "string"
49741
+ ]
49742
+ },
49743
+ animations: {
49744
+ types: [
49745
+ "array"
49746
+ ],
49747
+ items: {
49748
+ types: [
49749
+ "string"
49750
+ ]
49751
+ }
49752
+ },
49753
+ style: {
49754
+ types: [
49755
+ "string"
49756
+ ],
49757
+ enumValues: [
49758
+ "pixel",
49759
+ "vector",
49760
+ "hd",
49761
+ "1-bit",
49762
+ "isometric"
49763
+ ]
49764
+ },
49765
+ variant: {
49766
+ types: [
49767
+ "string"
49768
+ ]
49769
+ },
49770
+ dimension: {
49771
+ types: [
49772
+ "string"
49773
+ ],
49774
+ enumValues: [
49775
+ "2d",
49776
+ "3d"
49777
+ ]
49778
+ },
49779
+ aspect: {
49780
+ types: [
49781
+ "string"
49782
+ ],
49783
+ enumValues: [
49784
+ "1:1",
49785
+ "16:9",
49786
+ "5:7",
49787
+ "8:1"
49788
+ ]
49789
+ },
49790
+ atlas: {
49791
+ types: [
49792
+ "asset"
49793
+ ]
49794
+ },
49795
+ sprite: {
49796
+ types: [
49797
+ "string"
49798
+ ]
49799
+ },
49800
+ name: {
49801
+ types: [
49802
+ "string"
49803
+ ]
49804
+ },
49805
+ thumbnailUrl: {
49806
+ types: [
49807
+ "string"
49808
+ ]
49809
+ }
49810
+ },
49811
+ required: [
49812
+ "url",
49813
+ "role",
49814
+ "category"
49815
+ ]
49816
+ }
49817
+ },
49818
+ tickMs: {
49819
+ types: [
49820
+ "number"
49821
+ ],
49822
+ description: "The fx mechanic's decay tick period in ms; lifetime = maxTtl \xD7 tickMs. Default 500."
49823
+ },
49824
+ textColor: {
49825
+ types: [
49826
+ "string"
49827
+ ],
49828
+ description: "Floating-message text color when an item declares none. Default `#ffe066`."
49829
+ }
49830
+ },
49831
+ drawable: true,
49832
+ drawHost: true
49228
49833
  }
49229
49834
  },
49230
49835
  categories: [
@@ -50209,7 +50814,7 @@ var integrators_registry_default = {
50209
50814
  // src/patterns/component-mapping.json
50210
50815
  var component_mapping_default = {
50211
50816
  version: "1.0.0",
50212
- exportedAt: "2026-08-20T06:39:15.858Z",
50817
+ exportedAt: "2026-08-21T10:52:11.515Z",
50213
50818
  mappings: {
50214
50819
  "page-header": {
50215
50820
  component: "PageHeader",
@@ -51602,6 +52207,16 @@ var component_mapping_default = {
51602
52207
  component: "AlgoGraphCanvas",
51603
52208
  importPath: "@/components/learning/molecules/AlgoGraphCanvas",
51604
52209
  category: "learning"
52210
+ },
52211
+ "fx-overlay": {
52212
+ component: "FxOverlay",
52213
+ importPath: "@/components/core/molecules/FxOverlay",
52214
+ category: "container"
52215
+ },
52216
+ "draw-fx-layer": {
52217
+ component: "DrawFxLayer",
52218
+ importPath: "@/components/game/molecules/DrawFxLayer",
52219
+ category: "game"
51605
52220
  }
51606
52221
  }
51607
52222
  };
@@ -51609,7 +52224,7 @@ var component_mapping_default = {
51609
52224
  // src/patterns/event-contracts.json
51610
52225
  var event_contracts_default = {
51611
52226
  version: "1.0.0",
51612
- exportedAt: "2026-08-20T06:39:15.858Z",
52227
+ exportedAt: "2026-08-21T10:52:11.515Z",
51613
52228
  contracts: {
51614
52229
  form: {
51615
52230
  emits: [
@@ -52847,6 +53462,7 @@ var PATTERN_TYPES = [
52847
53462
  "doc-sidebar",
52848
53463
  "doc-toc",
52849
53464
  "document-viewer",
53465
+ "draw-fx-layer",
52850
53466
  "draw-group",
52851
53467
  "draw-mesh",
52852
53468
  "draw-shape",
@@ -52882,6 +53498,7 @@ var PATTERN_TYPES = [
52882
53498
  "form-layout",
52883
53499
  "form-section",
52884
53500
  "form-section-header",
53501
+ "fx-overlay",
52885
53502
  "game-audio-toggle",
52886
53503
  "game-hud",
52887
53504
  "game-icon",
@@ -57050,6 +57667,6 @@ function mergeEntityFrame(current, orderedWrites) {
57050
57667
  return next;
57051
57668
  }
57052
57669
 
57053
- 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 };
57670
+ 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, navigateBack, 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 };
57054
57671
  //# sourceMappingURL=index.js.map
57055
57672
  //# sourceMappingURL=index.js.map