@almadar/core 10.70.0 → 10.71.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-08-25T01:35:07.912Z",
3
+ "exportedAt": "2026-08-28T09:02:57.076Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -26399,91 +26399,6 @@
26399
26399
  }
26400
26400
  }
26401
26401
  },
26402
- "rich-block-editor": {
26403
- "type": "rich-block-editor",
26404
- "category": "display",
26405
- "tier": "molecules",
26406
- "family": "core",
26407
- "description": "RichBlockEditor component",
26408
- "suggestedFor": [
26409
- "rich",
26410
- "block",
26411
- "editor",
26412
- "rich block editor"
26413
- ],
26414
- "typicalSize": "large",
26415
- "propsSchema": {
26416
- "initialBlocks": {
26417
- "types": [
26418
- "object",
26419
- "array"
26420
- ],
26421
- "description": "Initial block payload — the rows that orb-bound traits emit. Items missing id/type are normalized into paragraph blocks at mount.",
26422
- "kind": "entity",
26423
- "cardinality": "collection"
26424
- },
26425
- "onChange": {
26426
- "types": [
26427
- "function"
26428
- ],
26429
- "description": "onChange prop",
26430
- "kind": "callback",
26431
- "callbackArgs": [
26432
- {
26433
- "name": "blocks",
26434
- "type": "array"
26435
- }
26436
- ]
26437
- },
26438
- "changeEvent": {
26439
- "types": [
26440
- "string"
26441
- ],
26442
- "description": "changeEvent prop",
26443
- "kind": "event-ref",
26444
- "emitPayloadSchema": [
26445
- {
26446
- "name": "blocks",
26447
- "type": "array",
26448
- "required": true
26449
- }
26450
- ]
26451
- },
26452
- "readOnly": {
26453
- "types": [
26454
- "boolean"
26455
- ],
26456
- "description": "readOnly prop",
26457
- "default": false
26458
- },
26459
- "placeholder": {
26460
- "types": [
26461
- "string"
26462
- ],
26463
- "description": "placeholder prop"
26464
- },
26465
- "enableBlocks": {
26466
- "types": [
26467
- "boolean"
26468
- ],
26469
- "description": "Opt-in to the Notion-style block authoring chrome (insert toolbar, per-row +/menu gutter, turn-into menu). Off by default: the editor renders as a plain rich text surface that edits block content inline without any add-block affordances.",
26470
- "default": true
26471
- },
26472
- "showToolbar": {
26473
- "types": [
26474
- "boolean"
26475
- ],
26476
- "description": "showToolbar prop",
26477
- "default": true
26478
- },
26479
- "className": {
26480
- "types": [
26481
- "string"
26482
- ],
26483
- "description": "className prop"
26484
- }
26485
- }
26486
- },
26487
26402
  "version-diff": {
26488
26403
  "type": "version-diff",
26489
26404
  "category": "display",
@@ -47749,6 +47664,399 @@
47749
47664
  },
47750
47665
  "drawable": true,
47751
47666
  "drawHost": true
47667
+ },
47668
+ "rich-text-editor": {
47669
+ "type": "rich-text-editor",
47670
+ "category": "component",
47671
+ "tier": "molecules",
47672
+ "family": "core",
47673
+ "description": "RichTextEditor component",
47674
+ "suggestedFor": [
47675
+ "rich",
47676
+ "text",
47677
+ "editor",
47678
+ "rich text editor"
47679
+ ],
47680
+ "typicalSize": "medium",
47681
+ "propsSchema": {
47682
+ "value": {
47683
+ "types": [
47684
+ "string"
47685
+ ],
47686
+ "description": "The rich text content as HTML. Sanitized before rendering and on every change."
47687
+ },
47688
+ "onChange": {
47689
+ "types": [
47690
+ "function"
47691
+ ],
47692
+ "description": "onChange prop",
47693
+ "kind": "callback",
47694
+ "callbackArgs": [
47695
+ {
47696
+ "name": "value",
47697
+ "type": "string"
47698
+ }
47699
+ ]
47700
+ },
47701
+ "changeEvent": {
47702
+ "types": [
47703
+ "string"
47704
+ ],
47705
+ "description": "changeEvent prop",
47706
+ "kind": "event-ref",
47707
+ "emitPayloadSchema": [
47708
+ {
47709
+ "name": "value",
47710
+ "type": "string",
47711
+ "required": true
47712
+ }
47713
+ ]
47714
+ },
47715
+ "readOnly": {
47716
+ "types": [
47717
+ "boolean"
47718
+ ],
47719
+ "description": "readOnly prop",
47720
+ "default": false
47721
+ },
47722
+ "placeholder": {
47723
+ "types": [
47724
+ "string"
47725
+ ],
47726
+ "description": "placeholder prop"
47727
+ },
47728
+ "showToolbar": {
47729
+ "types": [
47730
+ "boolean"
47731
+ ],
47732
+ "description": "showToolbar prop",
47733
+ "default": true
47734
+ },
47735
+ "className": {
47736
+ "types": [
47737
+ "string"
47738
+ ],
47739
+ "description": "className prop"
47740
+ }
47741
+ }
47742
+ },
47743
+ "document-panel": {
47744
+ "type": "document-panel",
47745
+ "category": "component",
47746
+ "tier": "molecules",
47747
+ "family": "core",
47748
+ "description": "DocumentPanel — a record rendered as one continuous document: editable title over the rich-text body, editing controls tucked into the header corner.",
47749
+ "capabilities": "document page, note editor, wiki page, article editor, writing surface, rich text document, content editing canvas",
47750
+ "suggestedFor": [
47751
+ "document",
47752
+ "panel",
47753
+ "document panel"
47754
+ ],
47755
+ "typicalSize": "medium",
47756
+ "propsSchema": {
47757
+ "entity": {
47758
+ "types": [
47759
+ "object"
47760
+ ],
47761
+ "description": "The loaded record — supplies the id every commit event carries.",
47762
+ "kind": "entity",
47763
+ "cardinality": "record"
47764
+ },
47765
+ "title": {
47766
+ "types": [
47767
+ "string"
47768
+ ],
47769
+ "description": "Document title (falls back to \"Untitled\" for a blank draft)"
47770
+ },
47771
+ "subtitle": {
47772
+ "types": [
47773
+ "string"
47774
+ ],
47775
+ "description": "Muted byline under the title; hidden when empty"
47776
+ },
47777
+ "value": {
47778
+ "types": [
47779
+ "string"
47780
+ ],
47781
+ "description": "The document body as rich-text HTML"
47782
+ },
47783
+ "actions": {
47784
+ "types": [
47785
+ "array"
47786
+ ],
47787
+ "description": "Header actions (settings, history, …). At most one explicit primary stays inline; the rest live under a single \"⋯\" menu — the title owns its row.",
47788
+ "kind": "event-list",
47789
+ "eventField": "event",
47790
+ "items": {
47791
+ "types": [
47792
+ "object"
47793
+ ],
47794
+ "properties": {
47795
+ "label": {
47796
+ "types": [
47797
+ "string"
47798
+ ]
47799
+ },
47800
+ "event": {
47801
+ "types": [
47802
+ "string"
47803
+ ]
47804
+ },
47805
+ "icon": {
47806
+ "types": [
47807
+ "icon",
47808
+ "string"
47809
+ ]
47810
+ },
47811
+ "variant": {
47812
+ "types": [
47813
+ "string"
47814
+ ],
47815
+ "enumValues": [
47816
+ "primary",
47817
+ "secondary",
47818
+ "ghost",
47819
+ "danger"
47820
+ ]
47821
+ }
47822
+ },
47823
+ "required": [
47824
+ "label"
47825
+ ]
47826
+ }
47827
+ },
47828
+ "maxInlineActions": {
47829
+ "types": [
47830
+ "number"
47831
+ ],
47832
+ "description": "0 collapses even the primary action into the menu"
47833
+ },
47834
+ "editing": {
47835
+ "types": [
47836
+ "boolean"
47837
+ ],
47838
+ "description": "false = read surface with click-to-edit body; true = live editor",
47839
+ "default": false
47840
+ },
47841
+ "titleCommitEvent": {
47842
+ "types": [
47843
+ "string"
47844
+ ],
47845
+ "description": "Emitted when the title commits: { title, id }",
47846
+ "kind": "event-ref",
47847
+ "emitPayloadSchema": [
47848
+ {
47849
+ "name": "title",
47850
+ "type": "string",
47851
+ "required": true
47852
+ },
47853
+ {
47854
+ "name": "id",
47855
+ "type": "string",
47856
+ "required": true
47857
+ }
47858
+ ]
47859
+ },
47860
+ "contentChangeEvent": {
47861
+ "types": [
47862
+ "string"
47863
+ ],
47864
+ "description": "Forwarded to the embedded RichTextEditor's autosave stream: { value }",
47865
+ "kind": "event-ref",
47866
+ "emitPayloadSchema": [
47867
+ {
47868
+ "name": "value",
47869
+ "type": "string",
47870
+ "required": true
47871
+ }
47872
+ ]
47873
+ },
47874
+ "editEvent": {
47875
+ "types": [
47876
+ "string"
47877
+ ],
47878
+ "description": "Emitted by the header Edit affordance and a click on the read body: { id }",
47879
+ "kind": "event-ref",
47880
+ "emitPayloadSchema": [
47881
+ {
47882
+ "name": "id",
47883
+ "type": "string",
47884
+ "required": true
47885
+ }
47886
+ ]
47887
+ },
47888
+ "doneEvent": {
47889
+ "types": [
47890
+ "string"
47891
+ ],
47892
+ "description": "Emitted by the Done button that ends the editing session: { id }",
47893
+ "kind": "event-ref",
47894
+ "emitPayloadSchema": [
47895
+ {
47896
+ "name": "id",
47897
+ "type": "string",
47898
+ "required": true
47899
+ }
47900
+ ]
47901
+ },
47902
+ "editLabel": {
47903
+ "types": [
47904
+ "string"
47905
+ ],
47906
+ "description": "editLabel prop"
47907
+ },
47908
+ "doneLabel": {
47909
+ "types": [
47910
+ "string"
47911
+ ],
47912
+ "description": "doneLabel prop"
47913
+ },
47914
+ "autosaveHint": {
47915
+ "types": [
47916
+ "string"
47917
+ ],
47918
+ "description": "Muted caption beside Done telling the author work persists on its own"
47919
+ },
47920
+ "placeholder": {
47921
+ "types": [
47922
+ "string"
47923
+ ],
47924
+ "description": "Placeholder for an empty body"
47925
+ },
47926
+ "className": {
47927
+ "types": [
47928
+ "string"
47929
+ ],
47930
+ "description": "className prop"
47931
+ }
47932
+ }
47933
+ },
47934
+ "document-details": {
47935
+ "type": "document-details",
47936
+ "category": "display",
47937
+ "tier": "molecules",
47938
+ "family": "core",
47939
+ "description": "DocumentDetails — the document's metadata as a compact settings card for the rail beside a DocumentPanel, each property committing in place.",
47940
+ "capabilities": "document settings, page details, post settings sidebar, metadata panel, document properties, publish settings",
47941
+ "suggestedFor": [
47942
+ "document",
47943
+ "details",
47944
+ "document details"
47945
+ ],
47946
+ "typicalSize": "medium",
47947
+ "propsSchema": {
47948
+ "entity": {
47949
+ "types": [
47950
+ "object"
47951
+ ],
47952
+ "description": "The loaded record — supplies the id every commit carries and the values the rows read.",
47953
+ "kind": "entity",
47954
+ "cardinality": "record"
47955
+ },
47956
+ "fields": {
47957
+ "types": [
47958
+ "array"
47959
+ ],
47960
+ "description": "The properties shown; empty renders nothing.",
47961
+ "items": {
47962
+ "types": [
47963
+ "object"
47964
+ ],
47965
+ "properties": {
47966
+ "name": {
47967
+ "types": [
47968
+ "string"
47969
+ ]
47970
+ },
47971
+ "key": {
47972
+ "types": [
47973
+ "string"
47974
+ ]
47975
+ },
47976
+ "label": {
47977
+ "types": [
47978
+ "string"
47979
+ ]
47980
+ },
47981
+ "header": {
47982
+ "types": [
47983
+ "string"
47984
+ ]
47985
+ },
47986
+ "icon": {
47987
+ "types": [
47988
+ "icon",
47989
+ "string"
47990
+ ]
47991
+ },
47992
+ "kind": {
47993
+ "types": [
47994
+ "string"
47995
+ ],
47996
+ "enumValues": [
47997
+ "text",
47998
+ "boolean",
47999
+ "select",
48000
+ "readonly"
48001
+ ]
48002
+ },
48003
+ "options": {
48004
+ "types": [
48005
+ "array"
48006
+ ],
48007
+ "items": {
48008
+ "types": [
48009
+ "string"
48010
+ ]
48011
+ }
48012
+ },
48013
+ "format": {
48014
+ "types": [
48015
+ "string"
48016
+ ],
48017
+ "enumValues": [
48018
+ "date",
48019
+ "currency",
48020
+ "number",
48021
+ "boolean",
48022
+ "percent"
48023
+ ]
48024
+ }
48025
+ }
48026
+ }
48027
+ },
48028
+ "metaCommitEvent": {
48029
+ "types": [
48030
+ "string"
48031
+ ],
48032
+ "description": "Emitted when a property commits: { id, patch } — patch carries the id plus the one changed field, ready for a partial persist update.",
48033
+ "kind": "event-ref",
48034
+ "emitPayloadSchema": [
48035
+ {
48036
+ "name": "id",
48037
+ "type": "string",
48038
+ "required": true
48039
+ },
48040
+ {
48041
+ "name": "patch",
48042
+ "type": "object",
48043
+ "required": true
48044
+ }
48045
+ ]
48046
+ },
48047
+ "title": {
48048
+ "types": [
48049
+ "string"
48050
+ ],
48051
+ "description": "Card heading (defaults to the localized \"Details\")"
48052
+ },
48053
+ "className": {
48054
+ "types": [
48055
+ "string"
48056
+ ],
48057
+ "description": "className prop"
48058
+ }
48059
+ }
47752
48060
  }
47753
48061
  },
47754
48062
  "categories": [
@@ -1,6 +1,6 @@
1
- import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-SUGkA3Jn.js';
1
+ import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-CdcDJqPW.js';
2
2
  import { J as JsonValue, E as Expression, S as SExpr, R as RuntimeValue } from './expression-Fk8bQWef.js';
3
- 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, g as ServiceDefinition, I as IdentityLedger } from './effect-CNaVPA4-.js';
3
+ 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, g as ServiceDefinition, I as IdentityLedger } from './effect-CrsTJ7h8.js';
4
4
  import { z } from 'zod';
5
5
 
6
6
  /**
@@ -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-CNaVPA4-.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-CrsTJ7h8.js';
2
2
  import { E as Expression, S as SExpr, J as JsonValue } from './expression-Fk8bQWef.js';
3
3
  import { z } from 'zod';
4
4
 
@@ -1,8 +1,8 @@
1
- export { A as AGENT_DOMAIN_CATEGORIES, f as ALLOWED_CUSTOM_COMPONENTS, g as AgentDomainCategory, h as AgentDomainCategorySchema, i as AllowedCustomComponent, O as AppSchema, C as ColorSlice, j as ColorSliceSchema, k as ColorTokens, l as ColorTokensSchema, m as ComputedEventContract, n as ComputedEventContractSchema, o as ComputedEventListener, p as ComputedEventListenerSchema, q as ConfigProvenanceRecord, r as ConfigProvenanceRecordSchema, s as CustomPatternDefinition, t as CustomPatternDefinitionInput, u as CustomPatternDefinitionSchema, v as CustomPatternMap, w as CustomPatternMapInput, x as CustomPatternMapSchema, D as DensitySlice, y as DensitySliceSchema, z as DensityTokens, B as DensityTokensSchema, F as DesignPreferences, G as DesignPreferencesInput, H as DesignPreferencesSchema, I as DesignTokens, J as DesignTokensInput, K as DesignTokensSchema, L as DomainCategory, M as DomainCategorySchema, N as DomainContext, Q as DomainContextInput, R as DomainContextSchema, S as DomainVocabulary, T as DomainVocabularySchema, V as ElevationSlice, W as ElevationSliceSchema, X as ElevationTokens, Y as ElevationTokensSchema, Z as EntityCall, _ as EntityCallSchema, E as EntityRef, $ as EntityRefSchema, a0 as EntityRefStringSchema, a1 as EntitySemanticRole, a2 as EntitySemanticRoleSchema, a3 as EventListener, a4 as EventListenerSchema, a5 as EventSemanticRole, a6 as EventSemanticRoleSchema, a7 as EventSource, a8 as EventSourceSchema, b as ExpectDeclaration, a9 as ExpectDeclarationSchema, aa as FullOrbitalUnit, ab as GameSubCategory, ac as GameSubCategorySchema, ad as GeometrySlice, ae as GeometrySliceSchema, af as GeometryTokens, ag as GeometryTokensSchema, ah as IconFamily, ai as IconFamilySchema, aj as IconographySlice, ak as IconographySliceSchema, al as IconographyTokens, am as IconographyTokensSchema, an as IllustrationSlice, ao as IllustrationSliceSchema, ap as IllustrationStyle, aq as IllustrationStyleSchema, ar as IllustrationTokens, as as IllustrationTokensSchema, at as MotionDurationKey, au as MotionDurationKeySchema, av as MotionDurationPalette, aw as MotionDurationPaletteSchema, ax as MotionEasingKey, ay as MotionEasingKeySchema, az as MotionEasingPalette, aA as MotionEasingPaletteSchema, aB as MotionIntent, aC as MotionIntentMap, aD as MotionIntentMapSchema, aE as MotionIntentSchema, aF as MotionSlice, aG as MotionSliceSchema, aH as MotionTokens, aI as MotionTokensSchema, aJ as NavItem, aK as NavStackEntry, aL as NodeClassification, aM as NodeClassificationSchema, aa as Orbital, aN as OrbitalConfig, aO as OrbitalConfigInput, aP as OrbitalConfigSchema, a as OrbitalDefinition, aQ as OrbitalDefinitionSchema, aR as OrbitalInput, e as OrbitalPage, aS as OrbitalPageInput, aT as OrbitalPageSchema, aU as OrbitalPageStrictInput, aV as OrbitalPageStrictSchema, 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 isEntityCall, bS as isEntityReference, bT as isEntityReferenceAny, bU as isImportedTraitRef, bV as isOrbitalDefinition, bW as isPageReference, bX as isPageReferenceObject, bY as isPageReferenceString, bZ as isThemeReference, b_ as parseEntityRef, b$ as parseImportedTraitRef, c0 as parseOrbitalSchema, c1 as parsePageRef, c2 as safeParseOrbitalSchema } from '../schema-8Mhua_qQ.js';
2
- export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as NavigateBackEffect, aK as NavigateEffect, aL as NavigateOptions, aM as NnConfig, aN as NnLayer, aO as NotifyEffect, aP as ObjectEntityField, aQ as OrbitalEntity, aR as OrbitalEntityInput, aS as OrbitalEntitySchema, O as OrbitalId, aT as OrbitalIdSchema, aU as OsEffect, aV as PATTERN_TYPES, P as PageId, aW as PageIdSchema, aX as PaletteEntryId, aY as PaletteEntryIdSchema, aZ as PatternConfig, b0 as PatternType, b1 as PersistData, b2 as PersistEffect, b3 as PersistEmitConfig, b4 as RefEffect, R as RelationConfig, b5 as RelationConfigSchema, b6 as RelationEntityField, h as RenderBinding, b7 as RenderChildrenMap, b8 as RenderItemLambda, i as RenderUIEffect, b9 as RenderUINode, ba as ResolvedPatternProps, bb as RestAuthConfig, bc as RestAuthConfigSchema, bd as RestServiceDef, be as RestServiceDefSchema, bf as SEMANTIC_STRING_TYPES, bg as SERVICE_TYPES, bh as SHEET_PROJECTIONS, bi as SPRITE_DIRECTIONS, bj as ScalarEntityField, bk as ScenePos, bl as ScenePosSchema, bm as SemanticAssetRef, bn as SemanticAssetRefInput, bo as SemanticAssetRefSchema, bp as SemanticStringType, g as ServiceDefinition, bq as ServiceDefinitionSchema, br as ServiceId, bs as ServiceIdSchema, bt as ServiceParams, bu as ServiceParamsValue, S as ServiceRef, bv as ServiceRefObject, bw as ServiceRefObjectSchema, bx as ServiceRefSchema, by as ServiceRefStringSchema, bz as ServiceType, bA as ServiceTypeSchema, bB as SessionEffect, bC as SetEffect, bD as SheetProjection, bE as SheetProjectionSchema, bF as SocketEvents, bG as SocketEventsSchema, bH as SocketServiceDef, bI as SocketServiceDefSchema, bJ as SpawnEffect, bK as SpriteDirection, bL as SpriteDirectionSchema, bM as SpriteSheetAtlas, bN as SpriteSheetAtlasInput, bO as SpriteSheetAtlasSchema, bP as SubTexture, bQ as SubTextureSchema, bR as SwapEffect, bS as TextureAtlas, bT as TextureAtlasSchema, bU as ThemeId, bV as ThemeIdSchema, bW as Tilesheet, bX as TilesheetSchema, bY as TraceEffect, bZ as TrainConfig, b_ as TrainEffect, T as TraitId, b$ as TraitIdSchema, c0 as TypedEffect, U as UISlot, c1 as UISlotSchema, c2 as UI_SLOTS, c3 as VISUAL_STYLES, c4 as ValidateEffect, c5 as VisualStyle, c6 as VisualStyleSchema, c7 as WatchEffect, c8 as WatchOptions, c9 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 deref, cl as deriveCollection, cm as despawn, cn as doEffects, co as emit, cp as findService, cq as getDefaultAnimationsForRole, cr as getServiceNames, cs as hasService, ct as idKindOf, cu as idPrefix, cv as isEffect, cw as isEmailValue, cx as isEntityId, cy as isEventId, cz as isFieldValue, cA as isFileValue, cB as isMcpService, cC as isOrbitalId, cD as isPageId, cE as isPaletteEntryId, cF as isPhoneValue, cG as isRestService, cH as isRuntimeEntity, cI as isSExprEffect, cJ as isSemanticStringType, cK as isSemanticStringValue, cL as isServiceId, cM as isServiceReference, cN as isServiceReferenceObject, cO as isSocketService, cP as isThemeId, cQ as isTraitId, cR as isUrlValue, cS as isUuidValue, cT as isValidPatternType, cU as ledgerCurName, cV as ledgerRename, cW as ledgerResolveName, cX as mintId, cY as navigate, cZ as navigateBack, c_ as notify, c$ as parseAssetKey, d0 as parseServiceRef, d1 as persist, d2 as persistenceModeAllowsOverrides, d3 as ref, d4 as renderUI, d5 as set, d6 as spawn, d7 as swap, d8 as validateAssetAnimations, d9 as watch } from '../effect-CNaVPA4-.js';
1
+ export { A as AGENT_DOMAIN_CATEGORIES, f as ALLOWED_CUSTOM_COMPONENTS, g as AgentDomainCategory, h as AgentDomainCategorySchema, i as AllowedCustomComponent, O as AppSchema, C as ColorSlice, j as ColorSliceSchema, k as ColorTokens, l as ColorTokensSchema, m as ComputedEventContract, n as ComputedEventContractSchema, o as ComputedEventListener, p as ComputedEventListenerSchema, q as ConfigProvenanceRecord, r as ConfigProvenanceRecordSchema, s as CustomPatternDefinition, t as CustomPatternDefinitionInput, u as CustomPatternDefinitionSchema, v as CustomPatternMap, w as CustomPatternMapInput, x as CustomPatternMapSchema, D as DensitySlice, y as DensitySliceSchema, z as DensityTokens, B as DensityTokensSchema, F as DesignPreferences, G as DesignPreferencesInput, H as DesignPreferencesSchema, I as DesignTokens, J as DesignTokensInput, K as DesignTokensSchema, L as DomainCategory, M as DomainCategorySchema, N as DomainContext, Q as DomainContextInput, R as DomainContextSchema, S as DomainVocabulary, T as DomainVocabularySchema, V as ElevationSlice, W as ElevationSliceSchema, X as ElevationTokens, Y as ElevationTokensSchema, Z as EntityCall, _ as EntityCallSchema, E as EntityRef, $ as EntityRefSchema, a0 as EntityRefStringSchema, a1 as EntitySemanticRole, a2 as EntitySemanticRoleSchema, a3 as EventListener, a4 as EventListenerSchema, a5 as EventSemanticRole, a6 as EventSemanticRoleSchema, a7 as EventSource, a8 as EventSourceSchema, b as ExpectDeclaration, a9 as ExpectDeclarationSchema, aa as FullOrbitalUnit, ab as GameSubCategory, ac as GameSubCategorySchema, ad as GeometrySlice, ae as GeometrySliceSchema, af as GeometryTokens, ag as GeometryTokensSchema, ah as IconFamily, ai as IconFamilySchema, aj as IconographySlice, ak as IconographySliceSchema, al as IconographyTokens, am as IconographyTokensSchema, an as IllustrationSlice, ao as IllustrationSliceSchema, ap as IllustrationStyle, aq as IllustrationStyleSchema, ar as IllustrationTokens, as as IllustrationTokensSchema, at as MotionDurationKey, au as MotionDurationKeySchema, av as MotionDurationPalette, aw as MotionDurationPaletteSchema, ax as MotionEasingKey, ay as MotionEasingKeySchema, az as MotionEasingPalette, aA as MotionEasingPaletteSchema, aB as MotionIntent, aC as MotionIntentMap, aD as MotionIntentMapSchema, aE as MotionIntentSchema, aF as MotionSlice, aG as MotionSliceSchema, aH as MotionTokens, aI as MotionTokensSchema, aJ as NavItem, aK as NavStackEntry, aL as NodeClassification, aM as NodeClassificationSchema, aa as Orbital, aN as OrbitalConfig, aO as OrbitalConfigInput, aP as OrbitalConfigSchema, a as OrbitalDefinition, aQ as OrbitalDefinitionSchema, aR as OrbitalInput, e as OrbitalPage, aS as OrbitalPageInput, aT as OrbitalPageSchema, aU as OrbitalPageStrictInput, aV as OrbitalPageStrictSchema, 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 isEntityCall, bS as isEntityReference, bT as isEntityReferenceAny, bU as isImportedTraitRef, bV as isOrbitalDefinition, bW as isPageReference, bX as isPageReferenceObject, bY as isPageReferenceString, bZ as isThemeReference, b_ as parseEntityRef, b$ as parseImportedTraitRef, c0 as parseOrbitalSchema, c1 as parsePageRef, c2 as safeParseOrbitalSchema } from '../schema-CrlpehQq.js';
2
+ export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as NavigateBackEffect, aK as NavigateEffect, aL as NavigateOptions, aM as NnConfig, aN as NnLayer, aO as NotifyEffect, aP as ObjectEntityField, aQ as OrbitalEntity, aR as OrbitalEntityInput, aS as OrbitalEntitySchema, O as OrbitalId, aT as OrbitalIdSchema, aU as OsEffect, aV as PATTERN_TYPES, P as PageId, aW as PageIdSchema, aX as PaletteEntryId, aY as PaletteEntryIdSchema, aZ as PatternConfig, b0 as PatternType, b1 as PersistData, b2 as PersistEffect, b3 as PersistEmitConfig, b4 as RefEffect, R as RelationConfig, b5 as RelationConfigSchema, b6 as RelationEntityField, h as RenderBinding, b7 as RenderChildrenMap, b8 as RenderItemLambda, i as RenderUIEffect, b9 as RenderUINode, ba as ResolvedPatternProps, bb as RestAuthConfig, bc as RestAuthConfigSchema, bd as RestServiceDef, be as RestServiceDefSchema, bf as SEMANTIC_STRING_TYPES, bg as SERVICE_TYPES, bh as SHEET_PROJECTIONS, bi as SPRITE_DIRECTIONS, bj as ScalarEntityField, bk as ScenePos, bl as ScenePosSchema, bm as SemanticAssetRef, bn as SemanticAssetRefInput, bo as SemanticAssetRefSchema, bp as SemanticStringType, g as ServiceDefinition, bq as ServiceDefinitionSchema, br as ServiceId, bs as ServiceIdSchema, bt as ServiceParams, bu as ServiceParamsValue, S as ServiceRef, bv as ServiceRefObject, bw as ServiceRefObjectSchema, bx as ServiceRefSchema, by as ServiceRefStringSchema, bz as ServiceType, bA as ServiceTypeSchema, bB as SessionEffect, bC as SetEffect, bD as SheetProjection, bE as SheetProjectionSchema, bF as SocketEvents, bG as SocketEventsSchema, bH as SocketServiceDef, bI as SocketServiceDefSchema, bJ as SpawnEffect, bK as SpriteDirection, bL as SpriteDirectionSchema, bM as SpriteSheetAtlas, bN as SpriteSheetAtlasInput, bO as SpriteSheetAtlasSchema, bP as SubTexture, bQ as SubTextureSchema, bR as SwapEffect, bS as TextureAtlas, bT as TextureAtlasSchema, bU as ThemeId, bV as ThemeIdSchema, bW as Tilesheet, bX as TilesheetSchema, bY as TraceEffect, bZ as TrainConfig, b_ as TrainEffect, T as TraitId, b$ as TraitIdSchema, c0 as TypedEffect, U as UISlot, c1 as UISlotSchema, c2 as UI_SLOTS, c3 as VISUAL_STYLES, c4 as ValidateEffect, c5 as VisualStyle, c6 as VisualStyleSchema, c7 as WatchEffect, c8 as WatchOptions, c9 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 deref, cl as deriveCollection, cm as despawn, cn as doEffects, co as emit, cp as findService, cq as getDefaultAnimationsForRole, cr as getServiceNames, cs as hasService, ct as idKindOf, cu as idPrefix, cv as isEffect, cw as isEmailValue, cx as isEntityId, cy as isEventId, cz as isFieldValue, cA as isFileValue, cB as isMcpService, cC as isOrbitalId, cD as isPageId, cE as isPaletteEntryId, cF as isPhoneValue, cG as isRestService, cH as isRuntimeEntity, cI as isSExprEffect, cJ as isSemanticStringType, cK as isSemanticStringValue, cL as isServiceId, cM as isServiceReference, cN as isServiceReferenceObject, cO as isSocketService, cP as isThemeId, cQ as isTraitId, cR as isUrlValue, cS as isUuidValue, cT as isValidPatternType, cU as ledgerCurName, cV as ledgerRename, cW as ledgerResolveName, cX as mintId, cY as navigate, cZ as navigateBack, c_ as notify, c$ as parseAssetKey, d0 as parseServiceRef, d1 as persist, d2 as persistenceModeAllowsOverrides, d3 as ref, d4 as renderUI, d5 as set, d6 as spawn, d7 as swap, d8 as validateAssetAnimations, d9 as watch } from '../effect-CrsTJ7h8.js';
3
3
  export { C as CORE_BINDINGS, b as CoreBinding, c as EvalContext, a as EventPayload, d as EventPayloadValue, E as Expression, e as ExpressionInput, f as ExpressionSchema, g as JsonObject, J as JsonValue, L as LogMeta, h as LogMetaValue, P as ParsedBinding, R as RuntimeValue, S as SExpr, i as SExprAtom, j as SExprAtomSchema, k as SExprDataSchema, l as SExprInput, m as SExprObject, n as SExprSchema, T as ToolArgs, o as collectBindings, p as getArgs, q as getOperator, r as isBinding, s as isEventPayloadValue, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive, w as isSExpr, x as isSExprAtom, y as isSExprCall, z as isValidBinding, A as parseBinding, B as sexpr, D as walkSExpr } from '../expression-Fk8bQWef.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 ErrorEvent, ad as EventEmit, ae as EventKey, af as EventListen, ag as EventLogEntry, ah as EvolutionDelta, ai as ExecutePlanResult, aj as ExtraTraitRef, ak as FileOperationEvent, al as FileWrittenEvent, am as GateState, an as GenerationLogEvent, ao as GitHubIssue, ap as GitHubLink, aq as GitHubRepo, ar as HistoryMeta, as as IntegrationContext, at as InteractionModel, au as InteractionModelInput, av as InteractionModelSchema, aw as InterruptEvent, ax as KNOWN_VALIDATION_ERROR_CODES, ay as KnobPayload, az as KnownValidationErrorCode, aA as LLMErrorContext, aB as LazyService, aC as LineageEntry, aD as ListInteraction, aE as LivingEdge, aF as LivingEffect, aG as LivingEntity, aH as LivingEvent, aI as LivingField, aJ as LivingOrbital, aK as LivingOrbitalSchema, aL as LivingPage, aM as LivingState, aN as LivingTrait, aO as LivingTransition, aP as LivingValue, aQ as LivingVertex, aR as LlmCallToolsResult, aS as LlmContext, aT as LlmMessage, aU as LlmTokenUsage, aV as LlmToolCall, aW as LlmToolDef, aX as LoloEmitResult, aY as MemoryContext, aZ as MessageEvent, a_ as OrbitalAddedEvent, a$ as OrbitalSchemaCompleteEvent, b0 as OrbitalVerificationAPI, P as PageContentReduction, b1 as ParamsRepairEmittedEvent, b2 as ParsedDesign, b3 as ParsedDomainContext, b4 as ParsedEmitDeclaration, b5 as ParsedEntity, b6 as ParsedEvent, b7 as ParsedListenDeclaration, b8 as ParsedOrbital, b9 as ParsedPage, ba as ParsedState, bb as ParsedStateMachine, bc as ParsedTrait, bd as ParsedTraitConfig, be as ParsedTransition, bf as PatternNode, bg as PatternTypeSchema, bh as PatternValue, bi as PersistActionName, bj as PlanSnapshot, bk as PlanSnapshotStatus, bl as PlannerResult, bm as Probability, bn as ProcessCompleteEvent, bo as ProcessErrorEvent, bp as ProcessRepairCompleteEvent, bq as ProcessRepairEvent, br as ProcessStartEvent, bs as RENDER_BINDING_MARKER, bt as RawUserClaims, bu as RenderBindingMarker, bz as RepairResult, a as ResolvedEntity, bA as ResolvedEntityBinding, bB as ResolvedField, R as ResolvedIR, bC as ResolvedNavigation, b as ResolvedPage, bD as ResolvedPattern, bE as ResolvedSection, bF as ResolvedSectionEvent, c as ResolvedTrait, bG as ResolvedTraitBinding, bH as ResolvedTraitDataEntity, bI as ResolvedTraitEvent, bJ as ResolvedTraitGuard, bK as ResolvedTraitListener, bL as ResolvedTraitState, bM as ResolvedTraitTick, bN as ResolvedTraitTransition, bO as ResolvedTraitUIBinding, bP as SSEEvent, bQ as SSEEventBase, bR as SSEEventType, bS as SaveOptions, bT as SaveResult, S as SchemaChange, bU as SchemaPhaseUpdateEvent, bV as SchemaPhaseValidatedEvent, bW as SchemaUpdateEvent, bX as SemanticAnnotation, bY as SemanticChangeKind, e as SemanticSchemaChange, bZ as SemanticVector, b_ as ServerResponseTrace, b$ as ServiceAction, c0 as ServiceActionName, c1 as ServiceCallResult, c2 as ServiceContract, c3 as ServiceEvents, c4 as SessionContext, c5 as SessionHistoryEntry, c6 as SnapshotCreatedEvent, c7 as SnapshotDocument, c8 as SpawnResult, c9 as StartEvent, ca as StatsView, cb as StoreContract, cc as StoreFilter, cd as StoreFilterOp, ce as SubagentCompleteEvent, cf as SubagentEvent, cg as SubagentProgressEvent, ch as SubagentStartEvent, ci as TodoActivityType, cj as TodoDetailEvent, ck as TodoUpdateEvent, cl as ToolCallEvent, cm as ToolResultEvent, cn as TraceContext, co as TraitFieldRef, cp as TraitFieldRefSchema, cq as TraitStateSnapshot, cr as TransitionFrom, cs as TransitionTrace, ct as Unsubscribe, cu as UserContext, cv as ValidateResult, cw as ValidationDocument, cx as ValidationError, cy as ValidationErrorCode, cz as ValidationIssue, cA as ValidationMeta, cB as ValidationResult, cC as ValidationResults, cD as VerificationCheck, cE as VerificationSnapshot, cF as VerificationSummary, cG as VertexId, cH as VertexPayload, cI as VertexType, cJ as ViewFlow, cK as WorkspaceContext, cM as containsEntityBinding, cN as containsPayloadBinding, cO as createEmptyResolvedPage, cP as createEmptyResolvedTrait, cQ as createLazyService, cR as createResolvedField, cS as createTypedEventBus, cT as decodeDevIdentityToken, cU as encodeDevIdentityToken, cV as findPersonaInRoster, cX as getBindingExamples, cY as getInteractionModelForDomain, cZ as inferTsType, c$ as isKnownValidationErrorCode, d0 as isPlanSnapshot, d1 as isRenderBindingMarker, d2 as isResolvedIR, d3 as isSessionHistoryEntry, d4 as isTraitFieldRef, d6 as normalizeUserContext, d7 as personaFromIdentityRow, da as resolveDefaultViewer, db as resolvePersonaSpec, dd as toBindingRoot, de as validateBindingInContext, df as widenTier } from '../index-DsuQRFEl.js';
5
- export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as maskSecretConfigValues, aq as normalizeCallSiteConfigToValues, ar as normalizeTraitRef, as as resolveConfigRefEventName } from '../trait-SUGkA3Jn.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 ErrorEvent, ad as EventEmit, ae as EventKey, af as EventListen, ag as EventLogEntry, ah as EvolutionDelta, ai as ExecutePlanResult, aj as ExtraTraitRef, ak as FileOperationEvent, al as FileWrittenEvent, am as GateState, an as GenerationLogEvent, ao as GitHubIssue, ap as GitHubLink, aq as GitHubRepo, ar as HistoryMeta, as as IntegrationContext, at as InteractionModel, au as InteractionModelInput, av as InteractionModelSchema, aw as InterruptEvent, ax as KNOWN_VALIDATION_ERROR_CODES, ay as KnobPayload, az as KnownValidationErrorCode, aA as LLMErrorContext, aB as LazyService, aC as LineageEntry, aD as ListInteraction, aE as LivingEdge, aF as LivingEffect, aG as LivingEntity, aH as LivingEvent, aI as LivingField, aJ as LivingOrbital, aK as LivingOrbitalSchema, aL as LivingPage, aM as LivingState, aN as LivingTrait, aO as LivingTransition, aP as LivingValue, aQ as LivingVertex, aR as LlmCallToolsResult, aS as LlmContext, aT as LlmMessage, aU as LlmTokenUsage, aV as LlmToolCall, aW as LlmToolDef, aX as LoloEmitResult, aY as MemoryContext, aZ as MessageEvent, a_ as OrbitalAddedEvent, a$ as OrbitalSchemaCompleteEvent, b0 as OrbitalVerificationAPI, P as PageContentReduction, b1 as ParamsRepairEmittedEvent, b2 as ParsedDesign, b3 as ParsedDomainContext, b4 as ParsedEmitDeclaration, b5 as ParsedEntity, b6 as ParsedEvent, b7 as ParsedListenDeclaration, b8 as ParsedOrbital, b9 as ParsedPage, ba as ParsedState, bb as ParsedStateMachine, bc as ParsedTrait, bd as ParsedTraitConfig, be as ParsedTransition, bf as PatternNode, bg as PatternTypeSchema, bh as PatternValue, bi as PersistActionName, bj as PlanSnapshot, bk as PlanSnapshotStatus, bl as PlannerResult, bm as Probability, bn as ProcessCompleteEvent, bo as ProcessErrorEvent, bp as ProcessRepairCompleteEvent, bq as ProcessRepairEvent, br as ProcessStartEvent, bs as RENDER_BINDING_MARKER, bt as RawUserClaims, bu as RenderBindingMarker, bz as RepairResult, a as ResolvedEntity, bA as ResolvedEntityBinding, bB as ResolvedField, R as ResolvedIR, bC as ResolvedNavigation, b as ResolvedPage, bD as ResolvedPattern, bE as ResolvedSection, bF as ResolvedSectionEvent, c as ResolvedTrait, bG as ResolvedTraitBinding, bH as ResolvedTraitDataEntity, bI as ResolvedTraitEvent, bJ as ResolvedTraitGuard, bK as ResolvedTraitListener, bL as ResolvedTraitState, bM as ResolvedTraitTick, bN as ResolvedTraitTransition, bO as ResolvedTraitUIBinding, bP as SSEEvent, bQ as SSEEventBase, bR as SSEEventType, bS as SaveOptions, bT as SaveResult, S as SchemaChange, bU as SchemaPhaseUpdateEvent, bV as SchemaPhaseValidatedEvent, bW as SchemaUpdateEvent, bX as SemanticAnnotation, bY as SemanticChangeKind, e as SemanticSchemaChange, bZ as SemanticVector, b_ as ServerResponseTrace, b$ as ServiceAction, c0 as ServiceActionName, c1 as ServiceCallResult, c2 as ServiceContract, c3 as ServiceEvents, c4 as SessionContext, c5 as SessionHistoryEntry, c6 as SnapshotCreatedEvent, c7 as SnapshotDocument, c8 as SpawnResult, c9 as StartEvent, ca as StatsView, cb as StoreContract, cc as StoreFilter, cd as StoreFilterOp, ce as SubagentCompleteEvent, cf as SubagentEvent, cg as SubagentProgressEvent, ch as SubagentStartEvent, ci as TodoActivityType, cj as TodoDetailEvent, ck as TodoUpdateEvent, cl as ToolCallEvent, cm as ToolResultEvent, cn as TraceContext, co as TraitFieldRef, cp as TraitFieldRefSchema, cq as TraitStateSnapshot, cr as TransitionFrom, cs as TransitionTrace, ct as Unsubscribe, cu as UserContext, cv as ValidateResult, cw as ValidationDocument, cx as ValidationError, cy as ValidationErrorCode, cz as ValidationIssue, cA as ValidationMeta, cB as ValidationResult, cC as ValidationResults, cD as VerificationCheck, cE as VerificationSnapshot, cF as VerificationSummary, cG as VertexId, cH as VertexPayload, cI as VertexType, cJ as ViewFlow, cK as WorkspaceContext, cM as containsEntityBinding, cN as containsPayloadBinding, cO as createEmptyResolvedPage, cP as createEmptyResolvedTrait, cQ as createLazyService, cR as createResolvedField, cS as createTypedEventBus, cT as decodeDevIdentityToken, cU as encodeDevIdentityToken, cV as findPersonaInRoster, cX as getBindingExamples, cY as getInteractionModelForDomain, cZ as inferTsType, c$ as isKnownValidationErrorCode, d0 as isPlanSnapshot, d1 as isRenderBindingMarker, d2 as isResolvedIR, d3 as isSessionHistoryEntry, d4 as isTraitFieldRef, d6 as normalizeUserContext, d7 as personaFromIdentityRow, da as resolveDefaultViewer, db as resolvePersonaSpec, dd as toBindingRoot, de as validateBindingInContext, df as widenTier } from '../index-DOU3UsI-.js';
5
+ export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as maskSecretConfigValues, aq as normalizeCallSiteConfigToValues, ar as normalizeTraitRef, as as resolveConfigRefEventName } from '../trait-CdcDJqPW.js';
6
6
  import 'zod';
7
- import '../types-CUDHzSOr.js';
7
+ import '../types--R-KklLv.js';
8
8
  import '../builders.js';
@@ -2323,6 +2323,8 @@ var PATTERN_TYPES = [
2323
2323
  "doc-search",
2324
2324
  "doc-sidebar",
2325
2325
  "doc-toc",
2326
+ "document-details",
2327
+ "document-panel",
2326
2328
  "document-viewer",
2327
2329
  "draw-fx-layer",
2328
2330
  "draw-group",
@@ -2438,7 +2440,7 @@ var PATTERN_TYPES = [
2438
2440
  "relation-select",
2439
2441
  "repeatable-form-section",
2440
2442
  "reply-tree",
2441
- "rich-block-editor",
2443
+ "rich-text-editor",
2442
2444
  "runtime-debugger",
2443
2445
  "scaled-diagram",
2444
2446
  "score-display",