@tscircuit/props 0.0.197 → 0.0.198
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 +216 -108
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2707,7 +2707,7 @@ interface ManualEditsFile {
|
|
|
2707
2707
|
type ManualEditsFileInput = z.input<typeof manual_edits_file>;
|
|
2708
2708
|
|
|
2709
2709
|
declare const layoutConfig: z.ZodObject<{
|
|
2710
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
2710
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
2711
2711
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
2712
2712
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
2713
2713
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -2723,10 +2723,11 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2723
2723
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2724
2724
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2725
2725
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2726
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
2726
2727
|
}, "strip", z.ZodTypeAny, {
|
|
2727
2728
|
grid?: boolean | undefined;
|
|
2728
2729
|
flex?: string | boolean | undefined;
|
|
2729
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
2730
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
2730
2731
|
position?: "absolute" | "relative" | undefined;
|
|
2731
2732
|
gridCols?: string | number | undefined;
|
|
2732
2733
|
gridRows?: string | number | undefined;
|
|
@@ -2740,10 +2741,11 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2740
2741
|
flexRow?: boolean | undefined;
|
|
2741
2742
|
flexColumn?: boolean | undefined;
|
|
2742
2743
|
gap?: string | number | undefined;
|
|
2744
|
+
matchAdapt?: boolean | undefined;
|
|
2743
2745
|
}, {
|
|
2744
2746
|
grid?: boolean | undefined;
|
|
2745
2747
|
flex?: string | boolean | undefined;
|
|
2746
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
2748
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
2747
2749
|
position?: "absolute" | "relative" | undefined;
|
|
2748
2750
|
gridCols?: string | number | undefined;
|
|
2749
2751
|
gridRows?: string | number | undefined;
|
|
@@ -2757,9 +2759,10 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2757
2759
|
flexRow?: boolean | undefined;
|
|
2758
2760
|
flexColumn?: boolean | undefined;
|
|
2759
2761
|
gap?: string | number | undefined;
|
|
2762
|
+
matchAdapt?: boolean | undefined;
|
|
2760
2763
|
}>;
|
|
2761
2764
|
interface LayoutConfig {
|
|
2762
|
-
layoutMode?: "grid" | "flex" | "none";
|
|
2765
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none";
|
|
2763
2766
|
position?: "absolute" | "relative";
|
|
2764
2767
|
grid?: boolean;
|
|
2765
2768
|
gridCols?: number | string;
|
|
@@ -2775,6 +2778,7 @@ interface LayoutConfig {
|
|
|
2775
2778
|
flexRow?: boolean;
|
|
2776
2779
|
flexColumn?: boolean;
|
|
2777
2780
|
gap?: number | string;
|
|
2781
|
+
matchAdapt?: boolean;
|
|
2778
2782
|
}
|
|
2779
2783
|
interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
2780
2784
|
name?: string;
|
|
@@ -2914,7 +2918,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2914
2918
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2915
2919
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2916
2920
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
2917
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
2921
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
2918
2922
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
2919
2923
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
2920
2924
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -2930,10 +2934,11 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2930
2934
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2931
2935
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2932
2936
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2937
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
2933
2938
|
}, "strip", z.ZodTypeAny, {
|
|
2934
2939
|
grid?: boolean | undefined;
|
|
2935
2940
|
flex?: string | boolean | undefined;
|
|
2936
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
2941
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
2937
2942
|
position?: "absolute" | "relative" | undefined;
|
|
2938
2943
|
gridCols?: string | number | undefined;
|
|
2939
2944
|
gridRows?: string | number | undefined;
|
|
@@ -2947,10 +2952,11 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2947
2952
|
flexRow?: boolean | undefined;
|
|
2948
2953
|
flexColumn?: boolean | undefined;
|
|
2949
2954
|
gap?: string | number | undefined;
|
|
2955
|
+
matchAdapt?: boolean | undefined;
|
|
2950
2956
|
}, {
|
|
2951
2957
|
grid?: boolean | undefined;
|
|
2952
2958
|
flex?: string | boolean | undefined;
|
|
2953
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
2959
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
2954
2960
|
position?: "absolute" | "relative" | undefined;
|
|
2955
2961
|
gridCols?: string | number | undefined;
|
|
2956
2962
|
gridRows?: string | number | undefined;
|
|
@@ -2964,9 +2970,10 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2964
2970
|
flexRow?: boolean | undefined;
|
|
2965
2971
|
flexColumn?: boolean | undefined;
|
|
2966
2972
|
gap?: string | number | undefined;
|
|
2973
|
+
matchAdapt?: boolean | undefined;
|
|
2967
2974
|
}>>;
|
|
2968
2975
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
2969
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
2976
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
2970
2977
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
2971
2978
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
2972
2979
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -2982,10 +2989,11 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2982
2989
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2983
2990
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2984
2991
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2992
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
2985
2993
|
}, "strip", z.ZodTypeAny, {
|
|
2986
2994
|
grid?: boolean | undefined;
|
|
2987
2995
|
flex?: string | boolean | undefined;
|
|
2988
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
2996
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
2989
2997
|
position?: "absolute" | "relative" | undefined;
|
|
2990
2998
|
gridCols?: string | number | undefined;
|
|
2991
2999
|
gridRows?: string | number | undefined;
|
|
@@ -2999,10 +3007,11 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2999
3007
|
flexRow?: boolean | undefined;
|
|
3000
3008
|
flexColumn?: boolean | undefined;
|
|
3001
3009
|
gap?: string | number | undefined;
|
|
3010
|
+
matchAdapt?: boolean | undefined;
|
|
3002
3011
|
}, {
|
|
3003
3012
|
grid?: boolean | undefined;
|
|
3004
3013
|
flex?: string | boolean | undefined;
|
|
3005
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3014
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3006
3015
|
position?: "absolute" | "relative" | undefined;
|
|
3007
3016
|
gridCols?: string | number | undefined;
|
|
3008
3017
|
gridRows?: string | number | undefined;
|
|
@@ -3016,8 +3025,9 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3016
3025
|
flexRow?: boolean | undefined;
|
|
3017
3026
|
flexColumn?: boolean | undefined;
|
|
3018
3027
|
gap?: string | number | undefined;
|
|
3028
|
+
matchAdapt?: boolean | undefined;
|
|
3019
3029
|
}>>;
|
|
3020
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3030
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3021
3031
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3022
3032
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3023
3033
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3033,6 +3043,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3033
3043
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3034
3044
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3035
3045
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3046
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3036
3047
|
name: z.ZodOptional<z.ZodString>;
|
|
3037
3048
|
children: z.ZodOptional<z.ZodAny>;
|
|
3038
3049
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3050,7 +3061,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3050
3061
|
children?: any;
|
|
3051
3062
|
grid?: boolean | undefined;
|
|
3052
3063
|
flex?: string | boolean | undefined;
|
|
3053
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3064
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3054
3065
|
position?: "absolute" | "relative" | undefined;
|
|
3055
3066
|
gridCols?: string | number | undefined;
|
|
3056
3067
|
gridRows?: string | number | undefined;
|
|
@@ -3064,6 +3075,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3064
3075
|
flexRow?: boolean | undefined;
|
|
3065
3076
|
flexColumn?: boolean | undefined;
|
|
3066
3077
|
gap?: string | number | undefined;
|
|
3078
|
+
matchAdapt?: boolean | undefined;
|
|
3067
3079
|
pcbWidth?: number | undefined;
|
|
3068
3080
|
pcbHeight?: number | undefined;
|
|
3069
3081
|
schWidth?: number | undefined;
|
|
@@ -3071,7 +3083,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3071
3083
|
pcbLayout?: {
|
|
3072
3084
|
grid?: boolean | undefined;
|
|
3073
3085
|
flex?: string | boolean | undefined;
|
|
3074
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3086
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3075
3087
|
position?: "absolute" | "relative" | undefined;
|
|
3076
3088
|
gridCols?: string | number | undefined;
|
|
3077
3089
|
gridRows?: string | number | undefined;
|
|
@@ -3085,11 +3097,12 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3085
3097
|
flexRow?: boolean | undefined;
|
|
3086
3098
|
flexColumn?: boolean | undefined;
|
|
3087
3099
|
gap?: string | number | undefined;
|
|
3100
|
+
matchAdapt?: boolean | undefined;
|
|
3088
3101
|
} | undefined;
|
|
3089
3102
|
schLayout?: {
|
|
3090
3103
|
grid?: boolean | undefined;
|
|
3091
3104
|
flex?: string | boolean | undefined;
|
|
3092
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3105
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3093
3106
|
position?: "absolute" | "relative" | undefined;
|
|
3094
3107
|
gridCols?: string | number | undefined;
|
|
3095
3108
|
gridRows?: string | number | undefined;
|
|
@@ -3103,6 +3116,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3103
3116
|
flexRow?: boolean | undefined;
|
|
3104
3117
|
flexColumn?: boolean | undefined;
|
|
3105
3118
|
gap?: string | number | undefined;
|
|
3119
|
+
matchAdapt?: boolean | undefined;
|
|
3106
3120
|
} | undefined;
|
|
3107
3121
|
}, {
|
|
3108
3122
|
pcbX?: string | number | undefined;
|
|
@@ -3120,7 +3134,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3120
3134
|
children?: any;
|
|
3121
3135
|
grid?: boolean | undefined;
|
|
3122
3136
|
flex?: string | boolean | undefined;
|
|
3123
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3137
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3124
3138
|
position?: "absolute" | "relative" | undefined;
|
|
3125
3139
|
gridCols?: string | number | undefined;
|
|
3126
3140
|
gridRows?: string | number | undefined;
|
|
@@ -3134,6 +3148,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3134
3148
|
flexRow?: boolean | undefined;
|
|
3135
3149
|
flexColumn?: boolean | undefined;
|
|
3136
3150
|
gap?: string | number | undefined;
|
|
3151
|
+
matchAdapt?: boolean | undefined;
|
|
3137
3152
|
pcbWidth?: string | number | undefined;
|
|
3138
3153
|
pcbHeight?: string | number | undefined;
|
|
3139
3154
|
schWidth?: string | number | undefined;
|
|
@@ -3141,7 +3156,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3141
3156
|
pcbLayout?: {
|
|
3142
3157
|
grid?: boolean | undefined;
|
|
3143
3158
|
flex?: string | boolean | undefined;
|
|
3144
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3159
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3145
3160
|
position?: "absolute" | "relative" | undefined;
|
|
3146
3161
|
gridCols?: string | number | undefined;
|
|
3147
3162
|
gridRows?: string | number | undefined;
|
|
@@ -3155,11 +3170,12 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3155
3170
|
flexRow?: boolean | undefined;
|
|
3156
3171
|
flexColumn?: boolean | undefined;
|
|
3157
3172
|
gap?: string | number | undefined;
|
|
3173
|
+
matchAdapt?: boolean | undefined;
|
|
3158
3174
|
} | undefined;
|
|
3159
3175
|
schLayout?: {
|
|
3160
3176
|
grid?: boolean | undefined;
|
|
3161
3177
|
flex?: string | boolean | undefined;
|
|
3162
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3178
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3163
3179
|
position?: "absolute" | "relative" | undefined;
|
|
3164
3180
|
gridCols?: string | number | undefined;
|
|
3165
3181
|
gridRows?: string | number | undefined;
|
|
@@ -3173,6 +3189,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3173
3189
|
flexRow?: boolean | undefined;
|
|
3174
3190
|
flexColumn?: boolean | undefined;
|
|
3175
3191
|
gap?: string | number | undefined;
|
|
3192
|
+
matchAdapt?: boolean | undefined;
|
|
3176
3193
|
} | undefined;
|
|
3177
3194
|
}>;
|
|
3178
3195
|
declare const partsEngine: z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>;
|
|
@@ -3199,7 +3216,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3199
3216
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3200
3217
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3201
3218
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
3202
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3219
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3203
3220
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3204
3221
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3205
3222
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3215,10 +3232,11 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3215
3232
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3216
3233
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3217
3234
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3235
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3218
3236
|
}, "strip", z.ZodTypeAny, {
|
|
3219
3237
|
grid?: boolean | undefined;
|
|
3220
3238
|
flex?: string | boolean | undefined;
|
|
3221
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3239
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3222
3240
|
position?: "absolute" | "relative" | undefined;
|
|
3223
3241
|
gridCols?: string | number | undefined;
|
|
3224
3242
|
gridRows?: string | number | undefined;
|
|
@@ -3232,10 +3250,11 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3232
3250
|
flexRow?: boolean | undefined;
|
|
3233
3251
|
flexColumn?: boolean | undefined;
|
|
3234
3252
|
gap?: string | number | undefined;
|
|
3253
|
+
matchAdapt?: boolean | undefined;
|
|
3235
3254
|
}, {
|
|
3236
3255
|
grid?: boolean | undefined;
|
|
3237
3256
|
flex?: string | boolean | undefined;
|
|
3238
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3257
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3239
3258
|
position?: "absolute" | "relative" | undefined;
|
|
3240
3259
|
gridCols?: string | number | undefined;
|
|
3241
3260
|
gridRows?: string | number | undefined;
|
|
@@ -3249,9 +3268,10 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3249
3268
|
flexRow?: boolean | undefined;
|
|
3250
3269
|
flexColumn?: boolean | undefined;
|
|
3251
3270
|
gap?: string | number | undefined;
|
|
3271
|
+
matchAdapt?: boolean | undefined;
|
|
3252
3272
|
}>>;
|
|
3253
3273
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3254
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3274
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3255
3275
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3256
3276
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3257
3277
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3267,10 +3287,11 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3267
3287
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3268
3288
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3269
3289
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3290
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3270
3291
|
}, "strip", z.ZodTypeAny, {
|
|
3271
3292
|
grid?: boolean | undefined;
|
|
3272
3293
|
flex?: string | boolean | undefined;
|
|
3273
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3294
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3274
3295
|
position?: "absolute" | "relative" | undefined;
|
|
3275
3296
|
gridCols?: string | number | undefined;
|
|
3276
3297
|
gridRows?: string | number | undefined;
|
|
@@ -3284,10 +3305,11 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3284
3305
|
flexRow?: boolean | undefined;
|
|
3285
3306
|
flexColumn?: boolean | undefined;
|
|
3286
3307
|
gap?: string | number | undefined;
|
|
3308
|
+
matchAdapt?: boolean | undefined;
|
|
3287
3309
|
}, {
|
|
3288
3310
|
grid?: boolean | undefined;
|
|
3289
3311
|
flex?: string | boolean | undefined;
|
|
3290
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3312
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3291
3313
|
position?: "absolute" | "relative" | undefined;
|
|
3292
3314
|
gridCols?: string | number | undefined;
|
|
3293
3315
|
gridRows?: string | number | undefined;
|
|
@@ -3301,8 +3323,9 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3301
3323
|
flexRow?: boolean | undefined;
|
|
3302
3324
|
flexColumn?: boolean | undefined;
|
|
3303
3325
|
gap?: string | number | undefined;
|
|
3326
|
+
matchAdapt?: boolean | undefined;
|
|
3304
3327
|
}>>;
|
|
3305
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3328
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3306
3329
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3307
3330
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3308
3331
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3318,6 +3341,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3318
3341
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3319
3342
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3320
3343
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3344
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3321
3345
|
name: z.ZodOptional<z.ZodString>;
|
|
3322
3346
|
children: z.ZodOptional<z.ZodAny>;
|
|
3323
3347
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3538,7 +3562,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3538
3562
|
children?: any;
|
|
3539
3563
|
grid?: boolean | undefined;
|
|
3540
3564
|
flex?: string | boolean | undefined;
|
|
3541
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3565
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3542
3566
|
position?: "absolute" | "relative" | undefined;
|
|
3543
3567
|
gridCols?: string | number | undefined;
|
|
3544
3568
|
gridRows?: string | number | undefined;
|
|
@@ -3552,6 +3576,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3552
3576
|
flexRow?: boolean | undefined;
|
|
3553
3577
|
flexColumn?: boolean | undefined;
|
|
3554
3578
|
gap?: string | number | undefined;
|
|
3579
|
+
matchAdapt?: boolean | undefined;
|
|
3555
3580
|
pcbWidth?: number | undefined;
|
|
3556
3581
|
pcbHeight?: number | undefined;
|
|
3557
3582
|
schWidth?: number | undefined;
|
|
@@ -3559,7 +3584,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3559
3584
|
pcbLayout?: {
|
|
3560
3585
|
grid?: boolean | undefined;
|
|
3561
3586
|
flex?: string | boolean | undefined;
|
|
3562
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3587
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3563
3588
|
position?: "absolute" | "relative" | undefined;
|
|
3564
3589
|
gridCols?: string | number | undefined;
|
|
3565
3590
|
gridRows?: string | number | undefined;
|
|
@@ -3573,11 +3598,12 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3573
3598
|
flexRow?: boolean | undefined;
|
|
3574
3599
|
flexColumn?: boolean | undefined;
|
|
3575
3600
|
gap?: string | number | undefined;
|
|
3601
|
+
matchAdapt?: boolean | undefined;
|
|
3576
3602
|
} | undefined;
|
|
3577
3603
|
schLayout?: {
|
|
3578
3604
|
grid?: boolean | undefined;
|
|
3579
3605
|
flex?: string | boolean | undefined;
|
|
3580
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3606
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3581
3607
|
position?: "absolute" | "relative" | undefined;
|
|
3582
3608
|
gridCols?: string | number | undefined;
|
|
3583
3609
|
gridRows?: string | number | undefined;
|
|
@@ -3591,6 +3617,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3591
3617
|
flexRow?: boolean | undefined;
|
|
3592
3618
|
flexColumn?: boolean | undefined;
|
|
3593
3619
|
gap?: string | number | undefined;
|
|
3620
|
+
matchAdapt?: boolean | undefined;
|
|
3594
3621
|
} | undefined;
|
|
3595
3622
|
layout?: LayoutBuilder | undefined;
|
|
3596
3623
|
manualEdits?: {
|
|
@@ -3654,7 +3681,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3654
3681
|
children?: any;
|
|
3655
3682
|
grid?: boolean | undefined;
|
|
3656
3683
|
flex?: string | boolean | undefined;
|
|
3657
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3684
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3658
3685
|
position?: "absolute" | "relative" | undefined;
|
|
3659
3686
|
gridCols?: string | number | undefined;
|
|
3660
3687
|
gridRows?: string | number | undefined;
|
|
@@ -3668,6 +3695,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3668
3695
|
flexRow?: boolean | undefined;
|
|
3669
3696
|
flexColumn?: boolean | undefined;
|
|
3670
3697
|
gap?: string | number | undefined;
|
|
3698
|
+
matchAdapt?: boolean | undefined;
|
|
3671
3699
|
pcbWidth?: string | number | undefined;
|
|
3672
3700
|
pcbHeight?: string | number | undefined;
|
|
3673
3701
|
schWidth?: string | number | undefined;
|
|
@@ -3675,7 +3703,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3675
3703
|
pcbLayout?: {
|
|
3676
3704
|
grid?: boolean | undefined;
|
|
3677
3705
|
flex?: string | boolean | undefined;
|
|
3678
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3706
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3679
3707
|
position?: "absolute" | "relative" | undefined;
|
|
3680
3708
|
gridCols?: string | number | undefined;
|
|
3681
3709
|
gridRows?: string | number | undefined;
|
|
@@ -3689,11 +3717,12 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3689
3717
|
flexRow?: boolean | undefined;
|
|
3690
3718
|
flexColumn?: boolean | undefined;
|
|
3691
3719
|
gap?: string | number | undefined;
|
|
3720
|
+
matchAdapt?: boolean | undefined;
|
|
3692
3721
|
} | undefined;
|
|
3693
3722
|
schLayout?: {
|
|
3694
3723
|
grid?: boolean | undefined;
|
|
3695
3724
|
flex?: string | boolean | undefined;
|
|
3696
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3725
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3697
3726
|
position?: "absolute" | "relative" | undefined;
|
|
3698
3727
|
gridCols?: string | number | undefined;
|
|
3699
3728
|
gridRows?: string | number | undefined;
|
|
@@ -3707,6 +3736,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3707
3736
|
flexRow?: boolean | undefined;
|
|
3708
3737
|
flexColumn?: boolean | undefined;
|
|
3709
3738
|
gap?: string | number | undefined;
|
|
3739
|
+
matchAdapt?: boolean | undefined;
|
|
3710
3740
|
} | undefined;
|
|
3711
3741
|
layout?: LayoutBuilder | undefined;
|
|
3712
3742
|
manualEdits?: {
|
|
@@ -3780,7 +3810,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3780
3810
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3781
3811
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3782
3812
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
3783
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3813
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3784
3814
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3785
3815
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3786
3816
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3796,10 +3826,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3796
3826
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3797
3827
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3798
3828
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3829
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3799
3830
|
}, "strip", z.ZodTypeAny, {
|
|
3800
3831
|
grid?: boolean | undefined;
|
|
3801
3832
|
flex?: string | boolean | undefined;
|
|
3802
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3833
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3803
3834
|
position?: "absolute" | "relative" | undefined;
|
|
3804
3835
|
gridCols?: string | number | undefined;
|
|
3805
3836
|
gridRows?: string | number | undefined;
|
|
@@ -3813,10 +3844,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3813
3844
|
flexRow?: boolean | undefined;
|
|
3814
3845
|
flexColumn?: boolean | undefined;
|
|
3815
3846
|
gap?: string | number | undefined;
|
|
3847
|
+
matchAdapt?: boolean | undefined;
|
|
3816
3848
|
}, {
|
|
3817
3849
|
grid?: boolean | undefined;
|
|
3818
3850
|
flex?: string | boolean | undefined;
|
|
3819
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3851
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3820
3852
|
position?: "absolute" | "relative" | undefined;
|
|
3821
3853
|
gridCols?: string | number | undefined;
|
|
3822
3854
|
gridRows?: string | number | undefined;
|
|
@@ -3830,9 +3862,10 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3830
3862
|
flexRow?: boolean | undefined;
|
|
3831
3863
|
flexColumn?: boolean | undefined;
|
|
3832
3864
|
gap?: string | number | undefined;
|
|
3865
|
+
matchAdapt?: boolean | undefined;
|
|
3833
3866
|
}>>;
|
|
3834
3867
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3835
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3868
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3836
3869
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3837
3870
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3838
3871
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3848,10 +3881,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3848
3881
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3849
3882
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3850
3883
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3884
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3851
3885
|
}, "strip", z.ZodTypeAny, {
|
|
3852
3886
|
grid?: boolean | undefined;
|
|
3853
3887
|
flex?: string | boolean | undefined;
|
|
3854
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3888
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3855
3889
|
position?: "absolute" | "relative" | undefined;
|
|
3856
3890
|
gridCols?: string | number | undefined;
|
|
3857
3891
|
gridRows?: string | number | undefined;
|
|
@@ -3865,10 +3899,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3865
3899
|
flexRow?: boolean | undefined;
|
|
3866
3900
|
flexColumn?: boolean | undefined;
|
|
3867
3901
|
gap?: string | number | undefined;
|
|
3902
|
+
matchAdapt?: boolean | undefined;
|
|
3868
3903
|
}, {
|
|
3869
3904
|
grid?: boolean | undefined;
|
|
3870
3905
|
flex?: string | boolean | undefined;
|
|
3871
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
3906
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
3872
3907
|
position?: "absolute" | "relative" | undefined;
|
|
3873
3908
|
gridCols?: string | number | undefined;
|
|
3874
3909
|
gridRows?: string | number | undefined;
|
|
@@ -3882,8 +3917,9 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3882
3917
|
flexRow?: boolean | undefined;
|
|
3883
3918
|
flexColumn?: boolean | undefined;
|
|
3884
3919
|
gap?: string | number | undefined;
|
|
3920
|
+
matchAdapt?: boolean | undefined;
|
|
3885
3921
|
}>>;
|
|
3886
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3922
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3887
3923
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3888
3924
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3889
3925
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3899,6 +3935,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3899
3935
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3900
3936
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3901
3937
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3938
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3902
3939
|
name: z.ZodOptional<z.ZodString>;
|
|
3903
3940
|
children: z.ZodOptional<z.ZodAny>;
|
|
3904
3941
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4122,7 +4159,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4122
4159
|
children?: any;
|
|
4123
4160
|
grid?: boolean | undefined;
|
|
4124
4161
|
flex?: string | boolean | undefined;
|
|
4125
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4162
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4126
4163
|
position?: "absolute" | "relative" | undefined;
|
|
4127
4164
|
gridCols?: string | number | undefined;
|
|
4128
4165
|
gridRows?: string | number | undefined;
|
|
@@ -4136,6 +4173,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4136
4173
|
flexRow?: boolean | undefined;
|
|
4137
4174
|
flexColumn?: boolean | undefined;
|
|
4138
4175
|
gap?: string | number | undefined;
|
|
4176
|
+
matchAdapt?: boolean | undefined;
|
|
4139
4177
|
pcbWidth?: number | undefined;
|
|
4140
4178
|
pcbHeight?: number | undefined;
|
|
4141
4179
|
schWidth?: number | undefined;
|
|
@@ -4143,7 +4181,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4143
4181
|
pcbLayout?: {
|
|
4144
4182
|
grid?: boolean | undefined;
|
|
4145
4183
|
flex?: string | boolean | undefined;
|
|
4146
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4184
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4147
4185
|
position?: "absolute" | "relative" | undefined;
|
|
4148
4186
|
gridCols?: string | number | undefined;
|
|
4149
4187
|
gridRows?: string | number | undefined;
|
|
@@ -4157,11 +4195,12 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4157
4195
|
flexRow?: boolean | undefined;
|
|
4158
4196
|
flexColumn?: boolean | undefined;
|
|
4159
4197
|
gap?: string | number | undefined;
|
|
4198
|
+
matchAdapt?: boolean | undefined;
|
|
4160
4199
|
} | undefined;
|
|
4161
4200
|
schLayout?: {
|
|
4162
4201
|
grid?: boolean | undefined;
|
|
4163
4202
|
flex?: string | boolean | undefined;
|
|
4164
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4203
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4165
4204
|
position?: "absolute" | "relative" | undefined;
|
|
4166
4205
|
gridCols?: string | number | undefined;
|
|
4167
4206
|
gridRows?: string | number | undefined;
|
|
@@ -4175,6 +4214,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4175
4214
|
flexRow?: boolean | undefined;
|
|
4176
4215
|
flexColumn?: boolean | undefined;
|
|
4177
4216
|
gap?: string | number | undefined;
|
|
4217
|
+
matchAdapt?: boolean | undefined;
|
|
4178
4218
|
} | undefined;
|
|
4179
4219
|
layout?: LayoutBuilder | undefined;
|
|
4180
4220
|
manualEdits?: {
|
|
@@ -4239,7 +4279,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4239
4279
|
children?: any;
|
|
4240
4280
|
grid?: boolean | undefined;
|
|
4241
4281
|
flex?: string | boolean | undefined;
|
|
4242
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4282
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4243
4283
|
position?: "absolute" | "relative" | undefined;
|
|
4244
4284
|
gridCols?: string | number | undefined;
|
|
4245
4285
|
gridRows?: string | number | undefined;
|
|
@@ -4253,6 +4293,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4253
4293
|
flexRow?: boolean | undefined;
|
|
4254
4294
|
flexColumn?: boolean | undefined;
|
|
4255
4295
|
gap?: string | number | undefined;
|
|
4296
|
+
matchAdapt?: boolean | undefined;
|
|
4256
4297
|
pcbWidth?: string | number | undefined;
|
|
4257
4298
|
pcbHeight?: string | number | undefined;
|
|
4258
4299
|
schWidth?: string | number | undefined;
|
|
@@ -4260,7 +4301,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4260
4301
|
pcbLayout?: {
|
|
4261
4302
|
grid?: boolean | undefined;
|
|
4262
4303
|
flex?: string | boolean | undefined;
|
|
4263
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4304
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4264
4305
|
position?: "absolute" | "relative" | undefined;
|
|
4265
4306
|
gridCols?: string | number | undefined;
|
|
4266
4307
|
gridRows?: string | number | undefined;
|
|
@@ -4274,11 +4315,12 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4274
4315
|
flexRow?: boolean | undefined;
|
|
4275
4316
|
flexColumn?: boolean | undefined;
|
|
4276
4317
|
gap?: string | number | undefined;
|
|
4318
|
+
matchAdapt?: boolean | undefined;
|
|
4277
4319
|
} | undefined;
|
|
4278
4320
|
schLayout?: {
|
|
4279
4321
|
grid?: boolean | undefined;
|
|
4280
4322
|
flex?: string | boolean | undefined;
|
|
4281
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4323
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4282
4324
|
position?: "absolute" | "relative" | undefined;
|
|
4283
4325
|
gridCols?: string | number | undefined;
|
|
4284
4326
|
gridRows?: string | number | undefined;
|
|
@@ -4292,6 +4334,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4292
4334
|
flexRow?: boolean | undefined;
|
|
4293
4335
|
flexColumn?: boolean | undefined;
|
|
4294
4336
|
gap?: string | number | undefined;
|
|
4337
|
+
matchAdapt?: boolean | undefined;
|
|
4295
4338
|
} | undefined;
|
|
4296
4339
|
layout?: LayoutBuilder | undefined;
|
|
4297
4340
|
manualEdits?: {
|
|
@@ -4365,7 +4408,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4365
4408
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4366
4409
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4367
4410
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
4368
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4411
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4369
4412
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4370
4413
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4371
4414
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4381,10 +4424,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4381
4424
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4382
4425
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4383
4426
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4427
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4384
4428
|
}, "strip", z.ZodTypeAny, {
|
|
4385
4429
|
grid?: boolean | undefined;
|
|
4386
4430
|
flex?: string | boolean | undefined;
|
|
4387
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4431
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4388
4432
|
position?: "absolute" | "relative" | undefined;
|
|
4389
4433
|
gridCols?: string | number | undefined;
|
|
4390
4434
|
gridRows?: string | number | undefined;
|
|
@@ -4398,10 +4442,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4398
4442
|
flexRow?: boolean | undefined;
|
|
4399
4443
|
flexColumn?: boolean | undefined;
|
|
4400
4444
|
gap?: string | number | undefined;
|
|
4445
|
+
matchAdapt?: boolean | undefined;
|
|
4401
4446
|
}, {
|
|
4402
4447
|
grid?: boolean | undefined;
|
|
4403
4448
|
flex?: string | boolean | undefined;
|
|
4404
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4449
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4405
4450
|
position?: "absolute" | "relative" | undefined;
|
|
4406
4451
|
gridCols?: string | number | undefined;
|
|
4407
4452
|
gridRows?: string | number | undefined;
|
|
@@ -4415,9 +4460,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4415
4460
|
flexRow?: boolean | undefined;
|
|
4416
4461
|
flexColumn?: boolean | undefined;
|
|
4417
4462
|
gap?: string | number | undefined;
|
|
4463
|
+
matchAdapt?: boolean | undefined;
|
|
4418
4464
|
}>>;
|
|
4419
4465
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4420
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4466
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4421
4467
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4422
4468
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4423
4469
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4433,10 +4479,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4433
4479
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4434
4480
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4435
4481
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4482
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4436
4483
|
}, "strip", z.ZodTypeAny, {
|
|
4437
4484
|
grid?: boolean | undefined;
|
|
4438
4485
|
flex?: string | boolean | undefined;
|
|
4439
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4486
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4440
4487
|
position?: "absolute" | "relative" | undefined;
|
|
4441
4488
|
gridCols?: string | number | undefined;
|
|
4442
4489
|
gridRows?: string | number | undefined;
|
|
@@ -4450,10 +4497,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4450
4497
|
flexRow?: boolean | undefined;
|
|
4451
4498
|
flexColumn?: boolean | undefined;
|
|
4452
4499
|
gap?: string | number | undefined;
|
|
4500
|
+
matchAdapt?: boolean | undefined;
|
|
4453
4501
|
}, {
|
|
4454
4502
|
grid?: boolean | undefined;
|
|
4455
4503
|
flex?: string | boolean | undefined;
|
|
4456
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4504
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4457
4505
|
position?: "absolute" | "relative" | undefined;
|
|
4458
4506
|
gridCols?: string | number | undefined;
|
|
4459
4507
|
gridRows?: string | number | undefined;
|
|
@@ -4467,8 +4515,9 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4467
4515
|
flexRow?: boolean | undefined;
|
|
4468
4516
|
flexColumn?: boolean | undefined;
|
|
4469
4517
|
gap?: string | number | undefined;
|
|
4518
|
+
matchAdapt?: boolean | undefined;
|
|
4470
4519
|
}>>;
|
|
4471
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4520
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4472
4521
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4473
4522
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4474
4523
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4484,6 +4533,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4484
4533
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4485
4534
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4486
4535
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4536
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4487
4537
|
name: z.ZodOptional<z.ZodString>;
|
|
4488
4538
|
children: z.ZodOptional<z.ZodAny>;
|
|
4489
4539
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4503,7 +4553,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4503
4553
|
children?: any;
|
|
4504
4554
|
grid?: boolean | undefined;
|
|
4505
4555
|
flex?: string | boolean | undefined;
|
|
4506
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4556
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4507
4557
|
position?: "absolute" | "relative" | undefined;
|
|
4508
4558
|
gridCols?: string | number | undefined;
|
|
4509
4559
|
gridRows?: string | number | undefined;
|
|
@@ -4517,6 +4567,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4517
4567
|
flexRow?: boolean | undefined;
|
|
4518
4568
|
flexColumn?: boolean | undefined;
|
|
4519
4569
|
gap?: string | number | undefined;
|
|
4570
|
+
matchAdapt?: boolean | undefined;
|
|
4520
4571
|
pcbWidth?: number | undefined;
|
|
4521
4572
|
pcbHeight?: number | undefined;
|
|
4522
4573
|
schWidth?: number | undefined;
|
|
@@ -4524,7 +4575,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4524
4575
|
pcbLayout?: {
|
|
4525
4576
|
grid?: boolean | undefined;
|
|
4526
4577
|
flex?: string | boolean | undefined;
|
|
4527
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4578
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4528
4579
|
position?: "absolute" | "relative" | undefined;
|
|
4529
4580
|
gridCols?: string | number | undefined;
|
|
4530
4581
|
gridRows?: string | number | undefined;
|
|
@@ -4538,11 +4589,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4538
4589
|
flexRow?: boolean | undefined;
|
|
4539
4590
|
flexColumn?: boolean | undefined;
|
|
4540
4591
|
gap?: string | number | undefined;
|
|
4592
|
+
matchAdapt?: boolean | undefined;
|
|
4541
4593
|
} | undefined;
|
|
4542
4594
|
schLayout?: {
|
|
4543
4595
|
grid?: boolean | undefined;
|
|
4544
4596
|
flex?: string | boolean | undefined;
|
|
4545
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4597
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4546
4598
|
position?: "absolute" | "relative" | undefined;
|
|
4547
4599
|
gridCols?: string | number | undefined;
|
|
4548
4600
|
gridRows?: string | number | undefined;
|
|
@@ -4556,6 +4608,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4556
4608
|
flexRow?: boolean | undefined;
|
|
4557
4609
|
flexColumn?: boolean | undefined;
|
|
4558
4610
|
gap?: string | number | undefined;
|
|
4611
|
+
matchAdapt?: boolean | undefined;
|
|
4559
4612
|
} | undefined;
|
|
4560
4613
|
subcircuit?: false | undefined;
|
|
4561
4614
|
}, {
|
|
@@ -4574,7 +4627,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4574
4627
|
children?: any;
|
|
4575
4628
|
grid?: boolean | undefined;
|
|
4576
4629
|
flex?: string | boolean | undefined;
|
|
4577
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4630
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4578
4631
|
position?: "absolute" | "relative" | undefined;
|
|
4579
4632
|
gridCols?: string | number | undefined;
|
|
4580
4633
|
gridRows?: string | number | undefined;
|
|
@@ -4588,6 +4641,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4588
4641
|
flexRow?: boolean | undefined;
|
|
4589
4642
|
flexColumn?: boolean | undefined;
|
|
4590
4643
|
gap?: string | number | undefined;
|
|
4644
|
+
matchAdapt?: boolean | undefined;
|
|
4591
4645
|
pcbWidth?: string | number | undefined;
|
|
4592
4646
|
pcbHeight?: string | number | undefined;
|
|
4593
4647
|
schWidth?: string | number | undefined;
|
|
@@ -4595,7 +4649,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4595
4649
|
pcbLayout?: {
|
|
4596
4650
|
grid?: boolean | undefined;
|
|
4597
4651
|
flex?: string | boolean | undefined;
|
|
4598
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4652
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4599
4653
|
position?: "absolute" | "relative" | undefined;
|
|
4600
4654
|
gridCols?: string | number | undefined;
|
|
4601
4655
|
gridRows?: string | number | undefined;
|
|
@@ -4609,11 +4663,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4609
4663
|
flexRow?: boolean | undefined;
|
|
4610
4664
|
flexColumn?: boolean | undefined;
|
|
4611
4665
|
gap?: string | number | undefined;
|
|
4666
|
+
matchAdapt?: boolean | undefined;
|
|
4612
4667
|
} | undefined;
|
|
4613
4668
|
schLayout?: {
|
|
4614
4669
|
grid?: boolean | undefined;
|
|
4615
4670
|
flex?: string | boolean | undefined;
|
|
4616
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4671
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4617
4672
|
position?: "absolute" | "relative" | undefined;
|
|
4618
4673
|
gridCols?: string | number | undefined;
|
|
4619
4674
|
gridRows?: string | number | undefined;
|
|
@@ -4627,6 +4682,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4627
4682
|
flexRow?: boolean | undefined;
|
|
4628
4683
|
flexColumn?: boolean | undefined;
|
|
4629
4684
|
gap?: string | number | undefined;
|
|
4685
|
+
matchAdapt?: boolean | undefined;
|
|
4630
4686
|
} | undefined;
|
|
4631
4687
|
subcircuit?: false | undefined;
|
|
4632
4688
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -4652,7 +4708,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4652
4708
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4653
4709
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4654
4710
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
4655
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4711
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4656
4712
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4657
4713
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4658
4714
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4668,10 +4724,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4668
4724
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4669
4725
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4670
4726
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4727
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4671
4728
|
}, "strip", z.ZodTypeAny, {
|
|
4672
4729
|
grid?: boolean | undefined;
|
|
4673
4730
|
flex?: string | boolean | undefined;
|
|
4674
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4731
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4675
4732
|
position?: "absolute" | "relative" | undefined;
|
|
4676
4733
|
gridCols?: string | number | undefined;
|
|
4677
4734
|
gridRows?: string | number | undefined;
|
|
@@ -4685,10 +4742,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4685
4742
|
flexRow?: boolean | undefined;
|
|
4686
4743
|
flexColumn?: boolean | undefined;
|
|
4687
4744
|
gap?: string | number | undefined;
|
|
4745
|
+
matchAdapt?: boolean | undefined;
|
|
4688
4746
|
}, {
|
|
4689
4747
|
grid?: boolean | undefined;
|
|
4690
4748
|
flex?: string | boolean | undefined;
|
|
4691
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4749
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4692
4750
|
position?: "absolute" | "relative" | undefined;
|
|
4693
4751
|
gridCols?: string | number | undefined;
|
|
4694
4752
|
gridRows?: string | number | undefined;
|
|
@@ -4702,9 +4760,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4702
4760
|
flexRow?: boolean | undefined;
|
|
4703
4761
|
flexColumn?: boolean | undefined;
|
|
4704
4762
|
gap?: string | number | undefined;
|
|
4763
|
+
matchAdapt?: boolean | undefined;
|
|
4705
4764
|
}>>;
|
|
4706
4765
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4707
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4766
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4708
4767
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4709
4768
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4710
4769
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4720,10 +4779,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4720
4779
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4721
4780
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4722
4781
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4782
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4723
4783
|
}, "strip", z.ZodTypeAny, {
|
|
4724
4784
|
grid?: boolean | undefined;
|
|
4725
4785
|
flex?: string | boolean | undefined;
|
|
4726
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4786
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4727
4787
|
position?: "absolute" | "relative" | undefined;
|
|
4728
4788
|
gridCols?: string | number | undefined;
|
|
4729
4789
|
gridRows?: string | number | undefined;
|
|
@@ -4737,10 +4797,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4737
4797
|
flexRow?: boolean | undefined;
|
|
4738
4798
|
flexColumn?: boolean | undefined;
|
|
4739
4799
|
gap?: string | number | undefined;
|
|
4800
|
+
matchAdapt?: boolean | undefined;
|
|
4740
4801
|
}, {
|
|
4741
4802
|
grid?: boolean | undefined;
|
|
4742
4803
|
flex?: string | boolean | undefined;
|
|
4743
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
4804
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4744
4805
|
position?: "absolute" | "relative" | undefined;
|
|
4745
4806
|
gridCols?: string | number | undefined;
|
|
4746
4807
|
gridRows?: string | number | undefined;
|
|
@@ -4754,8 +4815,9 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4754
4815
|
flexRow?: boolean | undefined;
|
|
4755
4816
|
flexColumn?: boolean | undefined;
|
|
4756
4817
|
gap?: string | number | undefined;
|
|
4818
|
+
matchAdapt?: boolean | undefined;
|
|
4757
4819
|
}>>;
|
|
4758
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4820
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4759
4821
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4760
4822
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4761
4823
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4771,6 +4833,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4771
4833
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4772
4834
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4773
4835
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4836
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4774
4837
|
name: z.ZodOptional<z.ZodString>;
|
|
4775
4838
|
children: z.ZodOptional<z.ZodAny>;
|
|
4776
4839
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4994,7 +5057,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4994
5057
|
children?: any;
|
|
4995
5058
|
grid?: boolean | undefined;
|
|
4996
5059
|
flex?: string | boolean | undefined;
|
|
4997
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5060
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
4998
5061
|
position?: "absolute" | "relative" | undefined;
|
|
4999
5062
|
gridCols?: string | number | undefined;
|
|
5000
5063
|
gridRows?: string | number | undefined;
|
|
@@ -5008,6 +5071,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5008
5071
|
flexRow?: boolean | undefined;
|
|
5009
5072
|
flexColumn?: boolean | undefined;
|
|
5010
5073
|
gap?: string | number | undefined;
|
|
5074
|
+
matchAdapt?: boolean | undefined;
|
|
5011
5075
|
pcbWidth?: number | undefined;
|
|
5012
5076
|
pcbHeight?: number | undefined;
|
|
5013
5077
|
schWidth?: number | undefined;
|
|
@@ -5015,7 +5079,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5015
5079
|
pcbLayout?: {
|
|
5016
5080
|
grid?: boolean | undefined;
|
|
5017
5081
|
flex?: string | boolean | undefined;
|
|
5018
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5082
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5019
5083
|
position?: "absolute" | "relative" | undefined;
|
|
5020
5084
|
gridCols?: string | number | undefined;
|
|
5021
5085
|
gridRows?: string | number | undefined;
|
|
@@ -5029,11 +5093,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5029
5093
|
flexRow?: boolean | undefined;
|
|
5030
5094
|
flexColumn?: boolean | undefined;
|
|
5031
5095
|
gap?: string | number | undefined;
|
|
5096
|
+
matchAdapt?: boolean | undefined;
|
|
5032
5097
|
} | undefined;
|
|
5033
5098
|
schLayout?: {
|
|
5034
5099
|
grid?: boolean | undefined;
|
|
5035
5100
|
flex?: string | boolean | undefined;
|
|
5036
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5101
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5037
5102
|
position?: "absolute" | "relative" | undefined;
|
|
5038
5103
|
gridCols?: string | number | undefined;
|
|
5039
5104
|
gridRows?: string | number | undefined;
|
|
@@ -5047,6 +5112,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5047
5112
|
flexRow?: boolean | undefined;
|
|
5048
5113
|
flexColumn?: boolean | undefined;
|
|
5049
5114
|
gap?: string | number | undefined;
|
|
5115
|
+
matchAdapt?: boolean | undefined;
|
|
5050
5116
|
} | undefined;
|
|
5051
5117
|
layout?: LayoutBuilder | undefined;
|
|
5052
5118
|
manualEdits?: {
|
|
@@ -5111,7 +5177,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5111
5177
|
children?: any;
|
|
5112
5178
|
grid?: boolean | undefined;
|
|
5113
5179
|
flex?: string | boolean | undefined;
|
|
5114
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5180
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5115
5181
|
position?: "absolute" | "relative" | undefined;
|
|
5116
5182
|
gridCols?: string | number | undefined;
|
|
5117
5183
|
gridRows?: string | number | undefined;
|
|
@@ -5125,6 +5191,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5125
5191
|
flexRow?: boolean | undefined;
|
|
5126
5192
|
flexColumn?: boolean | undefined;
|
|
5127
5193
|
gap?: string | number | undefined;
|
|
5194
|
+
matchAdapt?: boolean | undefined;
|
|
5128
5195
|
pcbWidth?: string | number | undefined;
|
|
5129
5196
|
pcbHeight?: string | number | undefined;
|
|
5130
5197
|
schWidth?: string | number | undefined;
|
|
@@ -5132,7 +5199,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5132
5199
|
pcbLayout?: {
|
|
5133
5200
|
grid?: boolean | undefined;
|
|
5134
5201
|
flex?: string | boolean | undefined;
|
|
5135
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5202
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5136
5203
|
position?: "absolute" | "relative" | undefined;
|
|
5137
5204
|
gridCols?: string | number | undefined;
|
|
5138
5205
|
gridRows?: string | number | undefined;
|
|
@@ -5146,11 +5213,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5146
5213
|
flexRow?: boolean | undefined;
|
|
5147
5214
|
flexColumn?: boolean | undefined;
|
|
5148
5215
|
gap?: string | number | undefined;
|
|
5216
|
+
matchAdapt?: boolean | undefined;
|
|
5149
5217
|
} | undefined;
|
|
5150
5218
|
schLayout?: {
|
|
5151
5219
|
grid?: boolean | undefined;
|
|
5152
5220
|
flex?: string | boolean | undefined;
|
|
5153
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5221
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5154
5222
|
position?: "absolute" | "relative" | undefined;
|
|
5155
5223
|
gridCols?: string | number | undefined;
|
|
5156
5224
|
gridRows?: string | number | undefined;
|
|
@@ -5164,6 +5232,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5164
5232
|
flexRow?: boolean | undefined;
|
|
5165
5233
|
flexColumn?: boolean | undefined;
|
|
5166
5234
|
gap?: string | number | undefined;
|
|
5235
|
+
matchAdapt?: boolean | undefined;
|
|
5167
5236
|
} | undefined;
|
|
5168
5237
|
layout?: LayoutBuilder | undefined;
|
|
5169
5238
|
manualEdits?: {
|
|
@@ -5251,7 +5320,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5251
5320
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5252
5321
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5253
5322
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
5254
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
5323
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
5255
5324
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
5256
5325
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
5257
5326
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5267,10 +5336,11 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5267
5336
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5268
5337
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5269
5338
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5339
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5270
5340
|
}, "strip", z.ZodTypeAny, {
|
|
5271
5341
|
grid?: boolean | undefined;
|
|
5272
5342
|
flex?: string | boolean | undefined;
|
|
5273
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5343
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5274
5344
|
position?: "absolute" | "relative" | undefined;
|
|
5275
5345
|
gridCols?: string | number | undefined;
|
|
5276
5346
|
gridRows?: string | number | undefined;
|
|
@@ -5284,10 +5354,11 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5284
5354
|
flexRow?: boolean | undefined;
|
|
5285
5355
|
flexColumn?: boolean | undefined;
|
|
5286
5356
|
gap?: string | number | undefined;
|
|
5357
|
+
matchAdapt?: boolean | undefined;
|
|
5287
5358
|
}, {
|
|
5288
5359
|
grid?: boolean | undefined;
|
|
5289
5360
|
flex?: string | boolean | undefined;
|
|
5290
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5361
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5291
5362
|
position?: "absolute" | "relative" | undefined;
|
|
5292
5363
|
gridCols?: string | number | undefined;
|
|
5293
5364
|
gridRows?: string | number | undefined;
|
|
@@ -5301,9 +5372,10 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5301
5372
|
flexRow?: boolean | undefined;
|
|
5302
5373
|
flexColumn?: boolean | undefined;
|
|
5303
5374
|
gap?: string | number | undefined;
|
|
5375
|
+
matchAdapt?: boolean | undefined;
|
|
5304
5376
|
}>>;
|
|
5305
5377
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
5306
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
5378
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
5307
5379
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
5308
5380
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
5309
5381
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5319,10 +5391,11 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5319
5391
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5320
5392
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5321
5393
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5394
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5322
5395
|
}, "strip", z.ZodTypeAny, {
|
|
5323
5396
|
grid?: boolean | undefined;
|
|
5324
5397
|
flex?: string | boolean | undefined;
|
|
5325
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5398
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5326
5399
|
position?: "absolute" | "relative" | undefined;
|
|
5327
5400
|
gridCols?: string | number | undefined;
|
|
5328
5401
|
gridRows?: string | number | undefined;
|
|
@@ -5336,10 +5409,11 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5336
5409
|
flexRow?: boolean | undefined;
|
|
5337
5410
|
flexColumn?: boolean | undefined;
|
|
5338
5411
|
gap?: string | number | undefined;
|
|
5412
|
+
matchAdapt?: boolean | undefined;
|
|
5339
5413
|
}, {
|
|
5340
5414
|
grid?: boolean | undefined;
|
|
5341
5415
|
flex?: string | boolean | undefined;
|
|
5342
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5416
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5343
5417
|
position?: "absolute" | "relative" | undefined;
|
|
5344
5418
|
gridCols?: string | number | undefined;
|
|
5345
5419
|
gridRows?: string | number | undefined;
|
|
@@ -5353,8 +5427,9 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5353
5427
|
flexRow?: boolean | undefined;
|
|
5354
5428
|
flexColumn?: boolean | undefined;
|
|
5355
5429
|
gap?: string | number | undefined;
|
|
5430
|
+
matchAdapt?: boolean | undefined;
|
|
5356
5431
|
}>>;
|
|
5357
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
5432
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
5358
5433
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
5359
5434
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
5360
5435
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5370,6 +5445,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5370
5445
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5371
5446
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5372
5447
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5448
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5373
5449
|
name: z.ZodOptional<z.ZodString>;
|
|
5374
5450
|
children: z.ZodOptional<z.ZodAny>;
|
|
5375
5451
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -5607,7 +5683,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5607
5683
|
children?: any;
|
|
5608
5684
|
grid?: boolean | undefined;
|
|
5609
5685
|
flex?: string | boolean | undefined;
|
|
5610
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5686
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5611
5687
|
position?: "absolute" | "relative" | undefined;
|
|
5612
5688
|
gridCols?: string | number | undefined;
|
|
5613
5689
|
gridRows?: string | number | undefined;
|
|
@@ -5621,6 +5697,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5621
5697
|
flexRow?: boolean | undefined;
|
|
5622
5698
|
flexColumn?: boolean | undefined;
|
|
5623
5699
|
gap?: string | number | undefined;
|
|
5700
|
+
matchAdapt?: boolean | undefined;
|
|
5624
5701
|
pcbWidth?: number | undefined;
|
|
5625
5702
|
pcbHeight?: number | undefined;
|
|
5626
5703
|
schWidth?: number | undefined;
|
|
@@ -5628,7 +5705,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5628
5705
|
pcbLayout?: {
|
|
5629
5706
|
grid?: boolean | undefined;
|
|
5630
5707
|
flex?: string | boolean | undefined;
|
|
5631
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5708
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5632
5709
|
position?: "absolute" | "relative" | undefined;
|
|
5633
5710
|
gridCols?: string | number | undefined;
|
|
5634
5711
|
gridRows?: string | number | undefined;
|
|
@@ -5642,11 +5719,12 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5642
5719
|
flexRow?: boolean | undefined;
|
|
5643
5720
|
flexColumn?: boolean | undefined;
|
|
5644
5721
|
gap?: string | number | undefined;
|
|
5722
|
+
matchAdapt?: boolean | undefined;
|
|
5645
5723
|
} | undefined;
|
|
5646
5724
|
schLayout?: {
|
|
5647
5725
|
grid?: boolean | undefined;
|
|
5648
5726
|
flex?: string | boolean | undefined;
|
|
5649
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5727
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5650
5728
|
position?: "absolute" | "relative" | undefined;
|
|
5651
5729
|
gridCols?: string | number | undefined;
|
|
5652
5730
|
gridRows?: string | number | undefined;
|
|
@@ -5660,6 +5738,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5660
5738
|
flexRow?: boolean | undefined;
|
|
5661
5739
|
flexColumn?: boolean | undefined;
|
|
5662
5740
|
gap?: string | number | undefined;
|
|
5741
|
+
matchAdapt?: boolean | undefined;
|
|
5663
5742
|
} | undefined;
|
|
5664
5743
|
layout?: LayoutBuilder | undefined;
|
|
5665
5744
|
manualEdits?: {
|
|
@@ -5731,7 +5810,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5731
5810
|
children?: any;
|
|
5732
5811
|
grid?: boolean | undefined;
|
|
5733
5812
|
flex?: string | boolean | undefined;
|
|
5734
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5813
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5735
5814
|
position?: "absolute" | "relative" | undefined;
|
|
5736
5815
|
gridCols?: string | number | undefined;
|
|
5737
5816
|
gridRows?: string | number | undefined;
|
|
@@ -5745,6 +5824,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5745
5824
|
flexRow?: boolean | undefined;
|
|
5746
5825
|
flexColumn?: boolean | undefined;
|
|
5747
5826
|
gap?: string | number | undefined;
|
|
5827
|
+
matchAdapt?: boolean | undefined;
|
|
5748
5828
|
pcbWidth?: string | number | undefined;
|
|
5749
5829
|
pcbHeight?: string | number | undefined;
|
|
5750
5830
|
schWidth?: string | number | undefined;
|
|
@@ -5752,7 +5832,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5752
5832
|
pcbLayout?: {
|
|
5753
5833
|
grid?: boolean | undefined;
|
|
5754
5834
|
flex?: string | boolean | undefined;
|
|
5755
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5835
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5756
5836
|
position?: "absolute" | "relative" | undefined;
|
|
5757
5837
|
gridCols?: string | number | undefined;
|
|
5758
5838
|
gridRows?: string | number | undefined;
|
|
@@ -5766,11 +5846,12 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5766
5846
|
flexRow?: boolean | undefined;
|
|
5767
5847
|
flexColumn?: boolean | undefined;
|
|
5768
5848
|
gap?: string | number | undefined;
|
|
5849
|
+
matchAdapt?: boolean | undefined;
|
|
5769
5850
|
} | undefined;
|
|
5770
5851
|
schLayout?: {
|
|
5771
5852
|
grid?: boolean | undefined;
|
|
5772
5853
|
flex?: string | boolean | undefined;
|
|
5773
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
5854
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
5774
5855
|
position?: "absolute" | "relative" | undefined;
|
|
5775
5856
|
gridCols?: string | number | undefined;
|
|
5776
5857
|
gridRows?: string | number | undefined;
|
|
@@ -5784,6 +5865,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5784
5865
|
flexRow?: boolean | undefined;
|
|
5785
5866
|
flexColumn?: boolean | undefined;
|
|
5786
5867
|
gap?: string | number | undefined;
|
|
5868
|
+
matchAdapt?: boolean | undefined;
|
|
5787
5869
|
} | undefined;
|
|
5788
5870
|
layout?: LayoutBuilder | undefined;
|
|
5789
5871
|
manualEdits?: {
|
|
@@ -11371,7 +11453,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11371
11453
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11372
11454
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11373
11455
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
11374
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
11456
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
11375
11457
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
11376
11458
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
11377
11459
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -11387,10 +11469,11 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11387
11469
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
11388
11470
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
11389
11471
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11472
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
11390
11473
|
}, "strip", z.ZodTypeAny, {
|
|
11391
11474
|
grid?: boolean | undefined;
|
|
11392
11475
|
flex?: string | boolean | undefined;
|
|
11393
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11476
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11394
11477
|
position?: "absolute" | "relative" | undefined;
|
|
11395
11478
|
gridCols?: string | number | undefined;
|
|
11396
11479
|
gridRows?: string | number | undefined;
|
|
@@ -11404,10 +11487,11 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11404
11487
|
flexRow?: boolean | undefined;
|
|
11405
11488
|
flexColumn?: boolean | undefined;
|
|
11406
11489
|
gap?: string | number | undefined;
|
|
11490
|
+
matchAdapt?: boolean | undefined;
|
|
11407
11491
|
}, {
|
|
11408
11492
|
grid?: boolean | undefined;
|
|
11409
11493
|
flex?: string | boolean | undefined;
|
|
11410
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11494
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11411
11495
|
position?: "absolute" | "relative" | undefined;
|
|
11412
11496
|
gridCols?: string | number | undefined;
|
|
11413
11497
|
gridRows?: string | number | undefined;
|
|
@@ -11421,9 +11505,10 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11421
11505
|
flexRow?: boolean | undefined;
|
|
11422
11506
|
flexColumn?: boolean | undefined;
|
|
11423
11507
|
gap?: string | number | undefined;
|
|
11508
|
+
matchAdapt?: boolean | undefined;
|
|
11424
11509
|
}>>;
|
|
11425
11510
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
11426
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
11511
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
11427
11512
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
11428
11513
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
11429
11514
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -11439,10 +11524,11 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11439
11524
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
11440
11525
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
11441
11526
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11527
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
11442
11528
|
}, "strip", z.ZodTypeAny, {
|
|
11443
11529
|
grid?: boolean | undefined;
|
|
11444
11530
|
flex?: string | boolean | undefined;
|
|
11445
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11531
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11446
11532
|
position?: "absolute" | "relative" | undefined;
|
|
11447
11533
|
gridCols?: string | number | undefined;
|
|
11448
11534
|
gridRows?: string | number | undefined;
|
|
@@ -11456,10 +11542,11 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11456
11542
|
flexRow?: boolean | undefined;
|
|
11457
11543
|
flexColumn?: boolean | undefined;
|
|
11458
11544
|
gap?: string | number | undefined;
|
|
11545
|
+
matchAdapt?: boolean | undefined;
|
|
11459
11546
|
}, {
|
|
11460
11547
|
grid?: boolean | undefined;
|
|
11461
11548
|
flex?: string | boolean | undefined;
|
|
11462
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11549
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11463
11550
|
position?: "absolute" | "relative" | undefined;
|
|
11464
11551
|
gridCols?: string | number | undefined;
|
|
11465
11552
|
gridRows?: string | number | undefined;
|
|
@@ -11473,8 +11560,9 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11473
11560
|
flexRow?: boolean | undefined;
|
|
11474
11561
|
flexColumn?: boolean | undefined;
|
|
11475
11562
|
gap?: string | number | undefined;
|
|
11563
|
+
matchAdapt?: boolean | undefined;
|
|
11476
11564
|
}>>;
|
|
11477
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
11565
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
11478
11566
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
11479
11567
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
11480
11568
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -11490,6 +11578,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11490
11578
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
11491
11579
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
11492
11580
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11581
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
11493
11582
|
name: z.ZodOptional<z.ZodString>;
|
|
11494
11583
|
children: z.ZodOptional<z.ZodAny>;
|
|
11495
11584
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -11742,7 +11831,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11742
11831
|
bottomPinCount?: number | undefined;
|
|
11743
11832
|
grid?: boolean | undefined;
|
|
11744
11833
|
flex?: string | boolean | undefined;
|
|
11745
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11834
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11746
11835
|
position?: "absolute" | "relative" | undefined;
|
|
11747
11836
|
gridCols?: string | number | undefined;
|
|
11748
11837
|
gridRows?: string | number | undefined;
|
|
@@ -11756,6 +11845,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11756
11845
|
flexRow?: boolean | undefined;
|
|
11757
11846
|
flexColumn?: boolean | undefined;
|
|
11758
11847
|
gap?: string | number | undefined;
|
|
11848
|
+
matchAdapt?: boolean | undefined;
|
|
11759
11849
|
pcbWidth?: number | undefined;
|
|
11760
11850
|
pcbHeight?: number | undefined;
|
|
11761
11851
|
schWidth?: number | undefined;
|
|
@@ -11763,7 +11853,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11763
11853
|
pcbLayout?: {
|
|
11764
11854
|
grid?: boolean | undefined;
|
|
11765
11855
|
flex?: string | boolean | undefined;
|
|
11766
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11856
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11767
11857
|
position?: "absolute" | "relative" | undefined;
|
|
11768
11858
|
gridCols?: string | number | undefined;
|
|
11769
11859
|
gridRows?: string | number | undefined;
|
|
@@ -11777,11 +11867,12 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11777
11867
|
flexRow?: boolean | undefined;
|
|
11778
11868
|
flexColumn?: boolean | undefined;
|
|
11779
11869
|
gap?: string | number | undefined;
|
|
11870
|
+
matchAdapt?: boolean | undefined;
|
|
11780
11871
|
} | undefined;
|
|
11781
11872
|
schLayout?: {
|
|
11782
11873
|
grid?: boolean | undefined;
|
|
11783
11874
|
flex?: string | boolean | undefined;
|
|
11784
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11875
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11785
11876
|
position?: "absolute" | "relative" | undefined;
|
|
11786
11877
|
gridCols?: string | number | undefined;
|
|
11787
11878
|
gridRows?: string | number | undefined;
|
|
@@ -11795,6 +11886,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11795
11886
|
flexRow?: boolean | undefined;
|
|
11796
11887
|
flexColumn?: boolean | undefined;
|
|
11797
11888
|
gap?: string | number | undefined;
|
|
11889
|
+
matchAdapt?: boolean | undefined;
|
|
11798
11890
|
} | undefined;
|
|
11799
11891
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
11800
11892
|
manualEdits?: {
|
|
@@ -11876,7 +11968,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11876
11968
|
bottomPinCount?: number | undefined;
|
|
11877
11969
|
grid?: boolean | undefined;
|
|
11878
11970
|
flex?: string | boolean | undefined;
|
|
11879
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11971
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11880
11972
|
position?: "absolute" | "relative" | undefined;
|
|
11881
11973
|
gridCols?: string | number | undefined;
|
|
11882
11974
|
gridRows?: string | number | undefined;
|
|
@@ -11890,6 +11982,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11890
11982
|
flexRow?: boolean | undefined;
|
|
11891
11983
|
flexColumn?: boolean | undefined;
|
|
11892
11984
|
gap?: string | number | undefined;
|
|
11985
|
+
matchAdapt?: boolean | undefined;
|
|
11893
11986
|
pcbWidth?: string | number | undefined;
|
|
11894
11987
|
pcbHeight?: string | number | undefined;
|
|
11895
11988
|
schWidth?: string | number | undefined;
|
|
@@ -11897,7 +11990,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11897
11990
|
pcbLayout?: {
|
|
11898
11991
|
grid?: boolean | undefined;
|
|
11899
11992
|
flex?: string | boolean | undefined;
|
|
11900
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
11993
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11901
11994
|
position?: "absolute" | "relative" | undefined;
|
|
11902
11995
|
gridCols?: string | number | undefined;
|
|
11903
11996
|
gridRows?: string | number | undefined;
|
|
@@ -11911,11 +12004,12 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11911
12004
|
flexRow?: boolean | undefined;
|
|
11912
12005
|
flexColumn?: boolean | undefined;
|
|
11913
12006
|
gap?: string | number | undefined;
|
|
12007
|
+
matchAdapt?: boolean | undefined;
|
|
11914
12008
|
} | undefined;
|
|
11915
12009
|
schLayout?: {
|
|
11916
12010
|
grid?: boolean | undefined;
|
|
11917
12011
|
flex?: string | boolean | undefined;
|
|
11918
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
12012
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
11919
12013
|
position?: "absolute" | "relative" | undefined;
|
|
11920
12014
|
gridCols?: string | number | undefined;
|
|
11921
12015
|
gridRows?: string | number | undefined;
|
|
@@ -11929,6 +12023,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11929
12023
|
flexRow?: boolean | undefined;
|
|
11930
12024
|
flexColumn?: boolean | undefined;
|
|
11931
12025
|
gap?: string | number | undefined;
|
|
12026
|
+
matchAdapt?: boolean | undefined;
|
|
11932
12027
|
} | undefined;
|
|
11933
12028
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
11934
12029
|
manualEdits?: {
|
|
@@ -15521,7 +15616,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15521
15616
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15522
15617
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15523
15618
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
15524
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
15619
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
15525
15620
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
15526
15621
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
15527
15622
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -15537,10 +15632,11 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15537
15632
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15538
15633
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15539
15634
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15635
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
15540
15636
|
}, "strip", z.ZodTypeAny, {
|
|
15541
15637
|
grid?: boolean | undefined;
|
|
15542
15638
|
flex?: string | boolean | undefined;
|
|
15543
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
15639
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15544
15640
|
position?: "absolute" | "relative" | undefined;
|
|
15545
15641
|
gridCols?: string | number | undefined;
|
|
15546
15642
|
gridRows?: string | number | undefined;
|
|
@@ -15554,10 +15650,11 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15554
15650
|
flexRow?: boolean | undefined;
|
|
15555
15651
|
flexColumn?: boolean | undefined;
|
|
15556
15652
|
gap?: string | number | undefined;
|
|
15653
|
+
matchAdapt?: boolean | undefined;
|
|
15557
15654
|
}, {
|
|
15558
15655
|
grid?: boolean | undefined;
|
|
15559
15656
|
flex?: string | boolean | undefined;
|
|
15560
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
15657
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15561
15658
|
position?: "absolute" | "relative" | undefined;
|
|
15562
15659
|
gridCols?: string | number | undefined;
|
|
15563
15660
|
gridRows?: string | number | undefined;
|
|
@@ -15571,9 +15668,10 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15571
15668
|
flexRow?: boolean | undefined;
|
|
15572
15669
|
flexColumn?: boolean | undefined;
|
|
15573
15670
|
gap?: string | number | undefined;
|
|
15671
|
+
matchAdapt?: boolean | undefined;
|
|
15574
15672
|
}>>;
|
|
15575
15673
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
15576
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
15674
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
15577
15675
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
15578
15676
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
15579
15677
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -15589,10 +15687,11 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15589
15687
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15590
15688
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15591
15689
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15690
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
15592
15691
|
}, "strip", z.ZodTypeAny, {
|
|
15593
15692
|
grid?: boolean | undefined;
|
|
15594
15693
|
flex?: string | boolean | undefined;
|
|
15595
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
15694
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15596
15695
|
position?: "absolute" | "relative" | undefined;
|
|
15597
15696
|
gridCols?: string | number | undefined;
|
|
15598
15697
|
gridRows?: string | number | undefined;
|
|
@@ -15606,10 +15705,11 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15606
15705
|
flexRow?: boolean | undefined;
|
|
15607
15706
|
flexColumn?: boolean | undefined;
|
|
15608
15707
|
gap?: string | number | undefined;
|
|
15708
|
+
matchAdapt?: boolean | undefined;
|
|
15609
15709
|
}, {
|
|
15610
15710
|
grid?: boolean | undefined;
|
|
15611
15711
|
flex?: string | boolean | undefined;
|
|
15612
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
15712
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15613
15713
|
position?: "absolute" | "relative" | undefined;
|
|
15614
15714
|
gridCols?: string | number | undefined;
|
|
15615
15715
|
gridRows?: string | number | undefined;
|
|
@@ -15623,8 +15723,9 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15623
15723
|
flexRow?: boolean | undefined;
|
|
15624
15724
|
flexColumn?: boolean | undefined;
|
|
15625
15725
|
gap?: string | number | undefined;
|
|
15726
|
+
matchAdapt?: boolean | undefined;
|
|
15626
15727
|
}>>;
|
|
15627
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
15728
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
15628
15729
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
15629
15730
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
15630
15731
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -15640,6 +15741,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15640
15741
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15641
15742
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15642
15743
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15744
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
15643
15745
|
name: z.ZodOptional<z.ZodString>;
|
|
15644
15746
|
children: z.ZodOptional<z.ZodAny>;
|
|
15645
15747
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -15860,7 +15962,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15860
15962
|
children?: any;
|
|
15861
15963
|
grid?: boolean | undefined;
|
|
15862
15964
|
flex?: string | boolean | undefined;
|
|
15863
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
15965
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15864
15966
|
position?: "absolute" | "relative" | undefined;
|
|
15865
15967
|
gridCols?: string | number | undefined;
|
|
15866
15968
|
gridRows?: string | number | undefined;
|
|
@@ -15874,6 +15976,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15874
15976
|
flexRow?: boolean | undefined;
|
|
15875
15977
|
flexColumn?: boolean | undefined;
|
|
15876
15978
|
gap?: string | number | undefined;
|
|
15979
|
+
matchAdapt?: boolean | undefined;
|
|
15877
15980
|
pcbWidth?: number | undefined;
|
|
15878
15981
|
pcbHeight?: number | undefined;
|
|
15879
15982
|
schWidth?: number | undefined;
|
|
@@ -15881,7 +15984,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15881
15984
|
pcbLayout?: {
|
|
15882
15985
|
grid?: boolean | undefined;
|
|
15883
15986
|
flex?: string | boolean | undefined;
|
|
15884
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
15987
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15885
15988
|
position?: "absolute" | "relative" | undefined;
|
|
15886
15989
|
gridCols?: string | number | undefined;
|
|
15887
15990
|
gridRows?: string | number | undefined;
|
|
@@ -15895,11 +15998,12 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15895
15998
|
flexRow?: boolean | undefined;
|
|
15896
15999
|
flexColumn?: boolean | undefined;
|
|
15897
16000
|
gap?: string | number | undefined;
|
|
16001
|
+
matchAdapt?: boolean | undefined;
|
|
15898
16002
|
} | undefined;
|
|
15899
16003
|
schLayout?: {
|
|
15900
16004
|
grid?: boolean | undefined;
|
|
15901
16005
|
flex?: string | boolean | undefined;
|
|
15902
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
16006
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15903
16007
|
position?: "absolute" | "relative" | undefined;
|
|
15904
16008
|
gridCols?: string | number | undefined;
|
|
15905
16009
|
gridRows?: string | number | undefined;
|
|
@@ -15913,6 +16017,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15913
16017
|
flexRow?: boolean | undefined;
|
|
15914
16018
|
flexColumn?: boolean | undefined;
|
|
15915
16019
|
gap?: string | number | undefined;
|
|
16020
|
+
matchAdapt?: boolean | undefined;
|
|
15916
16021
|
} | undefined;
|
|
15917
16022
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
15918
16023
|
manualEdits?: {
|
|
@@ -15976,7 +16081,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15976
16081
|
children?: any;
|
|
15977
16082
|
grid?: boolean | undefined;
|
|
15978
16083
|
flex?: string | boolean | undefined;
|
|
15979
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
16084
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
15980
16085
|
position?: "absolute" | "relative" | undefined;
|
|
15981
16086
|
gridCols?: string | number | undefined;
|
|
15982
16087
|
gridRows?: string | number | undefined;
|
|
@@ -15990,6 +16095,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15990
16095
|
flexRow?: boolean | undefined;
|
|
15991
16096
|
flexColumn?: boolean | undefined;
|
|
15992
16097
|
gap?: string | number | undefined;
|
|
16098
|
+
matchAdapt?: boolean | undefined;
|
|
15993
16099
|
pcbWidth?: string | number | undefined;
|
|
15994
16100
|
pcbHeight?: string | number | undefined;
|
|
15995
16101
|
schWidth?: string | number | undefined;
|
|
@@ -15997,7 +16103,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15997
16103
|
pcbLayout?: {
|
|
15998
16104
|
grid?: boolean | undefined;
|
|
15999
16105
|
flex?: string | boolean | undefined;
|
|
16000
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
16106
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
16001
16107
|
position?: "absolute" | "relative" | undefined;
|
|
16002
16108
|
gridCols?: string | number | undefined;
|
|
16003
16109
|
gridRows?: string | number | undefined;
|
|
@@ -16011,11 +16117,12 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16011
16117
|
flexRow?: boolean | undefined;
|
|
16012
16118
|
flexColumn?: boolean | undefined;
|
|
16013
16119
|
gap?: string | number | undefined;
|
|
16120
|
+
matchAdapt?: boolean | undefined;
|
|
16014
16121
|
} | undefined;
|
|
16015
16122
|
schLayout?: {
|
|
16016
16123
|
grid?: boolean | undefined;
|
|
16017
16124
|
flex?: string | boolean | undefined;
|
|
16018
|
-
layoutMode?: "grid" | "flex" | "none" | undefined;
|
|
16125
|
+
layoutMode?: "grid" | "flex" | "match-adapt" | "none" | undefined;
|
|
16019
16126
|
position?: "absolute" | "relative" | undefined;
|
|
16020
16127
|
gridCols?: string | number | undefined;
|
|
16021
16128
|
gridRows?: string | number | undefined;
|
|
@@ -16029,6 +16136,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16029
16136
|
flexRow?: boolean | undefined;
|
|
16030
16137
|
flexColumn?: boolean | undefined;
|
|
16031
16138
|
gap?: string | number | undefined;
|
|
16139
|
+
matchAdapt?: boolean | undefined;
|
|
16032
16140
|
} | undefined;
|
|
16033
16141
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
16034
16142
|
manualEdits?: {
|