@almadar/core 10.40.0 → 10.41.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-07-28T10:40:00.004Z",
3
+ "exportedAt": "2026-07-28T14:48:23.507Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -40913,6 +40913,445 @@
40913
40913
  "description": "Additional CSS classes"
40914
40914
  }
40915
40915
  }
40916
+ },
40917
+ "svg-draw-group": {
40918
+ "type": "svg-draw-group",
40919
+ "category": "game",
40920
+ "tier": "atoms",
40921
+ "family": "game",
40922
+ "description": "SvgDrawGroup component",
40923
+ "suggestedFor": [
40924
+ "svg",
40925
+ "draw",
40926
+ "group",
40927
+ "svg draw group"
40928
+ ],
40929
+ "typicalSize": "small",
40930
+ "propsSchema": {
40931
+ "x": {
40932
+ "types": [
40933
+ "number"
40934
+ ],
40935
+ "description": "Grid-cell x of the group's origin.",
40936
+ "default": 0
40937
+ },
40938
+ "y": {
40939
+ "types": [
40940
+ "number"
40941
+ ],
40942
+ "description": "Grid-cell y of the group's origin.",
40943
+ "default": 0
40944
+ },
40945
+ "scale": {
40946
+ "types": [
40947
+ "number"
40948
+ ],
40949
+ "description": "Uniform scale applied after the translate."
40950
+ },
40951
+ "rotate": {
40952
+ "types": [
40953
+ "number"
40954
+ ],
40955
+ "description": "Rotation in degrees applied after the translate."
40956
+ },
40957
+ "opacity": {
40958
+ "types": [
40959
+ "number"
40960
+ ],
40961
+ "description": "0..1 opacity."
40962
+ },
40963
+ "className": {
40964
+ "types": [
40965
+ "string"
40966
+ ],
40967
+ "description": "Additional CSS classes"
40968
+ },
40969
+ "children": {
40970
+ "types": [
40971
+ "node"
40972
+ ],
40973
+ "description": "children prop"
40974
+ }
40975
+ }
40976
+ },
40977
+ "svg-draw-shape": {
40978
+ "type": "svg-draw-shape",
40979
+ "category": "game",
40980
+ "tier": "atoms",
40981
+ "family": "game",
40982
+ "description": "SvgDrawShape component",
40983
+ "suggestedFor": [
40984
+ "svg",
40985
+ "draw",
40986
+ "shape",
40987
+ "svg draw shape"
40988
+ ],
40989
+ "typicalSize": "small",
40990
+ "propsSchema": {
40991
+ "shape": {
40992
+ "types": [
40993
+ "string"
40994
+ ],
40995
+ "description": "shape prop",
40996
+ "required": true,
40997
+ "enumValues": [
40998
+ "rect",
40999
+ "circle",
41000
+ "ellipse",
41001
+ "polygon",
41002
+ "polyline",
41003
+ "path",
41004
+ "line"
41005
+ ]
41006
+ },
41007
+ "x": {
41008
+ "types": [
41009
+ "number"
41010
+ ],
41011
+ "description": "Grid-cell x of the element's translated origin.",
41012
+ "required": true
41013
+ },
41014
+ "y": {
41015
+ "types": [
41016
+ "number"
41017
+ ],
41018
+ "description": "Grid-cell y of the element's translated origin.",
41019
+ "required": true
41020
+ },
41021
+ "width": {
41022
+ "types": [
41023
+ "number"
41024
+ ],
41025
+ "description": "Rect width in cell units."
41026
+ },
41027
+ "height": {
41028
+ "types": [
41029
+ "number"
41030
+ ],
41031
+ "description": "Rect height in cell units."
41032
+ },
41033
+ "radius": {
41034
+ "types": [
41035
+ "number"
41036
+ ],
41037
+ "description": "Circle radius / ellipse horizontal radius in cell units."
41038
+ },
41039
+ "radiusY": {
41040
+ "types": [
41041
+ "number"
41042
+ ],
41043
+ "description": "Ellipse vertical radius in cell units; omitted → `radius` (a circle)."
41044
+ },
41045
+ "points": {
41046
+ "types": [
41047
+ "string"
41048
+ ],
41049
+ "description": "Polygon/polyline points, viewBox units relative to the translated origin."
41050
+ },
41051
+ "d": {
41052
+ "types": [
41053
+ "string"
41054
+ ],
41055
+ "description": "Path data, viewBox units relative to the translated origin."
41056
+ },
41057
+ "x2": {
41058
+ "types": [
41059
+ "number"
41060
+ ],
41061
+ "description": "Line end x in cell units."
41062
+ },
41063
+ "y2": {
41064
+ "types": [
41065
+ "number"
41066
+ ],
41067
+ "description": "Line end y in cell units."
41068
+ },
41069
+ "fill": {
41070
+ "types": [
41071
+ "string"
41072
+ ],
41073
+ "description": "fill prop"
41074
+ },
41075
+ "stroke": {
41076
+ "types": [
41077
+ "string"
41078
+ ],
41079
+ "description": "stroke prop"
41080
+ },
41081
+ "strokeWidth": {
41082
+ "types": [
41083
+ "number"
41084
+ ],
41085
+ "description": "strokeWidth prop"
41086
+ },
41087
+ "opacity": {
41088
+ "types": [
41089
+ "number"
41090
+ ],
41091
+ "description": "0..1 opacity."
41092
+ },
41093
+ "className": {
41094
+ "types": [
41095
+ "string"
41096
+ ],
41097
+ "description": "Additional CSS classes"
41098
+ }
41099
+ }
41100
+ },
41101
+ "svg-draw-text": {
41102
+ "type": "svg-draw-text",
41103
+ "category": "game",
41104
+ "tier": "atoms",
41105
+ "family": "game",
41106
+ "description": "SvgDrawText component",
41107
+ "suggestedFor": [
41108
+ "svg",
41109
+ "draw",
41110
+ "text",
41111
+ "svg draw text"
41112
+ ],
41113
+ "typicalSize": "small",
41114
+ "propsSchema": {
41115
+ "x": {
41116
+ "types": [
41117
+ "number"
41118
+ ],
41119
+ "description": "Grid-cell x of the text anchor.",
41120
+ "required": true
41121
+ },
41122
+ "y": {
41123
+ "types": [
41124
+ "number"
41125
+ ],
41126
+ "description": "Grid-cell y of the text anchor.",
41127
+ "required": true
41128
+ },
41129
+ "text": {
41130
+ "types": [
41131
+ "string"
41132
+ ],
41133
+ "description": "The text content.",
41134
+ "required": true
41135
+ },
41136
+ "size": {
41137
+ "types": [
41138
+ "number"
41139
+ ],
41140
+ "description": "Font size in viewBox units (default 12).",
41141
+ "default": 12
41142
+ },
41143
+ "fill": {
41144
+ "types": [
41145
+ "string"
41146
+ ],
41147
+ "description": "fill prop",
41148
+ "default": "var(--color-foreground)"
41149
+ },
41150
+ "anchor": {
41151
+ "types": [
41152
+ "string"
41153
+ ],
41154
+ "description": "Text anchor (default 'middle').",
41155
+ "enumValues": [
41156
+ "start",
41157
+ "middle",
41158
+ "end"
41159
+ ],
41160
+ "default": "middle"
41161
+ },
41162
+ "className": {
41163
+ "types": [
41164
+ "string"
41165
+ ],
41166
+ "description": "Additional CSS classes"
41167
+ }
41168
+ }
41169
+ },
41170
+ "svg-draw-shape-layer": {
41171
+ "type": "svg-draw-shape-layer",
41172
+ "category": "game",
41173
+ "tier": "molecules",
41174
+ "family": "game",
41175
+ "description": "SvgDrawShapeLayer component",
41176
+ "suggestedFor": [
41177
+ "svg",
41178
+ "draw",
41179
+ "shape",
41180
+ "layer",
41181
+ "svg draw shape layer"
41182
+ ],
41183
+ "typicalSize": "medium",
41184
+ "propsSchema": {
41185
+ "items": {
41186
+ "types": [
41187
+ "array"
41188
+ ],
41189
+ "description": "items prop",
41190
+ "required": true,
41191
+ "items": {
41192
+ "types": [
41193
+ "object"
41194
+ ],
41195
+ "properties": {
41196
+ "id": {
41197
+ "types": [
41198
+ "string"
41199
+ ]
41200
+ }
41201
+ },
41202
+ "required": [
41203
+ "id"
41204
+ ]
41205
+ }
41206
+ },
41207
+ "fill": {
41208
+ "types": [
41209
+ "string"
41210
+ ],
41211
+ "description": "Default fill for items that don't set one."
41212
+ },
41213
+ "stroke": {
41214
+ "types": [
41215
+ "string"
41216
+ ],
41217
+ "description": "Default stroke for items that don't set one."
41218
+ },
41219
+ "strokeWidth": {
41220
+ "types": [
41221
+ "number"
41222
+ ],
41223
+ "description": "Default strokeWidth for items that don't set one."
41224
+ },
41225
+ "opacity": {
41226
+ "types": [
41227
+ "number"
41228
+ ],
41229
+ "description": "Default 0..1 opacity for items that don't set one."
41230
+ }
41231
+ }
41232
+ },
41233
+ "svg-stage": {
41234
+ "type": "svg-stage",
41235
+ "category": "game",
41236
+ "tier": "molecules",
41237
+ "family": "game",
41238
+ "description": "SvgStage component",
41239
+ "suggestedFor": [
41240
+ "svg",
41241
+ "stage",
41242
+ "svg stage"
41243
+ ],
41244
+ "typicalSize": "medium",
41245
+ "propsSchema": {
41246
+ "cols": {
41247
+ "types": [
41248
+ "number"
41249
+ ],
41250
+ "description": "Grid width in cells.",
41251
+ "required": true
41252
+ },
41253
+ "rows": {
41254
+ "types": [
41255
+ "number"
41256
+ ],
41257
+ "description": "Grid height in cells.",
41258
+ "required": true
41259
+ },
41260
+ "tileSize": {
41261
+ "types": [
41262
+ "number"
41263
+ ],
41264
+ "description": "ViewBox units per cell (default 32); viewBox is `0 0 cols*tileSize rows*tileSize`.",
41265
+ "default": 32
41266
+ },
41267
+ "background": {
41268
+ "types": [
41269
+ "string"
41270
+ ],
41271
+ "description": "Background rect fill (default `var(--color-background)`).",
41272
+ "default": "var(--color-background)"
41273
+ },
41274
+ "tileClickEvent": {
41275
+ "types": [
41276
+ "string"
41277
+ ],
41278
+ "description": "Emitted as `UI:<event>` with `{ x, y }` cell coords on pointer up (<5px drag).",
41279
+ "kind": "event-ref",
41280
+ "emitPayloadSchema": [
41281
+ {
41282
+ "name": "x",
41283
+ "type": "number",
41284
+ "required": true
41285
+ },
41286
+ {
41287
+ "name": "y",
41288
+ "type": "number",
41289
+ "required": true
41290
+ }
41291
+ ]
41292
+ },
41293
+ "tileHoverEvent": {
41294
+ "types": [
41295
+ "string"
41296
+ ],
41297
+ "description": "Emitted as `UI:<event>` with `{ x, y }` cell coords on pointer move.",
41298
+ "kind": "event-ref",
41299
+ "emitPayloadSchema": [
41300
+ {
41301
+ "name": "x",
41302
+ "type": "number",
41303
+ "required": true
41304
+ },
41305
+ {
41306
+ "name": "y",
41307
+ "type": "number",
41308
+ "required": true
41309
+ }
41310
+ ]
41311
+ },
41312
+ "tileLeaveEvent": {
41313
+ "types": [
41314
+ "string"
41315
+ ],
41316
+ "description": "Emitted as `UI:<event>` with `{}` when the pointer leaves the stage.",
41317
+ "kind": "event-ref",
41318
+ "emitPayloadSchema": []
41319
+ },
41320
+ "keyMap": {
41321
+ "types": [
41322
+ "object"
41323
+ ],
41324
+ "description": "Keyboard → semantic events: `e.code` → event name, emitted as `UI:<event>` with `{}`.",
41325
+ "mapValue": {
41326
+ "types": [
41327
+ "string"
41328
+ ]
41329
+ }
41330
+ },
41331
+ "keyUpMap": {
41332
+ "types": [
41333
+ "object"
41334
+ ],
41335
+ "description": "Keyup counterpart of `keyMap`.",
41336
+ "mapValue": {
41337
+ "types": [
41338
+ "string"
41339
+ ]
41340
+ }
41341
+ },
41342
+ "className": {
41343
+ "types": [
41344
+ "string"
41345
+ ],
41346
+ "description": "Additional CSS classes"
41347
+ },
41348
+ "children": {
41349
+ "types": [
41350
+ "node"
41351
+ ],
41352
+ "description": "children prop"
41353
+ }
41354
+ }
40916
41355
  }
40917
41356
  },
40918
41357
  "categories": [
@@ -1,7 +1,7 @@
1
1
  import { c as EventId, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, e as Entity, a as EntityField } from './entity-DfD-iXkn.js';
2
2
  import { E as Expression, S as SExpr } from './expression-DpAj1RzP.js';
3
3
  import { z } from 'zod';
4
- import { E as Effect, A as AnyPatternConfig } from './effect-DQPFowvO.js';
4
+ import { E as Effect, A as AnyPatternConfig } from './effect-DSbx6joe.js';
5
5
 
6
6
  /**
7
7
  * Represents a state in the state machine
@@ -1,15 +1,15 @@
1
- import { M as MakeTraitRefOpts, b4 as PageTraitRef, O as OrbitalSchema, a6 as EventWiringEntry, aq as LayoutStrategy, bi as ThemeDefinition, a7 as Orbital, aZ as Page, K as DomainContext, a as OrbitalDefinition } from '../builders-Dw270YQh.js';
2
- export { A as AGENT_DOMAIN_CATEGORIES, b as ALLOWED_CUSTOM_COMPONENTS, c as AgentDomainCategory, d as AgentDomainCategorySchema, e as AllowedCustomComponent, C as ColorSlice, f as ColorSliceSchema, g as ColorTokens, h as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, E as DesignPreferencesSchema, F as DesignTokens, G as DesignTokensInput, H as DesignTokensSchema, I as DomainCategory, J as DomainCategorySchema, L as DomainContextInput, N as DomainContextSchema, P as DomainVocabulary, Q as DomainVocabularySchema, R as ElevationSlice, S as ElevationSliceSchema, T as ElevationTokens, U as ElevationTokensSchema, V as EntityCall, W as EntityCallSchema, X as EntityRef, Y as EntityRefSchema, Z as EntityRefStringSchema, _ as EntitySemanticRole, $ as EntitySemanticRoleSchema, a0 as EventListener, a1 as EventListenerSchema, a2 as EventSemanticRole, a3 as EventSemanticRoleSchema, a4 as EventSource, a5 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, ar as MotionDurationKey, as as MotionDurationKeySchema, at as MotionDurationPalette, au as MotionDurationPaletteSchema, av as MotionEasingKey, aw as MotionEasingKeySchema, ax as MotionEasingPalette, ay as MotionEasingPaletteSchema, az as MotionIntent, aA as MotionIntentMap, aB as MotionIntentMapSchema, aC as MotionIntentSchema, aD as MotionSlice, aE as MotionSliceSchema, aF as MotionTokens, aG as MotionTokensSchema, aH as NodeClassification, aI as NodeClassificationSchema, aJ as OrbitalConfig, aK as OrbitalConfigInput, aL as OrbitalConfigSchema, aM as OrbitalDefinitionSchema, aN as OrbitalInput, aO as OrbitalPage, aP as OrbitalPageInput, aQ as OrbitalPageSchema, aR as OrbitalPageStrictInput, aS as OrbitalPageStrictSchema, aT as OrbitalSchemaInput, aU as OrbitalSchemaSchema, aV as OrbitalSchemaWithTraits, aW as OrbitalUnit, aX as OrbitalUnitSchema, aY as OrbitalZodSchema, a_ as PageRef, a$ as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, 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, 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, bL as UseDeclaration, bM as UseDeclarationSchema, bN as UserPersona, bO as UserPersonaInput, bP as UserPersonaSchema, bQ as ViewType, bR as ViewTypeSchema, bV as isEntityCall, bW as isEntityReference, bX as isEntityReferenceAny, bY as isImportedTraitRef, bZ as isOrbitalDefinition, b_ as isPageReference, b$ as isPageReferenceObject, c0 as isPageReferenceString, c1 as isThemeReference, c2 as parseEntityRef, c3 as parseImportedTraitRef, c4 as parseOrbitalSchema, c5 as parsePageRef, c6 as safeParseOrbitalSchema } from '../builders-Dw270YQh.js';
1
+ import { M as MakeTraitRefOpts, b4 as PageTraitRef, O as OrbitalSchema, a6 as EventWiringEntry, aq as LayoutStrategy, bi as ThemeDefinition, a7 as Orbital, aZ as Page, K as DomainContext, a as OrbitalDefinition } from '../builders-CikYSzX6.js';
2
+ export { A as AGENT_DOMAIN_CATEGORIES, b as ALLOWED_CUSTOM_COMPONENTS, c as AgentDomainCategory, d as AgentDomainCategorySchema, e as AllowedCustomComponent, C as ColorSlice, f as ColorSliceSchema, g as ColorTokens, h as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, E as DesignPreferencesSchema, F as DesignTokens, G as DesignTokensInput, H as DesignTokensSchema, I as DomainCategory, J as DomainCategorySchema, L as DomainContextInput, N as DomainContextSchema, P as DomainVocabulary, Q as DomainVocabularySchema, R as ElevationSlice, S as ElevationSliceSchema, T as ElevationTokens, U as ElevationTokensSchema, V as EntityCall, W as EntityCallSchema, X as EntityRef, Y as EntityRefSchema, Z as EntityRefStringSchema, _ as EntitySemanticRole, $ as EntitySemanticRoleSchema, a0 as EventListener, a1 as EventListenerSchema, a2 as EventSemanticRole, a3 as EventSemanticRoleSchema, a4 as EventSource, a5 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, ar as MotionDurationKey, as as MotionDurationKeySchema, at as MotionDurationPalette, au as MotionDurationPaletteSchema, av as MotionEasingKey, aw as MotionEasingKeySchema, ax as MotionEasingPalette, ay as MotionEasingPaletteSchema, az as MotionIntent, aA as MotionIntentMap, aB as MotionIntentMapSchema, aC as MotionIntentSchema, aD as MotionSlice, aE as MotionSliceSchema, aF as MotionTokens, aG as MotionTokensSchema, aH as NodeClassification, aI as NodeClassificationSchema, aJ as OrbitalConfig, aK as OrbitalConfigInput, aL as OrbitalConfigSchema, aM as OrbitalDefinitionSchema, aN as OrbitalInput, aO as OrbitalPage, aP as OrbitalPageInput, aQ as OrbitalPageSchema, aR as OrbitalPageStrictInput, aS as OrbitalPageStrictSchema, aT as OrbitalSchemaInput, aU as OrbitalSchemaSchema, aV as OrbitalSchemaWithTraits, aW as OrbitalUnit, aX as OrbitalUnitSchema, aY as OrbitalZodSchema, a_ as PageRef, a$ as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, 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, 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, bL as UseDeclaration, bM as UseDeclarationSchema, bN as UserPersona, bO as UserPersonaInput, bP as UserPersonaSchema, bQ as ViewType, bR as ViewTypeSchema, bV as isEntityCall, bW as isEntityReference, bX as isEntityReferenceAny, bY as isImportedTraitRef, bZ as isOrbitalDefinition, b_ as isPageReference, b$ as isPageReferenceObject, c0 as isPageReferenceString, c1 as isThemeReference, c2 as parseEntityRef, c3 as parseImportedTraitRef, c4 as parseOrbitalSchema, c5 as parsePageRef, c6 as safeParseOrbitalSchema } from '../builders-CikYSzX6.js';
3
3
  import { F as FieldValue, a as EntityField, E as EntityPersistence, J as JsonValue, e as Entity, b as EntityRow, O as OrbitalId, T as TraitId, c as EventId, a6 as JsonObject, f as ToolArgs } from '../entity-DfD-iXkn.js';
4
4
  export { A as ANIMATION_NAMES, g as ASSET_ASPECTS, h as ASSET_DIMENSIONS, i as AnimationDef, j as AnimationDefInput, k as AnimationDefSchema, l as AnimationName, m as AnimationNameSchema, n as ArrayEntityField, o as Asset, p as AssetAspect, q as AssetAspectSchema, r as AssetCatalog, s as AssetCatalogEntry, t as AssetCatalogEntryInput, u as AssetCatalogEntrySchema, v as AssetCatalogSchema, w as AssetDimension, x as AssetDimensionSchema, y as AssetSchema, z as AssetUrl, C as CAMERA_MODES, B as Camera, D as CameraMode, G as CameraModeSchema, H as CameraSchema, I as ENTITY_ROLES, K as EntityData, L as EntityFieldInput, M as EntityFieldSchema, d as EntityId, N as EntityIdSchema, Q as EntityPersistenceSchema, S as EntityRole, U as EntityRoleSchema, V as EntitySchema, W as EntityWith, X as EnumEntityField, Y as EventIdSchema, Z as FIELD_TYPES, _ as Field, $ as FieldSchema, a0 as FieldType, a1 as FieldTypeSchema, a2 as IdForKind, a3 as IdKind, a4 as IdentityLedger, a5 as IdentityLedgerSchema, a7 as LedgerEntry, a8 as LedgerEntrySchema, a9 as LedgerKind, aa as LedgerKindSchema, ab as ObjectEntityField, ac as OrbitalEntity, ad as OrbitalEntityInput, ae as OrbitalEntitySchema, af as OrbitalIdSchema, P as PageId, ag as PageIdSchema, ah as PaletteEntryId, ai as PaletteEntryIdSchema, R as RelationConfig, aj as RelationConfigSchema, ak as RelationEntityField, al as SEMANTIC_STRING_TYPES, am as SPRITE_DIRECTIONS, an as ScalarEntityField, ao as ScenePos, ap as ScenePosSchema, aq as SemanticAssetRef, ar as SemanticAssetRefInput, as as SemanticAssetRefSchema, at as SemanticStringType, au as ServiceId, av as ServiceIdSchema, aw as SpriteDirection, ax as SpriteDirectionSchema, ay as SpriteSheetAtlas, az as SpriteSheetAtlasInput, aA as SpriteSheetAtlasSchema, aB as SubTexture, aC as SubTextureSchema, aD as TextureAtlas, aE as TextureAtlasSchema, aF as ThemeId, aG as ThemeIdSchema, aH as Tilesheet, aI as TilesheetSchema, aJ as TraitIdSchema, aK as VISUAL_STYLES, aL as VisualStyle, aM as VisualStyleSchema, aN as asEntityId, aO as asEventId, aP as asOrbitalId, aQ as asPageId, aR as asPaletteEntryId, aS as asServiceId, aT as asThemeId, aU as asTraitId, aV as createAssetKey, aW as deriveCollection, aX as getDefaultAnimationsForRole, aY as idKindOf, aZ as idPrefix, a_ as isEmailValue, a$ as isEntityId, b0 as isEventId, b1 as isFieldValue, b2 as isJsonArray, b3 as isJsonObject, b4 as isJsonPrimitive, b5 as isOrbitalId, b6 as isPageId, b7 as isPaletteEntryId, b8 as isPhoneValue, b9 as isRuntimeEntity, ba as isSemanticStringType, bb as isSemanticStringValue, bc as isServiceId, bd as isThemeId, be as isTraitId, bf as isUrlValue, bg as isUuidValue, bh as ledgerCurName, bi as ledgerRename, bj as ledgerResolveName, bk as mintId, bl as parseAssetKey, bm as persistenceModeAllowsOverrides, bn as validateAssetAnimations } from '../entity-DfD-iXkn.js';
5
5
  import { d as EventPayloadValue, a as EventPayload, L as LogMeta, S as SExpr, c as EvalContext } from '../expression-DpAj1RzP.js';
6
6
  export { C as CORE_BINDINGS, b as CoreBinding, E as Expression, e as ExpressionInput, f as ExpressionSchema, g as LogMetaValue, P as ParsedBinding, h as SExprAtom, i as SExprAtomSchema, j as SExprInput, k as SExprSchema, l as collectBindings, m as getArgs, n as getOperator, o as isBinding, p as isEventPayloadValue, q as isSExpr, r as isSExprAtom, s as isSExprCall, t as isValidBinding, u as parseBinding, v as sexpr, w as walkSExpr } from '../expression-DpAj1RzP.js';
7
7
  import { z } from 'zod';
8
- import { a as TraitReference, c as Trait, L as ListenSource, D as DeclaredTraitConfig, d as TraitConfig, f as ConfigFieldDeclaration, S as State, ad as Transition, l as Event, X as TraitConfigValue, Q as TraitCategory, ar as TraitScope } from '../trait-C_TZnqb_.js';
9
- export { e as CONFIG_REF_EVENT_PATTERN, C as CallSiteConfig, b as CallSiteConfigEntry, g as ConfigFieldDeclarationSchema, h as ConfigFieldItemsDeclaration, i as ConfigRefEventError, j as DeclaredTraitConfigSchema, E as EntityFieldContract, k as EntityFieldContractSchema, m as EventInput, n as EventPayloadField, o as EventPayloadFieldSchema, p as EventSchema, q as EventScope, r as EventScopeSchema, G as Guard, s as GuardInput, t as GuardSchema, u as ListenSourceSchema, O as OrbitalTraitRef, v as OrbitalTraitRefSchema, P as PayloadField, w as PayloadFieldSchema, x as PresentationType, R as REFERENCE_CONFIG_TYPES, y as ReferenceConfigType, z as RequiredField, A as RequiredFieldSchema, B as SECRET_CONFIG_TYPES, F as SecretConfigType, H as StateInput, I as StateMachine, J as StateMachineInput, K as StateMachineSchema, M as StateSchema, N as TickIntervalSchema, U as TraitCategorySchema, V as TraitConfigObject, W as TraitConfigSchema, Y as TraitConfigValueSchema, Z as TraitDataEntity, _ as TraitDataEntitySchema, $ as TraitEntityField, a0 as TraitEntityFieldSchema, a1 as TraitEventContract, a2 as TraitEventContractSchema, T as TraitEventListener, a3 as TraitEventListenerSchema, a4 as TraitInput, a5 as TraitRef, a6 as TraitRefSchema, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ae as TransitionInput, af as TransitionSchema, ag as configRefEventKnob, ah as getTraitConfig, ai as getTraitName, aj as isCallSiteConfigDeclaration, ak as isCircuitEvent, al as isInlineTrait, am as isReferenceConfigType, an as isSecretConfigType, ao as normalizeCallSiteConfigToValues, ap as normalizeTraitRef, aq as resolveConfigRefEventName } from '../trait-C_TZnqb_.js';
10
- import { a3 as ServiceParams, A as AnyPatternConfig, E as Effect } from '../effect-DQPFowvO.js';
11
- export { a as AgentEffect, b as ApplicationEffect, c as AtomicEffect, B as BehaviorEffect, C as CallServiceConfig, d as CallServiceEffect, e as CheckpointLoadEffect, f as CheckpointSaveEffect, g as ComposeEffect, D as DerefEffect, h as DespawnEffect, i as DoEffect, j as EffectInput, k as EffectSchema, l as EmitConfig, m as EmitEffect, n as EvaluateConfig, o as EvaluateEffect, F as FetchEffect, p as FetchOptions, q as FetchResult, r as ForwardConfig, s as ForwardEffect, L as LlmEffect, t as LogEffect, M as McpServiceDef, u as McpServiceDefSchema, v as MemoryEffect, N as NavigateEffect, w as NnConfig, x as NnLayer, y as NotifyEffect, O as OsEffect, P as PATTERN_TYPES, z as PatternConfig, I as PatternType, J as PersistData, K as PersistEffect, Q as PersistEmitConfig, R as RefEffect, S as RenderBinding, T as RenderChildrenMap, U as RenderItemLambda, V as RenderUIEffect, W as RenderUINode, X as ResolvedPatternProps, Y as RestAuthConfig, Z as RestAuthConfigSchema, _ as RestServiceDef, $ as RestServiceDefSchema, a0 as SERVICE_TYPES, a1 as ServiceDefinition, a2 as ServiceDefinitionSchema, a4 as ServiceParamsValue, a5 as ServiceRef, a6 as ServiceRefObject, a7 as ServiceRefObjectSchema, a8 as ServiceRefSchema, a9 as ServiceRefStringSchema, aa as ServiceType, ab as ServiceTypeSchema, ac as SessionEffect, ad as SetEffect, ae as SocketEvents, af as SocketEventsSchema, ag as SocketServiceDef, ah as SocketServiceDefSchema, ai as SpawnEffect, aj as SwapEffect, ak as TraceEffect, al as TrainConfig, am as TrainEffect, an as TypedEffect, ao as UISlot, ap as UISlotSchema, aq as UI_SLOTS, ar as ValidateEffect, as as WatchEffect, at as WatchOptions, au as atomic, av as callService, aw as deref, ax as despawn, ay as doEffects, az as emit, aA as findService, aB as getServiceNames, aC as hasService, aD as isEffect, aE as isMcpService, aF as isRestService, aG as isSExprEffect, aH as isServiceReference, aI as isServiceReferenceObject, aJ as isSocketService, aK as isValidPatternType, aL as navigate, aM as notify, aN as parseServiceRef, aO as persist, aP as ref, aQ as renderUI, aR as set, aS as spawn, aT as swap, aU as watch } from '../effect-DQPFowvO.js';
12
- import { T as TraitOverlay, R as RuleOverlay, J as JsonSchema, c as FactoryConfigTier } from '../types-BUqLsSEN.js';
8
+ import { a as TraitReference, c as Trait, L as ListenSource, D as DeclaredTraitConfig, d as TraitConfig, f as ConfigFieldDeclaration, S as State, ad as Transition, l as Event, X as TraitConfigValue, Q as TraitCategory, ar as TraitScope } from '../trait-2E6TQw19.js';
9
+ export { e as CONFIG_REF_EVENT_PATTERN, C as CallSiteConfig, b as CallSiteConfigEntry, g as ConfigFieldDeclarationSchema, h as ConfigFieldItemsDeclaration, i as ConfigRefEventError, j as DeclaredTraitConfigSchema, E as EntityFieldContract, k as EntityFieldContractSchema, m as EventInput, n as EventPayloadField, o as EventPayloadFieldSchema, p as EventSchema, q as EventScope, r as EventScopeSchema, G as Guard, s as GuardInput, t as GuardSchema, u as ListenSourceSchema, O as OrbitalTraitRef, v as OrbitalTraitRefSchema, P as PayloadField, w as PayloadFieldSchema, x as PresentationType, R as REFERENCE_CONFIG_TYPES, y as ReferenceConfigType, z as RequiredField, A as RequiredFieldSchema, B as SECRET_CONFIG_TYPES, F as SecretConfigType, H as StateInput, I as StateMachine, J as StateMachineInput, K as StateMachineSchema, M as StateSchema, N as TickIntervalSchema, U as TraitCategorySchema, V as TraitConfigObject, W as TraitConfigSchema, Y as TraitConfigValueSchema, Z as TraitDataEntity, _ as TraitDataEntitySchema, $ as TraitEntityField, a0 as TraitEntityFieldSchema, a1 as TraitEventContract, a2 as TraitEventContractSchema, T as TraitEventListener, a3 as TraitEventListenerSchema, a4 as TraitInput, a5 as TraitRef, a6 as TraitRefSchema, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ae as TransitionInput, af as TransitionSchema, ag as configRefEventKnob, ah as getTraitConfig, ai as getTraitName, aj as isCallSiteConfigDeclaration, ak as isCircuitEvent, al as isInlineTrait, am as isReferenceConfigType, an as isSecretConfigType, ao as normalizeCallSiteConfigToValues, ap as normalizeTraitRef, aq as resolveConfigRefEventName } from '../trait-2E6TQw19.js';
10
+ import { a3 as ServiceParams, A as AnyPatternConfig, E as Effect } from '../effect-DSbx6joe.js';
11
+ export { a as AgentEffect, b as ApplicationEffect, c as AtomicEffect, B as BehaviorEffect, C as CallServiceConfig, d as CallServiceEffect, e as CheckpointLoadEffect, f as CheckpointSaveEffect, g as ComposeEffect, D as DerefEffect, h as DespawnEffect, i as DoEffect, j as EffectInput, k as EffectSchema, l as EmitConfig, m as EmitEffect, n as EvaluateConfig, o as EvaluateEffect, F as FetchEffect, p as FetchOptions, q as FetchResult, r as ForwardConfig, s as ForwardEffect, L as LlmEffect, t as LogEffect, M as McpServiceDef, u as McpServiceDefSchema, v as MemoryEffect, N as NavigateEffect, w as NnConfig, x as NnLayer, y as NotifyEffect, O as OsEffect, P as PATTERN_TYPES, z as PatternConfig, I as PatternType, J as PersistData, K as PersistEffect, Q as PersistEmitConfig, R as RefEffect, S as RenderBinding, T as RenderChildrenMap, U as RenderItemLambda, V as RenderUIEffect, W as RenderUINode, X as ResolvedPatternProps, Y as RestAuthConfig, Z as RestAuthConfigSchema, _ as RestServiceDef, $ as RestServiceDefSchema, a0 as SERVICE_TYPES, a1 as ServiceDefinition, a2 as ServiceDefinitionSchema, a4 as ServiceParamsValue, a5 as ServiceRef, a6 as ServiceRefObject, a7 as ServiceRefObjectSchema, a8 as ServiceRefSchema, a9 as ServiceRefStringSchema, aa as ServiceType, ab as ServiceTypeSchema, ac as SessionEffect, ad as SetEffect, ae as SocketEvents, af as SocketEventsSchema, ag as SocketServiceDef, ah as SocketServiceDefSchema, ai as SpawnEffect, aj as SwapEffect, ak as TraceEffect, al as TrainConfig, am as TrainEffect, an as TypedEffect, ao as UISlot, ap as UISlotSchema, aq as UI_SLOTS, ar as ValidateEffect, as as WatchEffect, at as WatchOptions, au as atomic, av as callService, aw as deref, ax as despawn, ay as doEffects, az as emit, aA as findService, aB as getServiceNames, aC as hasService, aD as isEffect, aE as isMcpService, aF as isRestService, aG as isSExprEffect, aH as isServiceReference, aI as isServiceReferenceObject, aJ as isSocketService, aK as isValidPatternType, aL as navigate, aM as notify, aN as parseServiceRef, aO as persist, aP as ref, aQ as renderUI, aR as set, aS as spawn, aT as swap, aU as watch } from '../effect-DSbx6joe.js';
12
+ import { T as TraitOverlay, R as RuleOverlay, J as JsonSchema, c as FactoryConfigTier } from '../types-CzocAZtG.js';
13
13
 
14
14
  /**
15
15
  * S-Expression Bindings
@@ -2336,6 +2336,10 @@ var PATTERN_TYPES = [
2336
2336
  "subagent-trace-panel",
2337
2337
  "svg-branch",
2338
2338
  "svg-connection",
2339
+ "svg-draw-group",
2340
+ "svg-draw-shape",
2341
+ "svg-draw-shape-layer",
2342
+ "svg-draw-text",
2339
2343
  "svg-flow",
2340
2344
  "svg-grid",
2341
2345
  "svg-lobe",
@@ -2346,6 +2350,7 @@ var PATTERN_TYPES = [
2346
2350
  "svg-ring",
2347
2351
  "svg-shield",
2348
2352
  "svg-stack",
2353
+ "svg-stage",
2349
2354
  "swipeable-row",
2350
2355
  "switch",
2351
2356
  "tabbed-container",