@tscircuit/props 0.0.309 → 0.0.310
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 +126 -1
- package/dist/index.js +575 -569
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +3 -0
- package/lib/common/symbolProp.ts +6 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1240,6 +1240,9 @@ type BasicFootprint = "0402" | "0603" | "0805" | "1206" | "1210" | "dip" | "axia
|
|
|
1240
1240
|
type FootprintProp = AutocompleteString<BasicFootprint> | KicadAutocompleteStringPath | ReactElement | FootprintSoupElements[];
|
|
1241
1241
|
declare const footprintProp: z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>;
|
|
1242
1242
|
|
|
1243
|
+
type SymbolProp = string | ReactElement;
|
|
1244
|
+
declare const symbolProp: z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>;
|
|
1245
|
+
|
|
1243
1246
|
interface PcbLayoutProps {
|
|
1244
1247
|
pcbX?: string | number;
|
|
1245
1248
|
pcbY?: string | number;
|
|
@@ -1283,6 +1286,7 @@ interface CommonLayoutProps {
|
|
|
1283
1286
|
schRotation?: string | number;
|
|
1284
1287
|
layer?: LayerRefInput;
|
|
1285
1288
|
footprint?: FootprintProp;
|
|
1289
|
+
symbol?: SymbolProp;
|
|
1286
1290
|
/**
|
|
1287
1291
|
* If true, X/Y coordinates will be interpreted relative to the parent group
|
|
1288
1292
|
*/
|
|
@@ -1379,10 +1383,12 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
1379
1383
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1380
1384
|
}>>;
|
|
1381
1385
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
1386
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
1382
1387
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
1383
1388
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
1384
1389
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
1385
1390
|
}, "strip", z.ZodTypeAny, {
|
|
1391
|
+
symbol?: SymbolProp | undefined;
|
|
1386
1392
|
pcbX?: number | undefined;
|
|
1387
1393
|
pcbY?: number | undefined;
|
|
1388
1394
|
pcbRotation?: number | undefined;
|
|
@@ -1408,6 +1414,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
1408
1414
|
footprint?: FootprintProp | undefined;
|
|
1409
1415
|
schRelative?: boolean | undefined;
|
|
1410
1416
|
}, {
|
|
1417
|
+
symbol?: SymbolProp | undefined;
|
|
1411
1418
|
pcbX?: string | number | undefined;
|
|
1412
1419
|
pcbY?: string | number | undefined;
|
|
1413
1420
|
pcbRotation?: string | number | undefined;
|
|
@@ -1523,6 +1530,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1523
1530
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1524
1531
|
}>>;
|
|
1525
1532
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
1533
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
1526
1534
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
1527
1535
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
1528
1536
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2097,6 +2105,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2097
2105
|
}>>>;
|
|
2098
2106
|
}, "strip", z.ZodTypeAny, {
|
|
2099
2107
|
name: string;
|
|
2108
|
+
symbol?: SymbolProp | undefined;
|
|
2100
2109
|
pcbX?: number | undefined;
|
|
2101
2110
|
pcbY?: number | undefined;
|
|
2102
2111
|
pcbRotation?: number | undefined;
|
|
@@ -2258,6 +2267,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2258
2267
|
doNotPlace?: boolean | undefined;
|
|
2259
2268
|
}, {
|
|
2260
2269
|
name: string;
|
|
2270
|
+
symbol?: SymbolProp | undefined;
|
|
2261
2271
|
pcbX?: string | number | undefined;
|
|
2262
2272
|
pcbY?: string | number | undefined;
|
|
2263
2273
|
pcbRotation?: string | number | undefined;
|
|
@@ -2450,6 +2460,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
2450
2460
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2451
2461
|
}>>;
|
|
2452
2462
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
2463
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
2453
2464
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
2454
2465
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
2455
2466
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3024,6 +3035,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3024
3035
|
}>>>;
|
|
3025
3036
|
}, "strip", z.ZodTypeAny, {
|
|
3026
3037
|
name: string;
|
|
3038
|
+
symbol?: SymbolProp | undefined;
|
|
3027
3039
|
pcbX?: number | undefined;
|
|
3028
3040
|
pcbY?: number | undefined;
|
|
3029
3041
|
pcbRotation?: number | undefined;
|
|
@@ -3185,6 +3197,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3185
3197
|
doNotPlace?: boolean | undefined;
|
|
3186
3198
|
}, {
|
|
3187
3199
|
name: string;
|
|
3200
|
+
symbol?: SymbolProp | undefined;
|
|
3188
3201
|
pcbX?: string | number | undefined;
|
|
3189
3202
|
pcbY?: string | number | undefined;
|
|
3190
3203
|
pcbRotation?: string | number | undefined;
|
|
@@ -4948,6 +4961,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
4948
4961
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4949
4962
|
}>>;
|
|
4950
4963
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
4964
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
4951
4965
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
4952
4966
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
4953
4967
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5266,6 +5280,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5266
5280
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
5267
5281
|
key: z.ZodOptional<z.ZodAny>;
|
|
5268
5282
|
}, "strip", z.ZodTypeAny, {
|
|
5283
|
+
symbol?: SymbolProp | undefined;
|
|
5269
5284
|
pcbX?: number | undefined;
|
|
5270
5285
|
pcbY?: number | undefined;
|
|
5271
5286
|
pcbRotation?: number | undefined;
|
|
@@ -5456,6 +5471,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5456
5471
|
schPack?: boolean | undefined;
|
|
5457
5472
|
schMatchAdapt?: boolean | undefined;
|
|
5458
5473
|
}, {
|
|
5474
|
+
symbol?: SymbolProp | undefined;
|
|
5459
5475
|
pcbX?: string | number | undefined;
|
|
5460
5476
|
pcbY?: string | number | undefined;
|
|
5461
5477
|
pcbRotation?: string | number | undefined;
|
|
@@ -5679,6 +5695,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
5679
5695
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5680
5696
|
}>>;
|
|
5681
5697
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
5698
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
5682
5699
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
5683
5700
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
5684
5701
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6220,6 +6237,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6220
6237
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6221
6238
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6222
6239
|
}, "strip", z.ZodTypeAny, {
|
|
6240
|
+
symbol?: SymbolProp | undefined;
|
|
6223
6241
|
pcbX?: number | undefined;
|
|
6224
6242
|
pcbY?: number | undefined;
|
|
6225
6243
|
pcbRotation?: number | undefined;
|
|
@@ -6467,6 +6485,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6467
6485
|
outlineOffsetX?: number | undefined;
|
|
6468
6486
|
outlineOffsetY?: number | undefined;
|
|
6469
6487
|
}, {
|
|
6488
|
+
symbol?: SymbolProp | undefined;
|
|
6470
6489
|
pcbX?: string | number | undefined;
|
|
6471
6490
|
pcbY?: string | number | undefined;
|
|
6472
6491
|
pcbRotation?: string | number | undefined;
|
|
@@ -6748,6 +6767,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
6748
6767
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6749
6768
|
}>>;
|
|
6750
6769
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
6770
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
6751
6771
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
6752
6772
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
6753
6773
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7292,6 +7312,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7292
7312
|
subcircuit: z.ZodLiteral<true>;
|
|
7293
7313
|
}, "strip", z.ZodTypeAny, {
|
|
7294
7314
|
subcircuit: true;
|
|
7315
|
+
symbol?: SymbolProp | undefined;
|
|
7295
7316
|
pcbX?: number | undefined;
|
|
7296
7317
|
pcbY?: number | undefined;
|
|
7297
7318
|
pcbRotation?: number | undefined;
|
|
@@ -7540,6 +7561,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7540
7561
|
outlineOffsetY?: number | undefined;
|
|
7541
7562
|
}, {
|
|
7542
7563
|
subcircuit: true;
|
|
7564
|
+
symbol?: SymbolProp | undefined;
|
|
7543
7565
|
pcbX?: string | number | undefined;
|
|
7544
7566
|
pcbY?: string | number | undefined;
|
|
7545
7567
|
pcbRotation?: string | number | undefined;
|
|
@@ -7821,6 +7843,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7821
7843
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7822
7844
|
}>>;
|
|
7823
7845
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
7846
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
7824
7847
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
7825
7848
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
7826
7849
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8141,6 +8164,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8141
8164
|
} & {
|
|
8142
8165
|
subcircuit: z.ZodOptional<z.ZodLiteral<false>>;
|
|
8143
8166
|
}, "strip", z.ZodTypeAny, {
|
|
8167
|
+
symbol?: SymbolProp | undefined;
|
|
8144
8168
|
pcbX?: number | undefined;
|
|
8145
8169
|
pcbY?: number | undefined;
|
|
8146
8170
|
pcbRotation?: number | undefined;
|
|
@@ -8332,6 +8356,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8332
8356
|
schMatchAdapt?: boolean | undefined;
|
|
8333
8357
|
subcircuit?: false | undefined;
|
|
8334
8358
|
}, {
|
|
8359
|
+
symbol?: SymbolProp | undefined;
|
|
8335
8360
|
pcbX?: string | number | undefined;
|
|
8336
8361
|
pcbY?: string | number | undefined;
|
|
8337
8362
|
pcbRotation?: string | number | undefined;
|
|
@@ -8554,6 +8579,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8554
8579
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8555
8580
|
}>>;
|
|
8556
8581
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
8582
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
8557
8583
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
8558
8584
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
8559
8585
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9098,6 +9124,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9098
9124
|
subcircuit: z.ZodLiteral<true>;
|
|
9099
9125
|
}, "strip", z.ZodTypeAny, {
|
|
9100
9126
|
subcircuit: true;
|
|
9127
|
+
symbol?: SymbolProp | undefined;
|
|
9101
9128
|
pcbX?: number | undefined;
|
|
9102
9129
|
pcbY?: number | undefined;
|
|
9103
9130
|
pcbRotation?: number | undefined;
|
|
@@ -9346,6 +9373,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9346
9373
|
outlineOffsetY?: number | undefined;
|
|
9347
9374
|
}, {
|
|
9348
9375
|
subcircuit: true;
|
|
9376
|
+
symbol?: SymbolProp | undefined;
|
|
9349
9377
|
pcbX?: string | number | undefined;
|
|
9350
9378
|
pcbY?: string | number | undefined;
|
|
9351
9379
|
pcbRotation?: string | number | undefined;
|
|
@@ -9634,6 +9662,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
9634
9662
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9635
9663
|
}>>;
|
|
9636
9664
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
9665
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
9637
9666
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
9638
9667
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
9639
9668
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10181,6 +10210,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
10181
10210
|
}, "strip", z.ZodTypeAny, {
|
|
10182
10211
|
material: "fr4" | "fr1";
|
|
10183
10212
|
layers: 2 | 4;
|
|
10213
|
+
symbol?: SymbolProp | undefined;
|
|
10184
10214
|
pcbX?: number | undefined;
|
|
10185
10215
|
pcbY?: number | undefined;
|
|
10186
10216
|
pcbRotation?: number | undefined;
|
|
@@ -10429,6 +10459,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
10429
10459
|
outlineOffsetY?: number | undefined;
|
|
10430
10460
|
borderRadius?: number | undefined;
|
|
10431
10461
|
}, {
|
|
10462
|
+
symbol?: SymbolProp | undefined;
|
|
10432
10463
|
pcbX?: string | number | undefined;
|
|
10433
10464
|
pcbY?: string | number | undefined;
|
|
10434
10465
|
pcbRotation?: string | number | undefined;
|
|
@@ -10721,6 +10752,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
10721
10752
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10722
10753
|
}>>;
|
|
10723
10754
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
10755
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
10724
10756
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
10725
10757
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
10726
10758
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11262,6 +11294,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11262
11294
|
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11263
11295
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11264
11296
|
}, "strip", z.ZodTypeAny, {
|
|
11297
|
+
symbol?: SymbolProp | undefined;
|
|
11265
11298
|
pcbX?: number | undefined;
|
|
11266
11299
|
pcbY?: number | undefined;
|
|
11267
11300
|
pcbRotation?: number | undefined;
|
|
@@ -11509,6 +11542,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11509
11542
|
outlineOffsetX?: number | undefined;
|
|
11510
11543
|
outlineOffsetY?: number | undefined;
|
|
11511
11544
|
}, {
|
|
11545
|
+
symbol?: SymbolProp | undefined;
|
|
11512
11546
|
pcbX?: string | number | undefined;
|
|
11513
11547
|
pcbY?: string | number | undefined;
|
|
11514
11548
|
pcbRotation?: string | number | undefined;
|
|
@@ -11934,6 +11968,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
11934
11968
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11935
11969
|
}>>;
|
|
11936
11970
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
11971
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
11937
11972
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
11938
11973
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
11939
11974
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12758,6 +12793,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12758
12793
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
12759
12794
|
}, "strip", z.ZodTypeAny, {
|
|
12760
12795
|
name: string;
|
|
12796
|
+
symbol?: SymbolProp | undefined;
|
|
12761
12797
|
pcbX?: number | undefined;
|
|
12762
12798
|
pcbY?: number | undefined;
|
|
12763
12799
|
pcbRotation?: number | undefined;
|
|
@@ -12996,6 +13032,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12996
13032
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
12997
13033
|
}, {
|
|
12998
13034
|
name: string;
|
|
13035
|
+
symbol?: SymbolProp | undefined;
|
|
12999
13036
|
pcbX?: string | number | undefined;
|
|
13000
13037
|
pcbY?: string | number | undefined;
|
|
13001
13038
|
pcbRotation?: string | number | undefined;
|
|
@@ -13268,6 +13305,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
13268
13305
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13269
13306
|
}>>;
|
|
13270
13307
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
13308
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
13271
13309
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
13272
13310
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
13273
13311
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14092,6 +14130,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14092
14130
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
14093
14131
|
}, "strip", z.ZodTypeAny, {
|
|
14094
14132
|
name: string;
|
|
14133
|
+
symbol?: SymbolProp | undefined;
|
|
14095
14134
|
pcbX?: number | undefined;
|
|
14096
14135
|
pcbY?: number | undefined;
|
|
14097
14136
|
pcbRotation?: number | undefined;
|
|
@@ -14330,6 +14369,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14330
14369
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14331
14370
|
}, {
|
|
14332
14371
|
name: string;
|
|
14372
|
+
symbol?: SymbolProp | undefined;
|
|
14333
14373
|
pcbX?: string | number | undefined;
|
|
14334
14374
|
pcbY?: string | number | undefined;
|
|
14335
14375
|
pcbRotation?: string | number | undefined;
|
|
@@ -14601,6 +14641,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
14601
14641
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14602
14642
|
}>>;
|
|
14603
14643
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
14644
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
14604
14645
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
14605
14646
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
14606
14647
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15425,6 +15466,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15425
15466
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
15426
15467
|
}, "strip", z.ZodTypeAny, {
|
|
15427
15468
|
name: string;
|
|
15469
|
+
symbol?: SymbolProp | undefined;
|
|
15428
15470
|
pcbX?: number | undefined;
|
|
15429
15471
|
pcbY?: number | undefined;
|
|
15430
15472
|
pcbRotation?: number | undefined;
|
|
@@ -15663,6 +15705,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15663
15705
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
15664
15706
|
}, {
|
|
15665
15707
|
name: string;
|
|
15708
|
+
symbol?: SymbolProp | undefined;
|
|
15666
15709
|
pcbX?: string | number | undefined;
|
|
15667
15710
|
pcbY?: string | number | undefined;
|
|
15668
15711
|
pcbRotation?: string | number | undefined;
|
|
@@ -15966,6 +16009,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
15966
16009
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15967
16010
|
}>>;
|
|
15968
16011
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
16012
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
15969
16013
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
15970
16014
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
15971
16015
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16779,6 +16823,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
16779
16823
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
16780
16824
|
}, "strip", z.ZodTypeAny, {
|
|
16781
16825
|
name: string;
|
|
16826
|
+
symbol?: SymbolProp | undefined;
|
|
16782
16827
|
pcbX?: number | undefined;
|
|
16783
16828
|
pcbY?: number | undefined;
|
|
16784
16829
|
pcbRotation?: number | undefined;
|
|
@@ -17012,6 +17057,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17012
17057
|
pinCount?: 2 | 3 | undefined;
|
|
17013
17058
|
}, {
|
|
17014
17059
|
name: string;
|
|
17060
|
+
symbol?: SymbolProp | undefined;
|
|
17015
17061
|
pcbX?: string | number | undefined;
|
|
17016
17062
|
pcbY?: string | number | undefined;
|
|
17017
17063
|
pcbRotation?: string | number | undefined;
|
|
@@ -17287,6 +17333,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
17287
17333
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17288
17334
|
}>>;
|
|
17289
17335
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
17336
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
17290
17337
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
17291
17338
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
17292
17339
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18103,6 +18150,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18103
18150
|
bridged: z.ZodOptional<z.ZodBoolean>;
|
|
18104
18151
|
}, "strip", z.ZodTypeAny, {
|
|
18105
18152
|
name: string;
|
|
18153
|
+
symbol?: SymbolProp | undefined;
|
|
18106
18154
|
pcbX?: number | undefined;
|
|
18107
18155
|
pcbY?: number | undefined;
|
|
18108
18156
|
pcbRotation?: number | undefined;
|
|
@@ -18338,6 +18386,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18338
18386
|
bridged?: boolean | undefined;
|
|
18339
18387
|
}, {
|
|
18340
18388
|
name: string;
|
|
18389
|
+
symbol?: SymbolProp | undefined;
|
|
18341
18390
|
pcbX?: string | number | undefined;
|
|
18342
18391
|
pcbY?: string | number | undefined;
|
|
18343
18392
|
pcbRotation?: string | number | undefined;
|
|
@@ -18624,6 +18673,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
18624
18673
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
18625
18674
|
}>>;
|
|
18626
18675
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
18676
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
18627
18677
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
18628
18678
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
18629
18679
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19335,6 +19385,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19335
19385
|
standard: z.ZodOptional<z.ZodEnum<["usb_c", "m2"]>>;
|
|
19336
19386
|
}, "strip", z.ZodTypeAny, {
|
|
19337
19387
|
name: string;
|
|
19388
|
+
symbol?: SymbolProp | undefined;
|
|
19338
19389
|
pcbX?: number | undefined;
|
|
19339
19390
|
pcbY?: number | undefined;
|
|
19340
19391
|
pcbRotation?: number | undefined;
|
|
@@ -19540,6 +19591,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19540
19591
|
standard?: "usb_c" | "m2" | undefined;
|
|
19541
19592
|
}, {
|
|
19542
19593
|
name: string;
|
|
19594
|
+
symbol?: SymbolProp | undefined;
|
|
19543
19595
|
pcbX?: string | number | undefined;
|
|
19544
19596
|
pcbY?: string | number | undefined;
|
|
19545
19597
|
pcbRotation?: string | number | undefined;
|
|
@@ -19804,6 +19856,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
19804
19856
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19805
19857
|
}>>;
|
|
19806
19858
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
19859
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
19807
19860
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
19808
19861
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
19809
19862
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -20385,6 +20438,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20385
20438
|
}, "strip", z.ZodTypeAny, {
|
|
20386
20439
|
name: string;
|
|
20387
20440
|
currentRating: string | number;
|
|
20441
|
+
symbol?: SymbolProp | undefined;
|
|
20388
20442
|
pcbX?: number | undefined;
|
|
20389
20443
|
pcbY?: number | undefined;
|
|
20390
20444
|
pcbRotation?: number | undefined;
|
|
@@ -20551,6 +20605,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20551
20605
|
}, {
|
|
20552
20606
|
name: string;
|
|
20553
20607
|
currentRating: string | number;
|
|
20608
|
+
symbol?: SymbolProp | undefined;
|
|
20554
20609
|
pcbX?: string | number | undefined;
|
|
20555
20610
|
pcbY?: string | number | undefined;
|
|
20556
20611
|
pcbRotation?: string | number | undefined;
|
|
@@ -21412,6 +21467,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
21412
21467
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
21413
21468
|
}>>;
|
|
21414
21469
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
21470
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
21415
21471
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
21416
21472
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
21417
21473
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -21995,6 +22051,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
21995
22051
|
}, "strip", z.ZodTypeAny, {
|
|
21996
22052
|
name: string;
|
|
21997
22053
|
resistance: number;
|
|
22054
|
+
symbol?: SymbolProp | undefined;
|
|
21998
22055
|
pcbX?: number | undefined;
|
|
21999
22056
|
pcbY?: number | undefined;
|
|
22000
22057
|
pcbRotation?: number | undefined;
|
|
@@ -22163,6 +22220,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22163
22220
|
}, {
|
|
22164
22221
|
name: string;
|
|
22165
22222
|
resistance: string | number;
|
|
22223
|
+
symbol?: SymbolProp | undefined;
|
|
22166
22224
|
pcbX?: string | number | undefined;
|
|
22167
22225
|
pcbY?: string | number | undefined;
|
|
22168
22226
|
pcbRotation?: string | number | undefined;
|
|
@@ -22368,6 +22426,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
22368
22426
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
22369
22427
|
}>>;
|
|
22370
22428
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
22429
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
22371
22430
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
22372
22431
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
22373
22432
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22946,6 +23005,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
22946
23005
|
}, "strip", z.ZodTypeAny, {
|
|
22947
23006
|
name: string;
|
|
22948
23007
|
maxResistance: number;
|
|
23008
|
+
symbol?: SymbolProp | undefined;
|
|
22949
23009
|
pcbX?: number | undefined;
|
|
22950
23010
|
pcbY?: number | undefined;
|
|
22951
23011
|
pcbRotation?: number | undefined;
|
|
@@ -23109,6 +23169,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23109
23169
|
}, {
|
|
23110
23170
|
name: string;
|
|
23111
23171
|
maxResistance: string | number;
|
|
23172
|
+
symbol?: SymbolProp | undefined;
|
|
23112
23173
|
pcbX?: string | number | undefined;
|
|
23113
23174
|
pcbY?: string | number | undefined;
|
|
23114
23175
|
pcbRotation?: string | number | undefined;
|
|
@@ -23315,6 +23376,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
23315
23376
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23316
23377
|
}>>;
|
|
23317
23378
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
23379
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
23318
23380
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
23319
23381
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
23320
23382
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23899,6 +23961,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
23899
23961
|
name: string;
|
|
23900
23962
|
frequency: number;
|
|
23901
23963
|
loadCapacitance: number;
|
|
23964
|
+
symbol?: SymbolProp | undefined;
|
|
23902
23965
|
pcbX?: number | undefined;
|
|
23903
23966
|
pcbY?: number | undefined;
|
|
23904
23967
|
pcbRotation?: number | undefined;
|
|
@@ -24067,6 +24130,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24067
24130
|
name: string;
|
|
24068
24131
|
frequency: string | number;
|
|
24069
24132
|
loadCapacitance: string | number;
|
|
24133
|
+
symbol?: SymbolProp | undefined;
|
|
24070
24134
|
pcbX?: string | number | undefined;
|
|
24071
24135
|
pcbY?: string | number | undefined;
|
|
24072
24136
|
pcbRotation?: string | number | undefined;
|
|
@@ -24271,6 +24335,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
24271
24335
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24272
24336
|
}>>;
|
|
24273
24337
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
24338
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
24274
24339
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
24275
24340
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
24276
24341
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24851,6 +24916,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
24851
24916
|
name: string;
|
|
24852
24917
|
frequency: number;
|
|
24853
24918
|
loadCapacitance: number;
|
|
24919
|
+
symbol?: SymbolProp | undefined;
|
|
24854
24920
|
pcbX?: number | undefined;
|
|
24855
24921
|
pcbY?: number | undefined;
|
|
24856
24922
|
pcbRotation?: number | undefined;
|
|
@@ -25015,6 +25081,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25015
25081
|
name: string;
|
|
25016
25082
|
frequency: string | number;
|
|
25017
25083
|
loadCapacitance: string | number;
|
|
25084
|
+
symbol?: SymbolProp | undefined;
|
|
25018
25085
|
pcbX?: string | number | undefined;
|
|
25019
25086
|
pcbY?: string | number | undefined;
|
|
25020
25087
|
pcbRotation?: string | number | undefined;
|
|
@@ -25221,6 +25288,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
25221
25288
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25222
25289
|
}>>;
|
|
25223
25290
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
25291
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
25224
25292
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
25225
25293
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
25226
25294
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25779,6 +25847,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
25779
25847
|
}, "strip", z.ZodTypeAny, {
|
|
25780
25848
|
material: "fr4" | "fr1";
|
|
25781
25849
|
layers: 2 | 4;
|
|
25850
|
+
symbol?: SymbolProp | undefined;
|
|
25782
25851
|
pcbX?: number | undefined;
|
|
25783
25852
|
pcbY?: number | undefined;
|
|
25784
25853
|
pcbRotation?: number | undefined;
|
|
@@ -26037,6 +26106,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26037
26106
|
pinPitch?: number | undefined;
|
|
26038
26107
|
innerHoles?: boolean | undefined;
|
|
26039
26108
|
}, {
|
|
26109
|
+
symbol?: SymbolProp | undefined;
|
|
26040
26110
|
pcbX?: string | number | undefined;
|
|
26041
26111
|
pcbY?: string | number | undefined;
|
|
26042
26112
|
pcbRotation?: string | number | undefined;
|
|
@@ -26347,6 +26417,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
26347
26417
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
26348
26418
|
}>>;
|
|
26349
26419
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
26420
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
26350
26421
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
26351
26422
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
26352
26423
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26936,6 +27007,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
26936
27007
|
capacitance: number;
|
|
26937
27008
|
schShowRatings: boolean;
|
|
26938
27009
|
polarized: boolean;
|
|
27010
|
+
symbol?: SymbolProp | undefined;
|
|
26939
27011
|
pcbX?: number | undefined;
|
|
26940
27012
|
pcbY?: number | undefined;
|
|
26941
27013
|
pcbRotation?: number | undefined;
|
|
@@ -27106,6 +27178,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27106
27178
|
}, {
|
|
27107
27179
|
name: string;
|
|
27108
27180
|
capacitance: string | number;
|
|
27181
|
+
symbol?: SymbolProp | undefined;
|
|
27109
27182
|
pcbX?: string | number | undefined;
|
|
27110
27183
|
pcbY?: string | number | undefined;
|
|
27111
27184
|
pcbRotation?: string | number | undefined;
|
|
@@ -29325,6 +29398,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
29325
29398
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
29326
29399
|
}>>;
|
|
29327
29400
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
29401
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
29328
29402
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
29329
29403
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
29330
29404
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29904,6 +29978,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
29904
29978
|
schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
|
|
29905
29979
|
}, "strip", z.ZodTypeAny, {
|
|
29906
29980
|
name: string;
|
|
29981
|
+
symbol?: SymbolProp | undefined;
|
|
29907
29982
|
pcbX?: number | undefined;
|
|
29908
29983
|
pcbY?: number | undefined;
|
|
29909
29984
|
pcbRotation?: number | undefined;
|
|
@@ -30069,6 +30144,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30069
30144
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
30070
30145
|
}, {
|
|
30071
30146
|
name: string;
|
|
30147
|
+
symbol?: SymbolProp | undefined;
|
|
30072
30148
|
pcbX?: string | number | undefined;
|
|
30073
30149
|
pcbY?: string | number | undefined;
|
|
30074
30150
|
pcbRotation?: string | number | undefined;
|
|
@@ -30348,6 +30424,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
30348
30424
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
30349
30425
|
}>>;
|
|
30350
30426
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
30427
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
30351
30428
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
30352
30429
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
30353
30430
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31070,6 +31147,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31070
31147
|
name: string;
|
|
31071
31148
|
gender: "male" | "female" | "unpopulated";
|
|
31072
31149
|
pinCount: number;
|
|
31150
|
+
symbol?: SymbolProp | undefined;
|
|
31073
31151
|
pcbX?: number | undefined;
|
|
31074
31152
|
pcbY?: number | undefined;
|
|
31075
31153
|
pcbRotation?: number | undefined;
|
|
@@ -31283,6 +31361,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31283
31361
|
}, {
|
|
31284
31362
|
name: string;
|
|
31285
31363
|
pinCount: number;
|
|
31364
|
+
symbol?: SymbolProp | undefined;
|
|
31286
31365
|
pcbX?: string | number | undefined;
|
|
31287
31366
|
pcbY?: string | number | undefined;
|
|
31288
31367
|
pcbRotation?: string | number | undefined;
|
|
@@ -31599,6 +31678,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
31599
31678
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
31600
31679
|
}>>;
|
|
31601
31680
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
31681
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
31602
31682
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
31603
31683
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
31604
31684
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32423,6 +32503,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
32423
32503
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
32424
32504
|
}, "strip", z.ZodTypeAny, {
|
|
32425
32505
|
name: string;
|
|
32506
|
+
symbol?: SymbolProp | undefined;
|
|
32426
32507
|
pcbX?: number | undefined;
|
|
32427
32508
|
pcbY?: number | undefined;
|
|
32428
32509
|
pcbRotation?: number | undefined;
|
|
@@ -32661,6 +32742,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
32661
32742
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
32662
32743
|
}, {
|
|
32663
32744
|
name: string;
|
|
32745
|
+
symbol?: SymbolProp | undefined;
|
|
32664
32746
|
pcbX?: string | number | undefined;
|
|
32665
32747
|
pcbY?: string | number | undefined;
|
|
32666
32748
|
pcbRotation?: string | number | undefined;
|
|
@@ -32932,6 +33014,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
32932
33014
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
32933
33015
|
}>>;
|
|
32934
33016
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
33017
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
32935
33018
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
32936
33019
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
32937
33020
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33473,6 +33556,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
33473
33556
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
33474
33557
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
33475
33558
|
}, "strip", z.ZodTypeAny, {
|
|
33559
|
+
symbol?: SymbolProp | undefined;
|
|
33476
33560
|
pcbX?: number | undefined;
|
|
33477
33561
|
pcbY?: number | undefined;
|
|
33478
33562
|
pcbRotation?: number | undefined;
|
|
@@ -33720,6 +33804,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
33720
33804
|
outlineOffsetX?: number | undefined;
|
|
33721
33805
|
outlineOffsetY?: number | undefined;
|
|
33722
33806
|
}, {
|
|
33807
|
+
symbol?: SymbolProp | undefined;
|
|
33723
33808
|
pcbX?: string | number | undefined;
|
|
33724
33809
|
pcbY?: string | number | undefined;
|
|
33725
33810
|
pcbRotation?: string | number | undefined;
|
|
@@ -34008,6 +34093,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
34008
34093
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
34009
34094
|
}>>;
|
|
34010
34095
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
34096
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
34011
34097
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
34012
34098
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
34013
34099
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34586,6 +34672,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
34586
34672
|
}, "strip", z.ZodTypeAny, {
|
|
34587
34673
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
34588
34674
|
name: string;
|
|
34675
|
+
symbol?: SymbolProp | undefined;
|
|
34589
34676
|
pcbX?: number | undefined;
|
|
34590
34677
|
pcbY?: number | undefined;
|
|
34591
34678
|
pcbRotation?: number | undefined;
|
|
@@ -34749,6 +34836,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
34749
34836
|
}, {
|
|
34750
34837
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
34751
34838
|
name: string;
|
|
34839
|
+
symbol?: SymbolProp | undefined;
|
|
34752
34840
|
pcbX?: string | number | undefined;
|
|
34753
34841
|
pcbY?: string | number | undefined;
|
|
34754
34842
|
pcbRotation?: string | number | undefined;
|
|
@@ -34949,6 +35037,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
34949
35037
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
34950
35038
|
}>>;
|
|
34951
35039
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
35040
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
34952
35041
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
34953
35042
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
34954
35043
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -35528,6 +35617,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
35528
35617
|
name: string;
|
|
35529
35618
|
channelType: "n" | "p";
|
|
35530
35619
|
mosfetMode: "enhancement" | "depletion";
|
|
35620
|
+
symbol?: SymbolProp | undefined;
|
|
35531
35621
|
pcbX?: number | undefined;
|
|
35532
35622
|
pcbY?: number | undefined;
|
|
35533
35623
|
pcbRotation?: number | undefined;
|
|
@@ -35691,6 +35781,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
35691
35781
|
name: string;
|
|
35692
35782
|
channelType: "n" | "p";
|
|
35693
35783
|
mosfetMode: "enhancement" | "depletion";
|
|
35784
|
+
symbol?: SymbolProp | undefined;
|
|
35694
35785
|
pcbX?: string | number | undefined;
|
|
35695
35786
|
pcbY?: string | number | undefined;
|
|
35696
35787
|
pcbRotation?: string | number | undefined;
|
|
@@ -35894,6 +35985,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
35894
35985
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
35895
35986
|
}>>;
|
|
35896
35987
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
35988
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
35897
35989
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
35898
35990
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
35899
35991
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -36474,6 +36566,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
36474
36566
|
}, "strip", z.ZodTypeAny, {
|
|
36475
36567
|
name: string;
|
|
36476
36568
|
inductance: number;
|
|
36569
|
+
symbol?: SymbolProp | undefined;
|
|
36477
36570
|
pcbX?: number | undefined;
|
|
36478
36571
|
pcbY?: number | undefined;
|
|
36479
36572
|
pcbRotation?: number | undefined;
|
|
@@ -36639,6 +36732,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
36639
36732
|
}, {
|
|
36640
36733
|
name: string;
|
|
36641
36734
|
inductance: string | number;
|
|
36735
|
+
symbol?: SymbolProp | undefined;
|
|
36642
36736
|
pcbX?: string | number | undefined;
|
|
36643
36737
|
pcbY?: string | number | undefined;
|
|
36644
36738
|
pcbRotation?: string | number | undefined;
|
|
@@ -36835,6 +36929,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
36835
36929
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
36836
36930
|
}>>;
|
|
36837
36931
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
36932
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
36838
36933
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
36839
36934
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
36840
36935
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37420,6 +37515,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
37420
37515
|
}, "strip", z.ZodTypeAny, {
|
|
37421
37516
|
name: string;
|
|
37422
37517
|
variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
|
|
37518
|
+
symbol?: SymbolProp | undefined;
|
|
37423
37519
|
pcbX?: number | undefined;
|
|
37424
37520
|
pcbY?: number | undefined;
|
|
37425
37521
|
pcbRotation?: number | undefined;
|
|
@@ -37589,6 +37685,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
37589
37685
|
tvs?: boolean | undefined;
|
|
37590
37686
|
}, {
|
|
37591
37687
|
name: string;
|
|
37688
|
+
symbol?: SymbolProp | undefined;
|
|
37592
37689
|
pcbX?: string | number | undefined;
|
|
37593
37690
|
pcbY?: string | number | undefined;
|
|
37594
37691
|
pcbRotation?: string | number | undefined;
|
|
@@ -37762,6 +37859,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
37762
37859
|
}>, {
|
|
37763
37860
|
name: string;
|
|
37764
37861
|
variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
|
|
37862
|
+
symbol?: SymbolProp | undefined;
|
|
37765
37863
|
pcbX?: number | undefined;
|
|
37766
37864
|
pcbY?: number | undefined;
|
|
37767
37865
|
pcbRotation?: number | undefined;
|
|
@@ -37931,6 +38029,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
37931
38029
|
tvs?: boolean | undefined;
|
|
37932
38030
|
}, {
|
|
37933
38031
|
name: string;
|
|
38032
|
+
symbol?: SymbolProp | undefined;
|
|
37934
38033
|
pcbX?: string | number | undefined;
|
|
37935
38034
|
pcbY?: string | number | undefined;
|
|
37936
38035
|
pcbRotation?: string | number | undefined;
|
|
@@ -38110,6 +38209,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38110
38209
|
tvs: boolean;
|
|
38111
38210
|
name: string;
|
|
38112
38211
|
variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
|
|
38212
|
+
symbol?: SymbolProp | undefined;
|
|
38113
38213
|
pcbX?: number | undefined;
|
|
38114
38214
|
pcbY?: number | undefined;
|
|
38115
38215
|
pcbRotation?: number | undefined;
|
|
@@ -38273,6 +38373,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38273
38373
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
38274
38374
|
}, {
|
|
38275
38375
|
name: string;
|
|
38376
|
+
symbol?: SymbolProp | undefined;
|
|
38276
38377
|
pcbX?: string | number | undefined;
|
|
38277
38378
|
pcbY?: string | number | undefined;
|
|
38278
38379
|
pcbRotation?: string | number | undefined;
|
|
@@ -38497,6 +38598,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
38497
38598
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38498
38599
|
}>>;
|
|
38499
38600
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
38601
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
38500
38602
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
38501
38603
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
38502
38604
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -39078,6 +39180,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
39078
39180
|
laser: z.ZodOptional<z.ZodBoolean>;
|
|
39079
39181
|
}, "strip", z.ZodTypeAny, {
|
|
39080
39182
|
name: string;
|
|
39183
|
+
symbol?: SymbolProp | undefined;
|
|
39081
39184
|
pcbX?: number | undefined;
|
|
39082
39185
|
pcbY?: number | undefined;
|
|
39083
39186
|
pcbRotation?: number | undefined;
|
|
@@ -39245,6 +39348,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
39245
39348
|
laser?: boolean | undefined;
|
|
39246
39349
|
}, {
|
|
39247
39350
|
name: string;
|
|
39351
|
+
symbol?: SymbolProp | undefined;
|
|
39248
39352
|
pcbX?: string | number | undefined;
|
|
39249
39353
|
pcbY?: string | number | undefined;
|
|
39250
39354
|
pcbRotation?: string | number | undefined;
|
|
@@ -39454,6 +39558,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
39454
39558
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39455
39559
|
}>>;
|
|
39456
39560
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
39561
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
39457
39562
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
39458
39563
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
39459
39564
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40036,6 +40141,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
40036
40141
|
}, "strip", z.ZodTypeAny, {
|
|
40037
40142
|
name: string;
|
|
40038
40143
|
isNormallyClosed: boolean;
|
|
40144
|
+
symbol?: SymbolProp | undefined;
|
|
40039
40145
|
type?: "spst" | "spdt" | "dpst" | "dpdt" | undefined;
|
|
40040
40146
|
pcbX?: number | undefined;
|
|
40041
40147
|
pcbY?: number | undefined;
|
|
@@ -40202,6 +40308,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
40202
40308
|
dpdt?: boolean | undefined;
|
|
40203
40309
|
}, {
|
|
40204
40310
|
name: string;
|
|
40311
|
+
symbol?: SymbolProp | undefined;
|
|
40205
40312
|
type?: "spst" | "spdt" | "dpst" | "dpdt" | undefined;
|
|
40206
40313
|
pcbX?: string | number | undefined;
|
|
40207
40314
|
pcbY?: string | number | undefined;
|
|
@@ -40371,6 +40478,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
40371
40478
|
isNormallyClosed?: boolean | undefined;
|
|
40372
40479
|
}>, SwitchProps, {
|
|
40373
40480
|
name: string;
|
|
40481
|
+
symbol?: SymbolProp | undefined;
|
|
40374
40482
|
type?: "spst" | "spdt" | "dpst" | "dpdt" | undefined;
|
|
40375
40483
|
pcbX?: string | number | undefined;
|
|
40376
40484
|
pcbY?: string | number | undefined;
|
|
@@ -40808,6 +40916,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
40808
40916
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40809
40917
|
}>>;
|
|
40810
40918
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
40919
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
40811
40920
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
40812
40921
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
40813
40922
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40839,6 +40948,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
40839
40948
|
outerDiameter: number;
|
|
40840
40949
|
fromLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40841
40950
|
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40951
|
+
symbol?: SymbolProp | undefined;
|
|
40842
40952
|
pcbX?: number | undefined;
|
|
40843
40953
|
pcbY?: number | undefined;
|
|
40844
40954
|
pcbRotation?: number | undefined;
|
|
@@ -40874,6 +40984,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
40874
40984
|
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
40875
40985
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40876
40986
|
};
|
|
40987
|
+
symbol?: SymbolProp | undefined;
|
|
40877
40988
|
pcbX?: string | number | undefined;
|
|
40878
40989
|
pcbY?: string | number | undefined;
|
|
40879
40990
|
pcbRotation?: string | number | undefined;
|
|
@@ -40961,6 +41072,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
40961
41072
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40962
41073
|
}>>;
|
|
40963
41074
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
41075
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
40964
41076
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
40965
41077
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
40966
41078
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -41543,6 +41655,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
41543
41655
|
}, "strip", z.ZodTypeAny, {
|
|
41544
41656
|
name: string;
|
|
41545
41657
|
padShape: "circle" | "rect";
|
|
41658
|
+
symbol?: SymbolProp | undefined;
|
|
41546
41659
|
pcbX?: number | undefined;
|
|
41547
41660
|
pcbY?: number | undefined;
|
|
41548
41661
|
pcbRotation?: number | undefined;
|
|
@@ -41709,6 +41822,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
41709
41822
|
padDiameter?: number | undefined;
|
|
41710
41823
|
}, {
|
|
41711
41824
|
name: string;
|
|
41825
|
+
symbol?: SymbolProp | undefined;
|
|
41712
41826
|
pcbX?: string | number | undefined;
|
|
41713
41827
|
pcbY?: string | number | undefined;
|
|
41714
41828
|
pcbRotation?: string | number | undefined;
|
|
@@ -41879,6 +41993,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
41879
41993
|
}>, {
|
|
41880
41994
|
name: string;
|
|
41881
41995
|
padShape: "circle" | "rect";
|
|
41996
|
+
symbol?: SymbolProp | undefined;
|
|
41882
41997
|
pcbX?: number | undefined;
|
|
41883
41998
|
pcbY?: number | undefined;
|
|
41884
41999
|
pcbRotation?: number | undefined;
|
|
@@ -42045,6 +42160,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42045
42160
|
padDiameter?: number | undefined;
|
|
42046
42161
|
}, {
|
|
42047
42162
|
name: string;
|
|
42163
|
+
symbol?: SymbolProp | undefined;
|
|
42048
42164
|
pcbX?: string | number | undefined;
|
|
42049
42165
|
pcbY?: string | number | undefined;
|
|
42050
42166
|
pcbRotation?: string | number | undefined;
|
|
@@ -42841,6 +42957,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
42841
42957
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
42842
42958
|
}>>;
|
|
42843
42959
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
42960
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
42844
42961
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
42845
42962
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
42846
42963
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -43418,6 +43535,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
43418
43535
|
}, "strip", z.ZodTypeAny, {
|
|
43419
43536
|
name: string;
|
|
43420
43537
|
voltage: number;
|
|
43538
|
+
symbol?: SymbolProp | undefined;
|
|
43421
43539
|
pcbX?: number | undefined;
|
|
43422
43540
|
pcbY?: number | undefined;
|
|
43423
43541
|
pcbRotation?: number | undefined;
|
|
@@ -43580,6 +43698,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
43580
43698
|
}, {
|
|
43581
43699
|
name: string;
|
|
43582
43700
|
voltage: string | number;
|
|
43701
|
+
symbol?: SymbolProp | undefined;
|
|
43583
43702
|
pcbX?: string | number | undefined;
|
|
43584
43703
|
pcbY?: string | number | undefined;
|
|
43585
43704
|
pcbRotation?: string | number | undefined;
|
|
@@ -43786,6 +43905,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
43786
43905
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43787
43906
|
}>>;
|
|
43788
43907
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
43908
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
43789
43909
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
43790
43910
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
43791
43911
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44368,6 +44488,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
44368
44488
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
44369
44489
|
}, "strip", z.ZodTypeAny, {
|
|
44370
44490
|
name: string;
|
|
44491
|
+
symbol?: SymbolProp | undefined;
|
|
44371
44492
|
pcbX?: number | undefined;
|
|
44372
44493
|
pcbY?: number | undefined;
|
|
44373
44494
|
pcbRotation?: number | undefined;
|
|
@@ -44536,6 +44657,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
44536
44657
|
dutyCycle?: number | undefined;
|
|
44537
44658
|
}, {
|
|
44538
44659
|
name: string;
|
|
44660
|
+
symbol?: SymbolProp | undefined;
|
|
44539
44661
|
pcbX?: string | number | undefined;
|
|
44540
44662
|
pcbY?: string | number | undefined;
|
|
44541
44663
|
pcbRotation?: string | number | undefined;
|
|
@@ -45609,6 +45731,7 @@ declare const portProps: z.ZodObject<{
|
|
|
45609
45731
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45610
45732
|
}>>;
|
|
45611
45733
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
45734
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
45612
45735
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
45613
45736
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
45614
45737
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -45620,6 +45743,7 @@ declare const portProps: z.ZodObject<{
|
|
|
45620
45743
|
}, "strip", z.ZodTypeAny, {
|
|
45621
45744
|
name: string;
|
|
45622
45745
|
direction: "up" | "down" | "left" | "right";
|
|
45746
|
+
symbol?: SymbolProp | undefined;
|
|
45623
45747
|
pcbX?: number | undefined;
|
|
45624
45748
|
pcbY?: number | undefined;
|
|
45625
45749
|
pcbRotation?: number | undefined;
|
|
@@ -45649,6 +45773,7 @@ declare const portProps: z.ZodObject<{
|
|
|
45649
45773
|
}, {
|
|
45650
45774
|
name: string;
|
|
45651
45775
|
direction: "up" | "down" | "left" | "right";
|
|
45776
|
+
symbol?: SymbolProp | undefined;
|
|
45652
45777
|
pcbX?: string | number | undefined;
|
|
45653
45778
|
pcbY?: string | number | undefined;
|
|
45654
45779
|
pcbRotation?: string | number | undefined;
|
|
@@ -45703,4 +45828,4 @@ interface PlatformConfig {
|
|
|
45703
45828
|
}
|
|
45704
45829
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
45705
45830
|
|
|
45706
|
-
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCopperPourProps, 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 CopperPourProps, type CopperPourPropsInput, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, 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 FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, 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 PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCopperPourProps, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCopperPourProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicCellProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRowProps, type SchematicTableProps, 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 SymbolProps, type SymbolPropsInput, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCopperPourProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, 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, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCopperPourProps, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCopperPourProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicCellProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
45831
|
+
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCopperPourProps, 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 CopperPourProps, type CopperPourPropsInput, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, 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 FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, 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 PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCopperPourProps, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCopperPourProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicCellProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRowProps, type SchematicTableProps, 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 SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCopperPourProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, 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, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCopperPourProps, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCopperPourProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicCellProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|