@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,10 +1,10 @@
1
- import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, aY as PatternType } from '../effect-BZ1nzN3q.js';
2
- export { aR as PATTERN_TYPES, aV as PatternConfig, aW as PatternProps, aX as PatternPropsMap, cL as isValidPatternType } from '../effect-BZ1nzN3q.js';
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';
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-30T11:18:57.838Z";
7
+ var exportedAt$3 = "2026-07-31T03:04:39.259Z";
8
8
  var patterns = {
9
9
  "entity-table": {
10
10
  type: "entity-table",
@@ -35261,6 +35261,12 @@ var patterns = {
35261
35261
  "string"
35262
35262
  ],
35263
35263
  description: "Solid backdrop colour (drawn when no `backgroundImage`)."
35264
+ },
35265
+ children: {
35266
+ types: [
35267
+ "node"
35268
+ ],
35269
+ 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."
35264
35270
  }
35265
35271
  },
35266
35272
  drawable: true,
@@ -39435,7 +39441,7 @@ var patterns = {
39435
39441
  types: [
39436
39442
  "number"
39437
39443
  ],
39438
- description: "Fine nudge from the anchor point in world units."
39444
+ 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)."
39439
39445
  },
39440
39446
  offsetY: {
39441
39447
  types: [
@@ -39466,6 +39472,57 @@ var patterns = {
39466
39472
  ],
39467
39473
  description: "fill prop"
39468
39474
  },
39475
+ gradient: {
39476
+ types: [
39477
+ "object"
39478
+ ],
39479
+ description: "Gradient fill in world units; overrides `fill` when present.",
39480
+ properties: {
39481
+ kind: {
39482
+ types: [
39483
+ "string"
39484
+ ],
39485
+ enumValues: [
39486
+ "linear",
39487
+ "radial"
39488
+ ]
39489
+ },
39490
+ from: {
39491
+ types: [
39492
+ "object"
39493
+ ]
39494
+ },
39495
+ to: {
39496
+ types: [
39497
+ "object"
39498
+ ]
39499
+ },
39500
+ center: {
39501
+ types: [
39502
+ "object"
39503
+ ]
39504
+ },
39505
+ radius: {
39506
+ types: [
39507
+ "number"
39508
+ ]
39509
+ },
39510
+ stops: {
39511
+ types: [
39512
+ "array"
39513
+ ],
39514
+ items: {
39515
+ types: [
39516
+ "object"
39517
+ ]
39518
+ }
39519
+ }
39520
+ },
39521
+ propertyRequired: [
39522
+ "kind",
39523
+ "stops"
39524
+ ]
39525
+ },
39469
39526
  stroke: {
39470
39527
  types: [
39471
39528
  "string"
@@ -39478,6 +39535,158 @@ var patterns = {
39478
39535
  ],
39479
39536
  description: "strokeWidth prop"
39480
39537
  },
39538
+ rotate: {
39539
+ types: [
39540
+ "number"
39541
+ ],
39542
+ description: "Rotation in radians (painter units, same as `draw-group`), about `pivot`."
39543
+ },
39544
+ pivot: {
39545
+ types: [
39546
+ "object"
39547
+ ],
39548
+ description: "Rotation pivot in world units relative to the cell's projected top-left; default `{x:0.5, y:0.5}` (cell center)."
39549
+ },
39550
+ shadow: {
39551
+ types: [
39552
+ "object"
39553
+ ],
39554
+ description: "Soft glow / drop-shadow behind the shape; `blur` in world units.",
39555
+ properties: {
39556
+ color: {
39557
+ types: [
39558
+ "string"
39559
+ ]
39560
+ },
39561
+ blur: {
39562
+ types: [
39563
+ "number"
39564
+ ]
39565
+ }
39566
+ },
39567
+ propertyRequired: [
39568
+ "color",
39569
+ "blur"
39570
+ ]
39571
+ },
39572
+ animation: {
39573
+ types: [
39574
+ "object"
39575
+ ],
39576
+ description: "Keyframe animation over this shape's props; the host runs a paint clock while present.",
39577
+ properties: {
39578
+ durationMs: {
39579
+ types: [
39580
+ "number"
39581
+ ]
39582
+ },
39583
+ loop: {
39584
+ types: [
39585
+ "boolean"
39586
+ ]
39587
+ },
39588
+ keyframes: {
39589
+ types: [
39590
+ "array"
39591
+ ],
39592
+ items: {
39593
+ types: [
39594
+ "object"
39595
+ ],
39596
+ properties: {
39597
+ at: {
39598
+ types: [
39599
+ "number"
39600
+ ]
39601
+ },
39602
+ offsetX: {
39603
+ types: [
39604
+ "number"
39605
+ ]
39606
+ },
39607
+ offsetY: {
39608
+ types: [
39609
+ "number"
39610
+ ]
39611
+ },
39612
+ rotate: {
39613
+ types: [
39614
+ "number"
39615
+ ]
39616
+ },
39617
+ opacity: {
39618
+ types: [
39619
+ "number"
39620
+ ]
39621
+ },
39622
+ radiusX: {
39623
+ types: [
39624
+ "number"
39625
+ ]
39626
+ },
39627
+ radiusY: {
39628
+ types: [
39629
+ "number"
39630
+ ]
39631
+ },
39632
+ width: {
39633
+ types: [
39634
+ "number"
39635
+ ]
39636
+ },
39637
+ height: {
39638
+ types: [
39639
+ "number"
39640
+ ]
39641
+ },
39642
+ strokeWidth: {
39643
+ types: [
39644
+ "number"
39645
+ ]
39646
+ },
39647
+ fill: {
39648
+ types: [
39649
+ "string"
39650
+ ]
39651
+ },
39652
+ stroke: {
39653
+ types: [
39654
+ "string"
39655
+ ]
39656
+ },
39657
+ shadow: {
39658
+ types: [
39659
+ "object"
39660
+ ],
39661
+ properties: {
39662
+ color: {
39663
+ types: [
39664
+ "string"
39665
+ ]
39666
+ },
39667
+ blur: {
39668
+ types: [
39669
+ "number"
39670
+ ]
39671
+ }
39672
+ },
39673
+ required: [
39674
+ "color",
39675
+ "blur"
39676
+ ]
39677
+ }
39678
+ },
39679
+ required: [
39680
+ "at"
39681
+ ]
39682
+ }
39683
+ }
39684
+ },
39685
+ propertyRequired: [
39686
+ "durationMs",
39687
+ "keyframes"
39688
+ ]
39689
+ },
39481
39690
  opacity: {
39482
39691
  types: [
39483
39692
  "number"
@@ -39946,6 +40155,56 @@ var patterns = {
39946
40155
  "string"
39947
40156
  ]
39948
40157
  },
40158
+ gradient: {
40159
+ types: [
40160
+ "object"
40161
+ ],
40162
+ properties: {
40163
+ kind: {
40164
+ types: [
40165
+ "string"
40166
+ ],
40167
+ enumValues: [
40168
+ "linear",
40169
+ "radial"
40170
+ ]
40171
+ },
40172
+ from: {
40173
+ types: [
40174
+ "object"
40175
+ ]
40176
+ },
40177
+ to: {
40178
+ types: [
40179
+ "object"
40180
+ ]
40181
+ },
40182
+ center: {
40183
+ types: [
40184
+ "object"
40185
+ ]
40186
+ },
40187
+ radius: {
40188
+ types: [
40189
+ "number"
40190
+ ]
40191
+ },
40192
+ stops: {
40193
+ types: [
40194
+ "array"
40195
+ ],
40196
+ items: {
40197
+ types: [
40198
+ "object"
40199
+ ]
40200
+ }
40201
+ }
40202
+ },
40203
+ required: [
40204
+ "kind",
40205
+ "stops"
40206
+ ]
40207
+ },
39949
40208
  stroke: {
39950
40209
  types: [
39951
40210
  "string"
@@ -39956,6 +40215,154 @@ var patterns = {
39956
40215
  "number"
39957
40216
  ]
39958
40217
  },
40218
+ rotate: {
40219
+ types: [
40220
+ "number"
40221
+ ]
40222
+ },
40223
+ pivot: {
40224
+ types: [
40225
+ "object"
40226
+ ]
40227
+ },
40228
+ shadow: {
40229
+ types: [
40230
+ "object"
40231
+ ],
40232
+ properties: {
40233
+ color: {
40234
+ types: [
40235
+ "string"
40236
+ ]
40237
+ },
40238
+ blur: {
40239
+ types: [
40240
+ "number"
40241
+ ]
40242
+ }
40243
+ },
40244
+ required: [
40245
+ "color",
40246
+ "blur"
40247
+ ]
40248
+ },
40249
+ animation: {
40250
+ types: [
40251
+ "object"
40252
+ ],
40253
+ properties: {
40254
+ durationMs: {
40255
+ types: [
40256
+ "number"
40257
+ ]
40258
+ },
40259
+ loop: {
40260
+ types: [
40261
+ "boolean"
40262
+ ]
40263
+ },
40264
+ keyframes: {
40265
+ types: [
40266
+ "array"
40267
+ ],
40268
+ items: {
40269
+ types: [
40270
+ "object"
40271
+ ],
40272
+ properties: {
40273
+ at: {
40274
+ types: [
40275
+ "number"
40276
+ ]
40277
+ },
40278
+ offsetX: {
40279
+ types: [
40280
+ "number"
40281
+ ]
40282
+ },
40283
+ offsetY: {
40284
+ types: [
40285
+ "number"
40286
+ ]
40287
+ },
40288
+ rotate: {
40289
+ types: [
40290
+ "number"
40291
+ ]
40292
+ },
40293
+ opacity: {
40294
+ types: [
40295
+ "number"
40296
+ ]
40297
+ },
40298
+ radiusX: {
40299
+ types: [
40300
+ "number"
40301
+ ]
40302
+ },
40303
+ radiusY: {
40304
+ types: [
40305
+ "number"
40306
+ ]
40307
+ },
40308
+ width: {
40309
+ types: [
40310
+ "number"
40311
+ ]
40312
+ },
40313
+ height: {
40314
+ types: [
40315
+ "number"
40316
+ ]
40317
+ },
40318
+ strokeWidth: {
40319
+ types: [
40320
+ "number"
40321
+ ]
40322
+ },
40323
+ fill: {
40324
+ types: [
40325
+ "string"
40326
+ ]
40327
+ },
40328
+ stroke: {
40329
+ types: [
40330
+ "string"
40331
+ ]
40332
+ },
40333
+ shadow: {
40334
+ types: [
40335
+ "object"
40336
+ ],
40337
+ properties: {
40338
+ color: {
40339
+ types: [
40340
+ "string"
40341
+ ]
40342
+ },
40343
+ blur: {
40344
+ types: [
40345
+ "number"
40346
+ ]
40347
+ }
40348
+ },
40349
+ required: [
40350
+ "color",
40351
+ "blur"
40352
+ ]
40353
+ }
40354
+ },
40355
+ required: [
40356
+ "at"
40357
+ ]
40358
+ }
40359
+ }
40360
+ },
40361
+ required: [
40362
+ "durationMs",
40363
+ "keyframes"
40364
+ ]
40365
+ },
39959
40366
  opacity: {
39960
40367
  types: [
39961
40368
  "number"
@@ -40675,6 +41082,12 @@ var patterns = {
40675
41082
  "string"
40676
41083
  ]
40677
41084
  }
41085
+ },
41086
+ children: {
41087
+ types: [
41088
+ "node"
41089
+ ],
41090
+ description: "Declarative JSX drawable children (`<DrawShape .../>` composed in paint order). Forwarded to the 2D host, which collects them via drawable registry context."
40678
41091
  }
40679
41092
  },
40680
41093
  drawHost: true
@@ -42174,7 +42587,7 @@ var integratorsRegistry = {
42174
42587
  };
42175
42588
 
42176
42589
  var version$1 = "1.0.0";
42177
- var exportedAt$1 = "2026-07-30T11:18:57.838Z";
42590
+ var exportedAt$1 = "2026-07-31T03:04:39.259Z";
42178
42591
  var mappings = {
42179
42592
  "page-header": {
42180
42593
  component: "PageHeader",
@@ -43566,7 +43979,7 @@ var componentMapping = {
43566
43979
  };
43567
43980
 
43568
43981
  var version = "1.0.0";
43569
- var exportedAt = "2026-07-30T11:18:57.838Z";
43982
+ var exportedAt = "2026-07-31T03:04:39.259Z";
43570
43983
  var contracts = {
43571
43984
  form: {
43572
43985
  emits: [
@@ -66872,6 +67285,10 @@ declare const registry: {
66872
67285
  types: string[];
66873
67286
  description: string;
66874
67287
  };
67288
+ children: {
67289
+ types: string[];
67290
+ description: string;
67291
+ };
66875
67292
  };
66876
67293
  drawable: boolean;
66877
67294
  drawHost: boolean;
@@ -69404,6 +69821,35 @@ declare const registry: {
69404
69821
  types: string[];
69405
69822
  description: string;
69406
69823
  };
69824
+ gradient: {
69825
+ types: string[];
69826
+ description: string;
69827
+ properties: {
69828
+ kind: {
69829
+ types: string[];
69830
+ enumValues: string[];
69831
+ };
69832
+ from: {
69833
+ types: string[];
69834
+ };
69835
+ to: {
69836
+ types: string[];
69837
+ };
69838
+ center: {
69839
+ types: string[];
69840
+ };
69841
+ radius: {
69842
+ types: string[];
69843
+ };
69844
+ stops: {
69845
+ types: string[];
69846
+ items: {
69847
+ types: string[];
69848
+ };
69849
+ };
69850
+ };
69851
+ propertyRequired: string[];
69852
+ };
69407
69853
  stroke: {
69408
69854
  types: string[];
69409
69855
  description: string;
@@ -69412,6 +69858,97 @@ declare const registry: {
69412
69858
  types: string[];
69413
69859
  description: string;
69414
69860
  };
69861
+ rotate: {
69862
+ types: string[];
69863
+ description: string;
69864
+ };
69865
+ pivot: {
69866
+ types: string[];
69867
+ description: string;
69868
+ };
69869
+ shadow: {
69870
+ types: string[];
69871
+ description: string;
69872
+ properties: {
69873
+ color: {
69874
+ types: string[];
69875
+ };
69876
+ blur: {
69877
+ types: string[];
69878
+ };
69879
+ };
69880
+ propertyRequired: string[];
69881
+ };
69882
+ animation: {
69883
+ types: string[];
69884
+ description: string;
69885
+ properties: {
69886
+ durationMs: {
69887
+ types: string[];
69888
+ };
69889
+ loop: {
69890
+ types: string[];
69891
+ };
69892
+ keyframes: {
69893
+ types: string[];
69894
+ items: {
69895
+ types: string[];
69896
+ properties: {
69897
+ at: {
69898
+ types: string[];
69899
+ };
69900
+ offsetX: {
69901
+ types: string[];
69902
+ };
69903
+ offsetY: {
69904
+ types: string[];
69905
+ };
69906
+ rotate: {
69907
+ types: string[];
69908
+ };
69909
+ opacity: {
69910
+ types: string[];
69911
+ };
69912
+ radiusX: {
69913
+ types: string[];
69914
+ };
69915
+ radiusY: {
69916
+ types: string[];
69917
+ };
69918
+ width: {
69919
+ types: string[];
69920
+ };
69921
+ height: {
69922
+ types: string[];
69923
+ };
69924
+ strokeWidth: {
69925
+ types: string[];
69926
+ };
69927
+ fill: {
69928
+ types: string[];
69929
+ };
69930
+ stroke: {
69931
+ types: string[];
69932
+ };
69933
+ shadow: {
69934
+ types: string[];
69935
+ properties: {
69936
+ color: {
69937
+ types: string[];
69938
+ };
69939
+ blur: {
69940
+ types: string[];
69941
+ };
69942
+ };
69943
+ required: string[];
69944
+ };
69945
+ };
69946
+ required: string[];
69947
+ };
69948
+ };
69949
+ };
69950
+ propertyRequired: string[];
69951
+ };
69415
69952
  opacity: {
69416
69953
  types: string[];
69417
69954
  description: string;
@@ -69702,12 +70239,127 @@ declare const registry: {
69702
70239
  fill: {
69703
70240
  types: string[];
69704
70241
  };
70242
+ gradient: {
70243
+ types: string[];
70244
+ properties: {
70245
+ kind: {
70246
+ types: string[];
70247
+ enumValues: string[];
70248
+ };
70249
+ from: {
70250
+ types: string[];
70251
+ };
70252
+ to: {
70253
+ types: string[];
70254
+ };
70255
+ center: {
70256
+ types: string[];
70257
+ };
70258
+ radius: {
70259
+ types: string[];
70260
+ };
70261
+ stops: {
70262
+ types: string[];
70263
+ items: {
70264
+ types: string[];
70265
+ };
70266
+ };
70267
+ };
70268
+ required: string[];
70269
+ };
69705
70270
  stroke: {
69706
70271
  types: string[];
69707
70272
  };
69708
70273
  strokeWidth: {
69709
70274
  types: string[];
69710
70275
  };
70276
+ rotate: {
70277
+ types: string[];
70278
+ };
70279
+ pivot: {
70280
+ types: string[];
70281
+ };
70282
+ shadow: {
70283
+ types: string[];
70284
+ properties: {
70285
+ color: {
70286
+ types: string[];
70287
+ };
70288
+ blur: {
70289
+ types: string[];
70290
+ };
70291
+ };
70292
+ required: string[];
70293
+ };
70294
+ animation: {
70295
+ types: string[];
70296
+ properties: {
70297
+ durationMs: {
70298
+ types: string[];
70299
+ };
70300
+ loop: {
70301
+ types: string[];
70302
+ };
70303
+ keyframes: {
70304
+ types: string[];
70305
+ items: {
70306
+ types: string[];
70307
+ properties: {
70308
+ at: {
70309
+ types: string[];
70310
+ };
70311
+ offsetX: {
70312
+ types: string[];
70313
+ };
70314
+ offsetY: {
70315
+ types: string[];
70316
+ };
70317
+ rotate: {
70318
+ types: string[];
70319
+ };
70320
+ opacity: {
70321
+ types: string[];
70322
+ };
70323
+ radiusX: {
70324
+ types: string[];
70325
+ };
70326
+ radiusY: {
70327
+ types: string[];
70328
+ };
70329
+ width: {
70330
+ types: string[];
70331
+ };
70332
+ height: {
70333
+ types: string[];
70334
+ };
70335
+ strokeWidth: {
70336
+ types: string[];
70337
+ };
70338
+ fill: {
70339
+ types: string[];
70340
+ };
70341
+ stroke: {
70342
+ types: string[];
70343
+ };
70344
+ shadow: {
70345
+ types: string[];
70346
+ properties: {
70347
+ color: {
70348
+ types: string[];
70349
+ };
70350
+ blur: {
70351
+ types: string[];
70352
+ };
70353
+ };
70354
+ required: string[];
70355
+ };
70356
+ };
70357
+ required: string[];
70358
+ };
70359
+ };
70360
+ };
70361
+ required: string[];
70362
+ };
69711
70363
  opacity: {
69712
70364
  types: string[];
69713
70365
  };
@@ -70130,6 +70782,10 @@ declare const registry: {
70130
70782
  types: string[];
70131
70783
  };
70132
70784
  };
70785
+ children: {
70786
+ types: string[];
70787
+ description: string;
70788
+ };
70133
70789
  };
70134
70790
  drawHost: boolean;
70135
70791
  };
@@ -92083,6 +92739,10 @@ declare const PATTERN_REGISTRY: {
92083
92739
  types: string[];
92084
92740
  description: string;
92085
92741
  };
92742
+ children: {
92743
+ types: string[];
92744
+ description: string;
92745
+ };
92086
92746
  };
92087
92747
  drawable: boolean;
92088
92748
  drawHost: boolean;
@@ -94615,6 +95275,35 @@ declare const PATTERN_REGISTRY: {
94615
95275
  types: string[];
94616
95276
  description: string;
94617
95277
  };
95278
+ gradient: {
95279
+ types: string[];
95280
+ description: string;
95281
+ properties: {
95282
+ kind: {
95283
+ types: string[];
95284
+ enumValues: string[];
95285
+ };
95286
+ from: {
95287
+ types: string[];
95288
+ };
95289
+ to: {
95290
+ types: string[];
95291
+ };
95292
+ center: {
95293
+ types: string[];
95294
+ };
95295
+ radius: {
95296
+ types: string[];
95297
+ };
95298
+ stops: {
95299
+ types: string[];
95300
+ items: {
95301
+ types: string[];
95302
+ };
95303
+ };
95304
+ };
95305
+ propertyRequired: string[];
95306
+ };
94618
95307
  stroke: {
94619
95308
  types: string[];
94620
95309
  description: string;
@@ -94623,6 +95312,97 @@ declare const PATTERN_REGISTRY: {
94623
95312
  types: string[];
94624
95313
  description: string;
94625
95314
  };
95315
+ rotate: {
95316
+ types: string[];
95317
+ description: string;
95318
+ };
95319
+ pivot: {
95320
+ types: string[];
95321
+ description: string;
95322
+ };
95323
+ shadow: {
95324
+ types: string[];
95325
+ description: string;
95326
+ properties: {
95327
+ color: {
95328
+ types: string[];
95329
+ };
95330
+ blur: {
95331
+ types: string[];
95332
+ };
95333
+ };
95334
+ propertyRequired: string[];
95335
+ };
95336
+ animation: {
95337
+ types: string[];
95338
+ description: string;
95339
+ properties: {
95340
+ durationMs: {
95341
+ types: string[];
95342
+ };
95343
+ loop: {
95344
+ types: string[];
95345
+ };
95346
+ keyframes: {
95347
+ types: string[];
95348
+ items: {
95349
+ types: string[];
95350
+ properties: {
95351
+ at: {
95352
+ types: string[];
95353
+ };
95354
+ offsetX: {
95355
+ types: string[];
95356
+ };
95357
+ offsetY: {
95358
+ types: string[];
95359
+ };
95360
+ rotate: {
95361
+ types: string[];
95362
+ };
95363
+ opacity: {
95364
+ types: string[];
95365
+ };
95366
+ radiusX: {
95367
+ types: string[];
95368
+ };
95369
+ radiusY: {
95370
+ types: string[];
95371
+ };
95372
+ width: {
95373
+ types: string[];
95374
+ };
95375
+ height: {
95376
+ types: string[];
95377
+ };
95378
+ strokeWidth: {
95379
+ types: string[];
95380
+ };
95381
+ fill: {
95382
+ types: string[];
95383
+ };
95384
+ stroke: {
95385
+ types: string[];
95386
+ };
95387
+ shadow: {
95388
+ types: string[];
95389
+ properties: {
95390
+ color: {
95391
+ types: string[];
95392
+ };
95393
+ blur: {
95394
+ types: string[];
95395
+ };
95396
+ };
95397
+ required: string[];
95398
+ };
95399
+ };
95400
+ required: string[];
95401
+ };
95402
+ };
95403
+ };
95404
+ propertyRequired: string[];
95405
+ };
94626
95406
  opacity: {
94627
95407
  types: string[];
94628
95408
  description: string;
@@ -94913,12 +95693,127 @@ declare const PATTERN_REGISTRY: {
94913
95693
  fill: {
94914
95694
  types: string[];
94915
95695
  };
95696
+ gradient: {
95697
+ types: string[];
95698
+ properties: {
95699
+ kind: {
95700
+ types: string[];
95701
+ enumValues: string[];
95702
+ };
95703
+ from: {
95704
+ types: string[];
95705
+ };
95706
+ to: {
95707
+ types: string[];
95708
+ };
95709
+ center: {
95710
+ types: string[];
95711
+ };
95712
+ radius: {
95713
+ types: string[];
95714
+ };
95715
+ stops: {
95716
+ types: string[];
95717
+ items: {
95718
+ types: string[];
95719
+ };
95720
+ };
95721
+ };
95722
+ required: string[];
95723
+ };
94916
95724
  stroke: {
94917
95725
  types: string[];
94918
95726
  };
94919
95727
  strokeWidth: {
94920
95728
  types: string[];
94921
95729
  };
95730
+ rotate: {
95731
+ types: string[];
95732
+ };
95733
+ pivot: {
95734
+ types: string[];
95735
+ };
95736
+ shadow: {
95737
+ types: string[];
95738
+ properties: {
95739
+ color: {
95740
+ types: string[];
95741
+ };
95742
+ blur: {
95743
+ types: string[];
95744
+ };
95745
+ };
95746
+ required: string[];
95747
+ };
95748
+ animation: {
95749
+ types: string[];
95750
+ properties: {
95751
+ durationMs: {
95752
+ types: string[];
95753
+ };
95754
+ loop: {
95755
+ types: string[];
95756
+ };
95757
+ keyframes: {
95758
+ types: string[];
95759
+ items: {
95760
+ types: string[];
95761
+ properties: {
95762
+ at: {
95763
+ types: string[];
95764
+ };
95765
+ offsetX: {
95766
+ types: string[];
95767
+ };
95768
+ offsetY: {
95769
+ types: string[];
95770
+ };
95771
+ rotate: {
95772
+ types: string[];
95773
+ };
95774
+ opacity: {
95775
+ types: string[];
95776
+ };
95777
+ radiusX: {
95778
+ types: string[];
95779
+ };
95780
+ radiusY: {
95781
+ types: string[];
95782
+ };
95783
+ width: {
95784
+ types: string[];
95785
+ };
95786
+ height: {
95787
+ types: string[];
95788
+ };
95789
+ strokeWidth: {
95790
+ types: string[];
95791
+ };
95792
+ fill: {
95793
+ types: string[];
95794
+ };
95795
+ stroke: {
95796
+ types: string[];
95797
+ };
95798
+ shadow: {
95799
+ types: string[];
95800
+ properties: {
95801
+ color: {
95802
+ types: string[];
95803
+ };
95804
+ blur: {
95805
+ types: string[];
95806
+ };
95807
+ };
95808
+ required: string[];
95809
+ };
95810
+ };
95811
+ required: string[];
95812
+ };
95813
+ };
95814
+ };
95815
+ required: string[];
95816
+ };
94922
95817
  opacity: {
94923
95818
  types: string[];
94924
95819
  };
@@ -95341,6 +96236,10 @@ declare const PATTERN_REGISTRY: {
95341
96236
  types: string[];
95342
96237
  };
95343
96238
  };
96239
+ children: {
96240
+ types: string[];
96241
+ description: string;
96242
+ };
95344
96243
  };
95345
96244
  drawHost: boolean;
95346
96245
  };