@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.
@@ -1,10 +1,10 @@
1
- import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, aY as PatternType } from '../effect-DomdqOGT.js';
2
- export { aR as PATTERN_TYPES, aV as PatternConfig, aW as PatternProps, aX as PatternPropsMap, cL as isValidPatternType } from '../effect-DomdqOGT.js';
1
+ import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, aY as PatternType } from '../effect-BZDXo4bV.js';
2
+ export { aR as PATTERN_TYPES, aV as PatternConfig, aW as PatternProps, aX as PatternPropsMap, cL as isValidPatternType } from '../effect-BZDXo4bV.js';
3
3
  import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Yf7qvvOs.js';
4
4
  import 'zod';
5
5
 
6
6
  var version$3 = "1.0.0";
7
- var exportedAt$3 = "2026-07-31T03:04:39.259Z";
7
+ var exportedAt$3 = "2026-07-31T07:15:07.239Z";
8
8
  var patterns = {
9
9
  "entity-table": {
10
10
  type: "entity-table",
@@ -39484,7 +39484,8 @@ var patterns = {
39484
39484
  ],
39485
39485
  enumValues: [
39486
39486
  "linear",
39487
- "radial"
39487
+ "radial",
39488
+ "conic"
39488
39489
  ]
39489
39490
  },
39490
39491
  from: {
@@ -39507,6 +39508,11 @@ var patterns = {
39507
39508
  "number"
39508
39509
  ]
39509
39510
  },
39511
+ angle: {
39512
+ types: [
39513
+ "number"
39514
+ ]
39515
+ },
39510
39516
  stops: {
39511
39517
  types: [
39512
39518
  "array"
@@ -39523,6 +39529,46 @@ var patterns = {
39523
39529
  "stops"
39524
39530
  ]
39525
39531
  },
39532
+ fillPattern: {
39533
+ types: [
39534
+ "object"
39535
+ ],
39536
+ description: "Repeating texture painted over the fill (grain / tiling image).",
39537
+ properties: {
39538
+ kind: {
39539
+ types: [
39540
+ "string"
39541
+ ],
39542
+ enumValues: [
39543
+ "noise",
39544
+ "image"
39545
+ ]
39546
+ },
39547
+ url: {
39548
+ types: [
39549
+ "string"
39550
+ ]
39551
+ },
39552
+ scale: {
39553
+ types: [
39554
+ "number"
39555
+ ]
39556
+ },
39557
+ alpha: {
39558
+ types: [
39559
+ "number"
39560
+ ]
39561
+ },
39562
+ color: {
39563
+ types: [
39564
+ "string"
39565
+ ]
39566
+ }
39567
+ },
39568
+ propertyRequired: [
39569
+ "kind"
39570
+ ]
39571
+ },
39526
39572
  stroke: {
39527
39573
  types: [
39528
39574
  "string"
@@ -39535,6 +39581,115 @@ var patterns = {
39535
39581
  ],
39536
39582
  description: "strokeWidth prop"
39537
39583
  },
39584
+ strokeGradient: {
39585
+ types: [
39586
+ "object"
39587
+ ],
39588
+ description: "Gradient stroke in world units; overrides `stroke` when present.",
39589
+ properties: {
39590
+ kind: {
39591
+ types: [
39592
+ "string"
39593
+ ],
39594
+ enumValues: [
39595
+ "linear",
39596
+ "radial",
39597
+ "conic"
39598
+ ]
39599
+ },
39600
+ from: {
39601
+ types: [
39602
+ "object"
39603
+ ]
39604
+ },
39605
+ to: {
39606
+ types: [
39607
+ "object"
39608
+ ]
39609
+ },
39610
+ center: {
39611
+ types: [
39612
+ "object"
39613
+ ]
39614
+ },
39615
+ radius: {
39616
+ types: [
39617
+ "number"
39618
+ ]
39619
+ },
39620
+ angle: {
39621
+ types: [
39622
+ "number"
39623
+ ]
39624
+ },
39625
+ stops: {
39626
+ types: [
39627
+ "array"
39628
+ ],
39629
+ items: {
39630
+ types: [
39631
+ "object"
39632
+ ]
39633
+ }
39634
+ }
39635
+ },
39636
+ propertyRequired: [
39637
+ "kind",
39638
+ "stops"
39639
+ ]
39640
+ },
39641
+ strokeDash: {
39642
+ types: [
39643
+ "array"
39644
+ ],
39645
+ description: "Dash pattern in painter-px (constant under group scale, like `strokeWidth`).",
39646
+ items: {
39647
+ types: [
39648
+ "number"
39649
+ ]
39650
+ }
39651
+ },
39652
+ strokeDashOffset: {
39653
+ types: [
39654
+ "number"
39655
+ ],
39656
+ description: "Dash phase offset in painter-px; animatable (marching ants)."
39657
+ },
39658
+ blendMode: {
39659
+ types: [
39660
+ "string"
39661
+ ],
39662
+ description: "Composite/blend mode for this shape's draws (`lighter`, `multiply`, `screen`, …).",
39663
+ enumValues: [
39664
+ "source-over",
39665
+ "lighter",
39666
+ "multiply",
39667
+ "screen",
39668
+ "overlay",
39669
+ "darken",
39670
+ "lighten",
39671
+ "color-dodge",
39672
+ "color-burn",
39673
+ "hard-light",
39674
+ "soft-light",
39675
+ "difference",
39676
+ "exclusion",
39677
+ "hue",
39678
+ "saturation",
39679
+ "color",
39680
+ "luminosity",
39681
+ "source-atop",
39682
+ "destination-over",
39683
+ "destination-out",
39684
+ "xor"
39685
+ ]
39686
+ },
39687
+ blur: {
39688
+ types: [
39689
+ "number"
39690
+ ],
39691
+ description: "Gaussian blur in painter-px. Expensive — forces an intermediate raster; use sparingly."
39692
+ },
39538
39693
  rotate: {
39539
39694
  types: [
39540
39695
  "number"
@@ -39644,6 +39799,16 @@ var patterns = {
39644
39799
  "number"
39645
39800
  ]
39646
39801
  },
39802
+ strokeDashOffset: {
39803
+ types: [
39804
+ "number"
39805
+ ]
39806
+ },
39807
+ blur: {
39808
+ types: [
39809
+ "number"
39810
+ ]
39811
+ },
39647
39812
  fill: {
39648
39813
  types: [
39649
39814
  "string"
@@ -40166,7 +40331,8 @@ var patterns = {
40166
40331
  ],
40167
40332
  enumValues: [
40168
40333
  "linear",
40169
- "radial"
40334
+ "radial",
40335
+ "conic"
40170
40336
  ]
40171
40337
  },
40172
40338
  from: {
@@ -40189,6 +40355,11 @@ var patterns = {
40189
40355
  "number"
40190
40356
  ]
40191
40357
  },
40358
+ angle: {
40359
+ types: [
40360
+ "number"
40361
+ ]
40362
+ },
40192
40363
  stops: {
40193
40364
  types: [
40194
40365
  "array"
@@ -40205,6 +40376,45 @@ var patterns = {
40205
40376
  "stops"
40206
40377
  ]
40207
40378
  },
40379
+ fillPattern: {
40380
+ types: [
40381
+ "object"
40382
+ ],
40383
+ properties: {
40384
+ kind: {
40385
+ types: [
40386
+ "string"
40387
+ ],
40388
+ enumValues: [
40389
+ "noise",
40390
+ "image"
40391
+ ]
40392
+ },
40393
+ url: {
40394
+ types: [
40395
+ "string"
40396
+ ]
40397
+ },
40398
+ scale: {
40399
+ types: [
40400
+ "number"
40401
+ ]
40402
+ },
40403
+ alpha: {
40404
+ types: [
40405
+ "number"
40406
+ ]
40407
+ },
40408
+ color: {
40409
+ types: [
40410
+ "string"
40411
+ ]
40412
+ }
40413
+ },
40414
+ required: [
40415
+ "kind"
40416
+ ]
40417
+ },
40208
40418
  stroke: {
40209
40419
  types: [
40210
40420
  "string"
@@ -40215,6 +40425,110 @@ var patterns = {
40215
40425
  "number"
40216
40426
  ]
40217
40427
  },
40428
+ strokeGradient: {
40429
+ types: [
40430
+ "object"
40431
+ ],
40432
+ properties: {
40433
+ kind: {
40434
+ types: [
40435
+ "string"
40436
+ ],
40437
+ enumValues: [
40438
+ "linear",
40439
+ "radial",
40440
+ "conic"
40441
+ ]
40442
+ },
40443
+ from: {
40444
+ types: [
40445
+ "object"
40446
+ ]
40447
+ },
40448
+ to: {
40449
+ types: [
40450
+ "object"
40451
+ ]
40452
+ },
40453
+ center: {
40454
+ types: [
40455
+ "object"
40456
+ ]
40457
+ },
40458
+ radius: {
40459
+ types: [
40460
+ "number"
40461
+ ]
40462
+ },
40463
+ angle: {
40464
+ types: [
40465
+ "number"
40466
+ ]
40467
+ },
40468
+ stops: {
40469
+ types: [
40470
+ "array"
40471
+ ],
40472
+ items: {
40473
+ types: [
40474
+ "object"
40475
+ ]
40476
+ }
40477
+ }
40478
+ },
40479
+ required: [
40480
+ "kind",
40481
+ "stops"
40482
+ ]
40483
+ },
40484
+ strokeDash: {
40485
+ types: [
40486
+ "array"
40487
+ ],
40488
+ items: {
40489
+ types: [
40490
+ "number"
40491
+ ]
40492
+ }
40493
+ },
40494
+ strokeDashOffset: {
40495
+ types: [
40496
+ "number"
40497
+ ]
40498
+ },
40499
+ blendMode: {
40500
+ types: [
40501
+ "string"
40502
+ ],
40503
+ enumValues: [
40504
+ "source-over",
40505
+ "lighter",
40506
+ "multiply",
40507
+ "screen",
40508
+ "overlay",
40509
+ "darken",
40510
+ "lighten",
40511
+ "color-dodge",
40512
+ "color-burn",
40513
+ "hard-light",
40514
+ "soft-light",
40515
+ "difference",
40516
+ "exclusion",
40517
+ "hue",
40518
+ "saturation",
40519
+ "color",
40520
+ "luminosity",
40521
+ "source-atop",
40522
+ "destination-over",
40523
+ "destination-out",
40524
+ "xor"
40525
+ ]
40526
+ },
40527
+ blur: {
40528
+ types: [
40529
+ "number"
40530
+ ]
40531
+ },
40218
40532
  rotate: {
40219
40533
  types: [
40220
40534
  "number"
@@ -40320,6 +40634,16 @@ var patterns = {
40320
40634
  "number"
40321
40635
  ]
40322
40636
  },
40637
+ strokeDashOffset: {
40638
+ types: [
40639
+ "number"
40640
+ ]
40641
+ },
40642
+ blur: {
40643
+ types: [
40644
+ "number"
40645
+ ]
40646
+ },
40323
40647
  fill: {
40324
40648
  types: [
40325
40649
  "string"
@@ -41590,6 +41914,12 @@ var patterns = {
41590
41914
  ],
41591
41915
  description: "0..1 opacity."
41592
41916
  },
41917
+ clip: {
41918
+ types: [
41919
+ "string"
41920
+ ],
41921
+ description: "Clip the group's items to an SVG path (`d` syntax) in world units relative to the group origin — masked reveals, meters, portraits."
41922
+ },
41593
41923
  items: {
41594
41924
  types: [
41595
41925
  "array"
@@ -42587,7 +42917,7 @@ var integratorsRegistry = {
42587
42917
  };
42588
42918
 
42589
42919
  var version$1 = "1.0.0";
42590
- var exportedAt$1 = "2026-07-31T03:04:39.259Z";
42920
+ var exportedAt$1 = "2026-07-31T07:15:07.239Z";
42591
42921
  var mappings = {
42592
42922
  "page-header": {
42593
42923
  component: "PageHeader",
@@ -43979,7 +44309,7 @@ var componentMapping = {
43979
44309
  };
43980
44310
 
43981
44311
  var version = "1.0.0";
43982
- var exportedAt = "2026-07-31T03:04:39.259Z";
44312
+ var exportedAt = "2026-07-31T07:15:07.239Z";
43983
44313
  var contracts = {
43984
44314
  form: {
43985
44315
  emits: [
@@ -69841,6 +70171,9 @@ declare const registry: {
69841
70171
  radius: {
69842
70172
  types: string[];
69843
70173
  };
70174
+ angle: {
70175
+ types: string[];
70176
+ };
69844
70177
  stops: {
69845
70178
  types: string[];
69846
70179
  items: {
@@ -69850,6 +70183,29 @@ declare const registry: {
69850
70183
  };
69851
70184
  propertyRequired: string[];
69852
70185
  };
70186
+ fillPattern: {
70187
+ types: string[];
70188
+ description: string;
70189
+ properties: {
70190
+ kind: {
70191
+ types: string[];
70192
+ enumValues: string[];
70193
+ };
70194
+ url: {
70195
+ types: string[];
70196
+ };
70197
+ scale: {
70198
+ types: string[];
70199
+ };
70200
+ alpha: {
70201
+ types: string[];
70202
+ };
70203
+ color: {
70204
+ types: string[];
70205
+ };
70206
+ };
70207
+ propertyRequired: string[];
70208
+ };
69853
70209
  stroke: {
69854
70210
  types: string[];
69855
70211
  description: string;
@@ -69858,6 +70214,58 @@ declare const registry: {
69858
70214
  types: string[];
69859
70215
  description: string;
69860
70216
  };
70217
+ strokeGradient: {
70218
+ types: string[];
70219
+ description: string;
70220
+ properties: {
70221
+ kind: {
70222
+ types: string[];
70223
+ enumValues: string[];
70224
+ };
70225
+ from: {
70226
+ types: string[];
70227
+ };
70228
+ to: {
70229
+ types: string[];
70230
+ };
70231
+ center: {
70232
+ types: string[];
70233
+ };
70234
+ radius: {
70235
+ types: string[];
70236
+ };
70237
+ angle: {
70238
+ types: string[];
70239
+ };
70240
+ stops: {
70241
+ types: string[];
70242
+ items: {
70243
+ types: string[];
70244
+ };
70245
+ };
70246
+ };
70247
+ propertyRequired: string[];
70248
+ };
70249
+ strokeDash: {
70250
+ types: string[];
70251
+ description: string;
70252
+ items: {
70253
+ types: string[];
70254
+ };
70255
+ };
70256
+ strokeDashOffset: {
70257
+ types: string[];
70258
+ description: string;
70259
+ };
70260
+ blendMode: {
70261
+ types: string[];
70262
+ description: string;
70263
+ enumValues: string[];
70264
+ };
70265
+ blur: {
70266
+ types: string[];
70267
+ description: string;
70268
+ };
69861
70269
  rotate: {
69862
70270
  types: string[];
69863
70271
  description: string;
@@ -69924,6 +70332,12 @@ declare const registry: {
69924
70332
  strokeWidth: {
69925
70333
  types: string[];
69926
70334
  };
70335
+ strokeDashOffset: {
70336
+ types: string[];
70337
+ };
70338
+ blur: {
70339
+ types: string[];
70340
+ };
69927
70341
  fill: {
69928
70342
  types: string[];
69929
70343
  };
@@ -70258,6 +70672,9 @@ declare const registry: {
70258
70672
  radius: {
70259
70673
  types: string[];
70260
70674
  };
70675
+ angle: {
70676
+ types: string[];
70677
+ };
70261
70678
  stops: {
70262
70679
  types: string[];
70263
70680
  items: {
@@ -70267,12 +70684,81 @@ declare const registry: {
70267
70684
  };
70268
70685
  required: string[];
70269
70686
  };
70687
+ fillPattern: {
70688
+ types: string[];
70689
+ properties: {
70690
+ kind: {
70691
+ types: string[];
70692
+ enumValues: string[];
70693
+ };
70694
+ url: {
70695
+ types: string[];
70696
+ };
70697
+ scale: {
70698
+ types: string[];
70699
+ };
70700
+ alpha: {
70701
+ types: string[];
70702
+ };
70703
+ color: {
70704
+ types: string[];
70705
+ };
70706
+ };
70707
+ required: string[];
70708
+ };
70270
70709
  stroke: {
70271
70710
  types: string[];
70272
70711
  };
70273
70712
  strokeWidth: {
70274
70713
  types: string[];
70275
70714
  };
70715
+ strokeGradient: {
70716
+ types: string[];
70717
+ properties: {
70718
+ kind: {
70719
+ types: string[];
70720
+ enumValues: string[];
70721
+ };
70722
+ from: {
70723
+ types: string[];
70724
+ };
70725
+ to: {
70726
+ types: string[];
70727
+ };
70728
+ center: {
70729
+ types: string[];
70730
+ };
70731
+ radius: {
70732
+ types: string[];
70733
+ };
70734
+ angle: {
70735
+ types: string[];
70736
+ };
70737
+ stops: {
70738
+ types: string[];
70739
+ items: {
70740
+ types: string[];
70741
+ };
70742
+ };
70743
+ };
70744
+ required: string[];
70745
+ };
70746
+ strokeDash: {
70747
+ types: string[];
70748
+ items: {
70749
+ types: string[];
70750
+ };
70751
+ };
70752
+ strokeDashOffset: {
70753
+ types: string[];
70754
+ };
70755
+ blendMode: {
70756
+ types: string[];
70757
+ enumValues: string[];
70758
+ };
70759
+ blur: {
70760
+ types: string[];
70761
+ };
70276
70762
  rotate: {
70277
70763
  types: string[];
70278
70764
  };
@@ -70335,6 +70821,12 @@ declare const registry: {
70335
70821
  strokeWidth: {
70336
70822
  types: string[];
70337
70823
  };
70824
+ strokeDashOffset: {
70825
+ types: string[];
70826
+ };
70827
+ blur: {
70828
+ types: string[];
70829
+ };
70338
70830
  fill: {
70339
70831
  types: string[];
70340
70832
  };
@@ -71111,6 +71603,10 @@ declare const registry: {
71111
71603
  types: string[];
71112
71604
  description: string;
71113
71605
  };
71606
+ clip: {
71607
+ types: string[];
71608
+ description: string;
71609
+ };
71114
71610
  items: {
71115
71611
  types: string[];
71116
71612
  description: string;
@@ -95295,6 +95791,9 @@ declare const PATTERN_REGISTRY: {
95295
95791
  radius: {
95296
95792
  types: string[];
95297
95793
  };
95794
+ angle: {
95795
+ types: string[];
95796
+ };
95298
95797
  stops: {
95299
95798
  types: string[];
95300
95799
  items: {
@@ -95304,6 +95803,29 @@ declare const PATTERN_REGISTRY: {
95304
95803
  };
95305
95804
  propertyRequired: string[];
95306
95805
  };
95806
+ fillPattern: {
95807
+ types: string[];
95808
+ description: string;
95809
+ properties: {
95810
+ kind: {
95811
+ types: string[];
95812
+ enumValues: string[];
95813
+ };
95814
+ url: {
95815
+ types: string[];
95816
+ };
95817
+ scale: {
95818
+ types: string[];
95819
+ };
95820
+ alpha: {
95821
+ types: string[];
95822
+ };
95823
+ color: {
95824
+ types: string[];
95825
+ };
95826
+ };
95827
+ propertyRequired: string[];
95828
+ };
95307
95829
  stroke: {
95308
95830
  types: string[];
95309
95831
  description: string;
@@ -95312,6 +95834,58 @@ declare const PATTERN_REGISTRY: {
95312
95834
  types: string[];
95313
95835
  description: string;
95314
95836
  };
95837
+ strokeGradient: {
95838
+ types: string[];
95839
+ description: string;
95840
+ properties: {
95841
+ kind: {
95842
+ types: string[];
95843
+ enumValues: string[];
95844
+ };
95845
+ from: {
95846
+ types: string[];
95847
+ };
95848
+ to: {
95849
+ types: string[];
95850
+ };
95851
+ center: {
95852
+ types: string[];
95853
+ };
95854
+ radius: {
95855
+ types: string[];
95856
+ };
95857
+ angle: {
95858
+ types: string[];
95859
+ };
95860
+ stops: {
95861
+ types: string[];
95862
+ items: {
95863
+ types: string[];
95864
+ };
95865
+ };
95866
+ };
95867
+ propertyRequired: string[];
95868
+ };
95869
+ strokeDash: {
95870
+ types: string[];
95871
+ description: string;
95872
+ items: {
95873
+ types: string[];
95874
+ };
95875
+ };
95876
+ strokeDashOffset: {
95877
+ types: string[];
95878
+ description: string;
95879
+ };
95880
+ blendMode: {
95881
+ types: string[];
95882
+ description: string;
95883
+ enumValues: string[];
95884
+ };
95885
+ blur: {
95886
+ types: string[];
95887
+ description: string;
95888
+ };
95315
95889
  rotate: {
95316
95890
  types: string[];
95317
95891
  description: string;
@@ -95378,6 +95952,12 @@ declare const PATTERN_REGISTRY: {
95378
95952
  strokeWidth: {
95379
95953
  types: string[];
95380
95954
  };
95955
+ strokeDashOffset: {
95956
+ types: string[];
95957
+ };
95958
+ blur: {
95959
+ types: string[];
95960
+ };
95381
95961
  fill: {
95382
95962
  types: string[];
95383
95963
  };
@@ -95712,6 +96292,9 @@ declare const PATTERN_REGISTRY: {
95712
96292
  radius: {
95713
96293
  types: string[];
95714
96294
  };
96295
+ angle: {
96296
+ types: string[];
96297
+ };
95715
96298
  stops: {
95716
96299
  types: string[];
95717
96300
  items: {
@@ -95721,12 +96304,81 @@ declare const PATTERN_REGISTRY: {
95721
96304
  };
95722
96305
  required: string[];
95723
96306
  };
96307
+ fillPattern: {
96308
+ types: string[];
96309
+ properties: {
96310
+ kind: {
96311
+ types: string[];
96312
+ enumValues: string[];
96313
+ };
96314
+ url: {
96315
+ types: string[];
96316
+ };
96317
+ scale: {
96318
+ types: string[];
96319
+ };
96320
+ alpha: {
96321
+ types: string[];
96322
+ };
96323
+ color: {
96324
+ types: string[];
96325
+ };
96326
+ };
96327
+ required: string[];
96328
+ };
95724
96329
  stroke: {
95725
96330
  types: string[];
95726
96331
  };
95727
96332
  strokeWidth: {
95728
96333
  types: string[];
95729
96334
  };
96335
+ strokeGradient: {
96336
+ types: string[];
96337
+ properties: {
96338
+ kind: {
96339
+ types: string[];
96340
+ enumValues: string[];
96341
+ };
96342
+ from: {
96343
+ types: string[];
96344
+ };
96345
+ to: {
96346
+ types: string[];
96347
+ };
96348
+ center: {
96349
+ types: string[];
96350
+ };
96351
+ radius: {
96352
+ types: string[];
96353
+ };
96354
+ angle: {
96355
+ types: string[];
96356
+ };
96357
+ stops: {
96358
+ types: string[];
96359
+ items: {
96360
+ types: string[];
96361
+ };
96362
+ };
96363
+ };
96364
+ required: string[];
96365
+ };
96366
+ strokeDash: {
96367
+ types: string[];
96368
+ items: {
96369
+ types: string[];
96370
+ };
96371
+ };
96372
+ strokeDashOffset: {
96373
+ types: string[];
96374
+ };
96375
+ blendMode: {
96376
+ types: string[];
96377
+ enumValues: string[];
96378
+ };
96379
+ blur: {
96380
+ types: string[];
96381
+ };
95730
96382
  rotate: {
95731
96383
  types: string[];
95732
96384
  };
@@ -95789,6 +96441,12 @@ declare const PATTERN_REGISTRY: {
95789
96441
  strokeWidth: {
95790
96442
  types: string[];
95791
96443
  };
96444
+ strokeDashOffset: {
96445
+ types: string[];
96446
+ };
96447
+ blur: {
96448
+ types: string[];
96449
+ };
95792
96450
  fill: {
95793
96451
  types: string[];
95794
96452
  };
@@ -96565,6 +97223,10 @@ declare const PATTERN_REGISTRY: {
96565
97223
  types: string[];
96566
97224
  description: string;
96567
97225
  };
97226
+ clip: {
97227
+ types: string[];
97228
+ description: string;
97229
+ };
96568
97230
  items: {
96569
97231
  types: string[];
96570
97232
  description: string;