@tscircuit/props 0.0.221 → 0.0.223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.d.ts +445 -11
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +16 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2799,6 +2799,24 @@ interface LayoutConfig {
|
|
|
2799
2799
|
matchAdapt?: boolean;
|
|
2800
2800
|
matchAdaptTemplate?: any;
|
|
2801
2801
|
}
|
|
2802
|
+
interface Border {
|
|
2803
|
+
strokeWidth?: Distance;
|
|
2804
|
+
dashed?: boolean;
|
|
2805
|
+
solid?: boolean;
|
|
2806
|
+
}
|
|
2807
|
+
declare const border: z.ZodObject<{
|
|
2808
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2809
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
2810
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
2811
|
+
}, "strip", z.ZodTypeAny, {
|
|
2812
|
+
strokeWidth?: number | undefined;
|
|
2813
|
+
dashed?: boolean | undefined;
|
|
2814
|
+
solid?: boolean | undefined;
|
|
2815
|
+
}, {
|
|
2816
|
+
strokeWidth?: string | number | undefined;
|
|
2817
|
+
dashed?: boolean | undefined;
|
|
2818
|
+
solid?: boolean | undefined;
|
|
2819
|
+
}>;
|
|
2802
2820
|
interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
2803
2821
|
name?: string;
|
|
2804
2822
|
key?: any;
|
|
@@ -2809,6 +2827,8 @@ interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
2809
2827
|
schHeight?: Distance;
|
|
2810
2828
|
pcbLayout?: LayoutConfig;
|
|
2811
2829
|
schLayout?: LayoutConfig;
|
|
2830
|
+
cellBorder?: Border;
|
|
2831
|
+
border?: Border;
|
|
2812
2832
|
}
|
|
2813
2833
|
type PartsEngine = {
|
|
2814
2834
|
findPart: (params: {
|
|
@@ -3064,6 +3084,32 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3064
3084
|
matchAdapt?: boolean | undefined;
|
|
3065
3085
|
matchAdaptTemplate?: any;
|
|
3066
3086
|
}>>;
|
|
3087
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
3088
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3089
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
3090
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
3091
|
+
}, "strip", z.ZodTypeAny, {
|
|
3092
|
+
strokeWidth?: number | undefined;
|
|
3093
|
+
dashed?: boolean | undefined;
|
|
3094
|
+
solid?: boolean | undefined;
|
|
3095
|
+
}, {
|
|
3096
|
+
strokeWidth?: string | number | undefined;
|
|
3097
|
+
dashed?: boolean | undefined;
|
|
3098
|
+
solid?: boolean | undefined;
|
|
3099
|
+
}>>;
|
|
3100
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
3101
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3102
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
3103
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
3104
|
+
}, "strip", z.ZodTypeAny, {
|
|
3105
|
+
strokeWidth?: number | undefined;
|
|
3106
|
+
dashed?: boolean | undefined;
|
|
3107
|
+
solid?: boolean | undefined;
|
|
3108
|
+
}, {
|
|
3109
|
+
strokeWidth?: string | number | undefined;
|
|
3110
|
+
dashed?: boolean | undefined;
|
|
3111
|
+
solid?: boolean | undefined;
|
|
3112
|
+
}>>;
|
|
3067
3113
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3068
3114
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3069
3115
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3167,6 +3213,16 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3167
3213
|
matchAdapt?: boolean | undefined;
|
|
3168
3214
|
matchAdaptTemplate?: any;
|
|
3169
3215
|
} | undefined;
|
|
3216
|
+
cellBorder?: {
|
|
3217
|
+
strokeWidth?: number | undefined;
|
|
3218
|
+
dashed?: boolean | undefined;
|
|
3219
|
+
solid?: boolean | undefined;
|
|
3220
|
+
} | undefined;
|
|
3221
|
+
border?: {
|
|
3222
|
+
strokeWidth?: number | undefined;
|
|
3223
|
+
dashed?: boolean | undefined;
|
|
3224
|
+
solid?: boolean | undefined;
|
|
3225
|
+
} | undefined;
|
|
3170
3226
|
}, {
|
|
3171
3227
|
pcbX?: string | number | undefined;
|
|
3172
3228
|
pcbY?: string | number | undefined;
|
|
@@ -3249,6 +3305,16 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3249
3305
|
matchAdapt?: boolean | undefined;
|
|
3250
3306
|
matchAdaptTemplate?: any;
|
|
3251
3307
|
} | undefined;
|
|
3308
|
+
cellBorder?: {
|
|
3309
|
+
strokeWidth?: string | number | undefined;
|
|
3310
|
+
dashed?: boolean | undefined;
|
|
3311
|
+
solid?: boolean | undefined;
|
|
3312
|
+
} | undefined;
|
|
3313
|
+
border?: {
|
|
3314
|
+
strokeWidth?: string | number | undefined;
|
|
3315
|
+
dashed?: boolean | undefined;
|
|
3316
|
+
solid?: boolean | undefined;
|
|
3317
|
+
} | undefined;
|
|
3252
3318
|
}>;
|
|
3253
3319
|
declare const partsEngine: z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>;
|
|
3254
3320
|
declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -3401,6 +3467,32 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3401
3467
|
matchAdapt?: boolean | undefined;
|
|
3402
3468
|
matchAdaptTemplate?: any;
|
|
3403
3469
|
}>>;
|
|
3470
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
3471
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3472
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
3473
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
3474
|
+
}, "strip", z.ZodTypeAny, {
|
|
3475
|
+
strokeWidth?: number | undefined;
|
|
3476
|
+
dashed?: boolean | undefined;
|
|
3477
|
+
solid?: boolean | undefined;
|
|
3478
|
+
}, {
|
|
3479
|
+
strokeWidth?: string | number | undefined;
|
|
3480
|
+
dashed?: boolean | undefined;
|
|
3481
|
+
solid?: boolean | undefined;
|
|
3482
|
+
}>>;
|
|
3483
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
3484
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3485
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
3486
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
3487
|
+
}, "strip", z.ZodTypeAny, {
|
|
3488
|
+
strokeWidth?: number | undefined;
|
|
3489
|
+
dashed?: boolean | undefined;
|
|
3490
|
+
solid?: boolean | undefined;
|
|
3491
|
+
}, {
|
|
3492
|
+
strokeWidth?: string | number | undefined;
|
|
3493
|
+
dashed?: boolean | undefined;
|
|
3494
|
+
solid?: boolean | undefined;
|
|
3495
|
+
}>>;
|
|
3404
3496
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3405
3497
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3406
3498
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3707,6 +3799,16 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3707
3799
|
matchAdapt?: boolean | undefined;
|
|
3708
3800
|
matchAdaptTemplate?: any;
|
|
3709
3801
|
} | undefined;
|
|
3802
|
+
cellBorder?: {
|
|
3803
|
+
strokeWidth?: number | undefined;
|
|
3804
|
+
dashed?: boolean | undefined;
|
|
3805
|
+
solid?: boolean | undefined;
|
|
3806
|
+
} | undefined;
|
|
3807
|
+
border?: {
|
|
3808
|
+
strokeWidth?: number | undefined;
|
|
3809
|
+
dashed?: boolean | undefined;
|
|
3810
|
+
solid?: boolean | undefined;
|
|
3811
|
+
} | undefined;
|
|
3710
3812
|
layout?: LayoutBuilder | undefined;
|
|
3711
3813
|
manualEdits?: {
|
|
3712
3814
|
pcb_placements?: {
|
|
@@ -3835,6 +3937,16 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3835
3937
|
matchAdapt?: boolean | undefined;
|
|
3836
3938
|
matchAdaptTemplate?: any;
|
|
3837
3939
|
} | undefined;
|
|
3940
|
+
cellBorder?: {
|
|
3941
|
+
strokeWidth?: string | number | undefined;
|
|
3942
|
+
dashed?: boolean | undefined;
|
|
3943
|
+
solid?: boolean | undefined;
|
|
3944
|
+
} | undefined;
|
|
3945
|
+
border?: {
|
|
3946
|
+
strokeWidth?: string | number | undefined;
|
|
3947
|
+
dashed?: boolean | undefined;
|
|
3948
|
+
solid?: boolean | undefined;
|
|
3949
|
+
} | undefined;
|
|
3838
3950
|
layout?: LayoutBuilder | undefined;
|
|
3839
3951
|
manualEdits?: {
|
|
3840
3952
|
pcb_placements?: {
|
|
@@ -4034,6 +4146,32 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4034
4146
|
matchAdapt?: boolean | undefined;
|
|
4035
4147
|
matchAdaptTemplate?: any;
|
|
4036
4148
|
}>>;
|
|
4149
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
4150
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4151
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
4152
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
4153
|
+
}, "strip", z.ZodTypeAny, {
|
|
4154
|
+
strokeWidth?: number | undefined;
|
|
4155
|
+
dashed?: boolean | undefined;
|
|
4156
|
+
solid?: boolean | undefined;
|
|
4157
|
+
}, {
|
|
4158
|
+
strokeWidth?: string | number | undefined;
|
|
4159
|
+
dashed?: boolean | undefined;
|
|
4160
|
+
solid?: boolean | undefined;
|
|
4161
|
+
}>>;
|
|
4162
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
4163
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4164
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
4165
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
4166
|
+
}, "strip", z.ZodTypeAny, {
|
|
4167
|
+
strokeWidth?: number | undefined;
|
|
4168
|
+
dashed?: boolean | undefined;
|
|
4169
|
+
solid?: boolean | undefined;
|
|
4170
|
+
}, {
|
|
4171
|
+
strokeWidth?: string | number | undefined;
|
|
4172
|
+
dashed?: boolean | undefined;
|
|
4173
|
+
solid?: boolean | undefined;
|
|
4174
|
+
}>>;
|
|
4037
4175
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4038
4176
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4039
4177
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4343,6 +4481,16 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4343
4481
|
matchAdapt?: boolean | undefined;
|
|
4344
4482
|
matchAdaptTemplate?: any;
|
|
4345
4483
|
} | undefined;
|
|
4484
|
+
cellBorder?: {
|
|
4485
|
+
strokeWidth?: number | undefined;
|
|
4486
|
+
dashed?: boolean | undefined;
|
|
4487
|
+
solid?: boolean | undefined;
|
|
4488
|
+
} | undefined;
|
|
4489
|
+
border?: {
|
|
4490
|
+
strokeWidth?: number | undefined;
|
|
4491
|
+
dashed?: boolean | undefined;
|
|
4492
|
+
solid?: boolean | undefined;
|
|
4493
|
+
} | undefined;
|
|
4346
4494
|
layout?: LayoutBuilder | undefined;
|
|
4347
4495
|
manualEdits?: {
|
|
4348
4496
|
pcb_placements?: {
|
|
@@ -4472,6 +4620,16 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4472
4620
|
matchAdapt?: boolean | undefined;
|
|
4473
4621
|
matchAdaptTemplate?: any;
|
|
4474
4622
|
} | undefined;
|
|
4623
|
+
cellBorder?: {
|
|
4624
|
+
strokeWidth?: string | number | undefined;
|
|
4625
|
+
dashed?: boolean | undefined;
|
|
4626
|
+
solid?: boolean | undefined;
|
|
4627
|
+
} | undefined;
|
|
4628
|
+
border?: {
|
|
4629
|
+
strokeWidth?: string | number | undefined;
|
|
4630
|
+
dashed?: boolean | undefined;
|
|
4631
|
+
solid?: boolean | undefined;
|
|
4632
|
+
} | undefined;
|
|
4475
4633
|
layout?: LayoutBuilder | undefined;
|
|
4476
4634
|
manualEdits?: {
|
|
4477
4635
|
pcb_placements?: {
|
|
@@ -4671,6 +4829,32 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4671
4829
|
matchAdapt?: boolean | undefined;
|
|
4672
4830
|
matchAdaptTemplate?: any;
|
|
4673
4831
|
}>>;
|
|
4832
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
4833
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4834
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
4835
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
4836
|
+
}, "strip", z.ZodTypeAny, {
|
|
4837
|
+
strokeWidth?: number | undefined;
|
|
4838
|
+
dashed?: boolean | undefined;
|
|
4839
|
+
solid?: boolean | undefined;
|
|
4840
|
+
}, {
|
|
4841
|
+
strokeWidth?: string | number | undefined;
|
|
4842
|
+
dashed?: boolean | undefined;
|
|
4843
|
+
solid?: boolean | undefined;
|
|
4844
|
+
}>>;
|
|
4845
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
4846
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4847
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
4848
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
4849
|
+
}, "strip", z.ZodTypeAny, {
|
|
4850
|
+
strokeWidth?: number | undefined;
|
|
4851
|
+
dashed?: boolean | undefined;
|
|
4852
|
+
solid?: boolean | undefined;
|
|
4853
|
+
}, {
|
|
4854
|
+
strokeWidth?: string | number | undefined;
|
|
4855
|
+
dashed?: boolean | undefined;
|
|
4856
|
+
solid?: boolean | undefined;
|
|
4857
|
+
}>>;
|
|
4674
4858
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4675
4859
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4676
4860
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4776,6 +4960,16 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4776
4960
|
matchAdapt?: boolean | undefined;
|
|
4777
4961
|
matchAdaptTemplate?: any;
|
|
4778
4962
|
} | undefined;
|
|
4963
|
+
cellBorder?: {
|
|
4964
|
+
strokeWidth?: number | undefined;
|
|
4965
|
+
dashed?: boolean | undefined;
|
|
4966
|
+
solid?: boolean | undefined;
|
|
4967
|
+
} | undefined;
|
|
4968
|
+
border?: {
|
|
4969
|
+
strokeWidth?: number | undefined;
|
|
4970
|
+
dashed?: boolean | undefined;
|
|
4971
|
+
solid?: boolean | undefined;
|
|
4972
|
+
} | undefined;
|
|
4779
4973
|
subcircuit?: false | undefined;
|
|
4780
4974
|
}, {
|
|
4781
4975
|
pcbX?: string | number | undefined;
|
|
@@ -4859,6 +5053,16 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4859
5053
|
matchAdapt?: boolean | undefined;
|
|
4860
5054
|
matchAdaptTemplate?: any;
|
|
4861
5055
|
} | undefined;
|
|
5056
|
+
cellBorder?: {
|
|
5057
|
+
strokeWidth?: string | number | undefined;
|
|
5058
|
+
dashed?: boolean | undefined;
|
|
5059
|
+
solid?: boolean | undefined;
|
|
5060
|
+
} | undefined;
|
|
5061
|
+
border?: {
|
|
5062
|
+
strokeWidth?: string | number | undefined;
|
|
5063
|
+
dashed?: boolean | undefined;
|
|
5064
|
+
solid?: boolean | undefined;
|
|
5065
|
+
} | undefined;
|
|
4862
5066
|
subcircuit?: false | undefined;
|
|
4863
5067
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4864
5068
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5010,6 +5214,32 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5010
5214
|
matchAdapt?: boolean | undefined;
|
|
5011
5215
|
matchAdaptTemplate?: any;
|
|
5012
5216
|
}>>;
|
|
5217
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
5218
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5219
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
5220
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
5221
|
+
}, "strip", z.ZodTypeAny, {
|
|
5222
|
+
strokeWidth?: number | undefined;
|
|
5223
|
+
dashed?: boolean | undefined;
|
|
5224
|
+
solid?: boolean | undefined;
|
|
5225
|
+
}, {
|
|
5226
|
+
strokeWidth?: string | number | undefined;
|
|
5227
|
+
dashed?: boolean | undefined;
|
|
5228
|
+
solid?: boolean | undefined;
|
|
5229
|
+
}>>;
|
|
5230
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
5231
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5232
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
5233
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
5234
|
+
}, "strip", z.ZodTypeAny, {
|
|
5235
|
+
strokeWidth?: number | undefined;
|
|
5236
|
+
dashed?: boolean | undefined;
|
|
5237
|
+
solid?: boolean | undefined;
|
|
5238
|
+
}, {
|
|
5239
|
+
strokeWidth?: string | number | undefined;
|
|
5240
|
+
dashed?: boolean | undefined;
|
|
5241
|
+
solid?: boolean | undefined;
|
|
5242
|
+
}>>;
|
|
5013
5243
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
5014
5244
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
5015
5245
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5319,6 +5549,16 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5319
5549
|
matchAdapt?: boolean | undefined;
|
|
5320
5550
|
matchAdaptTemplate?: any;
|
|
5321
5551
|
} | undefined;
|
|
5552
|
+
cellBorder?: {
|
|
5553
|
+
strokeWidth?: number | undefined;
|
|
5554
|
+
dashed?: boolean | undefined;
|
|
5555
|
+
solid?: boolean | undefined;
|
|
5556
|
+
} | undefined;
|
|
5557
|
+
border?: {
|
|
5558
|
+
strokeWidth?: number | undefined;
|
|
5559
|
+
dashed?: boolean | undefined;
|
|
5560
|
+
solid?: boolean | undefined;
|
|
5561
|
+
} | undefined;
|
|
5322
5562
|
layout?: LayoutBuilder | undefined;
|
|
5323
5563
|
manualEdits?: {
|
|
5324
5564
|
pcb_placements?: {
|
|
@@ -5448,6 +5688,16 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5448
5688
|
matchAdapt?: boolean | undefined;
|
|
5449
5689
|
matchAdaptTemplate?: any;
|
|
5450
5690
|
} | undefined;
|
|
5691
|
+
cellBorder?: {
|
|
5692
|
+
strokeWidth?: string | number | undefined;
|
|
5693
|
+
dashed?: boolean | undefined;
|
|
5694
|
+
solid?: boolean | undefined;
|
|
5695
|
+
} | undefined;
|
|
5696
|
+
border?: {
|
|
5697
|
+
strokeWidth?: string | number | undefined;
|
|
5698
|
+
dashed?: boolean | undefined;
|
|
5699
|
+
solid?: boolean | undefined;
|
|
5700
|
+
} | undefined;
|
|
5451
5701
|
layout?: LayoutBuilder | undefined;
|
|
5452
5702
|
manualEdits?: {
|
|
5453
5703
|
pcb_placements?: {
|
|
@@ -5661,6 +5911,32 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5661
5911
|
matchAdapt?: boolean | undefined;
|
|
5662
5912
|
matchAdaptTemplate?: any;
|
|
5663
5913
|
}>>;
|
|
5914
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
5915
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5916
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
5917
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
5918
|
+
}, "strip", z.ZodTypeAny, {
|
|
5919
|
+
strokeWidth?: number | undefined;
|
|
5920
|
+
dashed?: boolean | undefined;
|
|
5921
|
+
solid?: boolean | undefined;
|
|
5922
|
+
}, {
|
|
5923
|
+
strokeWidth?: string | number | undefined;
|
|
5924
|
+
dashed?: boolean | undefined;
|
|
5925
|
+
solid?: boolean | undefined;
|
|
5926
|
+
}>>;
|
|
5927
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
5928
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5929
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
5930
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
5931
|
+
}, "strip", z.ZodTypeAny, {
|
|
5932
|
+
strokeWidth?: number | undefined;
|
|
5933
|
+
dashed?: boolean | undefined;
|
|
5934
|
+
solid?: boolean | undefined;
|
|
5935
|
+
}, {
|
|
5936
|
+
strokeWidth?: string | number | undefined;
|
|
5937
|
+
dashed?: boolean | undefined;
|
|
5938
|
+
solid?: boolean | undefined;
|
|
5939
|
+
}>>;
|
|
5664
5940
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
5665
5941
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
5666
5942
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5984,6 +6260,16 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5984
6260
|
matchAdapt?: boolean | undefined;
|
|
5985
6261
|
matchAdaptTemplate?: any;
|
|
5986
6262
|
} | undefined;
|
|
6263
|
+
cellBorder?: {
|
|
6264
|
+
strokeWidth?: number | undefined;
|
|
6265
|
+
dashed?: boolean | undefined;
|
|
6266
|
+
solid?: boolean | undefined;
|
|
6267
|
+
} | undefined;
|
|
6268
|
+
border?: {
|
|
6269
|
+
strokeWidth?: number | undefined;
|
|
6270
|
+
dashed?: boolean | undefined;
|
|
6271
|
+
solid?: boolean | undefined;
|
|
6272
|
+
} | undefined;
|
|
5987
6273
|
layout?: LayoutBuilder | undefined;
|
|
5988
6274
|
manualEdits?: {
|
|
5989
6275
|
pcb_placements?: {
|
|
@@ -6118,6 +6404,16 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6118
6404
|
matchAdapt?: boolean | undefined;
|
|
6119
6405
|
matchAdaptTemplate?: any;
|
|
6120
6406
|
} | undefined;
|
|
6407
|
+
cellBorder?: {
|
|
6408
|
+
strokeWidth?: string | number | undefined;
|
|
6409
|
+
dashed?: boolean | undefined;
|
|
6410
|
+
solid?: boolean | undefined;
|
|
6411
|
+
} | undefined;
|
|
6412
|
+
border?: {
|
|
6413
|
+
strokeWidth?: string | number | undefined;
|
|
6414
|
+
dashed?: boolean | undefined;
|
|
6415
|
+
solid?: boolean | undefined;
|
|
6416
|
+
} | undefined;
|
|
6121
6417
|
layout?: LayoutBuilder | undefined;
|
|
6122
6418
|
manualEdits?: {
|
|
6123
6419
|
pcb_placements?: {
|
|
@@ -6332,6 +6628,32 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
6332
6628
|
matchAdapt?: boolean | undefined;
|
|
6333
6629
|
matchAdaptTemplate?: any;
|
|
6334
6630
|
}>>;
|
|
6631
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
6632
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6633
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
6634
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
6635
|
+
}, "strip", z.ZodTypeAny, {
|
|
6636
|
+
strokeWidth?: number | undefined;
|
|
6637
|
+
dashed?: boolean | undefined;
|
|
6638
|
+
solid?: boolean | undefined;
|
|
6639
|
+
}, {
|
|
6640
|
+
strokeWidth?: string | number | undefined;
|
|
6641
|
+
dashed?: boolean | undefined;
|
|
6642
|
+
solid?: boolean | undefined;
|
|
6643
|
+
}>>;
|
|
6644
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
6645
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6646
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
6647
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
6648
|
+
}, "strip", z.ZodTypeAny, {
|
|
6649
|
+
strokeWidth?: number | undefined;
|
|
6650
|
+
dashed?: boolean | undefined;
|
|
6651
|
+
solid?: boolean | undefined;
|
|
6652
|
+
}, {
|
|
6653
|
+
strokeWidth?: string | number | undefined;
|
|
6654
|
+
dashed?: boolean | undefined;
|
|
6655
|
+
solid?: boolean | undefined;
|
|
6656
|
+
}>>;
|
|
6335
6657
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
6336
6658
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
6337
6659
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6644,6 +6966,16 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
6644
6966
|
matchAdapt?: boolean | undefined;
|
|
6645
6967
|
matchAdaptTemplate?: any;
|
|
6646
6968
|
} | undefined;
|
|
6969
|
+
cellBorder?: {
|
|
6970
|
+
strokeWidth?: number | undefined;
|
|
6971
|
+
dashed?: boolean | undefined;
|
|
6972
|
+
solid?: boolean | undefined;
|
|
6973
|
+
} | undefined;
|
|
6974
|
+
border?: {
|
|
6975
|
+
strokeWidth?: number | undefined;
|
|
6976
|
+
dashed?: boolean | undefined;
|
|
6977
|
+
solid?: boolean | undefined;
|
|
6978
|
+
} | undefined;
|
|
6647
6979
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
6648
6980
|
manualEdits?: {
|
|
6649
6981
|
pcb_placements?: {
|
|
@@ -6777,6 +7109,16 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
6777
7109
|
matchAdapt?: boolean | undefined;
|
|
6778
7110
|
matchAdaptTemplate?: any;
|
|
6779
7111
|
} | undefined;
|
|
7112
|
+
cellBorder?: {
|
|
7113
|
+
strokeWidth?: string | number | undefined;
|
|
7114
|
+
dashed?: boolean | undefined;
|
|
7115
|
+
solid?: boolean | undefined;
|
|
7116
|
+
} | undefined;
|
|
7117
|
+
border?: {
|
|
7118
|
+
strokeWidth?: string | number | undefined;
|
|
7119
|
+
dashed?: boolean | undefined;
|
|
7120
|
+
solid?: boolean | undefined;
|
|
7121
|
+
} | undefined;
|
|
6780
7122
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
6781
7123
|
manualEdits?: {
|
|
6782
7124
|
pcb_placements?: {
|
|
@@ -13155,6 +13497,32 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13155
13497
|
matchAdapt?: boolean | undefined;
|
|
13156
13498
|
matchAdaptTemplate?: any;
|
|
13157
13499
|
}>>;
|
|
13500
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
13501
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13502
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
13503
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
13504
|
+
}, "strip", z.ZodTypeAny, {
|
|
13505
|
+
strokeWidth?: number | undefined;
|
|
13506
|
+
dashed?: boolean | undefined;
|
|
13507
|
+
solid?: boolean | undefined;
|
|
13508
|
+
}, {
|
|
13509
|
+
strokeWidth?: string | number | undefined;
|
|
13510
|
+
dashed?: boolean | undefined;
|
|
13511
|
+
solid?: boolean | undefined;
|
|
13512
|
+
}>>;
|
|
13513
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
13514
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13515
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
13516
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
13517
|
+
}, "strip", z.ZodTypeAny, {
|
|
13518
|
+
strokeWidth?: number | undefined;
|
|
13519
|
+
dashed?: boolean | undefined;
|
|
13520
|
+
solid?: boolean | undefined;
|
|
13521
|
+
}, {
|
|
13522
|
+
strokeWidth?: string | number | undefined;
|
|
13523
|
+
dashed?: boolean | undefined;
|
|
13524
|
+
solid?: boolean | undefined;
|
|
13525
|
+
}>>;
|
|
13158
13526
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
13159
13527
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
13160
13528
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13493,6 +13861,16 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13493
13861
|
matchAdapt?: boolean | undefined;
|
|
13494
13862
|
matchAdaptTemplate?: any;
|
|
13495
13863
|
} | undefined;
|
|
13864
|
+
cellBorder?: {
|
|
13865
|
+
strokeWidth?: number | undefined;
|
|
13866
|
+
dashed?: boolean | undefined;
|
|
13867
|
+
solid?: boolean | undefined;
|
|
13868
|
+
} | undefined;
|
|
13869
|
+
border?: {
|
|
13870
|
+
strokeWidth?: number | undefined;
|
|
13871
|
+
dashed?: boolean | undefined;
|
|
13872
|
+
solid?: boolean | undefined;
|
|
13873
|
+
} | undefined;
|
|
13496
13874
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
13497
13875
|
manualEdits?: {
|
|
13498
13876
|
pcb_placements?: {
|
|
@@ -13637,6 +14015,16 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13637
14015
|
matchAdapt?: boolean | undefined;
|
|
13638
14016
|
matchAdaptTemplate?: any;
|
|
13639
14017
|
} | undefined;
|
|
14018
|
+
cellBorder?: {
|
|
14019
|
+
strokeWidth?: string | number | undefined;
|
|
14020
|
+
dashed?: boolean | undefined;
|
|
14021
|
+
solid?: boolean | undefined;
|
|
14022
|
+
} | undefined;
|
|
14023
|
+
border?: {
|
|
14024
|
+
strokeWidth?: string | number | undefined;
|
|
14025
|
+
dashed?: boolean | undefined;
|
|
14026
|
+
solid?: boolean | undefined;
|
|
14027
|
+
} | undefined;
|
|
13640
14028
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
13641
14029
|
manualEdits?: {
|
|
13642
14030
|
pcb_placements?: {
|
|
@@ -17516,6 +17904,32 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17516
17904
|
matchAdapt?: boolean | undefined;
|
|
17517
17905
|
matchAdaptTemplate?: any;
|
|
17518
17906
|
}>>;
|
|
17907
|
+
cellBorder: z.ZodOptional<z.ZodObject<{
|
|
17908
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17909
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
17910
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
17911
|
+
}, "strip", z.ZodTypeAny, {
|
|
17912
|
+
strokeWidth?: number | undefined;
|
|
17913
|
+
dashed?: boolean | undefined;
|
|
17914
|
+
solid?: boolean | undefined;
|
|
17915
|
+
}, {
|
|
17916
|
+
strokeWidth?: string | number | undefined;
|
|
17917
|
+
dashed?: boolean | undefined;
|
|
17918
|
+
solid?: boolean | undefined;
|
|
17919
|
+
}>>;
|
|
17920
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
17921
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17922
|
+
dashed: z.ZodOptional<z.ZodBoolean>;
|
|
17923
|
+
solid: z.ZodOptional<z.ZodBoolean>;
|
|
17924
|
+
}, "strip", z.ZodTypeAny, {
|
|
17925
|
+
strokeWidth?: number | undefined;
|
|
17926
|
+
dashed?: boolean | undefined;
|
|
17927
|
+
solid?: boolean | undefined;
|
|
17928
|
+
}, {
|
|
17929
|
+
strokeWidth?: string | number | undefined;
|
|
17930
|
+
dashed?: boolean | undefined;
|
|
17931
|
+
solid?: boolean | undefined;
|
|
17932
|
+
}>>;
|
|
17519
17933
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
17520
17934
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
17521
17935
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17822,6 +18236,16 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17822
18236
|
matchAdapt?: boolean | undefined;
|
|
17823
18237
|
matchAdaptTemplate?: any;
|
|
17824
18238
|
} | undefined;
|
|
18239
|
+
cellBorder?: {
|
|
18240
|
+
strokeWidth?: number | undefined;
|
|
18241
|
+
dashed?: boolean | undefined;
|
|
18242
|
+
solid?: boolean | undefined;
|
|
18243
|
+
} | undefined;
|
|
18244
|
+
border?: {
|
|
18245
|
+
strokeWidth?: number | undefined;
|
|
18246
|
+
dashed?: boolean | undefined;
|
|
18247
|
+
solid?: boolean | undefined;
|
|
18248
|
+
} | undefined;
|
|
17825
18249
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
17826
18250
|
manualEdits?: {
|
|
17827
18251
|
pcb_placements?: {
|
|
@@ -17950,6 +18374,16 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17950
18374
|
matchAdapt?: boolean | undefined;
|
|
17951
18375
|
matchAdaptTemplate?: any;
|
|
17952
18376
|
} | undefined;
|
|
18377
|
+
cellBorder?: {
|
|
18378
|
+
strokeWidth?: string | number | undefined;
|
|
18379
|
+
dashed?: boolean | undefined;
|
|
18380
|
+
solid?: boolean | undefined;
|
|
18381
|
+
} | undefined;
|
|
18382
|
+
border?: {
|
|
18383
|
+
strokeWidth?: string | number | undefined;
|
|
18384
|
+
dashed?: boolean | undefined;
|
|
18385
|
+
solid?: boolean | undefined;
|
|
18386
|
+
} | undefined;
|
|
17953
18387
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
17954
18388
|
manualEdits?: {
|
|
17955
18389
|
pcb_placements?: {
|
|
@@ -20966,8 +21400,8 @@ declare const fabricationNotePathProps: z.ZodObject<z.objectUtil.extendShape<Omi
|
|
|
20966
21400
|
trace_width?: number | undefined;
|
|
20967
21401
|
}[];
|
|
20968
21402
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
20969
|
-
color?: string | undefined;
|
|
20970
21403
|
strokeWidth?: number | undefined;
|
|
21404
|
+
color?: string | undefined;
|
|
20971
21405
|
}, {
|
|
20972
21406
|
route: {
|
|
20973
21407
|
x: string | number;
|
|
@@ -20981,8 +21415,8 @@ declare const fabricationNotePathProps: z.ZodObject<z.objectUtil.extendShape<Omi
|
|
|
20981
21415
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20982
21416
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20983
21417
|
} | undefined;
|
|
20984
|
-
color?: string | undefined;
|
|
20985
21418
|
strokeWidth?: string | number | undefined;
|
|
21419
|
+
color?: string | undefined;
|
|
20986
21420
|
}>;
|
|
20987
21421
|
type FabricationNotePathProps = z.input<typeof fabricationNotePathProps>;
|
|
20988
21422
|
|
|
@@ -22229,7 +22663,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
22229
22663
|
schY: number;
|
|
22230
22664
|
titleAlignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center";
|
|
22231
22665
|
titleInside: boolean;
|
|
22232
|
-
strokeStyle: "
|
|
22666
|
+
strokeStyle: "dashed" | "solid";
|
|
22233
22667
|
width?: number | undefined;
|
|
22234
22668
|
height?: number | undefined;
|
|
22235
22669
|
padding?: number | undefined;
|
|
@@ -22257,13 +22691,13 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
22257
22691
|
titleColor?: string | undefined;
|
|
22258
22692
|
titleFontSize?: string | number | undefined;
|
|
22259
22693
|
titleInside?: boolean | undefined;
|
|
22260
|
-
strokeStyle?: "
|
|
22694
|
+
strokeStyle?: "dashed" | "solid" | undefined;
|
|
22261
22695
|
}>, {
|
|
22262
22696
|
schX: number;
|
|
22263
22697
|
schY: number;
|
|
22264
22698
|
titleAlignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center";
|
|
22265
22699
|
titleInside: boolean;
|
|
22266
|
-
strokeStyle: "
|
|
22700
|
+
strokeStyle: "dashed" | "solid";
|
|
22267
22701
|
width?: number | undefined;
|
|
22268
22702
|
height?: number | undefined;
|
|
22269
22703
|
padding?: number | undefined;
|
|
@@ -22291,13 +22725,13 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
22291
22725
|
titleColor?: string | undefined;
|
|
22292
22726
|
titleFontSize?: string | number | undefined;
|
|
22293
22727
|
titleInside?: boolean | undefined;
|
|
22294
|
-
strokeStyle?: "
|
|
22728
|
+
strokeStyle?: "dashed" | "solid" | undefined;
|
|
22295
22729
|
}>, {
|
|
22296
22730
|
schX: number;
|
|
22297
22731
|
schY: number;
|
|
22298
22732
|
titleAlignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center";
|
|
22299
22733
|
titleInside: boolean;
|
|
22300
|
-
strokeStyle: "
|
|
22734
|
+
strokeStyle: "dashed" | "solid";
|
|
22301
22735
|
width?: number | undefined;
|
|
22302
22736
|
height?: number | undefined;
|
|
22303
22737
|
padding?: number | undefined;
|
|
@@ -22325,7 +22759,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
22325
22759
|
titleColor?: string | undefined;
|
|
22326
22760
|
titleFontSize?: string | number | undefined;
|
|
22327
22761
|
titleInside?: boolean | undefined;
|
|
22328
|
-
strokeStyle?: "
|
|
22762
|
+
strokeStyle?: "dashed" | "solid" | undefined;
|
|
22329
22763
|
}>;
|
|
22330
22764
|
type SchematicBoxProps = z.input<typeof schematicBoxProps>;
|
|
22331
22765
|
|
|
@@ -22581,7 +23015,7 @@ declare const silkscreenRectProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
22581
23015
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
22582
23016
|
strokeWidth?: number | undefined;
|
|
22583
23017
|
filled?: boolean | undefined;
|
|
22584
|
-
stroke?: "none" | "
|
|
23018
|
+
stroke?: "none" | "dashed" | "solid" | undefined;
|
|
22585
23019
|
}, {
|
|
22586
23020
|
width: string | number;
|
|
22587
23021
|
height: string | number;
|
|
@@ -22592,7 +23026,7 @@ declare const silkscreenRectProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
22592
23026
|
} | undefined;
|
|
22593
23027
|
strokeWidth?: string | number | undefined;
|
|
22594
23028
|
filled?: boolean | undefined;
|
|
22595
|
-
stroke?: "none" | "
|
|
23029
|
+
stroke?: "none" | "dashed" | "solid" | undefined;
|
|
22596
23030
|
}>;
|
|
22597
23031
|
type SilkscreenRectProps = z.input<typeof silkscreenRectProps>;
|
|
22598
23032
|
|
|
@@ -22910,4 +23344,4 @@ declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
|
22910
23344
|
|
|
22911
23345
|
declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
22912
23346
|
|
|
22913
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|
|
23347
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|