@almadar/core 10.62.0 → 10.63.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
- import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, a_ as PatternType } from '../effect-M22diOHo.js';
2
- export { aT as PATTERN_TYPES, aX as PatternConfig, aY as PatternProps, aZ as PatternPropsMap, cR as isValidPatternType } from '../effect-M22diOHo.js';
1
+ import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, a_ as PatternType } from '../effect-CgDrWfKW.js';
2
+ export { aT as PATTERN_TYPES, aX as PatternConfig, aY as PatternProps, aZ as PatternPropsMap, cR as isValidPatternType } from '../effect-CgDrWfKW.js';
3
3
  import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Fk8bQWef.js';
4
4
  import 'zod';
5
5
 
6
6
  var version$3 = "1.0.0";
7
- var exportedAt$3 = "2026-08-20T06:39:15.858Z";
7
+ var exportedAt$3 = "2026-08-20T23:14:19.545Z";
8
8
  var patterns = {
9
9
  "entity-table": {
10
10
  type: "entity-table",
@@ -1807,9 +1807,10 @@ var patterns = {
1807
1807
  },
1808
1808
  status: {
1809
1809
  types: [
1810
- "object"
1810
+ "object",
1811
+ "string"
1811
1812
  ],
1812
- description: "Status badge",
1813
+ description: "Status badge — a bare string (an entity's status field bound directly, e.g. `status: @entity.status`) renders as a default-variant badge",
1813
1814
  properties: {
1814
1815
  label: {
1815
1816
  types: [
@@ -2558,7 +2559,12 @@ var patterns = {
2558
2559
  formValues: {
2559
2560
  types: [
2560
2561
  "object"
2561
- ]
2562
+ ],
2563
+ mapValue: {
2564
+ types: [
2565
+ "object"
2566
+ ]
2567
+ }
2562
2568
  },
2563
2569
  globalVariables: {
2564
2570
  types: [
@@ -2585,7 +2591,12 @@ var patterns = {
2585
2591
  entity: {
2586
2592
  types: [
2587
2593
  "object"
2588
- ]
2594
+ ],
2595
+ mapValue: {
2596
+ types: [
2597
+ "object"
2598
+ ]
2599
+ }
2589
2600
  }
2590
2601
  },
2591
2602
  propertyRequired: [
@@ -3417,7 +3428,12 @@ var patterns = {
3417
3428
  formValues: {
3418
3429
  types: [
3419
3430
  "object"
3420
- ]
3431
+ ],
3432
+ mapValue: {
3433
+ types: [
3434
+ "object"
3435
+ ]
3436
+ }
3421
3437
  },
3422
3438
  globalVariables: {
3423
3439
  types: [
@@ -3444,7 +3460,12 @@ var patterns = {
3444
3460
  entity: {
3445
3461
  types: [
3446
3462
  "object"
3447
- ]
3463
+ ],
3464
+ mapValue: {
3465
+ types: [
3466
+ "object"
3467
+ ]
3468
+ }
3448
3469
  }
3449
3470
  },
3450
3471
  propertyRequired: [
@@ -13075,7 +13096,7 @@ var patterns = {
13075
13096
  types: [
13076
13097
  "object"
13077
13098
  ],
13078
- description: "Current user info (optional - auto-populated from auth context if not provided)",
13099
+ description: "Current user info (optional - auto-populated from auth context if not provided). Accepts `null` as well as `undefined`: the `.lolo` substrate's signed-out spelling is `(if @config.viewerName {…} null)`, and the compiled path passes that `null` through verbatim.",
13079
13100
  properties: {
13080
13101
  name: {
13081
13102
  types: [
@@ -13094,8 +13115,7 @@ var patterns = {
13094
13115
  }
13095
13116
  },
13096
13117
  propertyRequired: [
13097
- "name",
13098
- "email"
13118
+ "name"
13099
13119
  ]
13100
13120
  },
13101
13121
  headerActions: {
@@ -47126,6 +47146,566 @@ var patterns = {
47126
47146
  ]
47127
47147
  }
47128
47148
  }
47149
+ },
47150
+ "fx-overlay": {
47151
+ type: "fx-overlay",
47152
+ category: "container",
47153
+ tier: "molecules",
47154
+ family: "core",
47155
+ description: "FxOverlay component",
47156
+ suggestedFor: [
47157
+ "overlay",
47158
+ "fx overlay"
47159
+ ],
47160
+ typicalSize: "medium",
47161
+ propsSchema: {
47162
+ items: {
47163
+ types: [
47164
+ "array"
47165
+ ],
47166
+ description: "Live screen-space fx entries (the mechanic's fx list filtered to `space == \"screen\"`); mount starts each item's animation, ttl decay unmounts it.",
47167
+ required: true,
47168
+ items: {
47169
+ types: [
47170
+ "object"
47171
+ ],
47172
+ properties: {
47173
+ id: {
47174
+ types: [
47175
+ "string"
47176
+ ]
47177
+ },
47178
+ type: {
47179
+ types: [
47180
+ "string"
47181
+ ]
47182
+ },
47183
+ effect: {
47184
+ types: [
47185
+ "string"
47186
+ ],
47187
+ enumValues: [
47188
+ "confetti",
47189
+ "flash",
47190
+ "shake",
47191
+ "sparkle",
47192
+ "float-text",
47193
+ "streak-glow"
47194
+ ]
47195
+ },
47196
+ message: {
47197
+ types: [
47198
+ "string"
47199
+ ]
47200
+ },
47201
+ color: {
47202
+ types: [
47203
+ "string"
47204
+ ]
47205
+ },
47206
+ size: {
47207
+ types: [
47208
+ "number"
47209
+ ]
47210
+ },
47211
+ x: {
47212
+ types: [
47213
+ "number"
47214
+ ]
47215
+ },
47216
+ z: {
47217
+ types: [
47218
+ "number"
47219
+ ]
47220
+ },
47221
+ y: {
47222
+ types: [
47223
+ "number"
47224
+ ]
47225
+ },
47226
+ ttl: {
47227
+ types: [
47228
+ "number"
47229
+ ]
47230
+ },
47231
+ maxTtl: {
47232
+ types: [
47233
+ "number"
47234
+ ]
47235
+ },
47236
+ bornAt: {
47237
+ types: [
47238
+ "number"
47239
+ ]
47240
+ },
47241
+ space: {
47242
+ types: [
47243
+ "string"
47244
+ ],
47245
+ enumValues: [
47246
+ "world",
47247
+ "screen"
47248
+ ]
47249
+ },
47250
+ particleCount: {
47251
+ types: [
47252
+ "number"
47253
+ ]
47254
+ },
47255
+ vx: {
47256
+ types: [
47257
+ "number"
47258
+ ]
47259
+ },
47260
+ vy: {
47261
+ types: [
47262
+ "number"
47263
+ ]
47264
+ },
47265
+ vz: {
47266
+ types: [
47267
+ "number"
47268
+ ]
47269
+ }
47270
+ },
47271
+ required: [
47272
+ "id",
47273
+ "type",
47274
+ "ttl"
47275
+ ]
47276
+ }
47277
+ },
47278
+ tickMs: {
47279
+ types: [
47280
+ "number"
47281
+ ],
47282
+ description: "The fx mechanic's decay tick period in ms; per-item animation duration = maxTtl × tickMs. Default 500."
47283
+ },
47284
+ children: {
47285
+ types: [
47286
+ "node"
47287
+ ],
47288
+ description: "Wrapped content — the `shake` target and the overlay's bounds."
47289
+ },
47290
+ className: {
47291
+ types: [
47292
+ "string"
47293
+ ],
47294
+ description: "Additional class names on the outermost element."
47295
+ }
47296
+ }
47297
+ },
47298
+ "draw-fx-layer": {
47299
+ type: "draw-fx-layer",
47300
+ category: "game",
47301
+ tier: "molecules",
47302
+ family: "game",
47303
+ description: "DrawFxLayer component",
47304
+ suggestedFor: [
47305
+ "draw",
47306
+ "layer",
47307
+ "draw fx layer"
47308
+ ],
47309
+ typicalSize: "medium",
47310
+ propsSchema: {
47311
+ id: {
47312
+ types: [
47313
+ "string"
47314
+ ],
47315
+ description: "Optional source-tagged hit-test handle — the host indexes the drawable's ScenePos→id so a pointer/raycast at that cell resolves to this id (unit/entity click). No id → the host emits only the coordinate (tile click)."
47316
+ },
47317
+ type: {
47318
+ types: [
47319
+ "unknown"
47320
+ ],
47321
+ description: "type prop",
47322
+ required: true
47323
+ },
47324
+ items: {
47325
+ types: [
47326
+ "array"
47327
+ ],
47328
+ description: "The live fx entries — the mechanic's `@entity.fx` list passed whole; `space: \"screen\"` entries are skipped (the overlay owns those).",
47329
+ required: true,
47330
+ items: {
47331
+ types: [
47332
+ "object"
47333
+ ],
47334
+ properties: {
47335
+ id: {
47336
+ types: [
47337
+ "string"
47338
+ ]
47339
+ },
47340
+ type: {
47341
+ types: [
47342
+ "string"
47343
+ ]
47344
+ },
47345
+ position: {
47346
+ types: [
47347
+ "object"
47348
+ ],
47349
+ scenePos: true,
47350
+ properties: {
47351
+ x: {
47352
+ types: [
47353
+ "number"
47354
+ ]
47355
+ },
47356
+ y: {
47357
+ types: [
47358
+ "number"
47359
+ ]
47360
+ },
47361
+ z: {
47362
+ types: [
47363
+ "number"
47364
+ ]
47365
+ }
47366
+ },
47367
+ required: [
47368
+ "x",
47369
+ "y"
47370
+ ]
47371
+ },
47372
+ x: {
47373
+ types: [
47374
+ "number"
47375
+ ]
47376
+ },
47377
+ z: {
47378
+ types: [
47379
+ "number"
47380
+ ]
47381
+ },
47382
+ y: {
47383
+ types: [
47384
+ "number"
47385
+ ]
47386
+ },
47387
+ message: {
47388
+ types: [
47389
+ "string"
47390
+ ]
47391
+ },
47392
+ ttl: {
47393
+ types: [
47394
+ "number"
47395
+ ]
47396
+ },
47397
+ maxTtl: {
47398
+ types: [
47399
+ "number"
47400
+ ]
47401
+ },
47402
+ bornAt: {
47403
+ types: [
47404
+ "number"
47405
+ ]
47406
+ },
47407
+ space: {
47408
+ types: [
47409
+ "string"
47410
+ ],
47411
+ enumValues: [
47412
+ "world",
47413
+ "screen"
47414
+ ]
47415
+ },
47416
+ effect: {
47417
+ types: [
47418
+ "string"
47419
+ ],
47420
+ enumValues: [
47421
+ "confetti",
47422
+ "flash",
47423
+ "shake",
47424
+ "sparkle",
47425
+ "float-text",
47426
+ "streak-glow"
47427
+ ]
47428
+ },
47429
+ color: {
47430
+ types: [
47431
+ "string"
47432
+ ]
47433
+ },
47434
+ size: {
47435
+ types: [
47436
+ "number"
47437
+ ]
47438
+ },
47439
+ vx: {
47440
+ types: [
47441
+ "number"
47442
+ ]
47443
+ },
47444
+ vy: {
47445
+ types: [
47446
+ "number"
47447
+ ]
47448
+ },
47449
+ vz: {
47450
+ types: [
47451
+ "number"
47452
+ ]
47453
+ },
47454
+ particleCount: {
47455
+ types: [
47456
+ "number"
47457
+ ]
47458
+ }
47459
+ },
47460
+ required: [
47461
+ "id",
47462
+ "type",
47463
+ "x",
47464
+ "ttl"
47465
+ ]
47466
+ }
47467
+ },
47468
+ presets: {
47469
+ types: [
47470
+ "array"
47471
+ ],
47472
+ description: "Consumer-declared effect vocabulary — one row per fx `type` (look + recipe). Unknown types fall back to a neutral spark burst.",
47473
+ items: {
47474
+ types: [
47475
+ "object"
47476
+ ],
47477
+ properties: {
47478
+ type: {
47479
+ types: [
47480
+ "string"
47481
+ ]
47482
+ },
47483
+ color: {
47484
+ types: [
47485
+ "string"
47486
+ ]
47487
+ },
47488
+ color2: {
47489
+ types: [
47490
+ "string"
47491
+ ]
47492
+ },
47493
+ size: {
47494
+ types: [
47495
+ "number"
47496
+ ]
47497
+ },
47498
+ shape: {
47499
+ types: [
47500
+ "string"
47501
+ ],
47502
+ enumValues: [
47503
+ "spark",
47504
+ "ring",
47505
+ "puff",
47506
+ "streak"
47507
+ ]
47508
+ },
47509
+ count: {
47510
+ types: [
47511
+ "number"
47512
+ ]
47513
+ },
47514
+ glow: {
47515
+ types: [
47516
+ "number"
47517
+ ]
47518
+ },
47519
+ gravity: {
47520
+ types: [
47521
+ "number"
47522
+ ]
47523
+ },
47524
+ vx: {
47525
+ types: [
47526
+ "number"
47527
+ ]
47528
+ },
47529
+ vy: {
47530
+ types: [
47531
+ "number"
47532
+ ]
47533
+ },
47534
+ vz: {
47535
+ types: [
47536
+ "number"
47537
+ ]
47538
+ },
47539
+ space: {
47540
+ types: [
47541
+ "string"
47542
+ ],
47543
+ enumValues: [
47544
+ "world",
47545
+ "screen"
47546
+ ]
47547
+ },
47548
+ effect: {
47549
+ types: [
47550
+ "string"
47551
+ ],
47552
+ enumValues: [
47553
+ "confetti",
47554
+ "flash",
47555
+ "shake",
47556
+ "sparkle",
47557
+ "float-text",
47558
+ "streak-glow"
47559
+ ]
47560
+ },
47561
+ particleCount: {
47562
+ types: [
47563
+ "number"
47564
+ ]
47565
+ }
47566
+ },
47567
+ required: [
47568
+ "type"
47569
+ ]
47570
+ }
47571
+ },
47572
+ art: {
47573
+ types: [
47574
+ "object"
47575
+ ],
47576
+ description: "Vector art per fx type (an asset-art map: type → anim-state → drawables); a type's `idle` state wins over sprites/procedural.",
47577
+ mapValue: {
47578
+ types: [
47579
+ "object"
47580
+ ],
47581
+ mapValue: {
47582
+ types: [
47583
+ "array"
47584
+ ],
47585
+ items: {
47586
+ types: [
47587
+ "object"
47588
+ ],
47589
+ drawableSlot: true
47590
+ }
47591
+ }
47592
+ }
47593
+ },
47594
+ sprites: {
47595
+ types: [
47596
+ "object"
47597
+ ],
47598
+ description: "Sprite asset per fx type (an asset-manifest effects map) — used when no vector art matches.",
47599
+ mapValue: {
47600
+ types: [
47601
+ "object"
47602
+ ],
47603
+ properties: {
47604
+ url: {
47605
+ types: [
47606
+ "asset"
47607
+ ]
47608
+ },
47609
+ role: {
47610
+ types: [
47611
+ "string"
47612
+ ]
47613
+ },
47614
+ category: {
47615
+ types: [
47616
+ "string"
47617
+ ]
47618
+ },
47619
+ animations: {
47620
+ types: [
47621
+ "array"
47622
+ ],
47623
+ items: {
47624
+ types: [
47625
+ "string"
47626
+ ]
47627
+ }
47628
+ },
47629
+ style: {
47630
+ types: [
47631
+ "string"
47632
+ ],
47633
+ enumValues: [
47634
+ "pixel",
47635
+ "vector",
47636
+ "hd",
47637
+ "1-bit",
47638
+ "isometric"
47639
+ ]
47640
+ },
47641
+ variant: {
47642
+ types: [
47643
+ "string"
47644
+ ]
47645
+ },
47646
+ dimension: {
47647
+ types: [
47648
+ "string"
47649
+ ],
47650
+ enumValues: [
47651
+ "2d",
47652
+ "3d"
47653
+ ]
47654
+ },
47655
+ aspect: {
47656
+ types: [
47657
+ "string"
47658
+ ],
47659
+ enumValues: [
47660
+ "1:1",
47661
+ "16:9",
47662
+ "5:7",
47663
+ "8:1"
47664
+ ]
47665
+ },
47666
+ atlas: {
47667
+ types: [
47668
+ "asset"
47669
+ ]
47670
+ },
47671
+ sprite: {
47672
+ types: [
47673
+ "string"
47674
+ ]
47675
+ },
47676
+ name: {
47677
+ types: [
47678
+ "string"
47679
+ ]
47680
+ },
47681
+ thumbnailUrl: {
47682
+ types: [
47683
+ "string"
47684
+ ]
47685
+ }
47686
+ },
47687
+ required: [
47688
+ "url",
47689
+ "role",
47690
+ "category"
47691
+ ]
47692
+ }
47693
+ },
47694
+ tickMs: {
47695
+ types: [
47696
+ "number"
47697
+ ],
47698
+ description: "The fx mechanic's decay tick period in ms; lifetime = maxTtl × tickMs. Default 500."
47699
+ },
47700
+ textColor: {
47701
+ types: [
47702
+ "string"
47703
+ ],
47704
+ description: "Floating-message text color when an item declares none. Default `#ffe066`."
47705
+ }
47706
+ },
47707
+ drawable: true,
47708
+ drawHost: true
47129
47709
  }
47130
47710
  };
47131
47711
  var categories$1 = [
@@ -48116,7 +48696,7 @@ var integratorsRegistry = {
48116
48696
  };
48117
48697
 
48118
48698
  var version$1 = "1.0.0";
48119
- var exportedAt$1 = "2026-08-20T06:39:15.858Z";
48699
+ var exportedAt$1 = "2026-08-20T23:14:19.545Z";
48120
48700
  var mappings = {
48121
48701
  "page-header": {
48122
48702
  component: "PageHeader",
@@ -49509,6 +50089,16 @@ var mappings = {
49509
50089
  component: "AlgoGraphCanvas",
49510
50090
  importPath: "@/components/learning/molecules/AlgoGraphCanvas",
49511
50091
  category: "learning"
50092
+ },
50093
+ "fx-overlay": {
50094
+ component: "FxOverlay",
50095
+ importPath: "@/components/core/molecules/FxOverlay",
50096
+ category: "container"
50097
+ },
50098
+ "draw-fx-layer": {
50099
+ component: "DrawFxLayer",
50100
+ importPath: "@/components/game/molecules/DrawFxLayer",
50101
+ category: "game"
49512
50102
  }
49513
50103
  };
49514
50104
  var componentMapping = {
@@ -49518,7 +50108,7 @@ var componentMapping = {
49518
50108
  };
49519
50109
 
49520
50110
  var version = "1.0.0";
49521
- var exportedAt = "2026-08-20T06:39:15.858Z";
50111
+ var exportedAt = "2026-08-20T23:14:19.545Z";
49522
50112
  var contracts = {
49523
50113
  form: {
49524
50114
  emits: [
@@ -52810,6 +53400,9 @@ declare const registry: {
52810
53400
  properties: {
52811
53401
  formValues: {
52812
53402
  types: string[];
53403
+ mapValue: {
53404
+ types: string[];
53405
+ };
52813
53406
  };
52814
53407
  globalVariables: {
52815
53408
  types: string[];
@@ -52827,6 +53420,9 @@ declare const registry: {
52827
53420
  };
52828
53421
  entity: {
52829
53422
  types: string[];
53423
+ mapValue: {
53424
+ types: string[];
53425
+ };
52830
53426
  };
52831
53427
  };
52832
53428
  propertyRequired: string[];
@@ -53329,6 +53925,9 @@ declare const registry: {
53329
53925
  properties: {
53330
53926
  formValues: {
53331
53927
  types: string[];
53928
+ mapValue: {
53929
+ types: string[];
53930
+ };
53332
53931
  };
53333
53932
  globalVariables: {
53334
53933
  types: string[];
@@ -53346,6 +53945,9 @@ declare const registry: {
53346
53945
  };
53347
53946
  entity: {
53348
53947
  types: string[];
53948
+ mapValue: {
53949
+ types: string[];
53950
+ };
53349
53951
  };
53350
53952
  };
53351
53953
  propertyRequired: string[];
@@ -79844,6 +80446,324 @@ declare const registry: {
79844
80446
  };
79845
80447
  };
79846
80448
  };
80449
+ "fx-overlay": {
80450
+ type: string;
80451
+ category: string;
80452
+ tier: string;
80453
+ family: string;
80454
+ description: string;
80455
+ suggestedFor: string[];
80456
+ typicalSize: string;
80457
+ propsSchema: {
80458
+ items: {
80459
+ types: string[];
80460
+ description: string;
80461
+ required: boolean;
80462
+ items: {
80463
+ types: string[];
80464
+ properties: {
80465
+ id: {
80466
+ types: string[];
80467
+ };
80468
+ type: {
80469
+ types: string[];
80470
+ };
80471
+ effect: {
80472
+ types: string[];
80473
+ enumValues: string[];
80474
+ };
80475
+ message: {
80476
+ types: string[];
80477
+ };
80478
+ color: {
80479
+ types: string[];
80480
+ };
80481
+ size: {
80482
+ types: string[];
80483
+ };
80484
+ x: {
80485
+ types: string[];
80486
+ };
80487
+ z: {
80488
+ types: string[];
80489
+ };
80490
+ y: {
80491
+ types: string[];
80492
+ };
80493
+ ttl: {
80494
+ types: string[];
80495
+ };
80496
+ maxTtl: {
80497
+ types: string[];
80498
+ };
80499
+ bornAt: {
80500
+ types: string[];
80501
+ };
80502
+ space: {
80503
+ types: string[];
80504
+ enumValues: string[];
80505
+ };
80506
+ particleCount: {
80507
+ types: string[];
80508
+ };
80509
+ vx: {
80510
+ types: string[];
80511
+ };
80512
+ vy: {
80513
+ types: string[];
80514
+ };
80515
+ vz: {
80516
+ types: string[];
80517
+ };
80518
+ };
80519
+ required: string[];
80520
+ };
80521
+ };
80522
+ tickMs: {
80523
+ types: string[];
80524
+ description: string;
80525
+ };
80526
+ children: {
80527
+ types: string[];
80528
+ description: string;
80529
+ };
80530
+ className: {
80531
+ types: string[];
80532
+ description: string;
80533
+ };
80534
+ };
80535
+ };
80536
+ "draw-fx-layer": {
80537
+ type: string;
80538
+ category: string;
80539
+ tier: string;
80540
+ family: string;
80541
+ description: string;
80542
+ suggestedFor: string[];
80543
+ typicalSize: string;
80544
+ propsSchema: {
80545
+ id: {
80546
+ types: string[];
80547
+ description: string;
80548
+ };
80549
+ type: {
80550
+ types: string[];
80551
+ description: string;
80552
+ required: boolean;
80553
+ };
80554
+ items: {
80555
+ types: string[];
80556
+ description: string;
80557
+ required: boolean;
80558
+ items: {
80559
+ types: string[];
80560
+ properties: {
80561
+ id: {
80562
+ types: string[];
80563
+ };
80564
+ type: {
80565
+ types: string[];
80566
+ };
80567
+ position: {
80568
+ types: string[];
80569
+ scenePos: boolean;
80570
+ properties: {
80571
+ x: {
80572
+ types: string[];
80573
+ };
80574
+ y: {
80575
+ types: string[];
80576
+ };
80577
+ z: {
80578
+ types: string[];
80579
+ };
80580
+ };
80581
+ required: string[];
80582
+ };
80583
+ x: {
80584
+ types: string[];
80585
+ };
80586
+ z: {
80587
+ types: string[];
80588
+ };
80589
+ y: {
80590
+ types: string[];
80591
+ };
80592
+ message: {
80593
+ types: string[];
80594
+ };
80595
+ ttl: {
80596
+ types: string[];
80597
+ };
80598
+ maxTtl: {
80599
+ types: string[];
80600
+ };
80601
+ bornAt: {
80602
+ types: string[];
80603
+ };
80604
+ space: {
80605
+ types: string[];
80606
+ enumValues: string[];
80607
+ };
80608
+ effect: {
80609
+ types: string[];
80610
+ enumValues: string[];
80611
+ };
80612
+ color: {
80613
+ types: string[];
80614
+ };
80615
+ size: {
80616
+ types: string[];
80617
+ };
80618
+ vx: {
80619
+ types: string[];
80620
+ };
80621
+ vy: {
80622
+ types: string[];
80623
+ };
80624
+ vz: {
80625
+ types: string[];
80626
+ };
80627
+ particleCount: {
80628
+ types: string[];
80629
+ };
80630
+ };
80631
+ required: string[];
80632
+ };
80633
+ };
80634
+ presets: {
80635
+ types: string[];
80636
+ description: string;
80637
+ items: {
80638
+ types: string[];
80639
+ properties: {
80640
+ type: {
80641
+ types: string[];
80642
+ };
80643
+ color: {
80644
+ types: string[];
80645
+ };
80646
+ color2: {
80647
+ types: string[];
80648
+ };
80649
+ size: {
80650
+ types: string[];
80651
+ };
80652
+ shape: {
80653
+ types: string[];
80654
+ enumValues: string[];
80655
+ };
80656
+ count: {
80657
+ types: string[];
80658
+ };
80659
+ glow: {
80660
+ types: string[];
80661
+ };
80662
+ gravity: {
80663
+ types: string[];
80664
+ };
80665
+ vx: {
80666
+ types: string[];
80667
+ };
80668
+ vy: {
80669
+ types: string[];
80670
+ };
80671
+ vz: {
80672
+ types: string[];
80673
+ };
80674
+ space: {
80675
+ types: string[];
80676
+ enumValues: string[];
80677
+ };
80678
+ effect: {
80679
+ types: string[];
80680
+ enumValues: string[];
80681
+ };
80682
+ particleCount: {
80683
+ types: string[];
80684
+ };
80685
+ };
80686
+ required: string[];
80687
+ };
80688
+ };
80689
+ art: {
80690
+ types: string[];
80691
+ description: string;
80692
+ mapValue: {
80693
+ types: string[];
80694
+ mapValue: {
80695
+ types: string[];
80696
+ items: {
80697
+ types: string[];
80698
+ drawableSlot: boolean;
80699
+ };
80700
+ };
80701
+ };
80702
+ };
80703
+ sprites: {
80704
+ types: string[];
80705
+ description: string;
80706
+ mapValue: {
80707
+ types: string[];
80708
+ properties: {
80709
+ url: {
80710
+ types: string[];
80711
+ };
80712
+ role: {
80713
+ types: string[];
80714
+ };
80715
+ category: {
80716
+ types: string[];
80717
+ };
80718
+ animations: {
80719
+ types: string[];
80720
+ items: {
80721
+ types: string[];
80722
+ };
80723
+ };
80724
+ style: {
80725
+ types: string[];
80726
+ enumValues: string[];
80727
+ };
80728
+ variant: {
80729
+ types: string[];
80730
+ };
80731
+ dimension: {
80732
+ types: string[];
80733
+ enumValues: string[];
80734
+ };
80735
+ aspect: {
80736
+ types: string[];
80737
+ enumValues: string[];
80738
+ };
80739
+ atlas: {
80740
+ types: string[];
80741
+ };
80742
+ sprite: {
80743
+ types: string[];
80744
+ };
80745
+ name: {
80746
+ types: string[];
80747
+ };
80748
+ thumbnailUrl: {
80749
+ types: string[];
80750
+ };
80751
+ };
80752
+ required: string[];
80753
+ };
80754
+ };
80755
+ tickMs: {
80756
+ types: string[];
80757
+ description: string;
80758
+ };
80759
+ textColor: {
80760
+ types: string[];
80761
+ description: string;
80762
+ };
80763
+ };
80764
+ drawable: boolean;
80765
+ drawHost: boolean;
80766
+ };
79847
80767
  };
79848
80768
  categories: string[];
79849
80769
  };
@@ -81395,6 +82315,9 @@ declare const PATTERN_REGISTRY: {
81395
82315
  properties: {
81396
82316
  formValues: {
81397
82317
  types: string[];
82318
+ mapValue: {
82319
+ types: string[];
82320
+ };
81398
82321
  };
81399
82322
  globalVariables: {
81400
82323
  types: string[];
@@ -81412,6 +82335,9 @@ declare const PATTERN_REGISTRY: {
81412
82335
  };
81413
82336
  entity: {
81414
82337
  types: string[];
82338
+ mapValue: {
82339
+ types: string[];
82340
+ };
81415
82341
  };
81416
82342
  };
81417
82343
  propertyRequired: string[];
@@ -81914,6 +82840,9 @@ declare const PATTERN_REGISTRY: {
81914
82840
  properties: {
81915
82841
  formValues: {
81916
82842
  types: string[];
82843
+ mapValue: {
82844
+ types: string[];
82845
+ };
81917
82846
  };
81918
82847
  globalVariables: {
81919
82848
  types: string[];
@@ -81931,6 +82860,9 @@ declare const PATTERN_REGISTRY: {
81931
82860
  };
81932
82861
  entity: {
81933
82862
  types: string[];
82863
+ mapValue: {
82864
+ types: string[];
82865
+ };
81934
82866
  };
81935
82867
  };
81936
82868
  propertyRequired: string[];
@@ -108429,6 +109361,324 @@ declare const PATTERN_REGISTRY: {
108429
109361
  };
108430
109362
  };
108431
109363
  };
109364
+ "fx-overlay": {
109365
+ type: string;
109366
+ category: string;
109367
+ tier: string;
109368
+ family: string;
109369
+ description: string;
109370
+ suggestedFor: string[];
109371
+ typicalSize: string;
109372
+ propsSchema: {
109373
+ items: {
109374
+ types: string[];
109375
+ description: string;
109376
+ required: boolean;
109377
+ items: {
109378
+ types: string[];
109379
+ properties: {
109380
+ id: {
109381
+ types: string[];
109382
+ };
109383
+ type: {
109384
+ types: string[];
109385
+ };
109386
+ effect: {
109387
+ types: string[];
109388
+ enumValues: string[];
109389
+ };
109390
+ message: {
109391
+ types: string[];
109392
+ };
109393
+ color: {
109394
+ types: string[];
109395
+ };
109396
+ size: {
109397
+ types: string[];
109398
+ };
109399
+ x: {
109400
+ types: string[];
109401
+ };
109402
+ z: {
109403
+ types: string[];
109404
+ };
109405
+ y: {
109406
+ types: string[];
109407
+ };
109408
+ ttl: {
109409
+ types: string[];
109410
+ };
109411
+ maxTtl: {
109412
+ types: string[];
109413
+ };
109414
+ bornAt: {
109415
+ types: string[];
109416
+ };
109417
+ space: {
109418
+ types: string[];
109419
+ enumValues: string[];
109420
+ };
109421
+ particleCount: {
109422
+ types: string[];
109423
+ };
109424
+ vx: {
109425
+ types: string[];
109426
+ };
109427
+ vy: {
109428
+ types: string[];
109429
+ };
109430
+ vz: {
109431
+ types: string[];
109432
+ };
109433
+ };
109434
+ required: string[];
109435
+ };
109436
+ };
109437
+ tickMs: {
109438
+ types: string[];
109439
+ description: string;
109440
+ };
109441
+ children: {
109442
+ types: string[];
109443
+ description: string;
109444
+ };
109445
+ className: {
109446
+ types: string[];
109447
+ description: string;
109448
+ };
109449
+ };
109450
+ };
109451
+ "draw-fx-layer": {
109452
+ type: string;
109453
+ category: string;
109454
+ tier: string;
109455
+ family: string;
109456
+ description: string;
109457
+ suggestedFor: string[];
109458
+ typicalSize: string;
109459
+ propsSchema: {
109460
+ id: {
109461
+ types: string[];
109462
+ description: string;
109463
+ };
109464
+ type: {
109465
+ types: string[];
109466
+ description: string;
109467
+ required: boolean;
109468
+ };
109469
+ items: {
109470
+ types: string[];
109471
+ description: string;
109472
+ required: boolean;
109473
+ items: {
109474
+ types: string[];
109475
+ properties: {
109476
+ id: {
109477
+ types: string[];
109478
+ };
109479
+ type: {
109480
+ types: string[];
109481
+ };
109482
+ position: {
109483
+ types: string[];
109484
+ scenePos: boolean;
109485
+ properties: {
109486
+ x: {
109487
+ types: string[];
109488
+ };
109489
+ y: {
109490
+ types: string[];
109491
+ };
109492
+ z: {
109493
+ types: string[];
109494
+ };
109495
+ };
109496
+ required: string[];
109497
+ };
109498
+ x: {
109499
+ types: string[];
109500
+ };
109501
+ z: {
109502
+ types: string[];
109503
+ };
109504
+ y: {
109505
+ types: string[];
109506
+ };
109507
+ message: {
109508
+ types: string[];
109509
+ };
109510
+ ttl: {
109511
+ types: string[];
109512
+ };
109513
+ maxTtl: {
109514
+ types: string[];
109515
+ };
109516
+ bornAt: {
109517
+ types: string[];
109518
+ };
109519
+ space: {
109520
+ types: string[];
109521
+ enumValues: string[];
109522
+ };
109523
+ effect: {
109524
+ types: string[];
109525
+ enumValues: string[];
109526
+ };
109527
+ color: {
109528
+ types: string[];
109529
+ };
109530
+ size: {
109531
+ types: string[];
109532
+ };
109533
+ vx: {
109534
+ types: string[];
109535
+ };
109536
+ vy: {
109537
+ types: string[];
109538
+ };
109539
+ vz: {
109540
+ types: string[];
109541
+ };
109542
+ particleCount: {
109543
+ types: string[];
109544
+ };
109545
+ };
109546
+ required: string[];
109547
+ };
109548
+ };
109549
+ presets: {
109550
+ types: string[];
109551
+ description: string;
109552
+ items: {
109553
+ types: string[];
109554
+ properties: {
109555
+ type: {
109556
+ types: string[];
109557
+ };
109558
+ color: {
109559
+ types: string[];
109560
+ };
109561
+ color2: {
109562
+ types: string[];
109563
+ };
109564
+ size: {
109565
+ types: string[];
109566
+ };
109567
+ shape: {
109568
+ types: string[];
109569
+ enumValues: string[];
109570
+ };
109571
+ count: {
109572
+ types: string[];
109573
+ };
109574
+ glow: {
109575
+ types: string[];
109576
+ };
109577
+ gravity: {
109578
+ types: string[];
109579
+ };
109580
+ vx: {
109581
+ types: string[];
109582
+ };
109583
+ vy: {
109584
+ types: string[];
109585
+ };
109586
+ vz: {
109587
+ types: string[];
109588
+ };
109589
+ space: {
109590
+ types: string[];
109591
+ enumValues: string[];
109592
+ };
109593
+ effect: {
109594
+ types: string[];
109595
+ enumValues: string[];
109596
+ };
109597
+ particleCount: {
109598
+ types: string[];
109599
+ };
109600
+ };
109601
+ required: string[];
109602
+ };
109603
+ };
109604
+ art: {
109605
+ types: string[];
109606
+ description: string;
109607
+ mapValue: {
109608
+ types: string[];
109609
+ mapValue: {
109610
+ types: string[];
109611
+ items: {
109612
+ types: string[];
109613
+ drawableSlot: boolean;
109614
+ };
109615
+ };
109616
+ };
109617
+ };
109618
+ sprites: {
109619
+ types: string[];
109620
+ description: string;
109621
+ mapValue: {
109622
+ types: string[];
109623
+ properties: {
109624
+ url: {
109625
+ types: string[];
109626
+ };
109627
+ role: {
109628
+ types: string[];
109629
+ };
109630
+ category: {
109631
+ types: string[];
109632
+ };
109633
+ animations: {
109634
+ types: string[];
109635
+ items: {
109636
+ types: string[];
109637
+ };
109638
+ };
109639
+ style: {
109640
+ types: string[];
109641
+ enumValues: string[];
109642
+ };
109643
+ variant: {
109644
+ types: string[];
109645
+ };
109646
+ dimension: {
109647
+ types: string[];
109648
+ enumValues: string[];
109649
+ };
109650
+ aspect: {
109651
+ types: string[];
109652
+ enumValues: string[];
109653
+ };
109654
+ atlas: {
109655
+ types: string[];
109656
+ };
109657
+ sprite: {
109658
+ types: string[];
109659
+ };
109660
+ name: {
109661
+ types: string[];
109662
+ };
109663
+ thumbnailUrl: {
109664
+ types: string[];
109665
+ };
109666
+ };
109667
+ required: string[];
109668
+ };
109669
+ };
109670
+ tickMs: {
109671
+ types: string[];
109672
+ description: string;
109673
+ };
109674
+ textColor: {
109675
+ types: string[];
109676
+ description: string;
109677
+ };
109678
+ };
109679
+ drawable: boolean;
109680
+ drawHost: boolean;
109681
+ };
108432
109682
  };
108433
109683
  categories: string[];
108434
109684
  };
@@ -110566,6 +111816,16 @@ declare const COMPONENT_MAPPING: {
110566
111816
  importPath: string;
110567
111817
  category: string;
110568
111818
  };
111819
+ "fx-overlay": {
111820
+ component: string;
111821
+ importPath: string;
111822
+ category: string;
111823
+ };
111824
+ "draw-fx-layer": {
111825
+ component: string;
111826
+ importPath: string;
111827
+ category: string;
111828
+ };
110569
111829
  };
110570
111830
  };
110571
111831
  declare const EVENT_CONTRACTS: {