@almadar/core 10.46.0 → 10.47.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.
@@ -3,7 +3,7 @@ import { z } from 'zod';
3
3
  // src/patterns/patterns-registry.json
4
4
  var patterns_registry_default = {
5
5
  version: "1.0.0",
6
- exportedAt: "2026-07-31T03:04:39.259Z",
6
+ exportedAt: "2026-07-31T07:15:07.239Z",
7
7
  patterns: {
8
8
  "entity-table": {
9
9
  type: "entity-table",
@@ -39381,7 +39381,8 @@ var patterns_registry_default = {
39381
39381
  ],
39382
39382
  enumValues: [
39383
39383
  "linear",
39384
- "radial"
39384
+ "radial",
39385
+ "conic"
39385
39386
  ]
39386
39387
  },
39387
39388
  from: {
@@ -39404,6 +39405,11 @@ var patterns_registry_default = {
39404
39405
  "number"
39405
39406
  ]
39406
39407
  },
39408
+ angle: {
39409
+ types: [
39410
+ "number"
39411
+ ]
39412
+ },
39407
39413
  stops: {
39408
39414
  types: [
39409
39415
  "array"
@@ -39420,6 +39426,46 @@ var patterns_registry_default = {
39420
39426
  "stops"
39421
39427
  ]
39422
39428
  },
39429
+ fillPattern: {
39430
+ types: [
39431
+ "object"
39432
+ ],
39433
+ description: "Repeating texture painted over the fill (grain / tiling image).",
39434
+ properties: {
39435
+ kind: {
39436
+ types: [
39437
+ "string"
39438
+ ],
39439
+ enumValues: [
39440
+ "noise",
39441
+ "image"
39442
+ ]
39443
+ },
39444
+ url: {
39445
+ types: [
39446
+ "string"
39447
+ ]
39448
+ },
39449
+ scale: {
39450
+ types: [
39451
+ "number"
39452
+ ]
39453
+ },
39454
+ alpha: {
39455
+ types: [
39456
+ "number"
39457
+ ]
39458
+ },
39459
+ color: {
39460
+ types: [
39461
+ "string"
39462
+ ]
39463
+ }
39464
+ },
39465
+ propertyRequired: [
39466
+ "kind"
39467
+ ]
39468
+ },
39423
39469
  stroke: {
39424
39470
  types: [
39425
39471
  "string"
@@ -39432,6 +39478,115 @@ var patterns_registry_default = {
39432
39478
  ],
39433
39479
  description: "strokeWidth prop"
39434
39480
  },
39481
+ strokeGradient: {
39482
+ types: [
39483
+ "object"
39484
+ ],
39485
+ description: "Gradient stroke in world units; overrides `stroke` when present.",
39486
+ properties: {
39487
+ kind: {
39488
+ types: [
39489
+ "string"
39490
+ ],
39491
+ enumValues: [
39492
+ "linear",
39493
+ "radial",
39494
+ "conic"
39495
+ ]
39496
+ },
39497
+ from: {
39498
+ types: [
39499
+ "object"
39500
+ ]
39501
+ },
39502
+ to: {
39503
+ types: [
39504
+ "object"
39505
+ ]
39506
+ },
39507
+ center: {
39508
+ types: [
39509
+ "object"
39510
+ ]
39511
+ },
39512
+ radius: {
39513
+ types: [
39514
+ "number"
39515
+ ]
39516
+ },
39517
+ angle: {
39518
+ types: [
39519
+ "number"
39520
+ ]
39521
+ },
39522
+ stops: {
39523
+ types: [
39524
+ "array"
39525
+ ],
39526
+ items: {
39527
+ types: [
39528
+ "object"
39529
+ ]
39530
+ }
39531
+ }
39532
+ },
39533
+ propertyRequired: [
39534
+ "kind",
39535
+ "stops"
39536
+ ]
39537
+ },
39538
+ strokeDash: {
39539
+ types: [
39540
+ "array"
39541
+ ],
39542
+ description: "Dash pattern in painter-px (constant under group scale, like `strokeWidth`).",
39543
+ items: {
39544
+ types: [
39545
+ "number"
39546
+ ]
39547
+ }
39548
+ },
39549
+ strokeDashOffset: {
39550
+ types: [
39551
+ "number"
39552
+ ],
39553
+ description: "Dash phase offset in painter-px; animatable (marching ants)."
39554
+ },
39555
+ blendMode: {
39556
+ types: [
39557
+ "string"
39558
+ ],
39559
+ description: "Composite/blend mode for this shape's draws (`lighter`, `multiply`, `screen`, \u2026).",
39560
+ enumValues: [
39561
+ "source-over",
39562
+ "lighter",
39563
+ "multiply",
39564
+ "screen",
39565
+ "overlay",
39566
+ "darken",
39567
+ "lighten",
39568
+ "color-dodge",
39569
+ "color-burn",
39570
+ "hard-light",
39571
+ "soft-light",
39572
+ "difference",
39573
+ "exclusion",
39574
+ "hue",
39575
+ "saturation",
39576
+ "color",
39577
+ "luminosity",
39578
+ "source-atop",
39579
+ "destination-over",
39580
+ "destination-out",
39581
+ "xor"
39582
+ ]
39583
+ },
39584
+ blur: {
39585
+ types: [
39586
+ "number"
39587
+ ],
39588
+ description: "Gaussian blur in painter-px. Expensive \u2014 forces an intermediate raster; use sparingly."
39589
+ },
39435
39590
  rotate: {
39436
39591
  types: [
39437
39592
  "number"
@@ -39541,6 +39696,16 @@ var patterns_registry_default = {
39541
39696
  "number"
39542
39697
  ]
39543
39698
  },
39699
+ strokeDashOffset: {
39700
+ types: [
39701
+ "number"
39702
+ ]
39703
+ },
39704
+ blur: {
39705
+ types: [
39706
+ "number"
39707
+ ]
39708
+ },
39544
39709
  fill: {
39545
39710
  types: [
39546
39711
  "string"
@@ -40063,7 +40228,8 @@ var patterns_registry_default = {
40063
40228
  ],
40064
40229
  enumValues: [
40065
40230
  "linear",
40066
- "radial"
40231
+ "radial",
40232
+ "conic"
40067
40233
  ]
40068
40234
  },
40069
40235
  from: {
@@ -40086,6 +40252,11 @@ var patterns_registry_default = {
40086
40252
  "number"
40087
40253
  ]
40088
40254
  },
40255
+ angle: {
40256
+ types: [
40257
+ "number"
40258
+ ]
40259
+ },
40089
40260
  stops: {
40090
40261
  types: [
40091
40262
  "array"
@@ -40102,6 +40273,45 @@ var patterns_registry_default = {
40102
40273
  "stops"
40103
40274
  ]
40104
40275
  },
40276
+ fillPattern: {
40277
+ types: [
40278
+ "object"
40279
+ ],
40280
+ properties: {
40281
+ kind: {
40282
+ types: [
40283
+ "string"
40284
+ ],
40285
+ enumValues: [
40286
+ "noise",
40287
+ "image"
40288
+ ]
40289
+ },
40290
+ url: {
40291
+ types: [
40292
+ "string"
40293
+ ]
40294
+ },
40295
+ scale: {
40296
+ types: [
40297
+ "number"
40298
+ ]
40299
+ },
40300
+ alpha: {
40301
+ types: [
40302
+ "number"
40303
+ ]
40304
+ },
40305
+ color: {
40306
+ types: [
40307
+ "string"
40308
+ ]
40309
+ }
40310
+ },
40311
+ required: [
40312
+ "kind"
40313
+ ]
40314
+ },
40105
40315
  stroke: {
40106
40316
  types: [
40107
40317
  "string"
@@ -40112,6 +40322,110 @@ var patterns_registry_default = {
40112
40322
  "number"
40113
40323
  ]
40114
40324
  },
40325
+ strokeGradient: {
40326
+ types: [
40327
+ "object"
40328
+ ],
40329
+ properties: {
40330
+ kind: {
40331
+ types: [
40332
+ "string"
40333
+ ],
40334
+ enumValues: [
40335
+ "linear",
40336
+ "radial",
40337
+ "conic"
40338
+ ]
40339
+ },
40340
+ from: {
40341
+ types: [
40342
+ "object"
40343
+ ]
40344
+ },
40345
+ to: {
40346
+ types: [
40347
+ "object"
40348
+ ]
40349
+ },
40350
+ center: {
40351
+ types: [
40352
+ "object"
40353
+ ]
40354
+ },
40355
+ radius: {
40356
+ types: [
40357
+ "number"
40358
+ ]
40359
+ },
40360
+ angle: {
40361
+ types: [
40362
+ "number"
40363
+ ]
40364
+ },
40365
+ stops: {
40366
+ types: [
40367
+ "array"
40368
+ ],
40369
+ items: {
40370
+ types: [
40371
+ "object"
40372
+ ]
40373
+ }
40374
+ }
40375
+ },
40376
+ required: [
40377
+ "kind",
40378
+ "stops"
40379
+ ]
40380
+ },
40381
+ strokeDash: {
40382
+ types: [
40383
+ "array"
40384
+ ],
40385
+ items: {
40386
+ types: [
40387
+ "number"
40388
+ ]
40389
+ }
40390
+ },
40391
+ strokeDashOffset: {
40392
+ types: [
40393
+ "number"
40394
+ ]
40395
+ },
40396
+ blendMode: {
40397
+ types: [
40398
+ "string"
40399
+ ],
40400
+ enumValues: [
40401
+ "source-over",
40402
+ "lighter",
40403
+ "multiply",
40404
+ "screen",
40405
+ "overlay",
40406
+ "darken",
40407
+ "lighten",
40408
+ "color-dodge",
40409
+ "color-burn",
40410
+ "hard-light",
40411
+ "soft-light",
40412
+ "difference",
40413
+ "exclusion",
40414
+ "hue",
40415
+ "saturation",
40416
+ "color",
40417
+ "luminosity",
40418
+ "source-atop",
40419
+ "destination-over",
40420
+ "destination-out",
40421
+ "xor"
40422
+ ]
40423
+ },
40424
+ blur: {
40425
+ types: [
40426
+ "number"
40427
+ ]
40428
+ },
40115
40429
  rotate: {
40116
40430
  types: [
40117
40431
  "number"
@@ -40217,6 +40531,16 @@ var patterns_registry_default = {
40217
40531
  "number"
40218
40532
  ]
40219
40533
  },
40534
+ strokeDashOffset: {
40535
+ types: [
40536
+ "number"
40537
+ ]
40538
+ },
40539
+ blur: {
40540
+ types: [
40541
+ "number"
40542
+ ]
40543
+ },
40220
40544
  fill: {
40221
40545
  types: [
40222
40546
  "string"
@@ -41483,6 +41807,12 @@ var patterns_registry_default = {
41483
41807
  ],
41484
41808
  description: "0..1 opacity."
41485
41809
  },
41810
+ clip: {
41811
+ types: [
41812
+ "string"
41813
+ ],
41814
+ description: "Clip the group's items to an SVG path (`d` syntax) in world units relative to the group origin \u2014 masked reveals, meters, portraits."
41815
+ },
41486
41816
  items: {
41487
41817
  types: [
41488
41818
  "array"
@@ -42474,7 +42804,7 @@ var integrators_registry_default = {
42474
42804
  // src/patterns/component-mapping.json
42475
42805
  var component_mapping_default = {
42476
42806
  version: "1.0.0",
42477
- exportedAt: "2026-07-31T03:04:39.259Z",
42807
+ exportedAt: "2026-07-31T07:15:07.239Z",
42478
42808
  mappings: {
42479
42809
  "page-header": {
42480
42810
  component: "PageHeader",
@@ -43864,7 +44194,7 @@ var component_mapping_default = {
43864
44194
  // src/patterns/event-contracts.json
43865
44195
  var event_contracts_default = {
43866
44196
  version: "1.0.0",
43867
- exportedAt: "2026-07-31T03:04:39.259Z",
44197
+ exportedAt: "2026-07-31T07:15:07.239Z",
43868
44198
  contracts: {
43869
44199
  form: {
43870
44200
  emits: [