@almadar/core 10.92.0 → 10.93.1

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-09-12T18:14:02.248Z",
3
+ "exportedAt": "2026-09-16T03:44:41.117Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -8578,6 +8578,7 @@
8578
8578
  "textarea": {
8579
8579
  "type": "textarea",
8580
8580
  "category": "component",
8581
+ "sourceFile": "components/core/atoms/Textarea.tsx",
8581
8582
  "tier": "atoms",
8582
8583
  "family": "core",
8583
8584
  "description": "Multi-line text input",
@@ -8610,7 +8611,7 @@
8610
8611
  "types": [
8611
8612
  "string"
8612
8613
  ],
8613
- "description": "Declarative event name for trait dispatch",
8614
+ "description": "Declarative event: fires on ⌘/Ctrl+Enter with `{ value }`.",
8614
8615
  "kind": "event"
8615
8616
  },
8616
8617
  "error": {
@@ -39183,7 +39184,7 @@
39183
39184
  "types": [
39184
39185
  "object"
39185
39186
  ],
39186
- "description": "Maps a keydown `e.code` the board's SEMANTIC event (device-agnostic input).",
39187
+ "description": "Maps a keydown `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
39187
39188
  "kind": "event-map",
39188
39189
  "mapValue": {
39189
39190
  "types": [
@@ -39196,7 +39197,7 @@
39196
39197
  "types": [
39197
39198
  "object"
39198
39199
  ],
39199
- "description": "Maps a keyup `e.code` the board's SEMANTIC event.",
39200
+ "description": "Maps a keyup `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
39200
39201
  "kind": "event-map",
39201
39202
  "mapValue": {
39202
39203
  "types": [
@@ -44661,7 +44662,7 @@
44661
44662
  "types": [
44662
44663
  "object"
44663
44664
  ],
44664
- "description": "Maps a keydown `e.code` the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` — same contract as the game canvas keyMap.",
44665
+ "description": "Maps a keydown `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` — same contract as the game canvas keyMap; keystrokes inside inputs/textareas never route.",
44665
44666
  "kind": "event-map",
44666
44667
  "mapValue": {
44667
44668
  "types": [
@@ -44674,7 +44675,7 @@
44674
44675
  "types": [
44675
44676
  "object"
44676
44677
  ],
44677
- "description": "Maps a keyup `e.code` the board's SEMANTIC event.",
44678
+ "description": "Maps a keyup `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
44678
44679
  "kind": "event-map",
44679
44680
  "mapValue": {
44680
44681
  "types": [
@@ -50429,7 +50430,7 @@
50429
50430
  "types": [
50430
50431
  "object"
50431
50432
  ],
50432
- "description": "keyMap prop",
50433
+ "description": "Maps a keydown `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
50433
50434
  "kind": "event-map",
50434
50435
  "mapValue": {
50435
50436
  "types": [
@@ -50442,7 +50443,7 @@
50442
50443
  "types": [
50443
50444
  "object"
50444
50445
  ],
50445
- "description": "keyUpMap prop",
50446
+ "description": "Maps a keyup `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
50446
50447
  "kind": "event-map",
50447
50448
  "mapValue": {
50448
50449
  "types": [
@@ -54513,6 +54514,188 @@
54513
54514
  }
54514
54515
  },
54515
54516
  "drawable": true
54517
+ },
54518
+ "gantt": {
54519
+ "type": "gantt",
54520
+ "category": "component",
54521
+ "sourceFile": "components/core/molecules/Gantt.tsx",
54522
+ "tier": "molecules",
54523
+ "family": "core",
54524
+ "description": "Gantt — view-only task schedule rendering rows as bars on a day axis.",
54525
+ "capabilities": "gantt chart, project timeline, schedule view, task bars, dependency arrows, roadmap, milestone plan",
54526
+ "fieldsContract": "display",
54527
+ "suggestedFor": [
54528
+ "gantt"
54529
+ ],
54530
+ "typicalSize": "medium",
54531
+ "propsSchema": {
54532
+ "tasks": {
54533
+ "types": [
54534
+ "object",
54535
+ "array"
54536
+ ],
54537
+ "description": "Schema entity data — the task rows to place on the axis. pattern-sync tags it `kind:\"entity\", cardinality:\"collection\"` so consumers bind the domain entity without name-matching the prop.",
54538
+ "kind": "entity",
54539
+ "cardinality": "collection",
54540
+ "default": []
54541
+ },
54542
+ "links": {
54543
+ "types": [
54544
+ "array"
54545
+ ],
54546
+ "description": "Dependency arrows between task ids",
54547
+ "items": {
54548
+ "types": [
54549
+ "object"
54550
+ ],
54551
+ "properties": {
54552
+ "from": {
54553
+ "types": [
54554
+ "string"
54555
+ ]
54556
+ },
54557
+ "to": {
54558
+ "types": [
54559
+ "string"
54560
+ ]
54561
+ }
54562
+ },
54563
+ "required": [
54564
+ "from",
54565
+ "to"
54566
+ ]
54567
+ },
54568
+ "default": []
54569
+ },
54570
+ "titleField": {
54571
+ "types": [
54572
+ "string"
54573
+ ],
54574
+ "description": "Row field holding the bar label. Defaults to `title`.",
54575
+ "default": "title"
54576
+ },
54577
+ "startField": {
54578
+ "types": [
54579
+ "string"
54580
+ ],
54581
+ "description": "Row field holding the start timestamp (ISO or epoch). Defaults to `start`.",
54582
+ "default": "start"
54583
+ },
54584
+ "endField": {
54585
+ "types": [
54586
+ "string"
54587
+ ],
54588
+ "description": "Row field holding the end timestamp (ISO or epoch). Defaults to `end`. When absent, `durationField` (days) is used instead.",
54589
+ "default": "end"
54590
+ },
54591
+ "durationField": {
54592
+ "types": [
54593
+ "string"
54594
+ ],
54595
+ "description": "Row field holding the task length in days, used when the row has no end."
54596
+ },
54597
+ "statusField": {
54598
+ "types": [
54599
+ "string"
54600
+ ],
54601
+ "description": "Row field holding the bar status (drives bar colour). Defaults to `status`.",
54602
+ "default": "status"
54603
+ },
54604
+ "groupField": {
54605
+ "types": [
54606
+ "string"
54607
+ ],
54608
+ "description": "Row field rows are grouped under header rows by. Empty (default) = flat list.",
54609
+ "default": ""
54610
+ },
54611
+ "rangeStart": {
54612
+ "types": [
54613
+ "string",
54614
+ "date"
54615
+ ],
54616
+ "description": "First visible day (ISO or Date). Defaults to 2 days before the earliest task."
54617
+ },
54618
+ "rangeEnd": {
54619
+ "types": [
54620
+ "string",
54621
+ "date"
54622
+ ],
54623
+ "description": "Last visible day (ISO or Date). Defaults to 2 days after the latest task end."
54624
+ },
54625
+ "showToday": {
54626
+ "types": [
54627
+ "boolean"
54628
+ ],
54629
+ "description": "Paint the today marker line when today falls inside the range (default true).",
54630
+ "default": true
54631
+ },
54632
+ "dayWidth": {
54633
+ "types": [
54634
+ "number"
54635
+ ],
54636
+ "description": "Pixels per day on the axis (default 28)",
54637
+ "default": 28
54638
+ },
54639
+ "barClickEvent": {
54640
+ "types": [
54641
+ "string"
54642
+ ],
54643
+ "description": "Event emitted when a bar is clicked: UI:{barClickEvent} with { id }",
54644
+ "kind": "event-ref",
54645
+ "emitPayloadSchema": [
54646
+ {
54647
+ "name": "id",
54648
+ "type": "string",
54649
+ "required": true
54650
+ }
54651
+ ]
54652
+ },
54653
+ "className": {
54654
+ "types": [
54655
+ "string"
54656
+ ],
54657
+ "description": "Additional CSS classes"
54658
+ },
54659
+ "isLoading": {
54660
+ "types": [
54661
+ "boolean"
54662
+ ],
54663
+ "description": "Loading state",
54664
+ "default": false
54665
+ },
54666
+ "error": {
54667
+ "types": [
54668
+ "object"
54669
+ ],
54670
+ "description": "Error state",
54671
+ "properties": {
54672
+ "message": {
54673
+ "types": [
54674
+ "string"
54675
+ ]
54676
+ },
54677
+ "name": {
54678
+ "types": [
54679
+ "string"
54680
+ ]
54681
+ },
54682
+ "code": {
54683
+ "types": [
54684
+ "string"
54685
+ ]
54686
+ },
54687
+ "stack": {
54688
+ "types": [
54689
+ "string"
54690
+ ]
54691
+ }
54692
+ },
54693
+ "propertyRequired": [
54694
+ "message"
54695
+ ],
54696
+ "default": null
54697
+ }
54698
+ }
54516
54699
  }
54517
54700
  },
54518
54701
  "categories": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-09-12T18:14:02.248Z",
3
+ "exportedAt": "2026-09-16T03:44:41.117Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -8578,6 +8578,7 @@
8578
8578
  "textarea": {
8579
8579
  "type": "textarea",
8580
8580
  "category": "component",
8581
+ "sourceFile": "components/core/atoms/Textarea.tsx",
8581
8582
  "tier": "atoms",
8582
8583
  "family": "core",
8583
8584
  "description": "Multi-line text input",
@@ -8610,7 +8611,7 @@
8610
8611
  "types": [
8611
8612
  "string"
8612
8613
  ],
8613
- "description": "Declarative event name for trait dispatch",
8614
+ "description": "Declarative event: fires on ⌘/Ctrl+Enter with `{ value }`.",
8614
8615
  "kind": "event"
8615
8616
  },
8616
8617
  "error": {
@@ -39183,7 +39184,7 @@
39183
39184
  "types": [
39184
39185
  "object"
39185
39186
  ],
39186
- "description": "Maps a keydown `e.code` the board's SEMANTIC event (device-agnostic input).",
39187
+ "description": "Maps a keydown `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
39187
39188
  "kind": "event-map",
39188
39189
  "mapValue": {
39189
39190
  "types": [
@@ -39196,7 +39197,7 @@
39196
39197
  "types": [
39197
39198
  "object"
39198
39199
  ],
39199
- "description": "Maps a keyup `e.code` the board's SEMANTIC event.",
39200
+ "description": "Maps a keyup `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
39200
39201
  "kind": "event-map",
39201
39202
  "mapValue": {
39202
39203
  "types": [
@@ -44661,7 +44662,7 @@
44661
44662
  "types": [
44662
44663
  "object"
44663
44664
  ],
44664
- "description": "Maps a keydown `e.code` the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` — same contract as the game canvas keyMap.",
44665
+ "description": "Maps a keydown `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` — same contract as the game canvas keyMap; keystrokes inside inputs/textareas never route.",
44665
44666
  "kind": "event-map",
44666
44667
  "mapValue": {
44667
44668
  "types": [
@@ -44674,7 +44675,7 @@
44674
44675
  "types": [
44675
44676
  "object"
44676
44677
  ],
44677
- "description": "Maps a keyup `e.code` the board's SEMANTIC event.",
44678
+ "description": "Maps a keyup `e.code` optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
44678
44679
  "kind": "event-map",
44679
44680
  "mapValue": {
44680
44681
  "types": [
@@ -50429,7 +50430,7 @@
50429
50430
  "types": [
50430
50431
  "object"
50431
50432
  ],
50432
- "description": "keyMap prop",
50433
+ "description": "Maps a keydown `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
50433
50434
  "kind": "event-map",
50434
50435
  "mapValue": {
50435
50436
  "types": [
@@ -50442,7 +50443,7 @@
50442
50443
  "types": [
50443
50444
  "object"
50444
50445
  ],
50445
- "description": "keyUpMap prop",
50446
+ "description": "Maps a keyup `e.code` — optionally prefixed `Mod+` (⌘/Ctrl), `Shift+`, `Alt+` in that order — to the board's SEMANTIC event, emitted as `UI:{event}`; keystrokes inside inputs/textareas never route.",
50446
50447
  "kind": "event-map",
50447
50448
  "mapValue": {
50448
50449
  "types": [
@@ -54513,6 +54514,188 @@
54513
54514
  }
54514
54515
  },
54515
54516
  "drawable": true
54517
+ },
54518
+ "gantt": {
54519
+ "type": "gantt",
54520
+ "category": "component",
54521
+ "sourceFile": "components/core/molecules/Gantt.tsx",
54522
+ "tier": "molecules",
54523
+ "family": "core",
54524
+ "description": "Gantt — view-only task schedule rendering rows as bars on a day axis.",
54525
+ "capabilities": "gantt chart, project timeline, schedule view, task bars, dependency arrows, roadmap, milestone plan",
54526
+ "fieldsContract": "display",
54527
+ "suggestedFor": [
54528
+ "gantt"
54529
+ ],
54530
+ "typicalSize": "medium",
54531
+ "propsSchema": {
54532
+ "tasks": {
54533
+ "types": [
54534
+ "object",
54535
+ "array"
54536
+ ],
54537
+ "description": "Schema entity data — the task rows to place on the axis. pattern-sync tags it `kind:\"entity\", cardinality:\"collection\"` so consumers bind the domain entity without name-matching the prop.",
54538
+ "kind": "entity",
54539
+ "cardinality": "collection",
54540
+ "default": []
54541
+ },
54542
+ "links": {
54543
+ "types": [
54544
+ "array"
54545
+ ],
54546
+ "description": "Dependency arrows between task ids",
54547
+ "items": {
54548
+ "types": [
54549
+ "object"
54550
+ ],
54551
+ "properties": {
54552
+ "from": {
54553
+ "types": [
54554
+ "string"
54555
+ ]
54556
+ },
54557
+ "to": {
54558
+ "types": [
54559
+ "string"
54560
+ ]
54561
+ }
54562
+ },
54563
+ "required": [
54564
+ "from",
54565
+ "to"
54566
+ ]
54567
+ },
54568
+ "default": []
54569
+ },
54570
+ "titleField": {
54571
+ "types": [
54572
+ "string"
54573
+ ],
54574
+ "description": "Row field holding the bar label. Defaults to `title`.",
54575
+ "default": "title"
54576
+ },
54577
+ "startField": {
54578
+ "types": [
54579
+ "string"
54580
+ ],
54581
+ "description": "Row field holding the start timestamp (ISO or epoch). Defaults to `start`.",
54582
+ "default": "start"
54583
+ },
54584
+ "endField": {
54585
+ "types": [
54586
+ "string"
54587
+ ],
54588
+ "description": "Row field holding the end timestamp (ISO or epoch). Defaults to `end`. When absent, `durationField` (days) is used instead.",
54589
+ "default": "end"
54590
+ },
54591
+ "durationField": {
54592
+ "types": [
54593
+ "string"
54594
+ ],
54595
+ "description": "Row field holding the task length in days, used when the row has no end."
54596
+ },
54597
+ "statusField": {
54598
+ "types": [
54599
+ "string"
54600
+ ],
54601
+ "description": "Row field holding the bar status (drives bar colour). Defaults to `status`.",
54602
+ "default": "status"
54603
+ },
54604
+ "groupField": {
54605
+ "types": [
54606
+ "string"
54607
+ ],
54608
+ "description": "Row field rows are grouped under header rows by. Empty (default) = flat list.",
54609
+ "default": ""
54610
+ },
54611
+ "rangeStart": {
54612
+ "types": [
54613
+ "string",
54614
+ "date"
54615
+ ],
54616
+ "description": "First visible day (ISO or Date). Defaults to 2 days before the earliest task."
54617
+ },
54618
+ "rangeEnd": {
54619
+ "types": [
54620
+ "string",
54621
+ "date"
54622
+ ],
54623
+ "description": "Last visible day (ISO or Date). Defaults to 2 days after the latest task end."
54624
+ },
54625
+ "showToday": {
54626
+ "types": [
54627
+ "boolean"
54628
+ ],
54629
+ "description": "Paint the today marker line when today falls inside the range (default true).",
54630
+ "default": true
54631
+ },
54632
+ "dayWidth": {
54633
+ "types": [
54634
+ "number"
54635
+ ],
54636
+ "description": "Pixels per day on the axis (default 28)",
54637
+ "default": 28
54638
+ },
54639
+ "barClickEvent": {
54640
+ "types": [
54641
+ "string"
54642
+ ],
54643
+ "description": "Event emitted when a bar is clicked: UI:{barClickEvent} with { id }",
54644
+ "kind": "event-ref",
54645
+ "emitPayloadSchema": [
54646
+ {
54647
+ "name": "id",
54648
+ "type": "string",
54649
+ "required": true
54650
+ }
54651
+ ]
54652
+ },
54653
+ "className": {
54654
+ "types": [
54655
+ "string"
54656
+ ],
54657
+ "description": "Additional CSS classes"
54658
+ },
54659
+ "isLoading": {
54660
+ "types": [
54661
+ "boolean"
54662
+ ],
54663
+ "description": "Loading state",
54664
+ "default": false
54665
+ },
54666
+ "error": {
54667
+ "types": [
54668
+ "object"
54669
+ ],
54670
+ "description": "Error state",
54671
+ "properties": {
54672
+ "message": {
54673
+ "types": [
54674
+ "string"
54675
+ ]
54676
+ },
54677
+ "name": {
54678
+ "types": [
54679
+ "string"
54680
+ ]
54681
+ },
54682
+ "code": {
54683
+ "types": [
54684
+ "string"
54685
+ ]
54686
+ },
54687
+ "stack": {
54688
+ "types": [
54689
+ "string"
54690
+ ]
54691
+ }
54692
+ },
54693
+ "propertyRequired": [
54694
+ "message"
54695
+ ],
54696
+ "default": null
54697
+ }
54698
+ }
54516
54699
  }
54517
54700
  },
54518
54701
  "categories": [
@@ -1,7 +1,7 @@
1
- import { b as TraitConfig, c as TraitConfigObject, D as DeclaredTraitConfig, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitEntityField, P as PayloadField, f as TraitTypeParamDef, g as TraitConfigValue, h as Trait } from './trait-DHb48lyx.js';
1
+ import { b as TraitConfig, c as TraitConfigObject, D as DeclaredTraitConfig, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitEntityField, P as PayloadField, f as TraitTypeParamDef, g as TraitConfigValue, h as Trait } from './trait-DSMzclmJ.js';
2
2
  import { J as JsonValue, R as RuntimeValue } from './json-D8gmyK3l.js';
3
3
  import { E as Expression, S as SExpr } from './expression-WfTp2arD.js';
4
- import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, h as ServiceDefinition, I as IdentityLedger } from './effect-DGa2ixo7.js';
4
+ import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, h as ServiceDefinition, I as IdentityLedger } from './effect-BnSE0gKt.js';
5
5
  import { z } from 'zod';
6
6
 
7
7
  /**
@@ -1,4 +1,4 @@
1
- import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-DGa2ixo7.js';
1
+ import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-BnSE0gKt.js';
2
2
  import { J as JsonValue } from './json-D8gmyK3l.js';
3
3
  import { E as Expression, S as SExpr } from './expression-WfTp2arD.js';
4
4
  import { z } from 'zod';
@@ -1,9 +1,9 @@
1
- export { A as AGENT_DOMAIN_CATEGORIES, e as ALLOWED_CUSTOM_COMPONENTS, f as AgentDomainCategory, g as AgentDomainCategorySchema, h as AllowedCustomComponent, O as AppSchema, C as ColorSlice, i as ColorSliceSchema, j as ColorTokens, k as ColorTokensSchema, l as ComputedEventContract, m as ComputedEventContractSchema, n as ComputedEventListener, o as ComputedEventListenerSchema, p as ConfigProvenanceRecord, q as ConfigProvenanceRecordSchema, r as CustomPatternDefinition, s as CustomPatternDefinitionInput, t as CustomPatternDefinitionSchema, u as CustomPatternMap, v as CustomPatternMapInput, w as CustomPatternMapSchema, D as DensitySlice, x as DensitySliceSchema, y as DensityTokens, z as DensityTokensSchema, B as DesignPreferences, F as DesignPreferencesInput, G as DesignPreferencesSchema, H as DesignTokens, I as DesignTokensInput, J as DesignTokensSchema, K as DomainCategory, L as DomainCategorySchema, M as DomainContext, N as DomainContextInput, Q as DomainContextSchema, R as DomainVocabulary, S as DomainVocabularySchema, T as ElevationSlice, V as ElevationSliceSchema, W as ElevationTokens, X as ElevationTokensSchema, Y as EntityCall, Z as EntityCallSchema, E as EntityRef, _ as EntityRefSchema, $ as EntityRefStringSchema, a0 as EntitySemanticRole, a1 as EntitySemanticRoleSchema, a2 as EventListener, a3 as EventListenerSchema, a4 as EventSemanticRole, a5 as EventSemanticRoleSchema, a6 as EventSource, a7 as EventSourceSchema, b as ExpectDeclaration, a8 as ExpectDeclarationSchema, a9 as FullOrbitalUnit, aa as GameSubCategory, ab as GameSubCategorySchema, ac as GeometrySlice, ad as GeometrySliceSchema, ae as GeometryTokens, af as GeometryTokensSchema, ag as IconFamily, ah as IconFamilySchema, ai as IconographySlice, aj as IconographySliceSchema, ak as IconographyTokens, al as IconographyTokensSchema, am as IllustrationSlice, an as IllustrationSliceSchema, ao as IllustrationStyle, ap as IllustrationStyleSchema, aq as IllustrationTokens, ar as IllustrationTokensSchema, as as MotionDurationKey, at as MotionDurationKeySchema, au as MotionDurationPalette, av as MotionDurationPaletteSchema, aw as MotionEasingKey, ax as MotionEasingKeySchema, ay as MotionEasingPalette, az as MotionEasingPaletteSchema, aA as MotionIntent, aB as MotionIntentMap, aC as MotionIntentMapSchema, aD as MotionIntentSchema, aE as MotionSlice, aF as MotionSliceSchema, aG as MotionTokens, aH as MotionTokensSchema, aI as NavItem, aJ as NavStackEntry, aK as NodeClassification, aL as NodeClassificationSchema, a9 as Orbital, a as OrbitalDefinition, aM as OrbitalDefinitionSchema, aN as OrbitalInput, aO as OrbitalPage, aP as OrbitalPageInput, aQ as OrbitalPageSchema, aR as OrbitalPageStrictInput, aS as OrbitalPageStrictSchema, aT as OrbitalRefObject, aU as OrbitalRefObjectSchema, aV as OrbitalRefStringSchema, O as OrbitalSchema, aW as OrbitalSchemaInput, aX as OrbitalSchemaSchema, aY as OrbitalSchemaWithTraits, aZ as OrbitalUnit, a_ as OrbitalUnitSchema, a$ as OrbitalZodSchema, c as Page, P as PageRef, d as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, b4 as PageTraitRef, b5 as PageTraitRefSchema, b6 as RelatedLink, b7 as RelatedLinkSchema, b8 as SchemaMetadata, b9 as SchemaMetadataSchema, ba as SkinSpec, bb as SkinSpecSchema, bc as SpacingScale, bd as SpacingScaleSchema, be as StateSemanticRole, bf as StateSemanticRoleSchema, bg as SuggestedGuard, bh as SuggestedGuardSchema, bi as ThemeDefinition, bj as ThemeDefinitionSchema, bk as ThemeRef, bl as ThemeRefSchema, bm as ThemeRefStringSchema, bn as ThemeTokens, bo as ThemeTokensSchema, bp as ThemeVariant, bq as ThemeVariantSchema, br as TypeIntent, bs as TypeIntentMap, bt as TypeIntentMapSchema, bu as TypeIntentSchema, bv as TypeScale, bw as TypeScaleEntry, bx as TypeScaleEntrySchema, by as TypeScaleSchema, bz as TypeScaleTokens, bA as TypeScaleTokensSchema, bB as TypeSizeKey, bC as TypeSizeKeySchema, bD as TypeSlice, bE as TypeSliceSchema, bF as TypeSlot, bG as TypeSlotSchema, bH as TypeWeight, bI as TypeWeightSchema, bJ as UXHints, bK as UXHintsSchema, U as UseDeclaration, bL as UseDeclarationSchema, bM as UserPersona, bN as UserPersonaInput, bO as UserPersonaSchema, a as ValidatedOrbital, bP as ViewType, bQ as ViewTypeSchema, bR as expectedEntityName, bS as isEntityCall, bT as isEntityReference, bU as isEntityReferenceAny, bV as isImportedTraitRef, bW as isOrbitalDefinition, bX as isPageReference, bY as isPageReferenceObject, bZ as isPageReferenceString, b_ as isThemeReference, b$ as parseEntityRef, c0 as parseImportedTraitRef, c1 as parseOrbitalRef, c2 as parseOrbitalSchema, c3 as parsePageRef, c4 as safeParseOrbitalSchema } from '../schema-DIL07Bmv.js';
2
- export { k as ANIMATION_NAMES, l as ASSET_ASPECTS, m as ASSET_DIMENSIONS, n as AgentEffect, o as AnimationDef, p as AnimationDefInput, q as AnimationDefSchema, r as AnimationName, s as AnimationNameSchema, t as ApplicationEffect, u as ArrayEntityField, v as Asset, w as AssetAspect, x as AssetAspectSchema, y as AssetCatalog, z as AssetCatalogEntry, B as AssetCatalogEntryInput, C as AssetCatalogEntrySchema, D as AssetCatalogSchema, G as AssetDimension, H as AssetDimensionSchema, J as AssetSchema, K as AssetUrl, L as AtomicEffect, M as AudioManifest, N as AudioManifestSchema, Q as BehaviorEffect, V as CAMERA_MODES, W as CallServiceConfig, X as CallServiceEffect, Y as Camera, Z as CameraMode, _ as CameraModeSchema, $ as CameraSchema, a0 as CheckpointLoadEffect, a1 as CheckpointSaveEffect, a2 as ComposeEffect, a3 as ControlValue, a4 as DEFAULT_UNIT_ANIMATION_ROWS, a5 as DerefEffect, a6 as DespawnEffect, a7 as DoEffect, a8 as ENTITY_ROLES, c as Effect, a9 as EffectInput, aa as EffectSchema, ab as EmitConfig, ac as EmitEffect, e as Entity, ad as EntityData, E as EntityField, ae as EntityFieldInput, af as EntityFieldSchema, d as EntityId, ag as EntityIdSchema, a as EntityPersistence, ah as EntityPersistenceSchema, ai as EntityRole, aj as EntityRoleSchema, g as EntityRow, ak as EntitySchema, al as EntityWith, am as EnumEntityField, an as EvaluateConfig, ao as EvaluateEffect, b as EventId, ap as EventIdSchema, aq as FIELD_TYPES, ar as FetchEffect, as as FetchOptions, at as FetchResult, au as Field, av as FieldSchema, aw as FieldType, ax as FieldTypeSchema, F as FieldValue, ay as FieldValueSchema, az as FileValue, aA as FileValueSchema, aB as ForwardConfig, aC as ForwardEffect, aD as IdForKind, aE as IdKind, I as IdentityLedger, aF as IdentityLedgerSchema, aG as LedgerEntry, aH as LedgerEntrySchema, aI as LedgerKind, aJ as LedgerKindSchema, aK as LlmEffect, aL as LogEffect, aM as MANIFEST_ASSET_LICENSES, aN as MANIFEST_CANVAS_AFFINITIES, aO as MANIFEST_ENTRY_KINDS, aP as MANIFEST_SOURCE_CATALOGS, aQ as ManifestAssetLicense, aR as ManifestAssetLicenseSchema, aS as ManifestCanvasAffinity, aT as ManifestCanvasAffinitySchema, aU as ManifestEntry, aV as ManifestEntryInput, aW as ManifestEntryKind, aX as ManifestEntryKindSchema, aY as ManifestEntrySchema, aZ as ManifestFrameSpec, a_ as ManifestFrameSpecSchema, a$ as ManifestSourceCatalog, b0 as ManifestSourceCatalogSchema, b1 as McpServiceDef, b2 as McpServiceDefSchema, b3 as MemoryEffect, b4 as NavigateBackEffect, b5 as NavigateEffect, b6 as NavigateOptions, b7 as NnConfig, b8 as NnLayer, b9 as ObjectEntityField, f as OrbitalEntity, ba as OrbitalEntityInput, bb as OrbitalEntitySchema, O as OrbitalId, bc as OrbitalIdSchema, bd as OsEffect, be as PATTERN_TYPES, P as PageId, bf as PageIdSchema, bg as PaletteEntryId, bh as PaletteEntryIdSchema, bi as PatternConfig, bl as PatternType, bm as PersistData, bn as PersistEffect, bo as PersistEmitConfig, bp as RefEffect, R as RelationConfig, bq as RelationConfigSchema, br as RelationEntityField, i as RenderBinding, bs as RenderChildrenMap, bt as RenderItemLambda, j as RenderUIEffect, bu as RenderUINode, bv as ResolvedPatternProps, bw as RestAuthConfig, bx as RestAuthConfigSchema, by as RestServiceDef, bz as RestServiceDefSchema, bA as SEMANTIC_STRING_TYPES, bB as SERVICE_TYPES, bC as SHEET_PROJECTIONS, bD as SPRITE_DIRECTIONS, bE as SPRITE_SHEET_LAYOUT, bF as ScalarEntityField, bG as ScenePos, bH as ScenePosSchema, bI as SemanticAssetRef, bJ as SemanticAssetRefInput, bK as SemanticAssetRefSchema, bL as SemanticStringType, h as ServiceDefinition, bM as ServiceDefinitionSchema, bN as ServiceId, bO as ServiceIdSchema, bP as ServiceParams, bQ as ServiceParamsValue, S as ServiceRef, bR as ServiceRefObject, bS as ServiceRefObjectSchema, bT as ServiceRefSchema, bU as ServiceRefStringSchema, bV as ServiceType, bW as ServiceTypeSchema, bX as SessionEffect, bY as SetEffect, bZ as SheetProjection, b_ as SheetProjectionSchema, b$ as SocketEvents, c0 as SocketEventsSchema, c1 as SocketServiceDef, c2 as SocketServiceDefSchema, c3 as SoundEntry, c4 as SoundEntrySchema, c5 as SpawnEffect, c6 as SpriteDirection, c7 as SpriteDirectionSchema, c8 as SpriteSheetAtlas, c9 as SpriteSheetAtlasInput, ca as SpriteSheetAtlasSchema, cb as SpriteSheetLayout, cc as SubTexture, cd as SubTextureSchema, ce as SwapEffect, cf as TemplatePatternConfig, cg as TextureAtlas, ch as TextureAtlasSchema, ci as ThemeId, cj as ThemeIdSchema, ck as Tilesheet, cl as TilesheetSchema, cm as TraceEffect, cn as TrainConfig, co as TrainEffect, T as TraitId, cp as TraitIdSchema, cq as TypedEffect, U as UISlot, cr as UISlotSchema, cs as UI_SLOTS, ct as VISUAL_STYLES, cu as ValidateEffect, cv as VisualStyle, cw as VisualStyleSchema, cx as WatchEffect, cy as WatchOptions, cz as asEntityId, cA as asEventId, cB as asOrbitalId, cC as asPageId, cD as asPaletteEntryId, cE as asServiceId, cF as asThemeId, cG as asTraitId, cH as atomic, cI as callService, cJ as createAssetKey, cK as defaultUnitAtlas, cL as deref, cM as deriveCollection, cN as deriveId, cO as despawn, cP as doEffects, cQ as emit, cR as findService, cS as getDefaultAnimationsForRole, cT as getServiceNames, cU as hasService, cV as idKindOf, cW as idPrefix, cX as isEffect, cY as isEmailValue, cZ as isEntityId, c_ as isEventId, c$ as isFieldValue, d0 as isFileValue, d1 as isMcpService, d2 as isOrbitalId, d3 as isPageId, d4 as isPaletteEntryId, d5 as isPhoneValue, d6 as isRestService, d7 as isRuntimeEntity, d8 as isSExprEffect, d9 as isSemanticStringType, da as isSemanticStringValue, db as isServiceId, dc as isServiceReference, dd as isServiceReferenceObject, de as isSocketService, df as isThemeId, dg as isTraitId, dh as isUrlValue, di as isUuidValue, dj as isValidPatternType, dk as ledgerCurName, dl as ledgerRename, dm as ledgerResolveName, dn as manifestToAssetCatalog, dp as matchAssetQuery, dq as mintId, dr as navigate, ds as navigateBack, dt as parseAssetKey, du as parseAssetQuery, dv as parseServiceRef, dw as persist, dx as persistenceModeAllowsOverrides, dy as ref, dz as renderUI, dA as set, dB as spawn, dC as swap, dD as validateAssetAnimations, dE as watch } from '../effect-DGa2ixo7.js';
1
+ export { A as AGENT_DOMAIN_CATEGORIES, e as ALLOWED_CUSTOM_COMPONENTS, f as AgentDomainCategory, g as AgentDomainCategorySchema, h as AllowedCustomComponent, O as AppSchema, C as ColorSlice, i as ColorSliceSchema, j as ColorTokens, k as ColorTokensSchema, l as ComputedEventContract, m as ComputedEventContractSchema, n as ComputedEventListener, o as ComputedEventListenerSchema, p as ConfigProvenanceRecord, q as ConfigProvenanceRecordSchema, r as CustomPatternDefinition, s as CustomPatternDefinitionInput, t as CustomPatternDefinitionSchema, u as CustomPatternMap, v as CustomPatternMapInput, w as CustomPatternMapSchema, D as DensitySlice, x as DensitySliceSchema, y as DensityTokens, z as DensityTokensSchema, B as DesignPreferences, F as DesignPreferencesInput, G as DesignPreferencesSchema, H as DesignTokens, I as DesignTokensInput, J as DesignTokensSchema, K as DomainCategory, L as DomainCategorySchema, M as DomainContext, N as DomainContextInput, Q as DomainContextSchema, R as DomainVocabulary, S as DomainVocabularySchema, T as ElevationSlice, V as ElevationSliceSchema, W as ElevationTokens, X as ElevationTokensSchema, Y as EntityCall, Z as EntityCallSchema, E as EntityRef, _ as EntityRefSchema, $ as EntityRefStringSchema, a0 as EntitySemanticRole, a1 as EntitySemanticRoleSchema, a2 as EventListener, a3 as EventListenerSchema, a4 as EventSemanticRole, a5 as EventSemanticRoleSchema, a6 as EventSource, a7 as EventSourceSchema, b as ExpectDeclaration, a8 as ExpectDeclarationSchema, a9 as FullOrbitalUnit, aa as GameSubCategory, ab as GameSubCategorySchema, ac as GeometrySlice, ad as GeometrySliceSchema, ae as GeometryTokens, af as GeometryTokensSchema, ag as IconFamily, ah as IconFamilySchema, ai as IconographySlice, aj as IconographySliceSchema, ak as IconographyTokens, al as IconographyTokensSchema, am as IllustrationSlice, an as IllustrationSliceSchema, ao as IllustrationStyle, ap as IllustrationStyleSchema, aq as IllustrationTokens, ar as IllustrationTokensSchema, as as MotionDurationKey, at as MotionDurationKeySchema, au as MotionDurationPalette, av as MotionDurationPaletteSchema, aw as MotionEasingKey, ax as MotionEasingKeySchema, ay as MotionEasingPalette, az as MotionEasingPaletteSchema, aA as MotionIntent, aB as MotionIntentMap, aC as MotionIntentMapSchema, aD as MotionIntentSchema, aE as MotionSlice, aF as MotionSliceSchema, aG as MotionTokens, aH as MotionTokensSchema, aI as NavItem, aJ as NavStackEntry, aK as NodeClassification, aL as NodeClassificationSchema, a9 as Orbital, a as OrbitalDefinition, aM as OrbitalDefinitionSchema, aN as OrbitalInput, aO as OrbitalPage, aP as OrbitalPageInput, aQ as OrbitalPageSchema, aR as OrbitalPageStrictInput, aS as OrbitalPageStrictSchema, aT as OrbitalRefObject, aU as OrbitalRefObjectSchema, aV as OrbitalRefStringSchema, O as OrbitalSchema, aW as OrbitalSchemaInput, aX as OrbitalSchemaSchema, aY as OrbitalSchemaWithTraits, aZ as OrbitalUnit, a_ as OrbitalUnitSchema, a$ as OrbitalZodSchema, c as Page, P as PageRef, d as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, b4 as PageTraitRef, b5 as PageTraitRefSchema, b6 as RelatedLink, b7 as RelatedLinkSchema, b8 as SchemaMetadata, b9 as SchemaMetadataSchema, ba as SkinSpec, bb as SkinSpecSchema, bc as SpacingScale, bd as SpacingScaleSchema, be as StateSemanticRole, bf as StateSemanticRoleSchema, bg as SuggestedGuard, bh as SuggestedGuardSchema, bi as ThemeDefinition, bj as ThemeDefinitionSchema, bk as ThemeRef, bl as ThemeRefSchema, bm as ThemeRefStringSchema, bn as ThemeTokens, bo as ThemeTokensSchema, bp as ThemeVariant, bq as ThemeVariantSchema, br as TypeIntent, bs as TypeIntentMap, bt as TypeIntentMapSchema, bu as TypeIntentSchema, bv as TypeScale, bw as TypeScaleEntry, bx as TypeScaleEntrySchema, by as TypeScaleSchema, bz as TypeScaleTokens, bA as TypeScaleTokensSchema, bB as TypeSizeKey, bC as TypeSizeKeySchema, bD as TypeSlice, bE as TypeSliceSchema, bF as TypeSlot, bG as TypeSlotSchema, bH as TypeWeight, bI as TypeWeightSchema, bJ as UXHints, bK as UXHintsSchema, U as UseDeclaration, bL as UseDeclarationSchema, bM as UserPersona, bN as UserPersonaInput, bO as UserPersonaSchema, a as ValidatedOrbital, bP as ViewType, bQ as ViewTypeSchema, bR as expectedEntityName, bS as isEntityCall, bT as isEntityReference, bU as isEntityReferenceAny, bV as isImportedTraitRef, bW as isOrbitalDefinition, bX as isPageReference, bY as isPageReferenceObject, bZ as isPageReferenceString, b_ as isThemeReference, b$ as parseEntityRef, c0 as parseImportedTraitRef, c1 as parseOrbitalRef, c2 as parseOrbitalSchema, c3 as parsePageRef, c4 as safeParseOrbitalSchema } from '../schema-DFmFFcLs.js';
2
+ export { k as ANIMATION_NAMES, l as ASSET_ASPECTS, m as ASSET_DIMENSIONS, n as AgentEffect, o as AnimationDef, p as AnimationDefInput, q as AnimationDefSchema, r as AnimationName, s as AnimationNameSchema, t as ApplicationEffect, u as ArrayEntityField, v as Asset, w as AssetAspect, x as AssetAspectSchema, y as AssetCatalog, z as AssetCatalogEntry, B as AssetCatalogEntryInput, C as AssetCatalogEntrySchema, D as AssetCatalogSchema, G as AssetDimension, H as AssetDimensionSchema, J as AssetSchema, K as AssetUrl, L as AtomicEffect, M as AudioManifest, N as AudioManifestSchema, Q as BehaviorEffect, V as CAMERA_MODES, W as CallServiceConfig, X as CallServiceEffect, Y as Camera, Z as CameraMode, _ as CameraModeSchema, $ as CameraSchema, a0 as CheckpointLoadEffect, a1 as CheckpointSaveEffect, a2 as ComposeEffect, a3 as ControlValue, a4 as DEFAULT_UNIT_ANIMATION_ROWS, a5 as DerefEffect, a6 as DespawnEffect, a7 as DoEffect, a8 as ENTITY_ROLES, c as Effect, a9 as EffectInput, aa as EffectSchema, ab as EmitConfig, ac as EmitEffect, e as Entity, ad as EntityData, E as EntityField, ae as EntityFieldInput, af as EntityFieldSchema, d as EntityId, ag as EntityIdSchema, a as EntityPersistence, ah as EntityPersistenceSchema, ai as EntityRole, aj as EntityRoleSchema, g as EntityRow, ak as EntitySchema, al as EntityWith, am as EnumEntityField, an as EvaluateConfig, ao as EvaluateEffect, b as EventId, ap as EventIdSchema, aq as FIELD_TYPES, ar as FetchEffect, as as FetchOptions, at as FetchResult, au as Field, av as FieldSchema, aw as FieldType, ax as FieldTypeSchema, F as FieldValue, ay as FieldValueSchema, az as FileValue, aA as FileValueSchema, aB as ForwardConfig, aC as ForwardEffect, aD as IdForKind, aE as IdKind, I as IdentityLedger, aF as IdentityLedgerSchema, aG as LedgerEntry, aH as LedgerEntrySchema, aI as LedgerKind, aJ as LedgerKindSchema, aK as LlmEffect, aL as LogEffect, aM as MANIFEST_ASSET_LICENSES, aN as MANIFEST_CANVAS_AFFINITIES, aO as MANIFEST_ENTRY_KINDS, aP as MANIFEST_SOURCE_CATALOGS, aQ as ManifestAssetLicense, aR as ManifestAssetLicenseSchema, aS as ManifestCanvasAffinity, aT as ManifestCanvasAffinitySchema, aU as ManifestEntry, aV as ManifestEntryInput, aW as ManifestEntryKind, aX as ManifestEntryKindSchema, aY as ManifestEntrySchema, aZ as ManifestFrameSpec, a_ as ManifestFrameSpecSchema, a$ as ManifestSourceCatalog, b0 as ManifestSourceCatalogSchema, b1 as McpServiceDef, b2 as McpServiceDefSchema, b3 as MemoryEffect, b4 as NavigateBackEffect, b5 as NavigateEffect, b6 as NavigateOptions, b7 as NnConfig, b8 as NnLayer, b9 as ObjectEntityField, f as OrbitalEntity, ba as OrbitalEntityInput, bb as OrbitalEntitySchema, O as OrbitalId, bc as OrbitalIdSchema, bd as OsEffect, be as PATTERN_TYPES, P as PageId, bf as PageIdSchema, bg as PaletteEntryId, bh as PaletteEntryIdSchema, bi as PatternConfig, bl as PatternType, bm as PersistData, bn as PersistEffect, bo as PersistEmitConfig, bp as RefEffect, R as RelationConfig, bq as RelationConfigSchema, br as RelationEntityField, i as RenderBinding, bs as RenderChildrenMap, bt as RenderItemLambda, j as RenderUIEffect, bu as RenderUINode, bv as ResolvedPatternProps, bw as RestAuthConfig, bx as RestAuthConfigSchema, by as RestServiceDef, bz as RestServiceDefSchema, bA as SEMANTIC_STRING_TYPES, bB as SERVICE_TYPES, bC as SHEET_PROJECTIONS, bD as SPRITE_DIRECTIONS, bE as SPRITE_SHEET_LAYOUT, bF as ScalarEntityField, bG as ScenePos, bH as ScenePosSchema, bI as SemanticAssetRef, bJ as SemanticAssetRefInput, bK as SemanticAssetRefSchema, bL as SemanticStringType, h as ServiceDefinition, bM as ServiceDefinitionSchema, bN as ServiceId, bO as ServiceIdSchema, bP as ServiceParams, bQ as ServiceParamsValue, S as ServiceRef, bR as ServiceRefObject, bS as ServiceRefObjectSchema, bT as ServiceRefSchema, bU as ServiceRefStringSchema, bV as ServiceType, bW as ServiceTypeSchema, bX as SessionEffect, bY as SetEffect, bZ as SheetProjection, b_ as SheetProjectionSchema, b$ as SocketEvents, c0 as SocketEventsSchema, c1 as SocketServiceDef, c2 as SocketServiceDefSchema, c3 as SoundEntry, c4 as SoundEntrySchema, c5 as SpawnEffect, c6 as SpriteDirection, c7 as SpriteDirectionSchema, c8 as SpriteSheetAtlas, c9 as SpriteSheetAtlasInput, ca as SpriteSheetAtlasSchema, cb as SpriteSheetLayout, cc as SubTexture, cd as SubTextureSchema, ce as SwapEffect, cf as TemplatePatternConfig, cg as TextureAtlas, ch as TextureAtlasSchema, ci as ThemeId, cj as ThemeIdSchema, ck as Tilesheet, cl as TilesheetSchema, cm as TraceEffect, cn as TrainConfig, co as TrainEffect, T as TraitId, cp as TraitIdSchema, cq as TypedEffect, U as UISlot, cr as UISlotSchema, cs as UI_SLOTS, ct as VISUAL_STYLES, cu as ValidateEffect, cv as VisualStyle, cw as VisualStyleSchema, cx as WatchEffect, cy as WatchOptions, cz as asEntityId, cA as asEventId, cB as asOrbitalId, cC as asPageId, cD as asPaletteEntryId, cE as asServiceId, cF as asThemeId, cG as asTraitId, cH as atomic, cI as callService, cJ as createAssetKey, cK as defaultUnitAtlas, cL as deref, cM as deriveCollection, cN as deriveId, cO as despawn, cP as doEffects, cQ as emit, cR as findService, cS as getDefaultAnimationsForRole, cT as getServiceNames, cU as hasService, cV as idKindOf, cW as idPrefix, cX as isEffect, cY as isEmailValue, cZ as isEntityId, c_ as isEventId, c$ as isFieldValue, d0 as isFileValue, d1 as isMcpService, d2 as isOrbitalId, d3 as isPageId, d4 as isPaletteEntryId, d5 as isPhoneValue, d6 as isRestService, d7 as isRuntimeEntity, d8 as isSExprEffect, d9 as isSemanticStringType, da as isSemanticStringValue, db as isServiceId, dc as isServiceReference, dd as isServiceReferenceObject, de as isSocketService, df as isThemeId, dg as isTraitId, dh as isUrlValue, di as isUuidValue, dj as isValidPatternType, dk as ledgerCurName, dl as ledgerRename, dm as ledgerResolveName, dn as manifestToAssetCatalog, dp as matchAssetQuery, dq as mintId, dr as navigate, ds as navigateBack, dt as parseAssetKey, du as parseAssetQuery, dv as parseServiceRef, dw as persist, dx as persistenceModeAllowsOverrides, dy as ref, dz as renderUI, dA as set, dB as spawn, dC as swap, dD as validateAssetAnimations, dE as watch } from '../effect-BnSE0gKt.js';
3
3
  export { C as CORE_BINDINGS, c as CoreBinding, d as EvalContext, a as EventPayload, b as EventPayloadValue, E as Expression, e as ExpressionInput, f as ExpressionSchema, L as LogMeta, g as LogMetaValue, P as ParsedBinding, S as SExpr, h as SExprAtom, i as SExprAtomSchema, j as SExprDataSchema, k as SExprInput, l as SExprObject, m as SExprSchema, n as collectBindings, o as getArgs, p as getOperator, q as isBinding, r as isEventPayloadValue, s as isSExpr, t as isSExprAtom, u as isSExprCall, v as isValidBinding, w as parseBinding, x as sexpr, y as walkSExpr } from '../expression-WfTp2arD.js';
4
- export { A as ANONYMOUS_USER, f as AgentCodeSearchResult, g as AgentCompactResult, h as AgentCompactStrategy, i as AgentContext, j as AgentGenerateOptions, k as AgentMemoryCategory, l as AgentMemoryRecord, m as AnalysisOrbital, n as AnalysisOrbitalParams, o as AnalysisPageOverride, p as AnalysisRename, q as AnalysisResult, r as AnnotationTier, s as AppCreatedEvent, t as AppSummary, u as AssetLoadStatus, B as BINDING_CONTEXT_RULES, v as BINDING_DOCS, w as BINDING_ROOTS, x as BindingContext, y as BindingRoot, z as BindingSchema, D as BridgeHealth, E as BuilderResult, F as BusEvent, G as BusEventListener, H as BusEventSource, I as CancelledEvent, d as CategorizedRemovals, J as ChangeAuthor, K as ChangeSetDocument, L as ChangeSummary, M as ChangesetRecordedEvent, C as ChangesetValue, N as CheckStatus, O as Clarification, Q as ClarificationCandidate, T as ClarificationLevel, U as CompleteEvent, V as ComplexityAssessment, W as ComposeAllResult, X as ComposeChildrenResult, Y as ComposeOptions, Z as ContextExtensions, _ as CreateFlow, $ as DEFAULT_INTERACTION_MODELS, a0 as DEFAULT_VIEWER, a1 as DEV_TOKEN_PREFIX, a2 as DeleteFlow, a3 as DispatchUpdatesResult, a4 as DrawableDescriptor, a5 as EdgeType, a6 as EditFlow, a9 as EffectPayload, aa as EffectResult, ab as EffectTrace, ac as EmittedEvent, ad as ErrorEvent, ae as EventDispatchRequest, af as EventDispatchResponse, ag as EventEmit, ah as EventKey, ai as EventListen, aj as EventLogEntry, ak as EvolutionDelta, al as ExecutePlanResult, am as ExtraTraitRef, an as FileOperationEvent, ao as FileWrittenEvent, ap as GateState, aq as GenerationLogEvent, ar as GitHubIssue, as as GitHubLink, at as GitHubRepo, au as HistoryMeta, av as IntegrationContext, aw as InteractionModel, ax as InteractionModelInput, ay as InteractionModelSchema, az as InterruptEvent, aA as KNOWN_VALIDATION_ERROR_CODES, aB as KnobPayload, aC as KnownValidationErrorCode, aD as LLMErrorContext, aE as LazyService, aF as LineageEntry, aG as ListInteraction, aH as LivingEdge, aI as LivingEffect, aJ as LivingEntity, aK as LivingEvent, aL as LivingField, aM as LivingOrbital, aN as LivingOrbitalSchema, aO as LivingPage, aP as LivingState, aQ as LivingTrait, aR as LivingTransition, aS as LivingValue, aT as LivingVertex, aU as LlmCallToolsResult, aV as LlmContext, aW as LlmMessage, aX as LlmTokenUsage, aY as LlmToolCall, aZ as LlmToolDef, a_ as LoloEmitResult, a$ as MemoryContext, b0 as MessageEvent, b1 as OrbitalAddedEvent, b2 as OrbitalSchemaCompleteEvent, b3 as OrbitalVerificationAPI, P as PageContentReduction, b4 as ParamsRepairEmittedEvent, b5 as ParsedDesign, b6 as ParsedDomainContext, b7 as ParsedEmitDeclaration, b8 as ParsedEntity, b9 as ParsedEvent, ba as ParsedListenDeclaration, bb as ParsedOrbital, bc as ParsedPage, bd as ParsedState, be as ParsedStateMachine, bf as ParsedTrait, bg as ParsedTraitConfig, bh as ParsedTransition, bi as PatternNode, bj as PatternTypeSchema, bk as PatternValue, bl as PersistActionName, bm as PlanSnapshot, bn as PlanSnapshotStatus, bo as PlannerResult, bp as Probability, bq as ProcessCompleteEvent, br as ProcessErrorEvent, bs as ProcessRepairCompleteEvent, bt as ProcessRepairEvent, bu as ProcessStartEvent, bv as RENDER_BINDING_MARKER, bw as RawUserClaims, bx as RenderBindingMarker, bC as RepairResult, a as ResolvedEntity, bD as ResolvedEntityBinding, bE as ResolvedField, R as ResolvedIR, bF as ResolvedNavigation, b as ResolvedPage, bG as ResolvedPattern, bH as ResolvedSection, bI as ResolvedSectionEvent, c as ResolvedTrait, bJ as ResolvedTraitBinding, bK as ResolvedTraitDataEntity, bL as ResolvedTraitEvent, bM as ResolvedTraitGuard, bN as ResolvedTraitListener, bO as ResolvedTraitState, bP as ResolvedTraitTick, bQ as ResolvedTraitTransition, bR as ResolvedTraitUIBinding, bS as SSEEvent, bT as SSEEventBase, bU as SSEEventType, bV as SaveOptions, bW as SaveResult, S as SchemaChange, bX as SchemaPhaseUpdateEvent, bY as SchemaPhaseValidatedEvent, bZ as SchemaUpdateEvent, b_ as SemanticAnnotation, b$ as SemanticChangeKind, e as SemanticSchemaChange, c0 as SemanticVector, c1 as ServerResponseTrace, c2 as ServiceAction, c3 as ServiceActionName, c4 as ServiceCallResult, c5 as ServiceContract, c6 as ServiceEvents, c7 as SessionContext, c8 as SessionHistoryEntry, c9 as SnapshotCreatedEvent, ca as SnapshotDocument, cb as SpawnResult, cc as StartEvent, cd as StatsView, ce as StoreContract, cf as StoreFilter, cg as StoreFilterOp, ch as SubagentCompleteEvent, ci as SubagentEvent, cj as SubagentProgressEvent, ck as SubagentStartEvent, cl as TodoActivityType, cm as TodoDetailEvent, cn as TodoUpdateEvent, co as ToolCallEvent, cp as ToolResultEvent, cq as TraceContext, cr as TraitFieldRef, cs as TraitFieldRefSchema, ct as TraitStateSnapshot, cu as TransitionFrom, cv as TransitionTrace, cw as Unsubscribe, cx as UserContext, cy as ValidateResult, cz as ValidationDocument, cA as ValidationError, cB as ValidationErrorCode, cC as ValidationIssue, cD as ValidationMeta, cE as ValidationResult, cF as ValidationResults, cG as VerificationCheck, cH as VerificationSnapshot, cI as VerificationSummary, cJ as VertexId, cK as VertexPayload, cL as VertexType, cM as ViewFlow, cN as WorkspaceContext, cP as containsEntityBinding, cQ as containsPayloadBinding, cR as createEmptyResolvedPage, cS as createEmptyResolvedTrait, cT as createLazyService, cU as createResolvedField, cV as createTypedEventBus, cW as decodeDevIdentityToken, cX as encodeDevIdentityToken, cY as findPersonaInRoster, c_ as getBindingExamples, c$ as getInteractionModelForDomain, d0 as inferTsType, d2 as isKnownValidationErrorCode, d3 as isPlanSnapshot, d4 as isRenderBindingMarker, d5 as isResolvedIR, d6 as isSessionHistoryEntry, d7 as isTraitFieldRef, d9 as normalizeUserContext, da as personaFromIdentityRow, dd as resolveDefaultViewer, de as resolvePersonaSpec, dg as toBindingRoot, dh as validateBindingInContext, di as widenTier } from '../index-BFortVj8.js';
5
- export { l as CONFIG_REF_EVENT_PATTERN, i as CallSiteConfig, j as CallSiteConfigEntry, C as ConfigFieldDeclaration, m as ConfigFieldDeclarationSchema, n as ConfigFieldItemsDeclaration, o as ConfigRefEventError, D as DeclaredTraitConfig, p as DeclaredTraitConfigSchema, q as EntityFieldContract, r as EntityFieldContractSchema, s as Event, t as EventInput, E as EventPayloadField, u as EventPayloadFieldSchema, v as EventSchema, w as EventScope, x as EventScopeSchema, G as Guard, y as GuardInput, z as GuardSchema, L as ListenSource, A as ListenSourceSchema, O as OrbitalTraitRef, B as OrbitalTraitRefSchema, P as PayloadField, F as PayloadFieldSchema, H as PayloadTypeWhen, I as PayloadTypeWhenSchema, J as PresentationType, R as REFERENCE_CONFIG_TYPES, K as ReferenceConfigType, M as RequiredField, N as RequiredFieldSchema, Q as SECRET_CONFIG_TYPES, U as SecretConfigType, S as State, V as StateInput, W as StateMachine, X as StateMachineInput, Y as StateMachineSchema, Z as StateSchema, _ as TickIntervalSchema, h as Trait, $ as TraitCategory, a0 as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, a1 as TraitConfigSchema, g as TraitConfigValue, a2 as TraitConfigValueSchema, a3 as TraitDataEntity, a4 as TraitDataEntitySchema, e as TraitEntityField, a5 as TraitEntityFieldSchema, k as TraitEventContract, a6 as TraitEventContractSchema, T as TraitEventListener, a7 as TraitEventListenerSchema, a8 as TraitInput, d as TraitRef, a9 as TraitRefSchema, a as TraitReference, aa as TraitReferenceInput, ab as TraitReferenceSchema, ac as TraitSchema, ad as TraitTick, ae as TraitTickSchema, af as TraitUIBinding, ag as TraitUIBindingSchema, ah as Transition, ai as TransitionInput, aj as TransitionSchema, ak as configRefEventKnob, al as getTraitConfig, am as getTraitName, an as isCallSiteConfigDeclaration, ao as isCircuitEvent, ap as isInlineTrait, aq as isReferenceConfigType, ar as isSecretConfigType, as as maskSecretConfigValues, at as normalizeCallSiteConfigToValues, au as normalizeTraitRef, av as overrideDeclaredKnobs, aw as resolveConfigRefEventName } from '../trait-DHb48lyx.js';
4
+ export { A as ANONYMOUS_USER, f as AgentCodeSearchResult, g as AgentCompactResult, h as AgentCompactStrategy, i as AgentContext, j as AgentGenerateOptions, k as AgentMemoryCategory, l as AgentMemoryRecord, m as AnalysisOrbital, n as AnalysisOrbitalParams, o as AnalysisPageOverride, p as AnalysisRename, q as AnalysisResult, r as AnnotationTier, s as AppCreatedEvent, t as AppSummary, u as AssetLoadStatus, B as BINDING_CONTEXT_RULES, v as BINDING_DOCS, w as BINDING_ROOTS, x as BindingContext, y as BindingRoot, z as BindingSchema, D as BridgeHealth, E as BuilderResult, F as BusEvent, G as BusEventListener, H as BusEventSource, I as CancelledEvent, d as CategorizedRemovals, J as ChangeAuthor, K as ChangeSetDocument, L as ChangeSummary, M as ChangesetRecordedEvent, C as ChangesetValue, N as CheckStatus, O as Clarification, Q as ClarificationCandidate, T as ClarificationLevel, U as CompleteEvent, V as ComplexityAssessment, W as ComposeAllResult, X as ComposeChildrenResult, Y as ComposeOptions, Z as ContextExtensions, _ as CreateFlow, $ as DEFAULT_INTERACTION_MODELS, a0 as DEFAULT_VIEWER, a1 as DEV_TOKEN_PREFIX, a2 as DeleteFlow, a3 as DispatchUpdatesResult, a4 as DrawableDescriptor, a5 as EdgeType, a6 as EditFlow, a9 as EffectPayload, aa as EffectResult, ab as EffectTrace, ac as EmittedEvent, ad as ErrorEvent, ae as EventDispatchRequest, af as EventDispatchResponse, ag as EventEmit, ah as EventKey, ai as EventListen, aj as EventLogEntry, ak as EvolutionDelta, al as ExecutePlanResult, am as ExtraTraitRef, an as FileOperationEvent, ao as FileWrittenEvent, ap as GateState, aq as GenerationLogEvent, ar as GitHubIssue, as as GitHubLink, at as GitHubRepo, au as HistoryMeta, av as IntegrationContext, aw as InteractionModel, ax as InteractionModelInput, ay as InteractionModelSchema, az as InterruptEvent, aA as KNOWN_VALIDATION_ERROR_CODES, aB as KnobPayload, aC as KnownValidationErrorCode, aD as LLMErrorContext, aE as LazyService, aF as LineageEntry, aG as ListInteraction, aH as LivingEdge, aI as LivingEffect, aJ as LivingEntity, aK as LivingEvent, aL as LivingField, aM as LivingOrbital, aN as LivingOrbitalSchema, aO as LivingPage, aP as LivingState, aQ as LivingTrait, aR as LivingTransition, aS as LivingValue, aT as LivingVertex, aU as LlmCallToolsResult, aV as LlmContext, aW as LlmMessage, aX as LlmTokenUsage, aY as LlmToolCall, aZ as LlmToolDef, a_ as LoloEmitResult, a$ as MemoryContext, b0 as MessageEvent, b1 as OrbitalAddedEvent, b2 as OrbitalSchemaCompleteEvent, b3 as OrbitalVerificationAPI, P as PageContentReduction, b4 as ParamsRepairEmittedEvent, b5 as ParsedDesign, b6 as ParsedDomainContext, b7 as ParsedEmitDeclaration, b8 as ParsedEntity, b9 as ParsedEvent, ba as ParsedListenDeclaration, bb as ParsedOrbital, bc as ParsedPage, bd as ParsedState, be as ParsedStateMachine, bf as ParsedTrait, bg as ParsedTraitConfig, bh as ParsedTransition, bi as PatternNode, bj as PatternTypeSchema, bk as PatternValue, bl as PersistActionName, bm as PlanSnapshot, bn as PlanSnapshotStatus, bo as PlannerResult, bp as Probability, bq as ProcessCompleteEvent, br as ProcessErrorEvent, bs as ProcessRepairCompleteEvent, bt as ProcessRepairEvent, bu as ProcessStartEvent, bv as RENDER_BINDING_MARKER, bw as RawUserClaims, bx as RenderBindingMarker, bC as RepairResult, a as ResolvedEntity, bD as ResolvedEntityBinding, bE as ResolvedField, R as ResolvedIR, bF as ResolvedNavigation, b as ResolvedPage, bG as ResolvedPattern, bH as ResolvedSection, bI as ResolvedSectionEvent, c as ResolvedTrait, bJ as ResolvedTraitBinding, bK as ResolvedTraitDataEntity, bL as ResolvedTraitEvent, bM as ResolvedTraitGuard, bN as ResolvedTraitListener, bO as ResolvedTraitState, bP as ResolvedTraitTick, bQ as ResolvedTraitTransition, bR as ResolvedTraitUIBinding, bS as SSEEvent, bT as SSEEventBase, bU as SSEEventType, bV as SaveOptions, bW as SaveResult, S as SchemaChange, bX as SchemaPhaseUpdateEvent, bY as SchemaPhaseValidatedEvent, bZ as SchemaUpdateEvent, b_ as SemanticAnnotation, b$ as SemanticChangeKind, e as SemanticSchemaChange, c0 as SemanticVector, c1 as ServerResponseTrace, c2 as ServiceAction, c3 as ServiceActionName, c4 as ServiceCallResult, c5 as ServiceContract, c6 as ServiceEvents, c7 as SessionContext, c8 as SessionHistoryEntry, c9 as SnapshotCreatedEvent, ca as SnapshotDocument, cb as SpawnResult, cc as StartEvent, cd as StatsView, ce as StoreContract, cf as StoreFilter, cg as StoreFilterOp, ch as SubagentCompleteEvent, ci as SubagentEvent, cj as SubagentProgressEvent, ck as SubagentStartEvent, cl as TodoActivityType, cm as TodoDetailEvent, cn as TodoUpdateEvent, co as ToolCallEvent, cp as ToolResultEvent, cq as TraceContext, cr as TraitFieldRef, cs as TraitFieldRefSchema, ct as TraitStateSnapshot, cu as TransitionFrom, cv as TransitionTrace, cw as Unsubscribe, cx as UserContext, cy as ValidateResult, cz as ValidationDocument, cA as ValidationError, cB as ValidationErrorCode, cC as ValidationIssue, cD as ValidationMeta, cE as ValidationResult, cF as ValidationResults, cG as VerificationCheck, cH as VerificationSnapshot, cI as VerificationSummary, cJ as VertexId, cK as VertexPayload, cL as VertexType, cM as ViewFlow, cN as WorkspaceContext, cP as containsEntityBinding, cQ as containsPayloadBinding, cR as createEmptyResolvedPage, cS as createEmptyResolvedTrait, cT as createLazyService, cU as createResolvedField, cV as createTypedEventBus, cW as decodeDevIdentityToken, cX as encodeDevIdentityToken, cY as findPersonaInRoster, c_ as getBindingExamples, c$ as getInteractionModelForDomain, d0 as inferTsType, d2 as isKnownValidationErrorCode, d3 as isPlanSnapshot, d4 as isRenderBindingMarker, d5 as isResolvedIR, d6 as isSessionHistoryEntry, d7 as isTraitFieldRef, d9 as normalizeUserContext, da as personaFromIdentityRow, dd as resolveDefaultViewer, de as resolvePersonaSpec, dg as toBindingRoot, dh as validateBindingInContext, di as widenTier } from '../index-CWArRU6P.js';
5
+ export { l as CONFIG_REF_EVENT_PATTERN, i as CallSiteConfig, j as CallSiteConfigEntry, C as ConfigFieldDeclaration, m as ConfigFieldDeclarationSchema, n as ConfigFieldItemsDeclaration, o as ConfigRefEventError, D as DeclaredTraitConfig, p as DeclaredTraitConfigSchema, q as EntityFieldContract, r as EntityFieldContractSchema, s as Event, t as EventInput, E as EventPayloadField, u as EventPayloadFieldSchema, v as EventSchema, w as EventScope, x as EventScopeSchema, G as Guard, y as GuardInput, z as GuardSchema, L as ListenSource, A as ListenSourceSchema, O as OrbitalTraitRef, B as OrbitalTraitRefSchema, P as PayloadField, F as PayloadFieldSchema, H as PayloadTypeWhen, I as PayloadTypeWhenSchema, J as PresentationType, R as REFERENCE_CONFIG_TYPES, K as ReferenceConfigType, M as RequiredField, N as RequiredFieldSchema, Q as SECRET_CONFIG_TYPES, U as SecretConfigType, S as State, V as StateInput, W as StateMachine, X as StateMachineInput, Y as StateMachineSchema, Z as StateSchema, _ as TickIntervalSchema, h as Trait, $ as TraitCategory, a0 as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, a1 as TraitConfigSchema, g as TraitConfigValue, a2 as TraitConfigValueSchema, a3 as TraitDataEntity, a4 as TraitDataEntitySchema, e as TraitEntityField, a5 as TraitEntityFieldSchema, k as TraitEventContract, a6 as TraitEventContractSchema, T as TraitEventListener, a7 as TraitEventListenerSchema, a8 as TraitInput, d as TraitRef, a9 as TraitRefSchema, a as TraitReference, aa as TraitReferenceInput, ab as TraitReferenceSchema, ac as TraitSchema, ad as TraitTick, ae as TraitTickSchema, af as TraitUIBinding, ag as TraitUIBindingSchema, ah as Transition, ai as TransitionInput, aj as TransitionSchema, ak as configRefEventKnob, al as getTraitConfig, am as getTraitName, an as isCallSiteConfigDeclaration, ao as isCircuitEvent, ap as isInlineTrait, aq as isReferenceConfigType, ar as isSecretConfigType, as as maskSecretConfigValues, at as normalizeCallSiteConfigToValues, au as normalizeTraitRef, av as overrideDeclaredKnobs, aw as resolveConfigRefEventName } from '../trait-DSMzclmJ.js';
6
6
  export { a as JsonObject, J as JsonValue, R as RuntimeValue, T as ToolArgs, i as isJsonArray, b as isJsonObject, c as isJsonPrimitive } from '../json-D8gmyK3l.js';
7
7
  import 'zod';
8
- import '../types-F5EPwMor.js';
8
+ import '../types-DzkFdgNJ.js';
9
9
  import '../builders.js';
@@ -2707,6 +2707,7 @@ var PATTERN_TYPES = [
2707
2707
  "game-icon",
2708
2708
  "game-menu",
2709
2709
  "game-shell",
2710
+ "gantt",
2710
2711
  "generic-app-template",
2711
2712
  "geometric-pattern",
2712
2713
  "gradient-divider",