@almadar/core 10.45.0 → 10.46.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-30T11:18:57.838Z",
3
+ "exportedAt": "2026-07-31T03:04:39.259Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -35175,6 +35175,12 @@
35175
35175
  "string"
35176
35176
  ],
35177
35177
  "description": "Solid backdrop colour (drawn when no `backgroundImage`)."
35178
+ },
35179
+ "children": {
35180
+ "types": [
35181
+ "node"
35182
+ ],
35183
+ "description": "Declarative JSX drawable children (`<DrawShape .../>` composed in paint order). When `drawables` is empty, each child registers its descriptor via the drawable registry context and the host paints them."
35178
35184
  }
35179
35185
  },
35180
35186
  "drawable": true,
@@ -39329,7 +39335,7 @@
39329
39335
  "types": [
39330
39336
  "number"
39331
39337
  ],
39332
- "description": "Fine nudge from the anchor point in world units."
39338
+ "description": "Fine nudge in world units — applies to every shape kind except `cell` (rect/ellipse from their anchor point; poly/path from the projected top-left)."
39333
39339
  },
39334
39340
  "offsetY": {
39335
39341
  "types": [
@@ -39360,6 +39366,57 @@
39360
39366
  ],
39361
39367
  "description": "fill prop"
39362
39368
  },
39369
+ "gradient": {
39370
+ "types": [
39371
+ "object"
39372
+ ],
39373
+ "description": "Gradient fill in world units; overrides `fill` when present.",
39374
+ "properties": {
39375
+ "kind": {
39376
+ "types": [
39377
+ "string"
39378
+ ],
39379
+ "enumValues": [
39380
+ "linear",
39381
+ "radial"
39382
+ ]
39383
+ },
39384
+ "from": {
39385
+ "types": [
39386
+ "object"
39387
+ ]
39388
+ },
39389
+ "to": {
39390
+ "types": [
39391
+ "object"
39392
+ ]
39393
+ },
39394
+ "center": {
39395
+ "types": [
39396
+ "object"
39397
+ ]
39398
+ },
39399
+ "radius": {
39400
+ "types": [
39401
+ "number"
39402
+ ]
39403
+ },
39404
+ "stops": {
39405
+ "types": [
39406
+ "array"
39407
+ ],
39408
+ "items": {
39409
+ "types": [
39410
+ "object"
39411
+ ]
39412
+ }
39413
+ }
39414
+ },
39415
+ "propertyRequired": [
39416
+ "kind",
39417
+ "stops"
39418
+ ]
39419
+ },
39363
39420
  "stroke": {
39364
39421
  "types": [
39365
39422
  "string"
@@ -39372,6 +39429,158 @@
39372
39429
  ],
39373
39430
  "description": "strokeWidth prop"
39374
39431
  },
39432
+ "rotate": {
39433
+ "types": [
39434
+ "number"
39435
+ ],
39436
+ "description": "Rotation in radians (painter units, same as `draw-group`), about `pivot`."
39437
+ },
39438
+ "pivot": {
39439
+ "types": [
39440
+ "object"
39441
+ ],
39442
+ "description": "Rotation pivot in world units relative to the cell's projected top-left; default `{x:0.5, y:0.5}` (cell center)."
39443
+ },
39444
+ "shadow": {
39445
+ "types": [
39446
+ "object"
39447
+ ],
39448
+ "description": "Soft glow / drop-shadow behind the shape; `blur` in world units.",
39449
+ "properties": {
39450
+ "color": {
39451
+ "types": [
39452
+ "string"
39453
+ ]
39454
+ },
39455
+ "blur": {
39456
+ "types": [
39457
+ "number"
39458
+ ]
39459
+ }
39460
+ },
39461
+ "propertyRequired": [
39462
+ "color",
39463
+ "blur"
39464
+ ]
39465
+ },
39466
+ "animation": {
39467
+ "types": [
39468
+ "object"
39469
+ ],
39470
+ "description": "Keyframe animation over this shape's props; the host runs a paint clock while present.",
39471
+ "properties": {
39472
+ "durationMs": {
39473
+ "types": [
39474
+ "number"
39475
+ ]
39476
+ },
39477
+ "loop": {
39478
+ "types": [
39479
+ "boolean"
39480
+ ]
39481
+ },
39482
+ "keyframes": {
39483
+ "types": [
39484
+ "array"
39485
+ ],
39486
+ "items": {
39487
+ "types": [
39488
+ "object"
39489
+ ],
39490
+ "properties": {
39491
+ "at": {
39492
+ "types": [
39493
+ "number"
39494
+ ]
39495
+ },
39496
+ "offsetX": {
39497
+ "types": [
39498
+ "number"
39499
+ ]
39500
+ },
39501
+ "offsetY": {
39502
+ "types": [
39503
+ "number"
39504
+ ]
39505
+ },
39506
+ "rotate": {
39507
+ "types": [
39508
+ "number"
39509
+ ]
39510
+ },
39511
+ "opacity": {
39512
+ "types": [
39513
+ "number"
39514
+ ]
39515
+ },
39516
+ "radiusX": {
39517
+ "types": [
39518
+ "number"
39519
+ ]
39520
+ },
39521
+ "radiusY": {
39522
+ "types": [
39523
+ "number"
39524
+ ]
39525
+ },
39526
+ "width": {
39527
+ "types": [
39528
+ "number"
39529
+ ]
39530
+ },
39531
+ "height": {
39532
+ "types": [
39533
+ "number"
39534
+ ]
39535
+ },
39536
+ "strokeWidth": {
39537
+ "types": [
39538
+ "number"
39539
+ ]
39540
+ },
39541
+ "fill": {
39542
+ "types": [
39543
+ "string"
39544
+ ]
39545
+ },
39546
+ "stroke": {
39547
+ "types": [
39548
+ "string"
39549
+ ]
39550
+ },
39551
+ "shadow": {
39552
+ "types": [
39553
+ "object"
39554
+ ],
39555
+ "properties": {
39556
+ "color": {
39557
+ "types": [
39558
+ "string"
39559
+ ]
39560
+ },
39561
+ "blur": {
39562
+ "types": [
39563
+ "number"
39564
+ ]
39565
+ }
39566
+ },
39567
+ "required": [
39568
+ "color",
39569
+ "blur"
39570
+ ]
39571
+ }
39572
+ },
39573
+ "required": [
39574
+ "at"
39575
+ ]
39576
+ }
39577
+ }
39578
+ },
39579
+ "propertyRequired": [
39580
+ "durationMs",
39581
+ "keyframes"
39582
+ ]
39583
+ },
39375
39584
  "opacity": {
39376
39585
  "types": [
39377
39586
  "number"
@@ -39840,6 +40049,56 @@
39840
40049
  "string"
39841
40050
  ]
39842
40051
  },
40052
+ "gradient": {
40053
+ "types": [
40054
+ "object"
40055
+ ],
40056
+ "properties": {
40057
+ "kind": {
40058
+ "types": [
40059
+ "string"
40060
+ ],
40061
+ "enumValues": [
40062
+ "linear",
40063
+ "radial"
40064
+ ]
40065
+ },
40066
+ "from": {
40067
+ "types": [
40068
+ "object"
40069
+ ]
40070
+ },
40071
+ "to": {
40072
+ "types": [
40073
+ "object"
40074
+ ]
40075
+ },
40076
+ "center": {
40077
+ "types": [
40078
+ "object"
40079
+ ]
40080
+ },
40081
+ "radius": {
40082
+ "types": [
40083
+ "number"
40084
+ ]
40085
+ },
40086
+ "stops": {
40087
+ "types": [
40088
+ "array"
40089
+ ],
40090
+ "items": {
40091
+ "types": [
40092
+ "object"
40093
+ ]
40094
+ }
40095
+ }
40096
+ },
40097
+ "required": [
40098
+ "kind",
40099
+ "stops"
40100
+ ]
40101
+ },
39843
40102
  "stroke": {
39844
40103
  "types": [
39845
40104
  "string"
@@ -39850,6 +40109,154 @@
39850
40109
  "number"
39851
40110
  ]
39852
40111
  },
40112
+ "rotate": {
40113
+ "types": [
40114
+ "number"
40115
+ ]
40116
+ },
40117
+ "pivot": {
40118
+ "types": [
40119
+ "object"
40120
+ ]
40121
+ },
40122
+ "shadow": {
40123
+ "types": [
40124
+ "object"
40125
+ ],
40126
+ "properties": {
40127
+ "color": {
40128
+ "types": [
40129
+ "string"
40130
+ ]
40131
+ },
40132
+ "blur": {
40133
+ "types": [
40134
+ "number"
40135
+ ]
40136
+ }
40137
+ },
40138
+ "required": [
40139
+ "color",
40140
+ "blur"
40141
+ ]
40142
+ },
40143
+ "animation": {
40144
+ "types": [
40145
+ "object"
40146
+ ],
40147
+ "properties": {
40148
+ "durationMs": {
40149
+ "types": [
40150
+ "number"
40151
+ ]
40152
+ },
40153
+ "loop": {
40154
+ "types": [
40155
+ "boolean"
40156
+ ]
40157
+ },
40158
+ "keyframes": {
40159
+ "types": [
40160
+ "array"
40161
+ ],
40162
+ "items": {
40163
+ "types": [
40164
+ "object"
40165
+ ],
40166
+ "properties": {
40167
+ "at": {
40168
+ "types": [
40169
+ "number"
40170
+ ]
40171
+ },
40172
+ "offsetX": {
40173
+ "types": [
40174
+ "number"
40175
+ ]
40176
+ },
40177
+ "offsetY": {
40178
+ "types": [
40179
+ "number"
40180
+ ]
40181
+ },
40182
+ "rotate": {
40183
+ "types": [
40184
+ "number"
40185
+ ]
40186
+ },
40187
+ "opacity": {
40188
+ "types": [
40189
+ "number"
40190
+ ]
40191
+ },
40192
+ "radiusX": {
40193
+ "types": [
40194
+ "number"
40195
+ ]
40196
+ },
40197
+ "radiusY": {
40198
+ "types": [
40199
+ "number"
40200
+ ]
40201
+ },
40202
+ "width": {
40203
+ "types": [
40204
+ "number"
40205
+ ]
40206
+ },
40207
+ "height": {
40208
+ "types": [
40209
+ "number"
40210
+ ]
40211
+ },
40212
+ "strokeWidth": {
40213
+ "types": [
40214
+ "number"
40215
+ ]
40216
+ },
40217
+ "fill": {
40218
+ "types": [
40219
+ "string"
40220
+ ]
40221
+ },
40222
+ "stroke": {
40223
+ "types": [
40224
+ "string"
40225
+ ]
40226
+ },
40227
+ "shadow": {
40228
+ "types": [
40229
+ "object"
40230
+ ],
40231
+ "properties": {
40232
+ "color": {
40233
+ "types": [
40234
+ "string"
40235
+ ]
40236
+ },
40237
+ "blur": {
40238
+ "types": [
40239
+ "number"
40240
+ ]
40241
+ }
40242
+ },
40243
+ "required": [
40244
+ "color",
40245
+ "blur"
40246
+ ]
40247
+ }
40248
+ },
40249
+ "required": [
40250
+ "at"
40251
+ ]
40252
+ }
40253
+ }
40254
+ },
40255
+ "required": [
40256
+ "durationMs",
40257
+ "keyframes"
40258
+ ]
40259
+ },
39853
40260
  "opacity": {
39854
40261
  "types": [
39855
40262
  "number"
@@ -40568,6 +40975,12 @@
40568
40975
  "string"
40569
40976
  ]
40570
40977
  }
40978
+ },
40979
+ "children": {
40980
+ "types": [
40981
+ "node"
40982
+ ],
40983
+ "description": "Declarative JSX drawable children (`<DrawShape .../>` composed in paint order). Forwarded to the 2D host, which collects them via drawable registry context."
40571
40984
  }
40572
40985
  },
40573
40986
  "drawHost": true