@tscircuit/props 0.0.268 → 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 +1 -0
- package/dist/index.d.ts +121 -121
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +11 -2
- package/package.json +1 -1
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;
|
|
@@ -6943,7 +6943,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6943
6943
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6944
6944
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6945
6945
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6946
|
-
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"]>>;
|
|
6947
6947
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6948
6948
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6949
6949
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6974,7 +6974,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6974
6974
|
flexColumn?: boolean | undefined;
|
|
6975
6975
|
gap?: string | number | undefined;
|
|
6976
6976
|
pack?: boolean | undefined;
|
|
6977
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6977
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
6978
6978
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6979
6979
|
padding?: number | undefined;
|
|
6980
6980
|
paddingLeft?: number | undefined;
|
|
@@ -7005,7 +7005,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7005
7005
|
flexColumn?: boolean | undefined;
|
|
7006
7006
|
gap?: string | number | undefined;
|
|
7007
7007
|
pack?: boolean | undefined;
|
|
7008
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7008
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7009
7009
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7010
7010
|
padding?: string | number | undefined;
|
|
7011
7011
|
paddingLeft?: string | number | undefined;
|
|
@@ -7037,7 +7037,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7037
7037
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7038
7038
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7039
7039
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7040
|
-
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"]>>;
|
|
7041
7041
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7042
7042
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7043
7043
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7068,7 +7068,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7068
7068
|
flexColumn?: boolean | undefined;
|
|
7069
7069
|
gap?: string | number | undefined;
|
|
7070
7070
|
pack?: boolean | undefined;
|
|
7071
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7071
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7072
7072
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7073
7073
|
padding?: number | undefined;
|
|
7074
7074
|
paddingLeft?: number | undefined;
|
|
@@ -7099,7 +7099,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7099
7099
|
flexColumn?: boolean | undefined;
|
|
7100
7100
|
gap?: string | number | undefined;
|
|
7101
7101
|
pack?: boolean | undefined;
|
|
7102
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7102
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7103
7103
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7104
7104
|
padding?: string | number | undefined;
|
|
7105
7105
|
paddingLeft?: string | number | undefined;
|
|
@@ -7161,7 +7161,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7161
7161
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7162
7162
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7163
7163
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7164
|
-
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"]>>;
|
|
7165
7165
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7166
7166
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7167
7167
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7438,7 +7438,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7438
7438
|
flexColumn?: boolean | undefined;
|
|
7439
7439
|
gap?: string | number | undefined;
|
|
7440
7440
|
pack?: boolean | undefined;
|
|
7441
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7441
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7442
7442
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7443
7443
|
padding?: number | undefined;
|
|
7444
7444
|
paddingLeft?: number | undefined;
|
|
@@ -7474,7 +7474,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7474
7474
|
flexColumn?: boolean | undefined;
|
|
7475
7475
|
gap?: string | number | undefined;
|
|
7476
7476
|
pack?: boolean | undefined;
|
|
7477
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7477
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7478
7478
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7479
7479
|
padding?: number | undefined;
|
|
7480
7480
|
paddingLeft?: number | undefined;
|
|
@@ -7506,7 +7506,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7506
7506
|
flexColumn?: boolean | undefined;
|
|
7507
7507
|
gap?: string | number | undefined;
|
|
7508
7508
|
pack?: boolean | undefined;
|
|
7509
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7509
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7510
7510
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7511
7511
|
padding?: number | undefined;
|
|
7512
7512
|
paddingLeft?: number | undefined;
|
|
@@ -7625,7 +7625,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7625
7625
|
flexColumn?: boolean | undefined;
|
|
7626
7626
|
gap?: string | number | undefined;
|
|
7627
7627
|
pack?: boolean | undefined;
|
|
7628
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7628
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7629
7629
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7630
7630
|
padding?: string | number | undefined;
|
|
7631
7631
|
paddingLeft?: string | number | undefined;
|
|
@@ -7661,7 +7661,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7661
7661
|
flexColumn?: boolean | undefined;
|
|
7662
7662
|
gap?: string | number | undefined;
|
|
7663
7663
|
pack?: boolean | undefined;
|
|
7664
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7664
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7665
7665
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7666
7666
|
padding?: string | number | undefined;
|
|
7667
7667
|
paddingLeft?: string | number | undefined;
|
|
@@ -7693,7 +7693,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7693
7693
|
flexColumn?: boolean | undefined;
|
|
7694
7694
|
gap?: string | number | undefined;
|
|
7695
7695
|
pack?: boolean | undefined;
|
|
7696
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7696
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7697
7697
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7698
7698
|
padding?: string | number | undefined;
|
|
7699
7699
|
paddingLeft?: string | number | undefined;
|
|
@@ -7833,7 +7833,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7833
7833
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7834
7834
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7835
7835
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7836
|
-
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"]>>;
|
|
7837
7837
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7838
7838
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7839
7839
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7864,7 +7864,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7864
7864
|
flexColumn?: boolean | undefined;
|
|
7865
7865
|
gap?: string | number | undefined;
|
|
7866
7866
|
pack?: boolean | undefined;
|
|
7867
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7867
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7868
7868
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7869
7869
|
padding?: number | undefined;
|
|
7870
7870
|
paddingLeft?: number | undefined;
|
|
@@ -7895,7 +7895,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7895
7895
|
flexColumn?: boolean | undefined;
|
|
7896
7896
|
gap?: string | number | undefined;
|
|
7897
7897
|
pack?: boolean | undefined;
|
|
7898
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7898
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7899
7899
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7900
7900
|
padding?: string | number | undefined;
|
|
7901
7901
|
paddingLeft?: string | number | undefined;
|
|
@@ -7927,7 +7927,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7927
7927
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7928
7928
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7929
7929
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7930
|
-
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"]>>;
|
|
7931
7931
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7932
7932
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7933
7933
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7958,7 +7958,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7958
7958
|
flexColumn?: boolean | undefined;
|
|
7959
7959
|
gap?: string | number | undefined;
|
|
7960
7960
|
pack?: boolean | undefined;
|
|
7961
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7961
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7962
7962
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7963
7963
|
padding?: number | undefined;
|
|
7964
7964
|
paddingLeft?: number | undefined;
|
|
@@ -7989,7 +7989,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7989
7989
|
flexColumn?: boolean | undefined;
|
|
7990
7990
|
gap?: string | number | undefined;
|
|
7991
7991
|
pack?: boolean | undefined;
|
|
7992
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7992
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
7993
7993
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7994
7994
|
padding?: string | number | undefined;
|
|
7995
7995
|
paddingLeft?: string | number | undefined;
|
|
@@ -8051,7 +8051,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8051
8051
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
8052
8052
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8053
8053
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
8054
|
-
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"]>>;
|
|
8055
8055
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
8056
8056
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8057
8057
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -8323,7 +8323,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8323
8323
|
flexColumn?: boolean | undefined;
|
|
8324
8324
|
gap?: string | number | undefined;
|
|
8325
8325
|
pack?: boolean | undefined;
|
|
8326
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8326
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8327
8327
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8328
8328
|
padding?: number | undefined;
|
|
8329
8329
|
paddingLeft?: number | undefined;
|
|
@@ -8359,7 +8359,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8359
8359
|
flexColumn?: boolean | undefined;
|
|
8360
8360
|
gap?: string | number | undefined;
|
|
8361
8361
|
pack?: boolean | undefined;
|
|
8362
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8362
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8363
8363
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8364
8364
|
padding?: number | undefined;
|
|
8365
8365
|
paddingLeft?: number | undefined;
|
|
@@ -8391,7 +8391,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8391
8391
|
flexColumn?: boolean | undefined;
|
|
8392
8392
|
gap?: string | number | undefined;
|
|
8393
8393
|
pack?: boolean | undefined;
|
|
8394
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8394
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8395
8395
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8396
8396
|
padding?: number | undefined;
|
|
8397
8397
|
paddingLeft?: number | undefined;
|
|
@@ -8510,7 +8510,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8510
8510
|
flexColumn?: boolean | undefined;
|
|
8511
8511
|
gap?: string | number | undefined;
|
|
8512
8512
|
pack?: boolean | undefined;
|
|
8513
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8513
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8514
8514
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8515
8515
|
padding?: string | number | undefined;
|
|
8516
8516
|
paddingLeft?: string | number | undefined;
|
|
@@ -8546,7 +8546,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8546
8546
|
flexColumn?: boolean | undefined;
|
|
8547
8547
|
gap?: string | number | undefined;
|
|
8548
8548
|
pack?: boolean | undefined;
|
|
8549
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8549
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8550
8550
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8551
8551
|
padding?: string | number | undefined;
|
|
8552
8552
|
paddingLeft?: string | number | undefined;
|
|
@@ -8578,7 +8578,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8578
8578
|
flexColumn?: boolean | undefined;
|
|
8579
8579
|
gap?: string | number | undefined;
|
|
8580
8580
|
pack?: boolean | undefined;
|
|
8581
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8581
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
8582
8582
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8583
8583
|
padding?: string | number | undefined;
|
|
8584
8584
|
paddingLeft?: string | number | undefined;
|
|
@@ -15460,7 +15460,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15460
15460
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15461
15461
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15462
15462
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15463
|
-
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"]>>;
|
|
15464
15464
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
15465
15465
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15466
15466
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15491,7 +15491,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15491
15491
|
flexColumn?: boolean | undefined;
|
|
15492
15492
|
gap?: string | number | undefined;
|
|
15493
15493
|
pack?: boolean | undefined;
|
|
15494
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15494
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15495
15495
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15496
15496
|
padding?: number | undefined;
|
|
15497
15497
|
paddingLeft?: number | undefined;
|
|
@@ -15522,7 +15522,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15522
15522
|
flexColumn?: boolean | undefined;
|
|
15523
15523
|
gap?: string | number | undefined;
|
|
15524
15524
|
pack?: boolean | undefined;
|
|
15525
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15525
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15526
15526
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15527
15527
|
padding?: string | number | undefined;
|
|
15528
15528
|
paddingLeft?: string | number | undefined;
|
|
@@ -15554,7 +15554,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15554
15554
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15555
15555
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15556
15556
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15557
|
-
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"]>>;
|
|
15558
15558
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
15559
15559
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15560
15560
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15585,7 +15585,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15585
15585
|
flexColumn?: boolean | undefined;
|
|
15586
15586
|
gap?: string | number | undefined;
|
|
15587
15587
|
pack?: boolean | undefined;
|
|
15588
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15588
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15589
15589
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15590
15590
|
padding?: number | undefined;
|
|
15591
15591
|
paddingLeft?: number | undefined;
|
|
@@ -15616,7 +15616,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15616
15616
|
flexColumn?: boolean | undefined;
|
|
15617
15617
|
gap?: string | number | undefined;
|
|
15618
15618
|
pack?: boolean | undefined;
|
|
15619
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15619
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15620
15620
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15621
15621
|
padding?: string | number | undefined;
|
|
15622
15622
|
paddingLeft?: string | number | undefined;
|
|
@@ -15678,7 +15678,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15678
15678
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15679
15679
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15680
15680
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15681
|
-
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"]>>;
|
|
15682
15682
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
15683
15683
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15684
15684
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15970,7 +15970,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15970
15970
|
flexColumn?: boolean | undefined;
|
|
15971
15971
|
gap?: string | number | undefined;
|
|
15972
15972
|
pack?: boolean | undefined;
|
|
15973
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15973
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
15974
15974
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15975
15975
|
padding?: number | undefined;
|
|
15976
15976
|
paddingLeft?: number | undefined;
|
|
@@ -16006,7 +16006,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16006
16006
|
flexColumn?: boolean | undefined;
|
|
16007
16007
|
gap?: string | number | undefined;
|
|
16008
16008
|
pack?: boolean | undefined;
|
|
16009
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16009
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16010
16010
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16011
16011
|
padding?: number | undefined;
|
|
16012
16012
|
paddingLeft?: number | undefined;
|
|
@@ -16038,7 +16038,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16038
16038
|
flexColumn?: boolean | undefined;
|
|
16039
16039
|
gap?: string | number | undefined;
|
|
16040
16040
|
pack?: boolean | undefined;
|
|
16041
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16041
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16042
16042
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16043
16043
|
padding?: number | undefined;
|
|
16044
16044
|
paddingLeft?: number | undefined;
|
|
@@ -16167,7 +16167,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16167
16167
|
flexColumn?: boolean | undefined;
|
|
16168
16168
|
gap?: string | number | undefined;
|
|
16169
16169
|
pack?: boolean | undefined;
|
|
16170
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16170
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16171
16171
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16172
16172
|
padding?: string | number | undefined;
|
|
16173
16173
|
paddingLeft?: string | number | undefined;
|
|
@@ -16203,7 +16203,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16203
16203
|
flexColumn?: boolean | undefined;
|
|
16204
16204
|
gap?: string | number | undefined;
|
|
16205
16205
|
pack?: boolean | undefined;
|
|
16206
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16206
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16207
16207
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16208
16208
|
padding?: string | number | undefined;
|
|
16209
16209
|
paddingLeft?: string | number | undefined;
|
|
@@ -16235,7 +16235,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16235
16235
|
flexColumn?: boolean | undefined;
|
|
16236
16236
|
gap?: string | number | undefined;
|
|
16237
16237
|
pack?: boolean | undefined;
|
|
16238
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
16238
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
16239
16239
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
16240
16240
|
padding?: string | number | undefined;
|
|
16241
16241
|
paddingLeft?: string | number | undefined;
|
|
@@ -20493,7 +20493,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20493
20493
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20494
20494
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20495
20495
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20496
|
-
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"]>>;
|
|
20497
20497
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
20498
20498
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20499
20499
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20524,7 +20524,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20524
20524
|
flexColumn?: boolean | undefined;
|
|
20525
20525
|
gap?: string | number | undefined;
|
|
20526
20526
|
pack?: boolean | undefined;
|
|
20527
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20527
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20528
20528
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20529
20529
|
padding?: number | undefined;
|
|
20530
20530
|
paddingLeft?: number | undefined;
|
|
@@ -20555,7 +20555,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20555
20555
|
flexColumn?: boolean | undefined;
|
|
20556
20556
|
gap?: string | number | undefined;
|
|
20557
20557
|
pack?: boolean | undefined;
|
|
20558
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20558
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20559
20559
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20560
20560
|
padding?: string | number | undefined;
|
|
20561
20561
|
paddingLeft?: string | number | undefined;
|
|
@@ -20587,7 +20587,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20587
20587
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20588
20588
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20589
20589
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20590
|
-
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"]>>;
|
|
20591
20591
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
20592
20592
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20593
20593
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20618,7 +20618,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20618
20618
|
flexColumn?: boolean | undefined;
|
|
20619
20619
|
gap?: string | number | undefined;
|
|
20620
20620
|
pack?: boolean | undefined;
|
|
20621
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20621
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20622
20622
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20623
20623
|
padding?: number | undefined;
|
|
20624
20624
|
paddingLeft?: number | undefined;
|
|
@@ -20649,7 +20649,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20649
20649
|
flexColumn?: boolean | undefined;
|
|
20650
20650
|
gap?: string | number | undefined;
|
|
20651
20651
|
pack?: boolean | undefined;
|
|
20652
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20652
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20653
20653
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20654
20654
|
padding?: string | number | undefined;
|
|
20655
20655
|
paddingLeft?: string | number | undefined;
|
|
@@ -20711,7 +20711,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20711
20711
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20712
20712
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20713
20713
|
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20714
|
-
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"]>>;
|
|
20715
20715
|
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
20716
20716
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20717
20717
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20983,7 +20983,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20983
20983
|
flexColumn?: boolean | undefined;
|
|
20984
20984
|
gap?: string | number | undefined;
|
|
20985
20985
|
pack?: boolean | undefined;
|
|
20986
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20986
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
20987
20987
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20988
20988
|
padding?: number | undefined;
|
|
20989
20989
|
paddingLeft?: number | undefined;
|
|
@@ -21019,7 +21019,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21019
21019
|
flexColumn?: boolean | undefined;
|
|
21020
21020
|
gap?: string | number | undefined;
|
|
21021
21021
|
pack?: boolean | undefined;
|
|
21022
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21022
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21023
21023
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21024
21024
|
padding?: number | undefined;
|
|
21025
21025
|
paddingLeft?: number | undefined;
|
|
@@ -21051,7 +21051,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21051
21051
|
flexColumn?: boolean | undefined;
|
|
21052
21052
|
gap?: string | number | undefined;
|
|
21053
21053
|
pack?: boolean | undefined;
|
|
21054
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21054
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21055
21055
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21056
21056
|
padding?: number | undefined;
|
|
21057
21057
|
paddingLeft?: number | undefined;
|
|
@@ -21170,7 +21170,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21170
21170
|
flexColumn?: boolean | undefined;
|
|
21171
21171
|
gap?: string | number | undefined;
|
|
21172
21172
|
pack?: boolean | undefined;
|
|
21173
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21173
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21174
21174
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21175
21175
|
padding?: string | number | undefined;
|
|
21176
21176
|
paddingLeft?: string | number | undefined;
|
|
@@ -21206,7 +21206,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21206
21206
|
flexColumn?: boolean | undefined;
|
|
21207
21207
|
gap?: string | number | undefined;
|
|
21208
21208
|
pack?: boolean | undefined;
|
|
21209
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21209
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21210
21210
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21211
21211
|
padding?: string | number | undefined;
|
|
21212
21212
|
paddingLeft?: string | number | undefined;
|
|
@@ -21238,7 +21238,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21238
21238
|
flexColumn?: boolean | undefined;
|
|
21239
21239
|
gap?: string | number | undefined;
|
|
21240
21240
|
pack?: boolean | undefined;
|
|
21241
|
-
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
21241
|
+
packOrderStrategy?: "largest_to_smallest" | "first_to_last" | "highest_to_lowest_pin_count" | undefined;
|
|
21242
21242
|
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
21243
21243
|
padding?: string | number | undefined;
|
|
21244
21244
|
paddingLeft?: string | number | undefined;
|