@tscircuit/props 0.0.155 → 0.0.156
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/dist/index.d.ts +108 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2582,6 +2582,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2582
2582
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2583
2583
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2584
2584
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2585
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2585
2586
|
}, "strip", z.ZodTypeAny, {
|
|
2586
2587
|
grid?: boolean | undefined;
|
|
2587
2588
|
flex?: string | boolean | undefined;
|
|
@@ -2598,6 +2599,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2598
2599
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2599
2600
|
flexRow?: boolean | undefined;
|
|
2600
2601
|
flexColumn?: boolean | undefined;
|
|
2602
|
+
gap?: string | number | undefined;
|
|
2601
2603
|
}, {
|
|
2602
2604
|
grid?: boolean | undefined;
|
|
2603
2605
|
flex?: string | boolean | undefined;
|
|
@@ -2614,6 +2616,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2614
2616
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2615
2617
|
flexRow?: boolean | undefined;
|
|
2616
2618
|
flexColumn?: boolean | undefined;
|
|
2619
|
+
gap?: string | number | undefined;
|
|
2617
2620
|
}>;
|
|
2618
2621
|
interface LayoutConfig {
|
|
2619
2622
|
layoutMode?: "grid" | "flex" | "none";
|
|
@@ -2631,6 +2634,7 @@ interface LayoutConfig {
|
|
|
2631
2634
|
justifyContent?: "start" | "center" | "end" | "stretch";
|
|
2632
2635
|
flexRow?: boolean;
|
|
2633
2636
|
flexColumn?: boolean;
|
|
2637
|
+
gap?: number | string;
|
|
2634
2638
|
}
|
|
2635
2639
|
interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
2636
2640
|
name?: string;
|
|
@@ -2778,6 +2782,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2778
2782
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2779
2783
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2780
2784
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2785
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2781
2786
|
}, "strip", z.ZodTypeAny, {
|
|
2782
2787
|
grid?: boolean | undefined;
|
|
2783
2788
|
flex?: string | boolean | undefined;
|
|
@@ -2794,6 +2799,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2794
2799
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2795
2800
|
flexRow?: boolean | undefined;
|
|
2796
2801
|
flexColumn?: boolean | undefined;
|
|
2802
|
+
gap?: string | number | undefined;
|
|
2797
2803
|
}, {
|
|
2798
2804
|
grid?: boolean | undefined;
|
|
2799
2805
|
flex?: string | boolean | undefined;
|
|
@@ -2810,6 +2816,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2810
2816
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2811
2817
|
flexRow?: boolean | undefined;
|
|
2812
2818
|
flexColumn?: boolean | undefined;
|
|
2819
|
+
gap?: string | number | undefined;
|
|
2813
2820
|
}>>;
|
|
2814
2821
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
2815
2822
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -2827,6 +2834,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2827
2834
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2828
2835
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2829
2836
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2837
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2830
2838
|
}, "strip", z.ZodTypeAny, {
|
|
2831
2839
|
grid?: boolean | undefined;
|
|
2832
2840
|
flex?: string | boolean | undefined;
|
|
@@ -2843,6 +2851,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2843
2851
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2844
2852
|
flexRow?: boolean | undefined;
|
|
2845
2853
|
flexColumn?: boolean | undefined;
|
|
2854
|
+
gap?: string | number | undefined;
|
|
2846
2855
|
}, {
|
|
2847
2856
|
grid?: boolean | undefined;
|
|
2848
2857
|
flex?: string | boolean | undefined;
|
|
@@ -2859,6 +2868,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2859
2868
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2860
2869
|
flexRow?: boolean | undefined;
|
|
2861
2870
|
flexColumn?: boolean | undefined;
|
|
2871
|
+
gap?: string | number | undefined;
|
|
2862
2872
|
}>>;
|
|
2863
2873
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
2864
2874
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -2875,6 +2885,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2875
2885
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2876
2886
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2877
2887
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2888
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2878
2889
|
name: z.ZodOptional<z.ZodString>;
|
|
2879
2890
|
children: z.ZodOptional<z.ZodAny>;
|
|
2880
2891
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -2905,6 +2916,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2905
2916
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2906
2917
|
flexRow?: boolean | undefined;
|
|
2907
2918
|
flexColumn?: boolean | undefined;
|
|
2919
|
+
gap?: string | number | undefined;
|
|
2908
2920
|
pcbWidth?: number | undefined;
|
|
2909
2921
|
pcbHeight?: number | undefined;
|
|
2910
2922
|
schWidth?: number | undefined;
|
|
@@ -2925,6 +2937,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2925
2937
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2926
2938
|
flexRow?: boolean | undefined;
|
|
2927
2939
|
flexColumn?: boolean | undefined;
|
|
2940
|
+
gap?: string | number | undefined;
|
|
2928
2941
|
} | undefined;
|
|
2929
2942
|
schLayout?: {
|
|
2930
2943
|
grid?: boolean | undefined;
|
|
@@ -2942,6 +2955,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2942
2955
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2943
2956
|
flexRow?: boolean | undefined;
|
|
2944
2957
|
flexColumn?: boolean | undefined;
|
|
2958
|
+
gap?: string | number | undefined;
|
|
2945
2959
|
} | undefined;
|
|
2946
2960
|
}, {
|
|
2947
2961
|
pcbX?: string | number | undefined;
|
|
@@ -2972,6 +2986,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2972
2986
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2973
2987
|
flexRow?: boolean | undefined;
|
|
2974
2988
|
flexColumn?: boolean | undefined;
|
|
2989
|
+
gap?: string | number | undefined;
|
|
2975
2990
|
pcbWidth?: string | number | undefined;
|
|
2976
2991
|
pcbHeight?: string | number | undefined;
|
|
2977
2992
|
schWidth?: string | number | undefined;
|
|
@@ -2992,6 +3007,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2992
3007
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2993
3008
|
flexRow?: boolean | undefined;
|
|
2994
3009
|
flexColumn?: boolean | undefined;
|
|
3010
|
+
gap?: string | number | undefined;
|
|
2995
3011
|
} | undefined;
|
|
2996
3012
|
schLayout?: {
|
|
2997
3013
|
grid?: boolean | undefined;
|
|
@@ -3009,6 +3025,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3009
3025
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3010
3026
|
flexRow?: boolean | undefined;
|
|
3011
3027
|
flexColumn?: boolean | undefined;
|
|
3028
|
+
gap?: string | number | undefined;
|
|
3012
3029
|
} | undefined;
|
|
3013
3030
|
}>;
|
|
3014
3031
|
declare const partsEngine: z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>;
|
|
@@ -3050,6 +3067,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3050
3067
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3051
3068
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3052
3069
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3070
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3053
3071
|
}, "strip", z.ZodTypeAny, {
|
|
3054
3072
|
grid?: boolean | undefined;
|
|
3055
3073
|
flex?: string | boolean | undefined;
|
|
@@ -3066,6 +3084,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3066
3084
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3067
3085
|
flexRow?: boolean | undefined;
|
|
3068
3086
|
flexColumn?: boolean | undefined;
|
|
3087
|
+
gap?: string | number | undefined;
|
|
3069
3088
|
}, {
|
|
3070
3089
|
grid?: boolean | undefined;
|
|
3071
3090
|
flex?: string | boolean | undefined;
|
|
@@ -3082,6 +3101,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3082
3101
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3083
3102
|
flexRow?: boolean | undefined;
|
|
3084
3103
|
flexColumn?: boolean | undefined;
|
|
3104
|
+
gap?: string | number | undefined;
|
|
3085
3105
|
}>>;
|
|
3086
3106
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3087
3107
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -3099,6 +3119,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3099
3119
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3100
3120
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3101
3121
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3122
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3102
3123
|
}, "strip", z.ZodTypeAny, {
|
|
3103
3124
|
grid?: boolean | undefined;
|
|
3104
3125
|
flex?: string | boolean | undefined;
|
|
@@ -3115,6 +3136,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3115
3136
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3116
3137
|
flexRow?: boolean | undefined;
|
|
3117
3138
|
flexColumn?: boolean | undefined;
|
|
3139
|
+
gap?: string | number | undefined;
|
|
3118
3140
|
}, {
|
|
3119
3141
|
grid?: boolean | undefined;
|
|
3120
3142
|
flex?: string | boolean | undefined;
|
|
@@ -3131,6 +3153,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3131
3153
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3132
3154
|
flexRow?: boolean | undefined;
|
|
3133
3155
|
flexColumn?: boolean | undefined;
|
|
3156
|
+
gap?: string | number | undefined;
|
|
3134
3157
|
}>>;
|
|
3135
3158
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3136
3159
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -3147,6 +3170,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3147
3170
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3148
3171
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3149
3172
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3173
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3150
3174
|
name: z.ZodOptional<z.ZodString>;
|
|
3151
3175
|
children: z.ZodOptional<z.ZodAny>;
|
|
3152
3176
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3377,6 +3401,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3377
3401
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3378
3402
|
flexRow?: boolean | undefined;
|
|
3379
3403
|
flexColumn?: boolean | undefined;
|
|
3404
|
+
gap?: string | number | undefined;
|
|
3380
3405
|
pcbWidth?: number | undefined;
|
|
3381
3406
|
pcbHeight?: number | undefined;
|
|
3382
3407
|
schWidth?: number | undefined;
|
|
@@ -3397,6 +3422,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3397
3422
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3398
3423
|
flexRow?: boolean | undefined;
|
|
3399
3424
|
flexColumn?: boolean | undefined;
|
|
3425
|
+
gap?: string | number | undefined;
|
|
3400
3426
|
} | undefined;
|
|
3401
3427
|
schLayout?: {
|
|
3402
3428
|
grid?: boolean | undefined;
|
|
@@ -3414,6 +3440,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3414
3440
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3415
3441
|
flexRow?: boolean | undefined;
|
|
3416
3442
|
flexColumn?: boolean | undefined;
|
|
3443
|
+
gap?: string | number | undefined;
|
|
3417
3444
|
} | undefined;
|
|
3418
3445
|
layout?: LayoutBuilder | undefined;
|
|
3419
3446
|
manualEdits?: {
|
|
@@ -3489,6 +3516,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3489
3516
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3490
3517
|
flexRow?: boolean | undefined;
|
|
3491
3518
|
flexColumn?: boolean | undefined;
|
|
3519
|
+
gap?: string | number | undefined;
|
|
3492
3520
|
pcbWidth?: string | number | undefined;
|
|
3493
3521
|
pcbHeight?: string | number | undefined;
|
|
3494
3522
|
schWidth?: string | number | undefined;
|
|
@@ -3509,6 +3537,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3509
3537
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3510
3538
|
flexRow?: boolean | undefined;
|
|
3511
3539
|
flexColumn?: boolean | undefined;
|
|
3540
|
+
gap?: string | number | undefined;
|
|
3512
3541
|
} | undefined;
|
|
3513
3542
|
schLayout?: {
|
|
3514
3543
|
grid?: boolean | undefined;
|
|
@@ -3526,6 +3555,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3526
3555
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3527
3556
|
flexRow?: boolean | undefined;
|
|
3528
3557
|
flexColumn?: boolean | undefined;
|
|
3558
|
+
gap?: string | number | undefined;
|
|
3529
3559
|
} | undefined;
|
|
3530
3560
|
layout?: LayoutBuilder | undefined;
|
|
3531
3561
|
manualEdits?: {
|
|
@@ -3613,6 +3643,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3613
3643
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3614
3644
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3615
3645
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3646
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3616
3647
|
}, "strip", z.ZodTypeAny, {
|
|
3617
3648
|
grid?: boolean | undefined;
|
|
3618
3649
|
flex?: string | boolean | undefined;
|
|
@@ -3629,6 +3660,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3629
3660
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3630
3661
|
flexRow?: boolean | undefined;
|
|
3631
3662
|
flexColumn?: boolean | undefined;
|
|
3663
|
+
gap?: string | number | undefined;
|
|
3632
3664
|
}, {
|
|
3633
3665
|
grid?: boolean | undefined;
|
|
3634
3666
|
flex?: string | boolean | undefined;
|
|
@@ -3645,6 +3677,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3645
3677
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3646
3678
|
flexRow?: boolean | undefined;
|
|
3647
3679
|
flexColumn?: boolean | undefined;
|
|
3680
|
+
gap?: string | number | undefined;
|
|
3648
3681
|
}>>;
|
|
3649
3682
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3650
3683
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -3662,6 +3695,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3662
3695
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3663
3696
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3664
3697
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3698
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3665
3699
|
}, "strip", z.ZodTypeAny, {
|
|
3666
3700
|
grid?: boolean | undefined;
|
|
3667
3701
|
flex?: string | boolean | undefined;
|
|
@@ -3678,6 +3712,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3678
3712
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3679
3713
|
flexRow?: boolean | undefined;
|
|
3680
3714
|
flexColumn?: boolean | undefined;
|
|
3715
|
+
gap?: string | number | undefined;
|
|
3681
3716
|
}, {
|
|
3682
3717
|
grid?: boolean | undefined;
|
|
3683
3718
|
flex?: string | boolean | undefined;
|
|
@@ -3694,6 +3729,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3694
3729
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3695
3730
|
flexRow?: boolean | undefined;
|
|
3696
3731
|
flexColumn?: boolean | undefined;
|
|
3732
|
+
gap?: string | number | undefined;
|
|
3697
3733
|
}>>;
|
|
3698
3734
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3699
3735
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -3710,6 +3746,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3710
3746
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3711
3747
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3712
3748
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3749
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3713
3750
|
name: z.ZodOptional<z.ZodString>;
|
|
3714
3751
|
children: z.ZodOptional<z.ZodAny>;
|
|
3715
3752
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3943,6 +3980,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3943
3980
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3944
3981
|
flexRow?: boolean | undefined;
|
|
3945
3982
|
flexColumn?: boolean | undefined;
|
|
3983
|
+
gap?: string | number | undefined;
|
|
3946
3984
|
pcbWidth?: number | undefined;
|
|
3947
3985
|
pcbHeight?: number | undefined;
|
|
3948
3986
|
schWidth?: number | undefined;
|
|
@@ -3963,6 +4001,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3963
4001
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3964
4002
|
flexRow?: boolean | undefined;
|
|
3965
4003
|
flexColumn?: boolean | undefined;
|
|
4004
|
+
gap?: string | number | undefined;
|
|
3966
4005
|
} | undefined;
|
|
3967
4006
|
schLayout?: {
|
|
3968
4007
|
grid?: boolean | undefined;
|
|
@@ -3980,6 +4019,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3980
4019
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3981
4020
|
flexRow?: boolean | undefined;
|
|
3982
4021
|
flexColumn?: boolean | undefined;
|
|
4022
|
+
gap?: string | number | undefined;
|
|
3983
4023
|
} | undefined;
|
|
3984
4024
|
layout?: LayoutBuilder | undefined;
|
|
3985
4025
|
manualEdits?: {
|
|
@@ -4056,6 +4096,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4056
4096
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4057
4097
|
flexRow?: boolean | undefined;
|
|
4058
4098
|
flexColumn?: boolean | undefined;
|
|
4099
|
+
gap?: string | number | undefined;
|
|
4059
4100
|
pcbWidth?: string | number | undefined;
|
|
4060
4101
|
pcbHeight?: string | number | undefined;
|
|
4061
4102
|
schWidth?: string | number | undefined;
|
|
@@ -4076,6 +4117,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4076
4117
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4077
4118
|
flexRow?: boolean | undefined;
|
|
4078
4119
|
flexColumn?: boolean | undefined;
|
|
4120
|
+
gap?: string | number | undefined;
|
|
4079
4121
|
} | undefined;
|
|
4080
4122
|
schLayout?: {
|
|
4081
4123
|
grid?: boolean | undefined;
|
|
@@ -4093,6 +4135,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4093
4135
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4094
4136
|
flexRow?: boolean | undefined;
|
|
4095
4137
|
flexColumn?: boolean | undefined;
|
|
4138
|
+
gap?: string | number | undefined;
|
|
4096
4139
|
} | undefined;
|
|
4097
4140
|
layout?: LayoutBuilder | undefined;
|
|
4098
4141
|
manualEdits?: {
|
|
@@ -4180,6 +4223,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4180
4223
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4181
4224
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4182
4225
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4226
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4183
4227
|
}, "strip", z.ZodTypeAny, {
|
|
4184
4228
|
grid?: boolean | undefined;
|
|
4185
4229
|
flex?: string | boolean | undefined;
|
|
@@ -4196,6 +4240,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4196
4240
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4197
4241
|
flexRow?: boolean | undefined;
|
|
4198
4242
|
flexColumn?: boolean | undefined;
|
|
4243
|
+
gap?: string | number | undefined;
|
|
4199
4244
|
}, {
|
|
4200
4245
|
grid?: boolean | undefined;
|
|
4201
4246
|
flex?: string | boolean | undefined;
|
|
@@ -4212,6 +4257,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4212
4257
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4213
4258
|
flexRow?: boolean | undefined;
|
|
4214
4259
|
flexColumn?: boolean | undefined;
|
|
4260
|
+
gap?: string | number | undefined;
|
|
4215
4261
|
}>>;
|
|
4216
4262
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4217
4263
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -4229,6 +4275,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4229
4275
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4230
4276
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4231
4277
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4278
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4232
4279
|
}, "strip", z.ZodTypeAny, {
|
|
4233
4280
|
grid?: boolean | undefined;
|
|
4234
4281
|
flex?: string | boolean | undefined;
|
|
@@ -4245,6 +4292,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4245
4292
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4246
4293
|
flexRow?: boolean | undefined;
|
|
4247
4294
|
flexColumn?: boolean | undefined;
|
|
4295
|
+
gap?: string | number | undefined;
|
|
4248
4296
|
}, {
|
|
4249
4297
|
grid?: boolean | undefined;
|
|
4250
4298
|
flex?: string | boolean | undefined;
|
|
@@ -4261,6 +4309,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4261
4309
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4262
4310
|
flexRow?: boolean | undefined;
|
|
4263
4311
|
flexColumn?: boolean | undefined;
|
|
4312
|
+
gap?: string | number | undefined;
|
|
4264
4313
|
}>>;
|
|
4265
4314
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4266
4315
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4277,6 +4326,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4277
4326
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4278
4327
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4279
4328
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4329
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4280
4330
|
name: z.ZodOptional<z.ZodString>;
|
|
4281
4331
|
children: z.ZodOptional<z.ZodAny>;
|
|
4282
4332
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4309,6 +4359,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4309
4359
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4310
4360
|
flexRow?: boolean | undefined;
|
|
4311
4361
|
flexColumn?: boolean | undefined;
|
|
4362
|
+
gap?: string | number | undefined;
|
|
4312
4363
|
pcbWidth?: number | undefined;
|
|
4313
4364
|
pcbHeight?: number | undefined;
|
|
4314
4365
|
schWidth?: number | undefined;
|
|
@@ -4329,6 +4380,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4329
4380
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4330
4381
|
flexRow?: boolean | undefined;
|
|
4331
4382
|
flexColumn?: boolean | undefined;
|
|
4383
|
+
gap?: string | number | undefined;
|
|
4332
4384
|
} | undefined;
|
|
4333
4385
|
schLayout?: {
|
|
4334
4386
|
grid?: boolean | undefined;
|
|
@@ -4346,6 +4398,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4346
4398
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4347
4399
|
flexRow?: boolean | undefined;
|
|
4348
4400
|
flexColumn?: boolean | undefined;
|
|
4401
|
+
gap?: string | number | undefined;
|
|
4349
4402
|
} | undefined;
|
|
4350
4403
|
subcircuit?: false | undefined;
|
|
4351
4404
|
}, {
|
|
@@ -4377,6 +4430,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4377
4430
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4378
4431
|
flexRow?: boolean | undefined;
|
|
4379
4432
|
flexColumn?: boolean | undefined;
|
|
4433
|
+
gap?: string | number | undefined;
|
|
4380
4434
|
pcbWidth?: string | number | undefined;
|
|
4381
4435
|
pcbHeight?: string | number | undefined;
|
|
4382
4436
|
schWidth?: string | number | undefined;
|
|
@@ -4397,6 +4451,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4397
4451
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4398
4452
|
flexRow?: boolean | undefined;
|
|
4399
4453
|
flexColumn?: boolean | undefined;
|
|
4454
|
+
gap?: string | number | undefined;
|
|
4400
4455
|
} | undefined;
|
|
4401
4456
|
schLayout?: {
|
|
4402
4457
|
grid?: boolean | undefined;
|
|
@@ -4414,6 +4469,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4414
4469
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4415
4470
|
flexRow?: boolean | undefined;
|
|
4416
4471
|
flexColumn?: boolean | undefined;
|
|
4472
|
+
gap?: string | number | undefined;
|
|
4417
4473
|
} | undefined;
|
|
4418
4474
|
subcircuit?: false | undefined;
|
|
4419
4475
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -4454,6 +4510,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4454
4510
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4455
4511
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4456
4512
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4513
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4457
4514
|
}, "strip", z.ZodTypeAny, {
|
|
4458
4515
|
grid?: boolean | undefined;
|
|
4459
4516
|
flex?: string | boolean | undefined;
|
|
@@ -4470,6 +4527,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4470
4527
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4471
4528
|
flexRow?: boolean | undefined;
|
|
4472
4529
|
flexColumn?: boolean | undefined;
|
|
4530
|
+
gap?: string | number | undefined;
|
|
4473
4531
|
}, {
|
|
4474
4532
|
grid?: boolean | undefined;
|
|
4475
4533
|
flex?: string | boolean | undefined;
|
|
@@ -4486,6 +4544,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4486
4544
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4487
4545
|
flexRow?: boolean | undefined;
|
|
4488
4546
|
flexColumn?: boolean | undefined;
|
|
4547
|
+
gap?: string | number | undefined;
|
|
4489
4548
|
}>>;
|
|
4490
4549
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4491
4550
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -4503,6 +4562,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4503
4562
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4504
4563
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4505
4564
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4565
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4506
4566
|
}, "strip", z.ZodTypeAny, {
|
|
4507
4567
|
grid?: boolean | undefined;
|
|
4508
4568
|
flex?: string | boolean | undefined;
|
|
@@ -4519,6 +4579,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4519
4579
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4520
4580
|
flexRow?: boolean | undefined;
|
|
4521
4581
|
flexColumn?: boolean | undefined;
|
|
4582
|
+
gap?: string | number | undefined;
|
|
4522
4583
|
}, {
|
|
4523
4584
|
grid?: boolean | undefined;
|
|
4524
4585
|
flex?: string | boolean | undefined;
|
|
@@ -4535,6 +4596,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4535
4596
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4536
4597
|
flexRow?: boolean | undefined;
|
|
4537
4598
|
flexColumn?: boolean | undefined;
|
|
4599
|
+
gap?: string | number | undefined;
|
|
4538
4600
|
}>>;
|
|
4539
4601
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4540
4602
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4551,6 +4613,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4551
4613
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4552
4614
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4553
4615
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4616
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4554
4617
|
name: z.ZodOptional<z.ZodString>;
|
|
4555
4618
|
children: z.ZodOptional<z.ZodAny>;
|
|
4556
4619
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4784,6 +4847,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4784
4847
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4785
4848
|
flexRow?: boolean | undefined;
|
|
4786
4849
|
flexColumn?: boolean | undefined;
|
|
4850
|
+
gap?: string | number | undefined;
|
|
4787
4851
|
pcbWidth?: number | undefined;
|
|
4788
4852
|
pcbHeight?: number | undefined;
|
|
4789
4853
|
schWidth?: number | undefined;
|
|
@@ -4804,6 +4868,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4804
4868
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4805
4869
|
flexRow?: boolean | undefined;
|
|
4806
4870
|
flexColumn?: boolean | undefined;
|
|
4871
|
+
gap?: string | number | undefined;
|
|
4807
4872
|
} | undefined;
|
|
4808
4873
|
schLayout?: {
|
|
4809
4874
|
grid?: boolean | undefined;
|
|
@@ -4821,6 +4886,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4821
4886
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4822
4887
|
flexRow?: boolean | undefined;
|
|
4823
4888
|
flexColumn?: boolean | undefined;
|
|
4889
|
+
gap?: string | number | undefined;
|
|
4824
4890
|
} | undefined;
|
|
4825
4891
|
layout?: LayoutBuilder | undefined;
|
|
4826
4892
|
manualEdits?: {
|
|
@@ -4897,6 +4963,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4897
4963
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4898
4964
|
flexRow?: boolean | undefined;
|
|
4899
4965
|
flexColumn?: boolean | undefined;
|
|
4966
|
+
gap?: string | number | undefined;
|
|
4900
4967
|
pcbWidth?: string | number | undefined;
|
|
4901
4968
|
pcbHeight?: string | number | undefined;
|
|
4902
4969
|
schWidth?: string | number | undefined;
|
|
@@ -4917,6 +4984,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4917
4984
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4918
4985
|
flexRow?: boolean | undefined;
|
|
4919
4986
|
flexColumn?: boolean | undefined;
|
|
4987
|
+
gap?: string | number | undefined;
|
|
4920
4988
|
} | undefined;
|
|
4921
4989
|
schLayout?: {
|
|
4922
4990
|
grid?: boolean | undefined;
|
|
@@ -4934,6 +5002,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4934
5002
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4935
5003
|
flexRow?: boolean | undefined;
|
|
4936
5004
|
flexColumn?: boolean | undefined;
|
|
5005
|
+
gap?: string | number | undefined;
|
|
4937
5006
|
} | undefined;
|
|
4938
5007
|
layout?: LayoutBuilder | undefined;
|
|
4939
5008
|
manualEdits?: {
|
|
@@ -5034,6 +5103,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5034
5103
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5035
5104
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5036
5105
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5106
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5037
5107
|
}, "strip", z.ZodTypeAny, {
|
|
5038
5108
|
grid?: boolean | undefined;
|
|
5039
5109
|
flex?: string | boolean | undefined;
|
|
@@ -5050,6 +5120,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5050
5120
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5051
5121
|
flexRow?: boolean | undefined;
|
|
5052
5122
|
flexColumn?: boolean | undefined;
|
|
5123
|
+
gap?: string | number | undefined;
|
|
5053
5124
|
}, {
|
|
5054
5125
|
grid?: boolean | undefined;
|
|
5055
5126
|
flex?: string | boolean | undefined;
|
|
@@ -5066,6 +5137,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5066
5137
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5067
5138
|
flexRow?: boolean | undefined;
|
|
5068
5139
|
flexColumn?: boolean | undefined;
|
|
5140
|
+
gap?: string | number | undefined;
|
|
5069
5141
|
}>>;
|
|
5070
5142
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
5071
5143
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -5083,6 +5155,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5083
5155
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5084
5156
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5085
5157
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5158
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5086
5159
|
}, "strip", z.ZodTypeAny, {
|
|
5087
5160
|
grid?: boolean | undefined;
|
|
5088
5161
|
flex?: string | boolean | undefined;
|
|
@@ -5099,6 +5172,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5099
5172
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5100
5173
|
flexRow?: boolean | undefined;
|
|
5101
5174
|
flexColumn?: boolean | undefined;
|
|
5175
|
+
gap?: string | number | undefined;
|
|
5102
5176
|
}, {
|
|
5103
5177
|
grid?: boolean | undefined;
|
|
5104
5178
|
flex?: string | boolean | undefined;
|
|
@@ -5115,6 +5189,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5115
5189
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5116
5190
|
flexRow?: boolean | undefined;
|
|
5117
5191
|
flexColumn?: boolean | undefined;
|
|
5192
|
+
gap?: string | number | undefined;
|
|
5118
5193
|
}>>;
|
|
5119
5194
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
5120
5195
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -5131,6 +5206,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5131
5206
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5132
5207
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5133
5208
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5209
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5134
5210
|
name: z.ZodOptional<z.ZodString>;
|
|
5135
5211
|
children: z.ZodOptional<z.ZodAny>;
|
|
5136
5212
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -5376,6 +5452,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5376
5452
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5377
5453
|
flexRow?: boolean | undefined;
|
|
5378
5454
|
flexColumn?: boolean | undefined;
|
|
5455
|
+
gap?: string | number | undefined;
|
|
5379
5456
|
pcbWidth?: number | undefined;
|
|
5380
5457
|
pcbHeight?: number | undefined;
|
|
5381
5458
|
schWidth?: number | undefined;
|
|
@@ -5396,6 +5473,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5396
5473
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5397
5474
|
flexRow?: boolean | undefined;
|
|
5398
5475
|
flexColumn?: boolean | undefined;
|
|
5476
|
+
gap?: string | number | undefined;
|
|
5399
5477
|
} | undefined;
|
|
5400
5478
|
schLayout?: {
|
|
5401
5479
|
grid?: boolean | undefined;
|
|
@@ -5413,6 +5491,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5413
5491
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5414
5492
|
flexRow?: boolean | undefined;
|
|
5415
5493
|
flexColumn?: boolean | undefined;
|
|
5494
|
+
gap?: string | number | undefined;
|
|
5416
5495
|
} | undefined;
|
|
5417
5496
|
layout?: LayoutBuilder | undefined;
|
|
5418
5497
|
manualEdits?: {
|
|
@@ -5496,6 +5575,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5496
5575
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5497
5576
|
flexRow?: boolean | undefined;
|
|
5498
5577
|
flexColumn?: boolean | undefined;
|
|
5578
|
+
gap?: string | number | undefined;
|
|
5499
5579
|
pcbWidth?: string | number | undefined;
|
|
5500
5580
|
pcbHeight?: string | number | undefined;
|
|
5501
5581
|
schWidth?: string | number | undefined;
|
|
@@ -5516,6 +5596,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5516
5596
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5517
5597
|
flexRow?: boolean | undefined;
|
|
5518
5598
|
flexColumn?: boolean | undefined;
|
|
5599
|
+
gap?: string | number | undefined;
|
|
5519
5600
|
} | undefined;
|
|
5520
5601
|
schLayout?: {
|
|
5521
5602
|
grid?: boolean | undefined;
|
|
@@ -5533,6 +5614,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5533
5614
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5534
5615
|
flexRow?: boolean | undefined;
|
|
5535
5616
|
flexColumn?: boolean | undefined;
|
|
5617
|
+
gap?: string | number | undefined;
|
|
5536
5618
|
} | undefined;
|
|
5537
5619
|
layout?: LayoutBuilder | undefined;
|
|
5538
5620
|
manualEdits?: {
|
|
@@ -9624,6 +9706,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9624
9706
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
9625
9707
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
9626
9708
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
9709
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
9627
9710
|
}, "strip", z.ZodTypeAny, {
|
|
9628
9711
|
grid?: boolean | undefined;
|
|
9629
9712
|
flex?: string | boolean | undefined;
|
|
@@ -9640,6 +9723,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9640
9723
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9641
9724
|
flexRow?: boolean | undefined;
|
|
9642
9725
|
flexColumn?: boolean | undefined;
|
|
9726
|
+
gap?: string | number | undefined;
|
|
9643
9727
|
}, {
|
|
9644
9728
|
grid?: boolean | undefined;
|
|
9645
9729
|
flex?: string | boolean | undefined;
|
|
@@ -9656,6 +9740,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9656
9740
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9657
9741
|
flexRow?: boolean | undefined;
|
|
9658
9742
|
flexColumn?: boolean | undefined;
|
|
9743
|
+
gap?: string | number | undefined;
|
|
9659
9744
|
}>>;
|
|
9660
9745
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
9661
9746
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -9673,6 +9758,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9673
9758
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
9674
9759
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
9675
9760
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
9761
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
9676
9762
|
}, "strip", z.ZodTypeAny, {
|
|
9677
9763
|
grid?: boolean | undefined;
|
|
9678
9764
|
flex?: string | boolean | undefined;
|
|
@@ -9689,6 +9775,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9689
9775
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9690
9776
|
flexRow?: boolean | undefined;
|
|
9691
9777
|
flexColumn?: boolean | undefined;
|
|
9778
|
+
gap?: string | number | undefined;
|
|
9692
9779
|
}, {
|
|
9693
9780
|
grid?: boolean | undefined;
|
|
9694
9781
|
flex?: string | boolean | undefined;
|
|
@@ -9705,6 +9792,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9705
9792
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9706
9793
|
flexRow?: boolean | undefined;
|
|
9707
9794
|
flexColumn?: boolean | undefined;
|
|
9795
|
+
gap?: string | number | undefined;
|
|
9708
9796
|
}>>;
|
|
9709
9797
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
9710
9798
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -9721,6 +9809,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9721
9809
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
9722
9810
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
9723
9811
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
9812
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
9724
9813
|
name: z.ZodOptional<z.ZodString>;
|
|
9725
9814
|
children: z.ZodOptional<z.ZodAny>;
|
|
9726
9815
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -9981,6 +10070,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9981
10070
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9982
10071
|
flexRow?: boolean | undefined;
|
|
9983
10072
|
flexColumn?: boolean | undefined;
|
|
10073
|
+
gap?: string | number | undefined;
|
|
9984
10074
|
pcbWidth?: number | undefined;
|
|
9985
10075
|
pcbHeight?: number | undefined;
|
|
9986
10076
|
schWidth?: number | undefined;
|
|
@@ -10001,6 +10091,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10001
10091
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10002
10092
|
flexRow?: boolean | undefined;
|
|
10003
10093
|
flexColumn?: boolean | undefined;
|
|
10094
|
+
gap?: string | number | undefined;
|
|
10004
10095
|
} | undefined;
|
|
10005
10096
|
schLayout?: {
|
|
10006
10097
|
grid?: boolean | undefined;
|
|
@@ -10018,6 +10109,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10018
10109
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10019
10110
|
flexRow?: boolean | undefined;
|
|
10020
10111
|
flexColumn?: boolean | undefined;
|
|
10112
|
+
gap?: string | number | undefined;
|
|
10021
10113
|
} | undefined;
|
|
10022
10114
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
10023
10115
|
manualEdits?: {
|
|
@@ -10111,6 +10203,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10111
10203
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10112
10204
|
flexRow?: boolean | undefined;
|
|
10113
10205
|
flexColumn?: boolean | undefined;
|
|
10206
|
+
gap?: string | number | undefined;
|
|
10114
10207
|
pcbWidth?: string | number | undefined;
|
|
10115
10208
|
pcbHeight?: string | number | undefined;
|
|
10116
10209
|
schWidth?: string | number | undefined;
|
|
@@ -10131,6 +10224,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10131
10224
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10132
10225
|
flexRow?: boolean | undefined;
|
|
10133
10226
|
flexColumn?: boolean | undefined;
|
|
10227
|
+
gap?: string | number | undefined;
|
|
10134
10228
|
} | undefined;
|
|
10135
10229
|
schLayout?: {
|
|
10136
10230
|
grid?: boolean | undefined;
|
|
@@ -10148,6 +10242,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10148
10242
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10149
10243
|
flexRow?: boolean | undefined;
|
|
10150
10244
|
flexColumn?: boolean | undefined;
|
|
10245
|
+
gap?: string | number | undefined;
|
|
10151
10246
|
} | undefined;
|
|
10152
10247
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
10153
10248
|
manualEdits?: {
|
|
@@ -12966,6 +13061,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12966
13061
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
12967
13062
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
12968
13063
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
13064
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
12969
13065
|
}, "strip", z.ZodTypeAny, {
|
|
12970
13066
|
grid?: boolean | undefined;
|
|
12971
13067
|
flex?: string | boolean | undefined;
|
|
@@ -12982,6 +13078,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12982
13078
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
12983
13079
|
flexRow?: boolean | undefined;
|
|
12984
13080
|
flexColumn?: boolean | undefined;
|
|
13081
|
+
gap?: string | number | undefined;
|
|
12985
13082
|
}, {
|
|
12986
13083
|
grid?: boolean | undefined;
|
|
12987
13084
|
flex?: string | boolean | undefined;
|
|
@@ -12998,6 +13095,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12998
13095
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
12999
13096
|
flexRow?: boolean | undefined;
|
|
13000
13097
|
flexColumn?: boolean | undefined;
|
|
13098
|
+
gap?: string | number | undefined;
|
|
13001
13099
|
}>>;
|
|
13002
13100
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
13003
13101
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -13015,6 +13113,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13015
13113
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
13016
13114
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
13017
13115
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
13116
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
13018
13117
|
}, "strip", z.ZodTypeAny, {
|
|
13019
13118
|
grid?: boolean | undefined;
|
|
13020
13119
|
flex?: string | boolean | undefined;
|
|
@@ -13031,6 +13130,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13031
13130
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13032
13131
|
flexRow?: boolean | undefined;
|
|
13033
13132
|
flexColumn?: boolean | undefined;
|
|
13133
|
+
gap?: string | number | undefined;
|
|
13034
13134
|
}, {
|
|
13035
13135
|
grid?: boolean | undefined;
|
|
13036
13136
|
flex?: string | boolean | undefined;
|
|
@@ -13047,6 +13147,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13047
13147
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13048
13148
|
flexRow?: boolean | undefined;
|
|
13049
13149
|
flexColumn?: boolean | undefined;
|
|
13150
|
+
gap?: string | number | undefined;
|
|
13050
13151
|
}>>;
|
|
13051
13152
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
13052
13153
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -13063,6 +13164,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13063
13164
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
13064
13165
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
13065
13166
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
13167
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
13066
13168
|
name: z.ZodOptional<z.ZodString>;
|
|
13067
13169
|
children: z.ZodOptional<z.ZodAny>;
|
|
13068
13170
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -13293,6 +13395,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13293
13395
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13294
13396
|
flexRow?: boolean | undefined;
|
|
13295
13397
|
flexColumn?: boolean | undefined;
|
|
13398
|
+
gap?: string | number | undefined;
|
|
13296
13399
|
pcbWidth?: number | undefined;
|
|
13297
13400
|
pcbHeight?: number | undefined;
|
|
13298
13401
|
schWidth?: number | undefined;
|
|
@@ -13313,6 +13416,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13313
13416
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13314
13417
|
flexRow?: boolean | undefined;
|
|
13315
13418
|
flexColumn?: boolean | undefined;
|
|
13419
|
+
gap?: string | number | undefined;
|
|
13316
13420
|
} | undefined;
|
|
13317
13421
|
schLayout?: {
|
|
13318
13422
|
grid?: boolean | undefined;
|
|
@@ -13330,6 +13434,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13330
13434
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13331
13435
|
flexRow?: boolean | undefined;
|
|
13332
13436
|
flexColumn?: boolean | undefined;
|
|
13437
|
+
gap?: string | number | undefined;
|
|
13333
13438
|
} | undefined;
|
|
13334
13439
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
13335
13440
|
manualEdits?: {
|
|
@@ -13405,6 +13510,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13405
13510
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13406
13511
|
flexRow?: boolean | undefined;
|
|
13407
13512
|
flexColumn?: boolean | undefined;
|
|
13513
|
+
gap?: string | number | undefined;
|
|
13408
13514
|
pcbWidth?: string | number | undefined;
|
|
13409
13515
|
pcbHeight?: string | number | undefined;
|
|
13410
13516
|
schWidth?: string | number | undefined;
|
|
@@ -13425,6 +13531,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13425
13531
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13426
13532
|
flexRow?: boolean | undefined;
|
|
13427
13533
|
flexColumn?: boolean | undefined;
|
|
13534
|
+
gap?: string | number | undefined;
|
|
13428
13535
|
} | undefined;
|
|
13429
13536
|
schLayout?: {
|
|
13430
13537
|
grid?: boolean | undefined;
|
|
@@ -13442,6 +13549,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13442
13549
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13443
13550
|
flexRow?: boolean | undefined;
|
|
13444
13551
|
flexColumn?: boolean | undefined;
|
|
13552
|
+
gap?: string | number | undefined;
|
|
13445
13553
|
} | undefined;
|
|
13446
13554
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
13447
13555
|
manualEdits?: {
|