@tscircuit/props 0.0.267 → 0.0.269
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.
- package/README.md +2 -0
- package/dist/index.d.ts +129 -121
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/lib/components/board.ts +3 -0
- package/lib/components/group.ts +11 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2904,7 +2904,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2904
2904
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2905
2905
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2906
2906
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
2907
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
2907
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
2908
2908
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
2909
2909
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2910
2910
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -2935,7 +2935,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2935
2935
|
flexColumn?: boolean | undefined;
|
|
2936
2936
|
gap?: string | number | undefined;
|
|
2937
2937
|
pack?: boolean | undefined;
|
|
2938
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
2938
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
2939
2939
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
2940
2940
|
padding?: number | undefined;
|
|
2941
2941
|
paddingLeft?: number | undefined;
|
|
@@ -2966,7 +2966,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2966
2966
|
flexColumn?: boolean | undefined;
|
|
2967
2967
|
gap?: string | number | undefined;
|
|
2968
2968
|
pack?: boolean | undefined;
|
|
2969
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
2969
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
2970
2970
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
2971
2971
|
padding?: string | number | undefined;
|
|
2972
2972
|
paddingLeft?: string | number | undefined;
|
|
@@ -2998,7 +2998,7 @@ interface LayoutConfig {
|
|
|
2998
2998
|
flexColumn?: boolean;
|
|
2999
2999
|
gap?: number | string;
|
|
3000
3000
|
pack?: boolean;
|
|
3001
|
-
packOrderStrategy?: "largest_to_smallest";
|
|
3001
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count";
|
|
3002
3002
|
packPlacementStrategy?: "shortest_connection_along_outline";
|
|
3003
3003
|
padding?: Distance;
|
|
3004
3004
|
paddingLeft?: Distance;
|
|
@@ -3223,7 +3223,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3223
3223
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3224
3224
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3225
3225
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3226
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3226
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
3227
3227
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3228
3228
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3229
3229
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3254,7 +3254,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3254
3254
|
flexColumn?: boolean | undefined;
|
|
3255
3255
|
gap?: string | number | undefined;
|
|
3256
3256
|
pack?: boolean | undefined;
|
|
3257
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3257
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3258
3258
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3259
3259
|
padding?: number | undefined;
|
|
3260
3260
|
paddingLeft?: number | undefined;
|
|
@@ -3285,7 +3285,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3285
3285
|
flexColumn?: boolean | undefined;
|
|
3286
3286
|
gap?: string | number | undefined;
|
|
3287
3287
|
pack?: boolean | undefined;
|
|
3288
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3288
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3289
3289
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3290
3290
|
padding?: string | number | undefined;
|
|
3291
3291
|
paddingLeft?: string | number | undefined;
|
|
@@ -3317,7 +3317,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3317
3317
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3318
3318
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3319
3319
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3320
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3320
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
3321
3321
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3322
3322
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3323
3323
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3348,7 +3348,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3348
3348
|
flexColumn?: boolean | undefined;
|
|
3349
3349
|
gap?: string | number | undefined;
|
|
3350
3350
|
pack?: boolean | undefined;
|
|
3351
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3351
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3352
3352
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3353
3353
|
padding?: number | undefined;
|
|
3354
3354
|
paddingLeft?: number | undefined;
|
|
@@ -3379,7 +3379,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3379
3379
|
flexColumn?: boolean | undefined;
|
|
3380
3380
|
gap?: string | number | undefined;
|
|
3381
3381
|
pack?: boolean | undefined;
|
|
3382
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3382
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3383
3383
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3384
3384
|
padding?: string | number | undefined;
|
|
3385
3385
|
paddingLeft?: string | number | undefined;
|
|
@@ -3441,7 +3441,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3441
3441
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3442
3442
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3443
3443
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3444
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3444
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
3445
3445
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3446
3446
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3447
3447
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3490,7 +3490,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3490
3490
|
flexColumn?: boolean | undefined;
|
|
3491
3491
|
gap?: string | number | undefined;
|
|
3492
3492
|
pack?: boolean | undefined;
|
|
3493
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3493
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3494
3494
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3495
3495
|
padding?: number | undefined;
|
|
3496
3496
|
paddingLeft?: number | undefined;
|
|
@@ -3526,7 +3526,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3526
3526
|
flexColumn?: boolean | undefined;
|
|
3527
3527
|
gap?: string | number | undefined;
|
|
3528
3528
|
pack?: boolean | undefined;
|
|
3529
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3529
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3530
3530
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3531
3531
|
padding?: number | undefined;
|
|
3532
3532
|
paddingLeft?: number | undefined;
|
|
@@ -3558,7 +3558,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3558
3558
|
flexColumn?: boolean | undefined;
|
|
3559
3559
|
gap?: string | number | undefined;
|
|
3560
3560
|
pack?: boolean | undefined;
|
|
3561
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3561
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3562
3562
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3563
3563
|
padding?: number | undefined;
|
|
3564
3564
|
paddingLeft?: number | undefined;
|
|
@@ -3621,7 +3621,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3621
3621
|
flexColumn?: boolean | undefined;
|
|
3622
3622
|
gap?: string | number | undefined;
|
|
3623
3623
|
pack?: boolean | undefined;
|
|
3624
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3624
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3625
3625
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3626
3626
|
padding?: string | number | undefined;
|
|
3627
3627
|
paddingLeft?: string | number | undefined;
|
|
@@ -3657,7 +3657,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3657
3657
|
flexColumn?: boolean | undefined;
|
|
3658
3658
|
gap?: string | number | undefined;
|
|
3659
3659
|
pack?: boolean | undefined;
|
|
3660
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3660
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3661
3661
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3662
3662
|
padding?: string | number | undefined;
|
|
3663
3663
|
paddingLeft?: string | number | undefined;
|
|
@@ -3689,7 +3689,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3689
3689
|
flexColumn?: boolean | undefined;
|
|
3690
3690
|
gap?: string | number | undefined;
|
|
3691
3691
|
pack?: boolean | undefined;
|
|
3692
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3692
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3693
3693
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3694
3694
|
padding?: string | number | undefined;
|
|
3695
3695
|
paddingLeft?: string | number | undefined;
|
|
@@ -3762,7 +3762,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3762
3762
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3763
3763
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3764
3764
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3765
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3765
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
3766
3766
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3767
3767
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3768
3768
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3793,7 +3793,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3793
3793
|
flexColumn?: boolean | undefined;
|
|
3794
3794
|
gap?: string | number | undefined;
|
|
3795
3795
|
pack?: boolean | undefined;
|
|
3796
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3796
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3797
3797
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3798
3798
|
padding?: number | undefined;
|
|
3799
3799
|
paddingLeft?: number | undefined;
|
|
@@ -3824,7 +3824,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3824
3824
|
flexColumn?: boolean | undefined;
|
|
3825
3825
|
gap?: string | number | undefined;
|
|
3826
3826
|
pack?: boolean | undefined;
|
|
3827
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3827
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3828
3828
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3829
3829
|
padding?: string | number | undefined;
|
|
3830
3830
|
paddingLeft?: string | number | undefined;
|
|
@@ -3856,7 +3856,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3856
3856
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3857
3857
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3858
3858
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3859
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3859
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
3860
3860
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3861
3861
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3862
3862
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3887,7 +3887,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3887
3887
|
flexColumn?: boolean | undefined;
|
|
3888
3888
|
gap?: string | number | undefined;
|
|
3889
3889
|
pack?: boolean | undefined;
|
|
3890
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3890
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3891
3891
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3892
3892
|
padding?: number | undefined;
|
|
3893
3893
|
paddingLeft?: number | undefined;
|
|
@@ -3918,7 +3918,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3918
3918
|
flexColumn?: boolean | undefined;
|
|
3919
3919
|
gap?: string | number | undefined;
|
|
3920
3920
|
pack?: boolean | undefined;
|
|
3921
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3921
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
3922
3922
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3923
3923
|
padding?: string | number | undefined;
|
|
3924
3924
|
paddingLeft?: string | number | undefined;
|
|
@@ -3980,7 +3980,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3980
3980
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3981
3981
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3982
3982
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3983
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3983
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
3984
3984
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3985
3985
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3986
3986
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4252,7 +4252,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4252
4252
|
flexColumn?: boolean | undefined;
|
|
4253
4253
|
gap?: string | number | undefined;
|
|
4254
4254
|
pack?: boolean | undefined;
|
|
4255
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4255
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4256
4256
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4257
4257
|
padding?: number | undefined;
|
|
4258
4258
|
paddingLeft?: number | undefined;
|
|
@@ -4288,7 +4288,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4288
4288
|
flexColumn?: boolean | undefined;
|
|
4289
4289
|
gap?: string | number | undefined;
|
|
4290
4290
|
pack?: boolean | undefined;
|
|
4291
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4291
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4292
4292
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4293
4293
|
padding?: number | undefined;
|
|
4294
4294
|
paddingLeft?: number | undefined;
|
|
@@ -4320,7 +4320,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4320
4320
|
flexColumn?: boolean | undefined;
|
|
4321
4321
|
gap?: string | number | undefined;
|
|
4322
4322
|
pack?: boolean | undefined;
|
|
4323
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4323
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4324
4324
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4325
4325
|
padding?: number | undefined;
|
|
4326
4326
|
paddingLeft?: number | undefined;
|
|
@@ -4439,7 +4439,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4439
4439
|
flexColumn?: boolean | undefined;
|
|
4440
4440
|
gap?: string | number | undefined;
|
|
4441
4441
|
pack?: boolean | undefined;
|
|
4442
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4442
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4443
4443
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4444
4444
|
padding?: string | number | undefined;
|
|
4445
4445
|
paddingLeft?: string | number | undefined;
|
|
@@ -4475,7 +4475,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4475
4475
|
flexColumn?: boolean | undefined;
|
|
4476
4476
|
gap?: string | number | undefined;
|
|
4477
4477
|
pack?: boolean | undefined;
|
|
4478
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4478
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4479
4479
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4480
4480
|
padding?: string | number | undefined;
|
|
4481
4481
|
paddingLeft?: string | number | undefined;
|
|
@@ -4507,7 +4507,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4507
4507
|
flexColumn?: boolean | undefined;
|
|
4508
4508
|
gap?: string | number | undefined;
|
|
4509
4509
|
pack?: boolean | undefined;
|
|
4510
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4510
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4511
4511
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4512
4512
|
padding?: string | number | undefined;
|
|
4513
4513
|
paddingLeft?: string | number | undefined;
|
|
@@ -4637,7 +4637,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4637
4637
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4638
4638
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4639
4639
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
4640
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
4640
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
4641
4641
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
4642
4642
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4643
4643
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4668,7 +4668,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4668
4668
|
flexColumn?: boolean | undefined;
|
|
4669
4669
|
gap?: string | number | undefined;
|
|
4670
4670
|
pack?: boolean | undefined;
|
|
4671
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4671
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4672
4672
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4673
4673
|
padding?: number | undefined;
|
|
4674
4674
|
paddingLeft?: number | undefined;
|
|
@@ -4699,7 +4699,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4699
4699
|
flexColumn?: boolean | undefined;
|
|
4700
4700
|
gap?: string | number | undefined;
|
|
4701
4701
|
pack?: boolean | undefined;
|
|
4702
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4702
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4703
4703
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4704
4704
|
padding?: string | number | undefined;
|
|
4705
4705
|
paddingLeft?: string | number | undefined;
|
|
@@ -4731,7 +4731,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4731
4731
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4732
4732
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4733
4733
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
4734
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
4734
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
4735
4735
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
4736
4736
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4737
4737
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4762,7 +4762,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4762
4762
|
flexColumn?: boolean | undefined;
|
|
4763
4763
|
gap?: string | number | undefined;
|
|
4764
4764
|
pack?: boolean | undefined;
|
|
4765
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4765
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4766
4766
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4767
4767
|
padding?: number | undefined;
|
|
4768
4768
|
paddingLeft?: number | undefined;
|
|
@@ -4793,7 +4793,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4793
4793
|
flexColumn?: boolean | undefined;
|
|
4794
4794
|
gap?: string | number | undefined;
|
|
4795
4795
|
pack?: boolean | undefined;
|
|
4796
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4796
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
4797
4797
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4798
4798
|
padding?: string | number | undefined;
|
|
4799
4799
|
paddingLeft?: string | number | undefined;
|
|
@@ -4855,7 +4855,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4855
4855
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4856
4856
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4857
4857
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
4858
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
4858
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
4859
4859
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
4860
4860
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4861
4861
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5130,7 +5130,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5130
5130
|
flexColumn?: boolean | undefined;
|
|
5131
5131
|
gap?: string | number | undefined;
|
|
5132
5132
|
pack?: boolean | undefined;
|
|
5133
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5133
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5134
5134
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5135
5135
|
padding?: number | undefined;
|
|
5136
5136
|
paddingLeft?: number | undefined;
|
|
@@ -5166,7 +5166,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5166
5166
|
flexColumn?: boolean | undefined;
|
|
5167
5167
|
gap?: string | number | undefined;
|
|
5168
5168
|
pack?: boolean | undefined;
|
|
5169
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5169
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5170
5170
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5171
5171
|
padding?: number | undefined;
|
|
5172
5172
|
paddingLeft?: number | undefined;
|
|
@@ -5198,7 +5198,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5198
5198
|
flexColumn?: boolean | undefined;
|
|
5199
5199
|
gap?: string | number | undefined;
|
|
5200
5200
|
pack?: boolean | undefined;
|
|
5201
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5201
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5202
5202
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5203
5203
|
padding?: number | undefined;
|
|
5204
5204
|
paddingLeft?: number | undefined;
|
|
@@ -5318,7 +5318,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5318
5318
|
flexColumn?: boolean | undefined;
|
|
5319
5319
|
gap?: string | number | undefined;
|
|
5320
5320
|
pack?: boolean | undefined;
|
|
5321
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5321
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5322
5322
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5323
5323
|
padding?: string | number | undefined;
|
|
5324
5324
|
paddingLeft?: string | number | undefined;
|
|
@@ -5354,7 +5354,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5354
5354
|
flexColumn?: boolean | undefined;
|
|
5355
5355
|
gap?: string | number | undefined;
|
|
5356
5356
|
pack?: boolean | undefined;
|
|
5357
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5357
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5358
5358
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5359
5359
|
padding?: string | number | undefined;
|
|
5360
5360
|
paddingLeft?: string | number | undefined;
|
|
@@ -5386,7 +5386,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5386
5386
|
flexColumn?: boolean | undefined;
|
|
5387
5387
|
gap?: string | number | undefined;
|
|
5388
5388
|
pack?: boolean | undefined;
|
|
5389
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5389
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5390
5390
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5391
5391
|
padding?: string | number | undefined;
|
|
5392
5392
|
paddingLeft?: string | number | undefined;
|
|
@@ -5517,7 +5517,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5517
5517
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5518
5518
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5519
5519
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
5520
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
5520
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
5521
5521
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5522
5522
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5523
5523
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5548,7 +5548,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5548
5548
|
flexColumn?: boolean | undefined;
|
|
5549
5549
|
gap?: string | number | undefined;
|
|
5550
5550
|
pack?: boolean | undefined;
|
|
5551
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5551
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5552
5552
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5553
5553
|
padding?: number | undefined;
|
|
5554
5554
|
paddingLeft?: number | undefined;
|
|
@@ -5579,7 +5579,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5579
5579
|
flexColumn?: boolean | undefined;
|
|
5580
5580
|
gap?: string | number | undefined;
|
|
5581
5581
|
pack?: boolean | undefined;
|
|
5582
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5582
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5583
5583
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5584
5584
|
padding?: string | number | undefined;
|
|
5585
5585
|
paddingLeft?: string | number | undefined;
|
|
@@ -5611,7 +5611,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5611
5611
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5612
5612
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5613
5613
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
5614
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
5614
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
5615
5615
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5616
5616
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5617
5617
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5642,7 +5642,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5642
5642
|
flexColumn?: boolean | undefined;
|
|
5643
5643
|
gap?: string | number | undefined;
|
|
5644
5644
|
pack?: boolean | undefined;
|
|
5645
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5645
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5646
5646
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5647
5647
|
padding?: number | undefined;
|
|
5648
5648
|
paddingLeft?: number | undefined;
|
|
@@ -5673,7 +5673,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5673
5673
|
flexColumn?: boolean | undefined;
|
|
5674
5674
|
gap?: string | number | undefined;
|
|
5675
5675
|
pack?: boolean | undefined;
|
|
5676
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5676
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5677
5677
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5678
5678
|
padding?: string | number | undefined;
|
|
5679
5679
|
paddingLeft?: string | number | undefined;
|
|
@@ -5735,7 +5735,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5735
5735
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5736
5736
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5737
5737
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
5738
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
5738
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
5739
5739
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5740
5740
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5741
5741
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5786,7 +5786,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5786
5786
|
flexColumn?: boolean | undefined;
|
|
5787
5787
|
gap?: string | number | undefined;
|
|
5788
5788
|
pack?: boolean | undefined;
|
|
5789
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5789
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5790
5790
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5791
5791
|
padding?: number | undefined;
|
|
5792
5792
|
paddingLeft?: number | undefined;
|
|
@@ -5822,7 +5822,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5822
5822
|
flexColumn?: boolean | undefined;
|
|
5823
5823
|
gap?: string | number | undefined;
|
|
5824
5824
|
pack?: boolean | undefined;
|
|
5825
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5825
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5826
5826
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5827
5827
|
padding?: number | undefined;
|
|
5828
5828
|
paddingLeft?: number | undefined;
|
|
@@ -5854,7 +5854,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5854
5854
|
flexColumn?: boolean | undefined;
|
|
5855
5855
|
gap?: string | number | undefined;
|
|
5856
5856
|
pack?: boolean | undefined;
|
|
5857
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5857
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5858
5858
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5859
5859
|
padding?: number | undefined;
|
|
5860
5860
|
paddingLeft?: number | undefined;
|
|
@@ -5918,7 +5918,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5918
5918
|
flexColumn?: boolean | undefined;
|
|
5919
5919
|
gap?: string | number | undefined;
|
|
5920
5920
|
pack?: boolean | undefined;
|
|
5921
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5921
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5922
5922
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5923
5923
|
padding?: string | number | undefined;
|
|
5924
5924
|
paddingLeft?: string | number | undefined;
|
|
@@ -5954,7 +5954,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5954
5954
|
flexColumn?: boolean | undefined;
|
|
5955
5955
|
gap?: string | number | undefined;
|
|
5956
5956
|
pack?: boolean | undefined;
|
|
5957
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5957
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5958
5958
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5959
5959
|
padding?: string | number | undefined;
|
|
5960
5960
|
paddingLeft?: string | number | undefined;
|
|
@@ -5986,7 +5986,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5986
5986
|
flexColumn?: boolean | undefined;
|
|
5987
5987
|
gap?: string | number | undefined;
|
|
5988
5988
|
pack?: boolean | undefined;
|
|
5989
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5989
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
5990
5990
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5991
5991
|
padding?: string | number | undefined;
|
|
5992
5992
|
paddingLeft?: string | number | undefined;
|
|
@@ -6058,7 +6058,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6058
6058
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6059
6059
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6060
6060
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6061
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6061
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
6062
6062
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6063
6063
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6064
6064
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6089,7 +6089,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6089
6089
|
flexColumn?: boolean | undefined;
|
|
6090
6090
|
gap?: string | number | undefined;
|
|
6091
6091
|
pack?: boolean | undefined;
|
|
6092
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6092
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6093
6093
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6094
6094
|
padding?: number | undefined;
|
|
6095
6095
|
paddingLeft?: number | undefined;
|
|
@@ -6120,7 +6120,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6120
6120
|
flexColumn?: boolean | undefined;
|
|
6121
6121
|
gap?: string | number | undefined;
|
|
6122
6122
|
pack?: boolean | undefined;
|
|
6123
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6123
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6124
6124
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6125
6125
|
padding?: string | number | undefined;
|
|
6126
6126
|
paddingLeft?: string | number | undefined;
|
|
@@ -6152,7 +6152,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6152
6152
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6153
6153
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6154
6154
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6155
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6155
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
6156
6156
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6157
6157
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6158
6158
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6183,7 +6183,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6183
6183
|
flexColumn?: boolean | undefined;
|
|
6184
6184
|
gap?: string | number | undefined;
|
|
6185
6185
|
pack?: boolean | undefined;
|
|
6186
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6186
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6187
6187
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6188
6188
|
padding?: number | undefined;
|
|
6189
6189
|
paddingLeft?: number | undefined;
|
|
@@ -6214,7 +6214,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6214
6214
|
flexColumn?: boolean | undefined;
|
|
6215
6215
|
gap?: string | number | undefined;
|
|
6216
6216
|
pack?: boolean | undefined;
|
|
6217
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6217
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6218
6218
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6219
6219
|
padding?: string | number | undefined;
|
|
6220
6220
|
paddingLeft?: string | number | undefined;
|
|
@@ -6276,7 +6276,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6276
6276
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6277
6277
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6278
6278
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6279
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6279
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
6280
6280
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6281
6281
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6282
6282
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6551,7 +6551,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6551
6551
|
flexColumn?: boolean | undefined;
|
|
6552
6552
|
gap?: string | number | undefined;
|
|
6553
6553
|
pack?: boolean | undefined;
|
|
6554
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6554
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6555
6555
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6556
6556
|
padding?: number | undefined;
|
|
6557
6557
|
paddingLeft?: number | undefined;
|
|
@@ -6587,7 +6587,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6587
6587
|
flexColumn?: boolean | undefined;
|
|
6588
6588
|
gap?: string | number | undefined;
|
|
6589
6589
|
pack?: boolean | undefined;
|
|
6590
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6590
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6591
6591
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6592
6592
|
padding?: number | undefined;
|
|
6593
6593
|
paddingLeft?: number | undefined;
|
|
@@ -6619,7 +6619,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6619
6619
|
flexColumn?: boolean | undefined;
|
|
6620
6620
|
gap?: string | number | undefined;
|
|
6621
6621
|
pack?: boolean | undefined;
|
|
6622
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6622
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6623
6623
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6624
6624
|
padding?: number | undefined;
|
|
6625
6625
|
paddingLeft?: number | undefined;
|
|
@@ -6739,7 +6739,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6739
6739
|
flexColumn?: boolean | undefined;
|
|
6740
6740
|
gap?: string | number | undefined;
|
|
6741
6741
|
pack?: boolean | undefined;
|
|
6742
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6742
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6743
6743
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6744
6744
|
padding?: string | number | undefined;
|
|
6745
6745
|
paddingLeft?: string | number | undefined;
|
|
@@ -6775,7 +6775,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6775
6775
|
flexColumn?: boolean | undefined;
|
|
6776
6776
|
gap?: string | number | undefined;
|
|
6777
6777
|
pack?: boolean | undefined;
|
|
6778
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6778
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6779
6779
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6780
6780
|
padding?: string | number | undefined;
|
|
6781
6781
|
paddingLeft?: string | number | undefined;
|
|
@@ -6807,7 +6807,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6807
6807
|
flexColumn?: boolean | undefined;
|
|
6808
6808
|
gap?: string | number | undefined;
|
|
6809
6809
|
pack?: boolean | undefined;
|
|
6810
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6810
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6811
6811
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6812
6812
|
padding?: string | number | undefined;
|
|
6813
6813
|
paddingLeft?: string | number | undefined;
|
|
@@ -6898,6 +6898,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6898
6898
|
|
|
6899
6899
|
interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
6900
6900
|
material?: "fr4" | "fr1";
|
|
6901
|
+
/** Number of layers for the PCB */
|
|
6902
|
+
layers?: 2 | 4;
|
|
6901
6903
|
}
|
|
6902
6904
|
declare const boardProps: z.ZodObject<{
|
|
6903
6905
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6941,7 +6943,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6941
6943
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6942
6944
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6943
6945
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6944
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6946
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
6945
6947
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6946
6948
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6947
6949
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6972,7 +6974,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6972
6974
|
flexColumn?: boolean | undefined;
|
|
6973
6975
|
gap?: string | number | undefined;
|
|
6974
6976
|
pack?: boolean | undefined;
|
|
6975
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6977
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6976
6978
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6977
6979
|
padding?: number | undefined;
|
|
6978
6980
|
paddingLeft?: number | undefined;
|
|
@@ -7003,7 +7005,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7003
7005
|
flexColumn?: boolean | undefined;
|
|
7004
7006
|
gap?: string | number | undefined;
|
|
7005
7007
|
pack?: boolean | undefined;
|
|
7006
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7008
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7007
7009
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7008
7010
|
padding?: string | number | undefined;
|
|
7009
7011
|
paddingLeft?: string | number | undefined;
|
|
@@ -7035,7 +7037,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7035
7037
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7036
7038
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7037
7039
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7038
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7040
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
7039
7041
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7040
7042
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7041
7043
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7066,7 +7068,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7066
7068
|
flexColumn?: boolean | undefined;
|
|
7067
7069
|
gap?: string | number | undefined;
|
|
7068
7070
|
pack?: boolean | undefined;
|
|
7069
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7071
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7070
7072
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7071
7073
|
padding?: number | undefined;
|
|
7072
7074
|
paddingLeft?: number | undefined;
|
|
@@ -7097,7 +7099,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7097
7099
|
flexColumn?: boolean | undefined;
|
|
7098
7100
|
gap?: string | number | undefined;
|
|
7099
7101
|
pack?: boolean | undefined;
|
|
7100
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7102
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7101
7103
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7102
7104
|
padding?: string | number | undefined;
|
|
7103
7105
|
paddingLeft?: string | number | undefined;
|
|
@@ -7159,7 +7161,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7159
7161
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7160
7162
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7161
7163
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7162
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7164
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
7163
7165
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7164
7166
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7165
7167
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7401,8 +7403,10 @@ declare const boardProps: z.ZodObject<{
|
|
|
7401
7403
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7402
7404
|
} & {
|
|
7403
7405
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
7406
|
+
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
7404
7407
|
}, "strip", z.ZodTypeAny, {
|
|
7405
7408
|
material: "fr4" | "fr1";
|
|
7409
|
+
layers: 2 | 4;
|
|
7406
7410
|
pcbX?: number | undefined;
|
|
7407
7411
|
pcbY?: number | undefined;
|
|
7408
7412
|
pcbRotation?: number | undefined;
|
|
@@ -7434,7 +7438,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7434
7438
|
flexColumn?: boolean | undefined;
|
|
7435
7439
|
gap?: string | number | undefined;
|
|
7436
7440
|
pack?: boolean | undefined;
|
|
7437
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7441
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7438
7442
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7439
7443
|
padding?: number | undefined;
|
|
7440
7444
|
paddingLeft?: number | undefined;
|
|
@@ -7470,7 +7474,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7470
7474
|
flexColumn?: boolean | undefined;
|
|
7471
7475
|
gap?: string | number | undefined;
|
|
7472
7476
|
pack?: boolean | undefined;
|
|
7473
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7477
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7474
7478
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7475
7479
|
padding?: number | undefined;
|
|
7476
7480
|
paddingLeft?: number | undefined;
|
|
@@ -7502,7 +7506,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7502
7506
|
flexColumn?: boolean | undefined;
|
|
7503
7507
|
gap?: string | number | undefined;
|
|
7504
7508
|
pack?: boolean | undefined;
|
|
7505
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7509
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7506
7510
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7507
7511
|
padding?: number | undefined;
|
|
7508
7512
|
paddingLeft?: number | undefined;
|
|
@@ -7621,7 +7625,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7621
7625
|
flexColumn?: boolean | undefined;
|
|
7622
7626
|
gap?: string | number | undefined;
|
|
7623
7627
|
pack?: boolean | undefined;
|
|
7624
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7628
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7625
7629
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7626
7630
|
padding?: string | number | undefined;
|
|
7627
7631
|
paddingLeft?: string | number | undefined;
|
|
@@ -7657,7 +7661,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7657
7661
|
flexColumn?: boolean | undefined;
|
|
7658
7662
|
gap?: string | number | undefined;
|
|
7659
7663
|
pack?: boolean | undefined;
|
|
7660
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7664
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7661
7665
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7662
7666
|
padding?: string | number | undefined;
|
|
7663
7667
|
paddingLeft?: string | number | undefined;
|
|
@@ -7689,7 +7693,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7689
7693
|
flexColumn?: boolean | undefined;
|
|
7690
7694
|
gap?: string | number | undefined;
|
|
7691
7695
|
pack?: boolean | undefined;
|
|
7692
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7696
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7693
7697
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7694
7698
|
padding?: string | number | undefined;
|
|
7695
7699
|
paddingLeft?: string | number | undefined;
|
|
@@ -7777,6 +7781,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7777
7781
|
outlineOffsetX?: string | number | undefined;
|
|
7778
7782
|
outlineOffsetY?: string | number | undefined;
|
|
7779
7783
|
material?: "fr4" | "fr1" | undefined;
|
|
7784
|
+
layers?: 2 | 4 | undefined;
|
|
7780
7785
|
}>;
|
|
7781
7786
|
|
|
7782
7787
|
interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
@@ -7828,7 +7833,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7828
7833
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7829
7834
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7830
7835
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7831
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7836
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
7832
7837
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7833
7838
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7834
7839
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7859,7 +7864,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7859
7864
|
flexColumn?: boolean | undefined;
|
|
7860
7865
|
gap?: string | number | undefined;
|
|
7861
7866
|
pack?: boolean | undefined;
|
|
7862
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7867
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7863
7868
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7864
7869
|
padding?: number | undefined;
|
|
7865
7870
|
paddingLeft?: number | undefined;
|
|
@@ -7890,7 +7895,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7890
7895
|
flexColumn?: boolean | undefined;
|
|
7891
7896
|
gap?: string | number | undefined;
|
|
7892
7897
|
pack?: boolean | undefined;
|
|
7893
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7898
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7894
7899
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7895
7900
|
padding?: string | number | undefined;
|
|
7896
7901
|
paddingLeft?: string | number | undefined;
|
|
@@ -7922,7 +7927,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7922
7927
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7923
7928
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7924
7929
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7925
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7930
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
7926
7931
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7927
7932
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7928
7933
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7953,7 +7958,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7953
7958
|
flexColumn?: boolean | undefined;
|
|
7954
7959
|
gap?: string | number | undefined;
|
|
7955
7960
|
pack?: boolean | undefined;
|
|
7956
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7961
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7957
7962
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7958
7963
|
padding?: number | undefined;
|
|
7959
7964
|
paddingLeft?: number | undefined;
|
|
@@ -7984,7 +7989,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7984
7989
|
flexColumn?: boolean | undefined;
|
|
7985
7990
|
gap?: string | number | undefined;
|
|
7986
7991
|
pack?: boolean | undefined;
|
|
7987
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7992
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7988
7993
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7989
7994
|
padding?: string | number | undefined;
|
|
7990
7995
|
paddingLeft?: string | number | undefined;
|
|
@@ -8046,7 +8051,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8046
8051
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
8047
8052
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8048
8053
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
8049
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
8054
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
8050
8055
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
8051
8056
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8052
8057
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -8318,7 +8323,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8318
8323
|
flexColumn?: boolean | undefined;
|
|
8319
8324
|
gap?: string | number | undefined;
|
|
8320
8325
|
pack?: boolean | undefined;
|
|
8321
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8326
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8322
8327
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8323
8328
|
padding?: number | undefined;
|
|
8324
8329
|
paddingLeft?: number | undefined;
|
|
@@ -8354,7 +8359,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8354
8359
|
flexColumn?: boolean | undefined;
|
|
8355
8360
|
gap?: string | number | undefined;
|
|
8356
8361
|
pack?: boolean | undefined;
|
|
8357
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8362
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8358
8363
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8359
8364
|
padding?: number | undefined;
|
|
8360
8365
|
paddingLeft?: number | undefined;
|
|
@@ -8386,7 +8391,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8386
8391
|
flexColumn?: boolean | undefined;
|
|
8387
8392
|
gap?: string | number | undefined;
|
|
8388
8393
|
pack?: boolean | undefined;
|
|
8389
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8394
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8390
8395
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8391
8396
|
padding?: number | undefined;
|
|
8392
8397
|
paddingLeft?: number | undefined;
|
|
@@ -8505,7 +8510,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8505
8510
|
flexColumn?: boolean | undefined;
|
|
8506
8511
|
gap?: string | number | undefined;
|
|
8507
8512
|
pack?: boolean | undefined;
|
|
8508
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8513
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8509
8514
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8510
8515
|
padding?: string | number | undefined;
|
|
8511
8516
|
paddingLeft?: string | number | undefined;
|
|
@@ -8541,7 +8546,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8541
8546
|
flexColumn?: boolean | undefined;
|
|
8542
8547
|
gap?: string | number | undefined;
|
|
8543
8548
|
pack?: boolean | undefined;
|
|
8544
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8549
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8545
8550
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8546
8551
|
padding?: string | number | undefined;
|
|
8547
8552
|
paddingLeft?: string | number | undefined;
|
|
@@ -8573,7 +8578,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8573
8578
|
flexColumn?: boolean | undefined;
|
|
8574
8579
|
gap?: string | number | undefined;
|
|
8575
8580
|
pack?: boolean | undefined;
|
|
8576
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8581
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8577
8582
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8578
8583
|
padding?: string | number | undefined;
|
|
8579
8584
|
paddingLeft?: string | number | undefined;
|
|
@@ -15455,7 +15460,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15455
15460
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15456
15461
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15457
15462
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15458
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
15463
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
15459
15464
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
15460
15465
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15461
15466
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15486,7 +15491,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15486
15491
|
flexColumn?: boolean | undefined;
|
|
15487
15492
|
gap?: string | number | undefined;
|
|
15488
15493
|
pack?: boolean | undefined;
|
|
15489
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15494
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15490
15495
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15491
15496
|
padding?: number | undefined;
|
|
15492
15497
|
paddingLeft?: number | undefined;
|
|
@@ -15517,7 +15522,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15517
15522
|
flexColumn?: boolean | undefined;
|
|
15518
15523
|
gap?: string | number | undefined;
|
|
15519
15524
|
pack?: boolean | undefined;
|
|
15520
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15525
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15521
15526
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15522
15527
|
padding?: string | number | undefined;
|
|
15523
15528
|
paddingLeft?: string | number | undefined;
|
|
@@ -15549,7 +15554,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15549
15554
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15550
15555
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15551
15556
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15552
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
15557
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
15553
15558
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
15554
15559
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15555
15560
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15580,7 +15585,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15580
15585
|
flexColumn?: boolean | undefined;
|
|
15581
15586
|
gap?: string | number | undefined;
|
|
15582
15587
|
pack?: boolean | undefined;
|
|
15583
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15588
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15584
15589
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15585
15590
|
padding?: number | undefined;
|
|
15586
15591
|
paddingLeft?: number | undefined;
|
|
@@ -15611,7 +15616,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15611
15616
|
flexColumn?: boolean | undefined;
|
|
15612
15617
|
gap?: string | number | undefined;
|
|
15613
15618
|
pack?: boolean | undefined;
|
|
15614
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15619
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15615
15620
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15616
15621
|
padding?: string | number | undefined;
|
|
15617
15622
|
paddingLeft?: string | number | undefined;
|
|
@@ -15673,7 +15678,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15673
15678
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15674
15679
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15675
15680
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15676
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
15681
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
15677
15682
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
15678
15683
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15679
15684
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15915,6 +15920,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15915
15920
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15916
15921
|
} & {
|
|
15917
15922
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
15923
|
+
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
15918
15924
|
} & {
|
|
15919
15925
|
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
15920
15926
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15928,6 +15934,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15928
15934
|
innerHoles: z.ZodOptional<z.ZodBoolean>;
|
|
15929
15935
|
}, "strip", z.ZodTypeAny, {
|
|
15930
15936
|
material: "fr4" | "fr1";
|
|
15937
|
+
layers: 2 | 4;
|
|
15931
15938
|
pcbX?: number | undefined;
|
|
15932
15939
|
pcbY?: number | undefined;
|
|
15933
15940
|
pcbRotation?: number | undefined;
|
|
@@ -15963,7 +15970,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15963
15970
|
flexColumn?: boolean | undefined;
|
|
15964
15971
|
gap?: string | number | undefined;
|
|
15965
15972
|
pack?: boolean | undefined;
|
|
15966
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15973
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15967
15974
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15968
15975
|
padding?: number | undefined;
|
|
15969
15976
|
paddingLeft?: number | undefined;
|
|
@@ -15999,7 +16006,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15999
16006
|
flexColumn?: boolean | undefined;
|
|
16000
16007
|
gap?: string | number | undefined;
|
|
16001
16008
|
pack?: boolean | undefined;
|
|
16002
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16009
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16003
16010
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16004
16011
|
padding?: number | undefined;
|
|
16005
16012
|
paddingLeft?: number | undefined;
|
|
@@ -16031,7 +16038,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16031
16038
|
flexColumn?: boolean | undefined;
|
|
16032
16039
|
gap?: string | number | undefined;
|
|
16033
16040
|
pack?: boolean | undefined;
|
|
16034
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16041
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16035
16042
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16036
16043
|
padding?: number | undefined;
|
|
16037
16044
|
paddingLeft?: number | undefined;
|
|
@@ -16160,7 +16167,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16160
16167
|
flexColumn?: boolean | undefined;
|
|
16161
16168
|
gap?: string | number | undefined;
|
|
16162
16169
|
pack?: boolean | undefined;
|
|
16163
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16170
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16164
16171
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16165
16172
|
padding?: string | number | undefined;
|
|
16166
16173
|
paddingLeft?: string | number | undefined;
|
|
@@ -16196,7 +16203,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16196
16203
|
flexColumn?: boolean | undefined;
|
|
16197
16204
|
gap?: string | number | undefined;
|
|
16198
16205
|
pack?: boolean | undefined;
|
|
16199
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16206
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16200
16207
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16201
16208
|
padding?: string | number | undefined;
|
|
16202
16209
|
paddingLeft?: string | number | undefined;
|
|
@@ -16228,7 +16235,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16228
16235
|
flexColumn?: boolean | undefined;
|
|
16229
16236
|
gap?: string | number | undefined;
|
|
16230
16237
|
pack?: boolean | undefined;
|
|
16231
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16238
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16232
16239
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16233
16240
|
padding?: string | number | undefined;
|
|
16234
16241
|
paddingLeft?: string | number | undefined;
|
|
@@ -16316,6 +16323,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16316
16323
|
outlineOffsetX?: string | number | undefined;
|
|
16317
16324
|
outlineOffsetY?: string | number | undefined;
|
|
16318
16325
|
material?: "fr4" | "fr1" | undefined;
|
|
16326
|
+
layers?: 2 | 4 | undefined;
|
|
16319
16327
|
leftPins?: string[] | undefined;
|
|
16320
16328
|
rightPins?: string[] | undefined;
|
|
16321
16329
|
topPins?: string[] | undefined;
|
|
@@ -20485,7 +20493,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20485
20493
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20486
20494
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20487
20495
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20488
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
20496
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
20489
20497
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
20490
20498
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20491
20499
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20516,7 +20524,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20516
20524
|
flexColumn?: boolean | undefined;
|
|
20517
20525
|
gap?: string | number | undefined;
|
|
20518
20526
|
pack?: boolean | undefined;
|
|
20519
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20527
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20520
20528
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20521
20529
|
padding?: number | undefined;
|
|
20522
20530
|
paddingLeft?: number | undefined;
|
|
@@ -20547,7 +20555,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20547
20555
|
flexColumn?: boolean | undefined;
|
|
20548
20556
|
gap?: string | number | undefined;
|
|
20549
20557
|
pack?: boolean | undefined;
|
|
20550
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20558
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20551
20559
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20552
20560
|
padding?: string | number | undefined;
|
|
20553
20561
|
paddingLeft?: string | number | undefined;
|
|
@@ -20579,7 +20587,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20579
20587
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20580
20588
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20581
20589
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20582
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
20590
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
20583
20591
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
20584
20592
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20585
20593
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20610,7 +20618,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20610
20618
|
flexColumn?: boolean | undefined;
|
|
20611
20619
|
gap?: string | number | undefined;
|
|
20612
20620
|
pack?: boolean | undefined;
|
|
20613
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20621
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20614
20622
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20615
20623
|
padding?: number | undefined;
|
|
20616
20624
|
paddingLeft?: number | undefined;
|
|
@@ -20641,7 +20649,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20641
20649
|
flexColumn?: boolean | undefined;
|
|
20642
20650
|
gap?: string | number | undefined;
|
|
20643
20651
|
pack?: boolean | undefined;
|
|
20644
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20652
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20645
20653
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20646
20654
|
padding?: string | number | undefined;
|
|
20647
20655
|
paddingLeft?: string | number | undefined;
|
|
@@ -20703,7 +20711,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20703
20711
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20704
20712
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20705
20713
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20706
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
20714
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
20707
20715
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
20708
20716
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20709
20717
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20975,7 +20983,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20975
20983
|
flexColumn?: boolean | undefined;
|
|
20976
20984
|
gap?: string | number | undefined;
|
|
20977
20985
|
pack?: boolean | undefined;
|
|
20978
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20986
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20979
20987
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20980
20988
|
padding?: number | undefined;
|
|
20981
20989
|
paddingLeft?: number | undefined;
|
|
@@ -21011,7 +21019,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21011
21019
|
flexColumn?: boolean | undefined;
|
|
21012
21020
|
gap?: string | number | undefined;
|
|
21013
21021
|
pack?: boolean | undefined;
|
|
21014
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21022
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21015
21023
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21016
21024
|
padding?: number | undefined;
|
|
21017
21025
|
paddingLeft?: number | undefined;
|
|
@@ -21043,7 +21051,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21043
21051
|
flexColumn?: boolean | undefined;
|
|
21044
21052
|
gap?: string | number | undefined;
|
|
21045
21053
|
pack?: boolean | undefined;
|
|
21046
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21054
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21047
21055
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21048
21056
|
padding?: number | undefined;
|
|
21049
21057
|
paddingLeft?: number | undefined;
|
|
@@ -21162,7 +21170,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21162
21170
|
flexColumn?: boolean | undefined;
|
|
21163
21171
|
gap?: string | number | undefined;
|
|
21164
21172
|
pack?: boolean | undefined;
|
|
21165
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21173
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21166
21174
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21167
21175
|
padding?: string | number | undefined;
|
|
21168
21176
|
paddingLeft?: string | number | undefined;
|
|
@@ -21198,7 +21206,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21198
21206
|
flexColumn?: boolean | undefined;
|
|
21199
21207
|
gap?: string | number | undefined;
|
|
21200
21208
|
pack?: boolean | undefined;
|
|
21201
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21209
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21202
21210
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21203
21211
|
padding?: string | number | undefined;
|
|
21204
21212
|
paddingLeft?: string | number | undefined;
|
|
@@ -21230,7 +21238,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21230
21238
|
flexColumn?: boolean | undefined;
|
|
21231
21239
|
gap?: string | number | undefined;
|
|
21232
21240
|
pack?: boolean | undefined;
|
|
21233
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21241
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21234
21242
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21235
21243
|
padding?: string | number | undefined;
|
|
21236
21244
|
paddingLeft?: string | number | undefined;
|