@spectratools/graphic-designer-cli 0.12.3 → 0.14.1

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.
@@ -586,9 +586,9 @@ declare const drawCircleSchema: z.ZodObject<{
586
586
  type: "circle";
587
587
  opacity: number;
588
588
  strokeWidth: number;
589
+ radius: number;
589
590
  cx: number;
590
591
  cy: number;
591
- radius: number;
592
592
  fill?: string | undefined;
593
593
  shadow?: {
594
594
  color: string;
@@ -599,9 +599,9 @@ declare const drawCircleSchema: z.ZodObject<{
599
599
  stroke?: string | undefined;
600
600
  }, {
601
601
  type: "circle";
602
+ radius: number;
602
603
  cx: number;
603
604
  cy: number;
604
- radius: number;
605
605
  fill?: string | undefined;
606
606
  opacity?: number | undefined;
607
607
  shadow?: {
@@ -811,8 +811,8 @@ declare const drawArcSchema: z.ZodObject<{
811
811
  x: number;
812
812
  y: number;
813
813
  };
814
- startAngle: number;
815
814
  radius: number;
815
+ startAngle: number;
816
816
  endAngle: number;
817
817
  dash?: number[] | undefined;
818
818
  shadow?: {
@@ -827,8 +827,8 @@ declare const drawArcSchema: z.ZodObject<{
827
827
  x: number;
828
828
  y: number;
829
829
  };
830
- startAngle: number;
831
830
  radius: number;
831
+ startAngle: number;
832
832
  endAngle: number;
833
833
  width?: number | undefined;
834
834
  color?: string | undefined;
@@ -1291,7 +1291,6 @@ declare const drawTextRowSchema: z.ZodObject<{
1291
1291
  x: number;
1292
1292
  y: number;
1293
1293
  align: "center" | "left" | "right";
1294
- baseline: "top" | "alphabetic" | "bottom" | "middle";
1295
1294
  segments: {
1296
1295
  text: string;
1297
1296
  color?: string | undefined;
@@ -1299,6 +1298,7 @@ declare const drawTextRowSchema: z.ZodObject<{
1299
1298
  fontWeight?: number | undefined;
1300
1299
  fontFamily?: "body" | "heading" | "mono" | undefined;
1301
1300
  }[];
1301
+ baseline: "top" | "alphabetic" | "bottom" | "middle";
1302
1302
  defaultFontSize: number;
1303
1303
  defaultFontWeight: number;
1304
1304
  defaultFontFamily: "body" | "heading" | "mono";
@@ -1322,6 +1322,80 @@ declare const drawTextRowSchema: z.ZodObject<{
1322
1322
  defaultFontFamily?: "body" | "heading" | "mono" | undefined;
1323
1323
  defaultColor?: string | undefined;
1324
1324
  }>;
1325
+ declare const drawStatsBarItemSchema: z.ZodObject<{
1326
+ value: z.ZodString;
1327
+ label: z.ZodString;
1328
+ }, "strict", z.ZodTypeAny, {
1329
+ value: string;
1330
+ label: string;
1331
+ }, {
1332
+ value: string;
1333
+ label: string;
1334
+ }>;
1335
+ declare const drawStatsBarSchema: z.ZodObject<{
1336
+ type: z.ZodLiteral<"stats-bar">;
1337
+ y: z.ZodNumber;
1338
+ items: z.ZodArray<z.ZodObject<{
1339
+ value: z.ZodString;
1340
+ label: z.ZodString;
1341
+ }, "strict", z.ZodTypeAny, {
1342
+ value: string;
1343
+ label: string;
1344
+ }, {
1345
+ value: string;
1346
+ label: string;
1347
+ }>, "many">;
1348
+ separator: z.ZodDefault<z.ZodEnum<["dot", "pipe", "none"]>>;
1349
+ valueColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
1350
+ valueFontSize: z.ZodDefault<z.ZodNumber>;
1351
+ valueFontWeight: z.ZodDefault<z.ZodNumber>;
1352
+ valueFontFamily: z.ZodDefault<z.ZodEnum<["heading", "body", "mono"]>>;
1353
+ labelColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
1354
+ labelFontSize: z.ZodDefault<z.ZodNumber>;
1355
+ labelFontWeight: z.ZodDefault<z.ZodNumber>;
1356
+ labelFontFamily: z.ZodDefault<z.ZodEnum<["heading", "body", "mono"]>>;
1357
+ separatorColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
1358
+ gap: z.ZodDefault<z.ZodNumber>;
1359
+ opacity: z.ZodDefault<z.ZodNumber>;
1360
+ }, "strict", z.ZodTypeAny, {
1361
+ type: "stats-bar";
1362
+ labelColor: string;
1363
+ labelFontSize: number;
1364
+ opacity: number;
1365
+ y: number;
1366
+ gap: number;
1367
+ items: {
1368
+ value: string;
1369
+ label: string;
1370
+ }[];
1371
+ separator: "none" | "dot" | "pipe";
1372
+ valueColor: string;
1373
+ valueFontSize: number;
1374
+ valueFontWeight: number;
1375
+ valueFontFamily: "body" | "heading" | "mono";
1376
+ labelFontWeight: number;
1377
+ labelFontFamily: "body" | "heading" | "mono";
1378
+ separatorColor: string;
1379
+ }, {
1380
+ type: "stats-bar";
1381
+ y: number;
1382
+ items: {
1383
+ value: string;
1384
+ label: string;
1385
+ }[];
1386
+ labelColor?: string | undefined;
1387
+ labelFontSize?: number | undefined;
1388
+ opacity?: number | undefined;
1389
+ gap?: number | undefined;
1390
+ separator?: "none" | "dot" | "pipe" | undefined;
1391
+ valueColor?: string | undefined;
1392
+ valueFontSize?: number | undefined;
1393
+ valueFontWeight?: number | undefined;
1394
+ valueFontFamily?: "body" | "heading" | "mono" | undefined;
1395
+ labelFontWeight?: number | undefined;
1396
+ labelFontFamily?: "body" | "heading" | "mono" | undefined;
1397
+ separatorColor?: string | undefined;
1398
+ }>;
1325
1399
  declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1326
1400
  type: z.ZodLiteral<"rect">;
1327
1401
  x: z.ZodNumber;
@@ -1412,9 +1486,9 @@ declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1412
1486
  type: "circle";
1413
1487
  opacity: number;
1414
1488
  strokeWidth: number;
1489
+ radius: number;
1415
1490
  cx: number;
1416
1491
  cy: number;
1417
- radius: number;
1418
1492
  fill?: string | undefined;
1419
1493
  shadow?: {
1420
1494
  color: string;
@@ -1425,9 +1499,9 @@ declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1425
1499
  stroke?: string | undefined;
1426
1500
  }, {
1427
1501
  type: "circle";
1502
+ radius: number;
1428
1503
  cx: number;
1429
1504
  cy: number;
1430
- radius: number;
1431
1505
  fill?: string | undefined;
1432
1506
  opacity?: number | undefined;
1433
1507
  shadow?: {
@@ -1634,8 +1708,8 @@ declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1634
1708
  x: number;
1635
1709
  y: number;
1636
1710
  };
1637
- startAngle: number;
1638
1711
  radius: number;
1712
+ startAngle: number;
1639
1713
  endAngle: number;
1640
1714
  dash?: number[] | undefined;
1641
1715
  shadow?: {
@@ -1650,8 +1724,8 @@ declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1650
1724
  x: number;
1651
1725
  y: number;
1652
1726
  };
1653
- startAngle: number;
1654
1727
  radius: number;
1728
+ startAngle: number;
1655
1729
  endAngle: number;
1656
1730
  width?: number | undefined;
1657
1731
  color?: string | undefined;
@@ -2079,7 +2153,6 @@ declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2079
2153
  x: number;
2080
2154
  y: number;
2081
2155
  align: "center" | "left" | "right";
2082
- baseline: "top" | "alphabetic" | "bottom" | "middle";
2083
2156
  segments: {
2084
2157
  text: string;
2085
2158
  color?: string | undefined;
@@ -2087,6 +2160,7 @@ declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2087
2160
  fontWeight?: number | undefined;
2088
2161
  fontFamily?: "body" | "heading" | "mono" | undefined;
2089
2162
  }[];
2163
+ baseline: "top" | "alphabetic" | "bottom" | "middle";
2090
2164
  defaultFontSize: number;
2091
2165
  defaultFontWeight: number;
2092
2166
  defaultFontFamily: "body" | "heading" | "mono";
@@ -2109,6 +2183,69 @@ declare const drawCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2109
2183
  defaultFontWeight?: number | undefined;
2110
2184
  defaultFontFamily?: "body" | "heading" | "mono" | undefined;
2111
2185
  defaultColor?: string | undefined;
2186
+ }>, z.ZodObject<{
2187
+ type: z.ZodLiteral<"stats-bar">;
2188
+ y: z.ZodNumber;
2189
+ items: z.ZodArray<z.ZodObject<{
2190
+ value: z.ZodString;
2191
+ label: z.ZodString;
2192
+ }, "strict", z.ZodTypeAny, {
2193
+ value: string;
2194
+ label: string;
2195
+ }, {
2196
+ value: string;
2197
+ label: string;
2198
+ }>, "many">;
2199
+ separator: z.ZodDefault<z.ZodEnum<["dot", "pipe", "none"]>>;
2200
+ valueColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
2201
+ valueFontSize: z.ZodDefault<z.ZodNumber>;
2202
+ valueFontWeight: z.ZodDefault<z.ZodNumber>;
2203
+ valueFontFamily: z.ZodDefault<z.ZodEnum<["heading", "body", "mono"]>>;
2204
+ labelColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
2205
+ labelFontSize: z.ZodDefault<z.ZodNumber>;
2206
+ labelFontWeight: z.ZodDefault<z.ZodNumber>;
2207
+ labelFontFamily: z.ZodDefault<z.ZodEnum<["heading", "body", "mono"]>>;
2208
+ separatorColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
2209
+ gap: z.ZodDefault<z.ZodNumber>;
2210
+ opacity: z.ZodDefault<z.ZodNumber>;
2211
+ }, "strict", z.ZodTypeAny, {
2212
+ type: "stats-bar";
2213
+ labelColor: string;
2214
+ labelFontSize: number;
2215
+ opacity: number;
2216
+ y: number;
2217
+ gap: number;
2218
+ items: {
2219
+ value: string;
2220
+ label: string;
2221
+ }[];
2222
+ separator: "none" | "dot" | "pipe";
2223
+ valueColor: string;
2224
+ valueFontSize: number;
2225
+ valueFontWeight: number;
2226
+ valueFontFamily: "body" | "heading" | "mono";
2227
+ labelFontWeight: number;
2228
+ labelFontFamily: "body" | "heading" | "mono";
2229
+ separatorColor: string;
2230
+ }, {
2231
+ type: "stats-bar";
2232
+ y: number;
2233
+ items: {
2234
+ value: string;
2235
+ label: string;
2236
+ }[];
2237
+ labelColor?: string | undefined;
2238
+ labelFontSize?: number | undefined;
2239
+ opacity?: number | undefined;
2240
+ gap?: number | undefined;
2241
+ separator?: "none" | "dot" | "pipe" | undefined;
2242
+ valueColor?: string | undefined;
2243
+ valueFontSize?: number | undefined;
2244
+ valueFontWeight?: number | undefined;
2245
+ valueFontFamily?: "body" | "heading" | "mono" | undefined;
2246
+ labelFontWeight?: number | undefined;
2247
+ labelFontFamily?: "body" | "heading" | "mono" | undefined;
2248
+ separatorColor?: string | undefined;
2112
2249
  }>]>;
2113
2250
  /** Default canvas dimensions and padding (1200 × 675 px, 48 px padding). */
2114
2251
  declare const defaultCanvas: {
@@ -2716,6 +2853,66 @@ declare const imageElementSchema: z.ZodObject<{
2716
2853
  alt?: string | undefined;
2717
2854
  borderRadius?: number | undefined;
2718
2855
  }>;
2856
+ declare const ringSegmentSchema: z.ZodObject<{
2857
+ color: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2858
+ }, "strict", z.ZodTypeAny, {
2859
+ color: string;
2860
+ }, {
2861
+ color: string;
2862
+ }>;
2863
+ declare const ringElementSchema: z.ZodObject<{
2864
+ type: z.ZodLiteral<"ring">;
2865
+ id: z.ZodString;
2866
+ radius: z.ZodDefault<z.ZodNumber>;
2867
+ strokeWidth: z.ZodDefault<z.ZodNumber>;
2868
+ label: z.ZodOptional<z.ZodString>;
2869
+ labelColor: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
2870
+ labelSize: z.ZodDefault<z.ZodNumber>;
2871
+ segments: z.ZodDefault<z.ZodArray<z.ZodObject<{
2872
+ color: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2873
+ }, "strict", z.ZodTypeAny, {
2874
+ color: string;
2875
+ }, {
2876
+ color: string;
2877
+ }>, "many">>;
2878
+ glowRadius: z.ZodDefault<z.ZodNumber>;
2879
+ glowColor: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
2880
+ showCycleArrows: z.ZodDefault<z.ZodBoolean>;
2881
+ fill: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
2882
+ fillOpacity: z.ZodDefault<z.ZodNumber>;
2883
+ }, "strict", z.ZodTypeAny, {
2884
+ type: "ring";
2885
+ id: string;
2886
+ fillOpacity: number;
2887
+ strokeWidth: number;
2888
+ radius: number;
2889
+ labelSize: number;
2890
+ segments: {
2891
+ color: string;
2892
+ }[];
2893
+ glowRadius: number;
2894
+ showCycleArrows: boolean;
2895
+ fill?: string | undefined;
2896
+ label?: string | undefined;
2897
+ labelColor?: string | undefined;
2898
+ glowColor?: string | undefined;
2899
+ }, {
2900
+ type: "ring";
2901
+ id: string;
2902
+ fill?: string | undefined;
2903
+ label?: string | undefined;
2904
+ labelColor?: string | undefined;
2905
+ fillOpacity?: number | undefined;
2906
+ glowColor?: string | undefined;
2907
+ strokeWidth?: number | undefined;
2908
+ radius?: number | undefined;
2909
+ labelSize?: number | undefined;
2910
+ segments?: {
2911
+ color: string;
2912
+ }[] | undefined;
2913
+ glowRadius?: number | undefined;
2914
+ showCycleArrows?: boolean | undefined;
2915
+ }>;
2719
2916
  declare const elementSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2720
2917
  type: z.ZodLiteral<"card">;
2721
2918
  id: z.ZodString;
@@ -3190,6 +3387,58 @@ declare const elementSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3190
3387
  fit?: "contain" | "cover" | "fill" | "none" | undefined;
3191
3388
  alt?: string | undefined;
3192
3389
  borderRadius?: number | undefined;
3390
+ }>, z.ZodObject<{
3391
+ type: z.ZodLiteral<"ring">;
3392
+ id: z.ZodString;
3393
+ radius: z.ZodDefault<z.ZodNumber>;
3394
+ strokeWidth: z.ZodDefault<z.ZodNumber>;
3395
+ label: z.ZodOptional<z.ZodString>;
3396
+ labelColor: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
3397
+ labelSize: z.ZodDefault<z.ZodNumber>;
3398
+ segments: z.ZodDefault<z.ZodArray<z.ZodObject<{
3399
+ color: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
3400
+ }, "strict", z.ZodTypeAny, {
3401
+ color: string;
3402
+ }, {
3403
+ color: string;
3404
+ }>, "many">>;
3405
+ glowRadius: z.ZodDefault<z.ZodNumber>;
3406
+ glowColor: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
3407
+ showCycleArrows: z.ZodDefault<z.ZodBoolean>;
3408
+ fill: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
3409
+ fillOpacity: z.ZodDefault<z.ZodNumber>;
3410
+ }, "strict", z.ZodTypeAny, {
3411
+ type: "ring";
3412
+ id: string;
3413
+ fillOpacity: number;
3414
+ strokeWidth: number;
3415
+ radius: number;
3416
+ labelSize: number;
3417
+ segments: {
3418
+ color: string;
3419
+ }[];
3420
+ glowRadius: number;
3421
+ showCycleArrows: boolean;
3422
+ fill?: string | undefined;
3423
+ label?: string | undefined;
3424
+ labelColor?: string | undefined;
3425
+ glowColor?: string | undefined;
3426
+ }, {
3427
+ type: "ring";
3428
+ id: string;
3429
+ fill?: string | undefined;
3430
+ label?: string | undefined;
3431
+ labelColor?: string | undefined;
3432
+ fillOpacity?: number | undefined;
3433
+ glowColor?: string | undefined;
3434
+ strokeWidth?: number | undefined;
3435
+ radius?: number | undefined;
3436
+ labelSize?: number | undefined;
3437
+ segments?: {
3438
+ color: string;
3439
+ }[] | undefined;
3440
+ glowRadius?: number | undefined;
3441
+ showCycleArrows?: boolean | undefined;
3193
3442
  }>]>;
3194
3443
  declare const autoLayoutConfigSchema: z.ZodObject<{
3195
3444
  mode: z.ZodLiteral<"auto">;
@@ -3768,16 +4017,31 @@ declare const decoratorSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3768
4017
  margin?: number | undefined;
3769
4018
  }>, z.ZodObject<{
3770
4019
  type: z.ZodLiteral<"vignette">;
4020
+ mode: z.ZodDefault<z.ZodEnum<["radial", "edge"]>>;
3771
4021
  intensity: z.ZodDefault<z.ZodNumber>;
3772
4022
  color: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
4023
+ edgeTopHeight: z.ZodDefault<z.ZodNumber>;
4024
+ edgeBottomHeight: z.ZodDefault<z.ZodNumber>;
4025
+ edgeTopOpacity: z.ZodDefault<z.ZodNumber>;
4026
+ edgeBottomOpacity: z.ZodDefault<z.ZodNumber>;
3773
4027
  }, "strict", z.ZodTypeAny, {
3774
4028
  color: string;
3775
4029
  type: "vignette";
4030
+ mode: "radial" | "edge";
3776
4031
  intensity: number;
4032
+ edgeTopHeight: number;
4033
+ edgeBottomHeight: number;
4034
+ edgeTopOpacity: number;
4035
+ edgeBottomOpacity: number;
3777
4036
  }, {
3778
4037
  type: "vignette";
3779
4038
  color?: string | undefined;
4039
+ mode?: "radial" | "edge" | undefined;
3780
4040
  intensity?: number | undefined;
4041
+ edgeTopHeight?: number | undefined;
4042
+ edgeBottomHeight?: number | undefined;
4043
+ edgeTopOpacity?: number | undefined;
4044
+ edgeBottomOpacity?: number | undefined;
3781
4045
  }>, z.ZodObject<{
3782
4046
  type: z.ZodLiteral<"gradient-overlay">;
3783
4047
  gradient: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -5676,6 +5940,58 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
5676
5940
  fit?: "contain" | "cover" | "fill" | "none" | undefined;
5677
5941
  alt?: string | undefined;
5678
5942
  borderRadius?: number | undefined;
5943
+ }>, z.ZodObject<{
5944
+ type: z.ZodLiteral<"ring">;
5945
+ id: z.ZodString;
5946
+ radius: z.ZodDefault<z.ZodNumber>;
5947
+ strokeWidth: z.ZodDefault<z.ZodNumber>;
5948
+ label: z.ZodOptional<z.ZodString>;
5949
+ labelColor: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
5950
+ labelSize: z.ZodDefault<z.ZodNumber>;
5951
+ segments: z.ZodDefault<z.ZodArray<z.ZodObject<{
5952
+ color: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
5953
+ }, "strict", z.ZodTypeAny, {
5954
+ color: string;
5955
+ }, {
5956
+ color: string;
5957
+ }>, "many">>;
5958
+ glowRadius: z.ZodDefault<z.ZodNumber>;
5959
+ glowColor: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
5960
+ showCycleArrows: z.ZodDefault<z.ZodBoolean>;
5961
+ fill: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
5962
+ fillOpacity: z.ZodDefault<z.ZodNumber>;
5963
+ }, "strict", z.ZodTypeAny, {
5964
+ type: "ring";
5965
+ id: string;
5966
+ fillOpacity: number;
5967
+ strokeWidth: number;
5968
+ radius: number;
5969
+ labelSize: number;
5970
+ segments: {
5971
+ color: string;
5972
+ }[];
5973
+ glowRadius: number;
5974
+ showCycleArrows: boolean;
5975
+ fill?: string | undefined;
5976
+ label?: string | undefined;
5977
+ labelColor?: string | undefined;
5978
+ glowColor?: string | undefined;
5979
+ }, {
5980
+ type: "ring";
5981
+ id: string;
5982
+ fill?: string | undefined;
5983
+ label?: string | undefined;
5984
+ labelColor?: string | undefined;
5985
+ fillOpacity?: number | undefined;
5986
+ glowColor?: string | undefined;
5987
+ strokeWidth?: number | undefined;
5988
+ radius?: number | undefined;
5989
+ labelSize?: number | undefined;
5990
+ segments?: {
5991
+ color: string;
5992
+ }[] | undefined;
5993
+ glowRadius?: number | undefined;
5994
+ showCycleArrows?: boolean | undefined;
5679
5995
  }>]>, "many">>;
5680
5996
  footer: z.ZodOptional<z.ZodObject<{
5681
5997
  text: z.ZodString;
@@ -5710,16 +6026,31 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
5710
6026
  margin?: number | undefined;
5711
6027
  }>, z.ZodObject<{
5712
6028
  type: z.ZodLiteral<"vignette">;
6029
+ mode: z.ZodDefault<z.ZodEnum<["radial", "edge"]>>;
5713
6030
  intensity: z.ZodDefault<z.ZodNumber>;
5714
6031
  color: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
6032
+ edgeTopHeight: z.ZodDefault<z.ZodNumber>;
6033
+ edgeBottomHeight: z.ZodDefault<z.ZodNumber>;
6034
+ edgeTopOpacity: z.ZodDefault<z.ZodNumber>;
6035
+ edgeBottomOpacity: z.ZodDefault<z.ZodNumber>;
5715
6036
  }, "strict", z.ZodTypeAny, {
5716
6037
  color: string;
5717
6038
  type: "vignette";
6039
+ mode: "radial" | "edge";
5718
6040
  intensity: number;
6041
+ edgeTopHeight: number;
6042
+ edgeBottomHeight: number;
6043
+ edgeTopOpacity: number;
6044
+ edgeBottomOpacity: number;
5719
6045
  }, {
5720
6046
  type: "vignette";
5721
6047
  color?: string | undefined;
6048
+ mode?: "radial" | "edge" | undefined;
5722
6049
  intensity?: number | undefined;
6050
+ edgeTopHeight?: number | undefined;
6051
+ edgeBottomHeight?: number | undefined;
6052
+ edgeTopOpacity?: number | undefined;
6053
+ edgeBottomOpacity?: number | undefined;
5723
6054
  }>, z.ZodObject<{
5724
6055
  type: z.ZodLiteral<"gradient-overlay">;
5725
6056
  gradient: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -5920,9 +6251,9 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
5920
6251
  type: "circle";
5921
6252
  opacity: number;
5922
6253
  strokeWidth: number;
6254
+ radius: number;
5923
6255
  cx: number;
5924
6256
  cy: number;
5925
- radius: number;
5926
6257
  fill?: string | undefined;
5927
6258
  shadow?: {
5928
6259
  color: string;
@@ -5933,9 +6264,9 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
5933
6264
  stroke?: string | undefined;
5934
6265
  }, {
5935
6266
  type: "circle";
6267
+ radius: number;
5936
6268
  cx: number;
5937
6269
  cy: number;
5938
- radius: number;
5939
6270
  fill?: string | undefined;
5940
6271
  opacity?: number | undefined;
5941
6272
  shadow?: {
@@ -6142,8 +6473,8 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
6142
6473
  x: number;
6143
6474
  y: number;
6144
6475
  };
6145
- startAngle: number;
6146
6476
  radius: number;
6477
+ startAngle: number;
6147
6478
  endAngle: number;
6148
6479
  dash?: number[] | undefined;
6149
6480
  shadow?: {
@@ -6158,8 +6489,8 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
6158
6489
  x: number;
6159
6490
  y: number;
6160
6491
  };
6161
- startAngle: number;
6162
6492
  radius: number;
6493
+ startAngle: number;
6163
6494
  endAngle: number;
6164
6495
  width?: number | undefined;
6165
6496
  color?: string | undefined;
@@ -6587,7 +6918,6 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
6587
6918
  x: number;
6588
6919
  y: number;
6589
6920
  align: "center" | "left" | "right";
6590
- baseline: "top" | "alphabetic" | "bottom" | "middle";
6591
6921
  segments: {
6592
6922
  text: string;
6593
6923
  color?: string | undefined;
@@ -6595,6 +6925,7 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
6595
6925
  fontWeight?: number | undefined;
6596
6926
  fontFamily?: "body" | "heading" | "mono" | undefined;
6597
6927
  }[];
6928
+ baseline: "top" | "alphabetic" | "bottom" | "middle";
6598
6929
  defaultFontSize: number;
6599
6930
  defaultFontWeight: number;
6600
6931
  defaultFontFamily: "body" | "heading" | "mono";
@@ -6617,6 +6948,69 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
6617
6948
  defaultFontWeight?: number | undefined;
6618
6949
  defaultFontFamily?: "body" | "heading" | "mono" | undefined;
6619
6950
  defaultColor?: string | undefined;
6951
+ }>, z.ZodObject<{
6952
+ type: z.ZodLiteral<"stats-bar">;
6953
+ y: z.ZodNumber;
6954
+ items: z.ZodArray<z.ZodObject<{
6955
+ value: z.ZodString;
6956
+ label: z.ZodString;
6957
+ }, "strict", z.ZodTypeAny, {
6958
+ value: string;
6959
+ label: string;
6960
+ }, {
6961
+ value: string;
6962
+ label: string;
6963
+ }>, "many">;
6964
+ separator: z.ZodDefault<z.ZodEnum<["dot", "pipe", "none"]>>;
6965
+ valueColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
6966
+ valueFontSize: z.ZodDefault<z.ZodNumber>;
6967
+ valueFontWeight: z.ZodDefault<z.ZodNumber>;
6968
+ valueFontFamily: z.ZodDefault<z.ZodEnum<["heading", "body", "mono"]>>;
6969
+ labelColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
6970
+ labelFontSize: z.ZodDefault<z.ZodNumber>;
6971
+ labelFontWeight: z.ZodDefault<z.ZodNumber>;
6972
+ labelFontFamily: z.ZodDefault<z.ZodEnum<["heading", "body", "mono"]>>;
6973
+ separatorColor: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
6974
+ gap: z.ZodDefault<z.ZodNumber>;
6975
+ opacity: z.ZodDefault<z.ZodNumber>;
6976
+ }, "strict", z.ZodTypeAny, {
6977
+ type: "stats-bar";
6978
+ labelColor: string;
6979
+ labelFontSize: number;
6980
+ opacity: number;
6981
+ y: number;
6982
+ gap: number;
6983
+ items: {
6984
+ value: string;
6985
+ label: string;
6986
+ }[];
6987
+ separator: "none" | "dot" | "pipe";
6988
+ valueColor: string;
6989
+ valueFontSize: number;
6990
+ valueFontWeight: number;
6991
+ valueFontFamily: "body" | "heading" | "mono";
6992
+ labelFontWeight: number;
6993
+ labelFontFamily: "body" | "heading" | "mono";
6994
+ separatorColor: string;
6995
+ }, {
6996
+ type: "stats-bar";
6997
+ y: number;
6998
+ items: {
6999
+ value: string;
7000
+ label: string;
7001
+ }[];
7002
+ labelColor?: string | undefined;
7003
+ labelFontSize?: number | undefined;
7004
+ opacity?: number | undefined;
7005
+ gap?: number | undefined;
7006
+ separator?: "none" | "dot" | "pipe" | undefined;
7007
+ valueColor?: string | undefined;
7008
+ valueFontSize?: number | undefined;
7009
+ valueFontWeight?: number | undefined;
7010
+ valueFontFamily?: "body" | "heading" | "mono" | undefined;
7011
+ labelFontWeight?: number | undefined;
7012
+ labelFontFamily?: "body" | "heading" | "mono" | undefined;
7013
+ separatorColor?: string | undefined;
6620
7014
  }>]>, "many">>;
6621
7015
  layout: z.ZodOptional<z.ZodDiscriminatedUnion<"mode", [z.ZodObject<{
6622
7016
  mode: z.ZodLiteral<"auto">;
@@ -6923,9 +7317,9 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
6923
7317
  type: "circle";
6924
7318
  opacity: number;
6925
7319
  strokeWidth: number;
7320
+ radius: number;
6926
7321
  cx: number;
6927
7322
  cy: number;
6928
- radius: number;
6929
7323
  fill?: string | undefined;
6930
7324
  shadow?: {
6931
7325
  color: string;
@@ -6985,8 +7379,8 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
6985
7379
  x: number;
6986
7380
  y: number;
6987
7381
  };
6988
- startAngle: number;
6989
7382
  radius: number;
7383
+ startAngle: number;
6990
7384
  endAngle: number;
6991
7385
  dash?: number[] | undefined;
6992
7386
  shadow?: {
@@ -7095,7 +7489,6 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7095
7489
  x: number;
7096
7490
  y: number;
7097
7491
  align: "center" | "left" | "right";
7098
- baseline: "top" | "alphabetic" | "bottom" | "middle";
7099
7492
  segments: {
7100
7493
  text: string;
7101
7494
  color?: string | undefined;
@@ -7103,10 +7496,30 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7103
7496
  fontWeight?: number | undefined;
7104
7497
  fontFamily?: "body" | "heading" | "mono" | undefined;
7105
7498
  }[];
7499
+ baseline: "top" | "alphabetic" | "bottom" | "middle";
7106
7500
  defaultFontSize: number;
7107
7501
  defaultFontWeight: number;
7108
7502
  defaultFontFamily: "body" | "heading" | "mono";
7109
7503
  defaultColor: string;
7504
+ } | {
7505
+ type: "stats-bar";
7506
+ labelColor: string;
7507
+ labelFontSize: number;
7508
+ opacity: number;
7509
+ y: number;
7510
+ gap: number;
7511
+ items: {
7512
+ value: string;
7513
+ label: string;
7514
+ }[];
7515
+ separator: "none" | "dot" | "pipe";
7516
+ valueColor: string;
7517
+ valueFontSize: number;
7518
+ valueFontWeight: number;
7519
+ valueFontFamily: "body" | "heading" | "mono";
7520
+ labelFontWeight: number;
7521
+ labelFontFamily: "body" | "heading" | "mono";
7522
+ separatorColor: string;
7110
7523
  })[];
7111
7524
  theme: {
7112
7525
  code: {
@@ -7284,6 +7697,22 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7284
7697
  src: string;
7285
7698
  borderRadius: number;
7286
7699
  alt?: string | undefined;
7700
+ } | {
7701
+ type: "ring";
7702
+ id: string;
7703
+ fillOpacity: number;
7704
+ strokeWidth: number;
7705
+ radius: number;
7706
+ labelSize: number;
7707
+ segments: {
7708
+ color: string;
7709
+ }[];
7710
+ glowRadius: number;
7711
+ showCycleArrows: boolean;
7712
+ fill?: string | undefined;
7713
+ label?: string | undefined;
7714
+ labelColor?: string | undefined;
7715
+ glowColor?: string | undefined;
7287
7716
  })[];
7288
7717
  decorators: ({
7289
7718
  type: "rainbow-rule";
@@ -7295,7 +7724,12 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7295
7724
  } | {
7296
7725
  color: string;
7297
7726
  type: "vignette";
7727
+ mode: "radial" | "edge";
7298
7728
  intensity: number;
7729
+ edgeTopHeight: number;
7730
+ edgeBottomHeight: number;
7731
+ edgeTopOpacity: number;
7732
+ edgeBottomOpacity: number;
7299
7733
  } | {
7300
7734
  type: "gradient-overlay";
7301
7735
  opacity: number;
@@ -7474,9 +7908,9 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7474
7908
  radius?: number | undefined;
7475
7909
  } | {
7476
7910
  type: "circle";
7911
+ radius: number;
7477
7912
  cx: number;
7478
7913
  cy: number;
7479
- radius: number;
7480
7914
  fill?: string | undefined;
7481
7915
  opacity?: number | undefined;
7482
7916
  shadow?: {
@@ -7535,8 +7969,8 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7535
7969
  x: number;
7536
7970
  y: number;
7537
7971
  };
7538
- startAngle: number;
7539
7972
  radius: number;
7973
+ startAngle: number;
7540
7974
  endAngle: number;
7541
7975
  width?: number | undefined;
7542
7976
  color?: string | undefined;
@@ -7660,6 +8094,25 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7660
8094
  defaultFontWeight?: number | undefined;
7661
8095
  defaultFontFamily?: "body" | "heading" | "mono" | undefined;
7662
8096
  defaultColor?: string | undefined;
8097
+ } | {
8098
+ type: "stats-bar";
8099
+ y: number;
8100
+ items: {
8101
+ value: string;
8102
+ label: string;
8103
+ }[];
8104
+ labelColor?: string | undefined;
8105
+ labelFontSize?: number | undefined;
8106
+ opacity?: number | undefined;
8107
+ gap?: number | undefined;
8108
+ separator?: "none" | "dot" | "pipe" | undefined;
8109
+ valueColor?: string | undefined;
8110
+ valueFontSize?: number | undefined;
8111
+ valueFontWeight?: number | undefined;
8112
+ valueFontFamily?: "body" | "heading" | "mono" | undefined;
8113
+ labelFontWeight?: number | undefined;
8114
+ labelFontFamily?: "body" | "heading" | "mono" | undefined;
8115
+ separatorColor?: string | undefined;
7663
8116
  })[] | undefined;
7664
8117
  theme?: {
7665
8118
  code: {
@@ -7837,6 +8290,22 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7837
8290
  fit?: "contain" | "cover" | "fill" | "none" | undefined;
7838
8291
  alt?: string | undefined;
7839
8292
  borderRadius?: number | undefined;
8293
+ } | {
8294
+ type: "ring";
8295
+ id: string;
8296
+ fill?: string | undefined;
8297
+ label?: string | undefined;
8298
+ labelColor?: string | undefined;
8299
+ fillOpacity?: number | undefined;
8300
+ glowColor?: string | undefined;
8301
+ strokeWidth?: number | undefined;
8302
+ radius?: number | undefined;
8303
+ labelSize?: number | undefined;
8304
+ segments?: {
8305
+ color: string;
8306
+ }[] | undefined;
8307
+ glowRadius?: number | undefined;
8308
+ showCycleArrows?: boolean | undefined;
7840
8309
  })[] | undefined;
7841
8310
  decorators?: ({
7842
8311
  type: "rainbow-rule";
@@ -7848,7 +8317,12 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
7848
8317
  } | {
7849
8318
  type: "vignette";
7850
8319
  color?: string | undefined;
8320
+ mode?: "radial" | "edge" | undefined;
7851
8321
  intensity?: number | undefined;
8322
+ edgeTopHeight?: number | undefined;
8323
+ edgeBottomHeight?: number | undefined;
8324
+ edgeTopOpacity?: number | undefined;
8325
+ edgeBottomOpacity?: number | undefined;
7852
8326
  } | {
7853
8327
  type: "gradient-overlay";
7854
8328
  gradient: {
@@ -8039,9 +8513,9 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8039
8513
  type: "circle";
8040
8514
  opacity: number;
8041
8515
  strokeWidth: number;
8516
+ radius: number;
8042
8517
  cx: number;
8043
8518
  cy: number;
8044
- radius: number;
8045
8519
  fill?: string | undefined;
8046
8520
  shadow?: {
8047
8521
  color: string;
@@ -8101,8 +8575,8 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8101
8575
  x: number;
8102
8576
  y: number;
8103
8577
  };
8104
- startAngle: number;
8105
8578
  radius: number;
8579
+ startAngle: number;
8106
8580
  endAngle: number;
8107
8581
  dash?: number[] | undefined;
8108
8582
  shadow?: {
@@ -8211,7 +8685,6 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8211
8685
  x: number;
8212
8686
  y: number;
8213
8687
  align: "center" | "left" | "right";
8214
- baseline: "top" | "alphabetic" | "bottom" | "middle";
8215
8688
  segments: {
8216
8689
  text: string;
8217
8690
  color?: string | undefined;
@@ -8219,10 +8692,30 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8219
8692
  fontWeight?: number | undefined;
8220
8693
  fontFamily?: "body" | "heading" | "mono" | undefined;
8221
8694
  }[];
8695
+ baseline: "top" | "alphabetic" | "bottom" | "middle";
8222
8696
  defaultFontSize: number;
8223
8697
  defaultFontWeight: number;
8224
8698
  defaultFontFamily: "body" | "heading" | "mono";
8225
8699
  defaultColor: string;
8700
+ } | {
8701
+ type: "stats-bar";
8702
+ labelColor: string;
8703
+ labelFontSize: number;
8704
+ opacity: number;
8705
+ y: number;
8706
+ gap: number;
8707
+ items: {
8708
+ value: string;
8709
+ label: string;
8710
+ }[];
8711
+ separator: "none" | "dot" | "pipe";
8712
+ valueColor: string;
8713
+ valueFontSize: number;
8714
+ valueFontWeight: number;
8715
+ valueFontFamily: "body" | "heading" | "mono";
8716
+ labelFontWeight: number;
8717
+ labelFontFamily: "body" | "heading" | "mono";
8718
+ separatorColor: string;
8226
8719
  })[];
8227
8720
  theme: {
8228
8721
  code: {
@@ -8400,6 +8893,22 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8400
8893
  src: string;
8401
8894
  borderRadius: number;
8402
8895
  alt?: string | undefined;
8896
+ } | {
8897
+ type: "ring";
8898
+ id: string;
8899
+ fillOpacity: number;
8900
+ strokeWidth: number;
8901
+ radius: number;
8902
+ labelSize: number;
8903
+ segments: {
8904
+ color: string;
8905
+ }[];
8906
+ glowRadius: number;
8907
+ showCycleArrows: boolean;
8908
+ fill?: string | undefined;
8909
+ label?: string | undefined;
8910
+ labelColor?: string | undefined;
8911
+ glowColor?: string | undefined;
8403
8912
  })[];
8404
8913
  decorators: ({
8405
8914
  type: "rainbow-rule";
@@ -8411,7 +8920,12 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8411
8920
  } | {
8412
8921
  color: string;
8413
8922
  type: "vignette";
8923
+ mode: "radial" | "edge";
8414
8924
  intensity: number;
8925
+ edgeTopHeight: number;
8926
+ edgeBottomHeight: number;
8927
+ edgeTopOpacity: number;
8928
+ edgeBottomOpacity: number;
8415
8929
  } | {
8416
8930
  type: "gradient-overlay";
8417
8931
  opacity: number;
@@ -8520,9 +9034,9 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8520
9034
  radius?: number | undefined;
8521
9035
  } | {
8522
9036
  type: "circle";
9037
+ radius: number;
8523
9038
  cx: number;
8524
9039
  cy: number;
8525
- radius: number;
8526
9040
  fill?: string | undefined;
8527
9041
  opacity?: number | undefined;
8528
9042
  shadow?: {
@@ -8581,8 +9095,8 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8581
9095
  x: number;
8582
9096
  y: number;
8583
9097
  };
8584
- startAngle: number;
8585
9098
  radius: number;
9099
+ startAngle: number;
8586
9100
  endAngle: number;
8587
9101
  width?: number | undefined;
8588
9102
  color?: string | undefined;
@@ -8706,6 +9220,25 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8706
9220
  defaultFontWeight?: number | undefined;
8707
9221
  defaultFontFamily?: "body" | "heading" | "mono" | undefined;
8708
9222
  defaultColor?: string | undefined;
9223
+ } | {
9224
+ type: "stats-bar";
9225
+ y: number;
9226
+ items: {
9227
+ value: string;
9228
+ label: string;
9229
+ }[];
9230
+ labelColor?: string | undefined;
9231
+ labelFontSize?: number | undefined;
9232
+ opacity?: number | undefined;
9233
+ gap?: number | undefined;
9234
+ separator?: "none" | "dot" | "pipe" | undefined;
9235
+ valueColor?: string | undefined;
9236
+ valueFontSize?: number | undefined;
9237
+ valueFontWeight?: number | undefined;
9238
+ valueFontFamily?: "body" | "heading" | "mono" | undefined;
9239
+ labelFontWeight?: number | undefined;
9240
+ labelFontFamily?: "body" | "heading" | "mono" | undefined;
9241
+ separatorColor?: string | undefined;
8709
9242
  })[] | undefined;
8710
9243
  theme?: {
8711
9244
  code: {
@@ -8883,6 +9416,22 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8883
9416
  fit?: "contain" | "cover" | "fill" | "none" | undefined;
8884
9417
  alt?: string | undefined;
8885
9418
  borderRadius?: number | undefined;
9419
+ } | {
9420
+ type: "ring";
9421
+ id: string;
9422
+ fill?: string | undefined;
9423
+ label?: string | undefined;
9424
+ labelColor?: string | undefined;
9425
+ fillOpacity?: number | undefined;
9426
+ glowColor?: string | undefined;
9427
+ strokeWidth?: number | undefined;
9428
+ radius?: number | undefined;
9429
+ labelSize?: number | undefined;
9430
+ segments?: {
9431
+ color: string;
9432
+ }[] | undefined;
9433
+ glowRadius?: number | undefined;
9434
+ showCycleArrows?: boolean | undefined;
8886
9435
  })[] | undefined;
8887
9436
  decorators?: ({
8888
9437
  type: "rainbow-rule";
@@ -8894,7 +9443,12 @@ declare const designSpecSchema: z.ZodEffects<z.ZodObject<{
8894
9443
  } | {
8895
9444
  type: "vignette";
8896
9445
  color?: string | undefined;
9446
+ mode?: "radial" | "edge" | undefined;
8897
9447
  intensity?: number | undefined;
9448
+ edgeTopHeight?: number | undefined;
9449
+ edgeBottomHeight?: number | undefined;
9450
+ edgeTopOpacity?: number | undefined;
9451
+ edgeBottomOpacity?: number | undefined;
8898
9452
  } | {
8899
9453
  type: "gradient-overlay";
8900
9454
  gradient: {
@@ -9010,6 +9564,8 @@ type TerminalElement = z.infer<typeof terminalElementSchema>;
9010
9564
  type TextElement = z.infer<typeof textElementSchema>;
9011
9565
  type ShapeElement = z.infer<typeof shapeElementSchema>;
9012
9566
  type ImageElement = z.infer<typeof imageElementSchema>;
9567
+ type RingSegment = z.infer<typeof ringSegmentSchema>;
9568
+ type RingElement = z.infer<typeof ringElementSchema>;
9013
9569
  type DrawShadow = z.infer<typeof drawShadowSchema>;
9014
9570
  type DrawFontFamily = z.infer<typeof drawFontFamilySchema>;
9015
9571
  type DrawStrokeGradient = z.infer<typeof strokeGradientSchema>;
@@ -9026,6 +9582,8 @@ type DrawGradientRect = z.infer<typeof drawGradientRectSchema>;
9026
9582
  type DrawGrid = z.infer<typeof drawGridSchema>;
9027
9583
  type DrawTextRow = z.infer<typeof drawTextRowSchema>;
9028
9584
  type DrawTextRowSegment = z.infer<typeof drawTextRowSegmentSchema>;
9585
+ type DrawStatsBar = z.infer<typeof drawStatsBarSchema>;
9586
+ type DrawStatsBarItem = z.infer<typeof drawStatsBarItemSchema>;
9029
9587
  type DrawCommand = z.infer<typeof drawCommandSchema>;
9030
9588
  type LayoutConfig = z.infer<typeof layoutConfigSchema>;
9031
9589
  type AutoLayoutConfig = z.infer<typeof autoLayoutConfigSchema>;
@@ -9084,4 +9642,4 @@ declare function deriveSafeFrame(spec: DesignSpec): DesignSafeFrame;
9084
9642
  declare function parseDiagramSpec(input: unknown): DiagramSpec;
9085
9643
  declare function parseDesignSpec(input: unknown): DesignSpec;
9086
9644
 
9087
- export { type ShapeElement as $, type AnchorHint as A, type BuiltInTheme as B, type ConnectionElement as C, type DesignSpec as D, type DrawRect as E, type DrawShadow as F, type DrawText as G, type DrawTextRow as H, type DrawTextRowSegment as I, type Element as J, type EllipseLayoutConfig as K, type FlowNodeElement as L, type Gradient as M, type GradientOverlayDecorator as N, type GradientSpec as O, type GradientStop$1 as P, type GridLayoutConfig as Q, type RenderMetadata as R, type ImageElement as S, type ThemeInput$1 as T, type IterationMeta as U, type LayoutConfig as V, type LayoutSnapshot as W, type ManualLayoutConfig as X, type RainbowRuleDecorator as Y, type RenderDesignOptions as Z, type RenderResult as _, type Rect as a, type StackLayoutConfig as a0, type TerminalElement as a1, type TextElement as a2, type ThemeInput as a3, type VignetteDecorator as a4, type WrittenArtifacts as a5, builtInThemeBackgrounds as a6, builtInThemes as a7, computeSpecHash as a8, connectionElementSchema as a9, type FlowNodeShadow as aA, type GradientStop as aB, type LinearGradient as aC, type RadialGradient as aD, defaultAutoLayout as aa, defaultCanvas as ab, defaultConstraints as ac, defaultGridLayout as ad, defaultLayout as ae, defaultStackLayout as af, defaultTheme as ag, deriveSafeFrame as ah, designSpecSchema as ai, diagramElementSchema as aj, diagramLayoutSchema as ak, diagramSpecSchema as al, drawGradientRect as am, drawRainbowRule as an, drawVignette as ao, flowNodeElementSchema as ap, inferLayout as aq, inferSidecarPath as ar, parseDesignSpec as as, parseDiagramSpec as at, renderDesign as au, resolveTheme as av, writeRenderArtifacts as aw, type CodeBlockStyle as ax, type DrawGrid as ay, type DrawStrokeGradient as az, type DrawCommand as b, type Theme as c, type RenderedElement as d, type AutoLayoutConfig as e, type CardElement as f, type CodeBlockElement as g, type ConstraintSpec as h, DEFAULT_GENERATOR_VERSION as i, DEFAULT_RAINBOW_COLORS as j, type Decorator as k, type DesignCardSpec as l, type DesignSafeFrame as m, type DesignTheme as n, type DiagramElement as o, type DiagramLayout as p, type DiagramSpec as q, type DrawArc as r, type DrawBadge as s, type DrawBezier as t, type DrawCircle as u, type DrawFontFamily as v, type DrawGradientRect as w, type DrawLine as x, type DrawPath as y, type DrawPoint as z };
9645
+ export { type ShapeElement as $, type AnchorHint as A, type BuiltInTheme as B, type ConnectionElement as C, type DesignSpec as D, type DrawRect as E, type DrawShadow as F, type DrawText as G, type DrawTextRow as H, type DrawTextRowSegment as I, type Element as J, type EllipseLayoutConfig as K, type FlowNodeElement as L, type Gradient as M, type GradientOverlayDecorator as N, type GradientSpec as O, type GradientStop$1 as P, type GridLayoutConfig as Q, type RenderMetadata as R, type ImageElement as S, type ThemeInput$1 as T, type IterationMeta as U, type LayoutConfig as V, type LayoutSnapshot as W, type ManualLayoutConfig as X, type RainbowRuleDecorator as Y, type RenderDesignOptions as Z, type RenderResult as _, type Rect as a, type StackLayoutConfig as a0, type TerminalElement as a1, type TextElement as a2, type ThemeInput as a3, type VignetteDecorator as a4, type WrittenArtifacts as a5, builtInThemeBackgrounds as a6, builtInThemes as a7, computeSpecHash as a8, connectionElementSchema as a9, type DrawStatsBarItem as aA, type DrawStrokeGradient as aB, type FlowNodeShadow as aC, type GradientStop as aD, type LinearGradient as aE, type RadialGradient as aF, type RingElement as aG, type RingSegment as aH, defaultAutoLayout as aa, defaultCanvas as ab, defaultConstraints as ac, defaultGridLayout as ad, defaultLayout as ae, defaultStackLayout as af, defaultTheme as ag, deriveSafeFrame as ah, designSpecSchema as ai, diagramElementSchema as aj, diagramLayoutSchema as ak, diagramSpecSchema as al, drawGradientRect as am, drawRainbowRule as an, drawVignette as ao, flowNodeElementSchema as ap, inferLayout as aq, inferSidecarPath as ar, parseDesignSpec as as, parseDiagramSpec as at, renderDesign as au, resolveTheme as av, writeRenderArtifacts as aw, type CodeBlockStyle as ax, type DrawGrid as ay, type DrawStatsBar as az, type DrawCommand as b, type Theme as c, type RenderedElement as d, type AutoLayoutConfig as e, type CardElement as f, type CodeBlockElement as g, type ConstraintSpec as h, DEFAULT_GENERATOR_VERSION as i, DEFAULT_RAINBOW_COLORS as j, type Decorator as k, type DesignCardSpec as l, type DesignSafeFrame as m, type DesignTheme as n, type DiagramElement as o, type DiagramLayout as p, type DiagramSpec as q, type DrawArc as r, type DrawBadge as s, type DrawBezier as t, type DrawCircle as u, type DrawFontFamily as v, type DrawGradientRect as w, type DrawLine as x, type DrawPath as y, type DrawPoint as z };