@tscircuit/props 0.0.521 → 0.0.522
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 +16 -0
- package/dist/index.d.ts +121 -1
- package/dist/index.js +126 -112
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +10 -0
- package/lib/components/schematic-section.ts +20 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7103,6 +7103,10 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
7103
7103
|
showAsTranslucentModel?: boolean;
|
|
7104
7104
|
mfn?: string;
|
|
7105
7105
|
manufacturerPartNumber?: string;
|
|
7106
|
+
/**
|
|
7107
|
+
*This component will be drawn as part of this section e.g. \"Power\
|
|
7108
|
+
*/
|
|
7109
|
+
schSectionName?: string;
|
|
7106
7110
|
}
|
|
7107
7111
|
declare const commonComponentProps: z.ZodObject<{
|
|
7108
7112
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -7197,6 +7201,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
7197
7201
|
key: z.ZodOptional<z.ZodAny>;
|
|
7198
7202
|
name: z.ZodString;
|
|
7199
7203
|
displayName: z.ZodOptional<z.ZodString>;
|
|
7204
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
7200
7205
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
7201
7206
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
7202
7207
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -11037,6 +11042,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
11037
11042
|
obstructsWithinBounds?: boolean | undefined;
|
|
11038
11043
|
mfn?: string | undefined;
|
|
11039
11044
|
manufacturerPartNumber?: string | undefined;
|
|
11045
|
+
schSectionName?: string | undefined;
|
|
11040
11046
|
}, {
|
|
11041
11047
|
name: string;
|
|
11042
11048
|
symbol?: SymbolProp | undefined;
|
|
@@ -11615,6 +11621,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
11615
11621
|
obstructsWithinBounds?: boolean | undefined;
|
|
11616
11622
|
mfn?: string | undefined;
|
|
11617
11623
|
manufacturerPartNumber?: string | undefined;
|
|
11624
|
+
schSectionName?: string | undefined;
|
|
11618
11625
|
}>;
|
|
11619
11626
|
declare const componentProps: z.ZodObject<{
|
|
11620
11627
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -11709,6 +11716,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
11709
11716
|
key: z.ZodOptional<z.ZodAny>;
|
|
11710
11717
|
name: z.ZodString;
|
|
11711
11718
|
displayName: z.ZodOptional<z.ZodString>;
|
|
11719
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
11712
11720
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
11713
11721
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
11714
11722
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -15549,6 +15557,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
15549
15557
|
obstructsWithinBounds?: boolean | undefined;
|
|
15550
15558
|
mfn?: string | undefined;
|
|
15551
15559
|
manufacturerPartNumber?: string | undefined;
|
|
15560
|
+
schSectionName?: string | undefined;
|
|
15552
15561
|
}, {
|
|
15553
15562
|
name: string;
|
|
15554
15563
|
symbol?: SymbolProp | undefined;
|
|
@@ -16127,6 +16136,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
16127
16136
|
obstructsWithinBounds?: boolean | undefined;
|
|
16128
16137
|
mfn?: string | undefined;
|
|
16129
16138
|
manufacturerPartNumber?: string | undefined;
|
|
16139
|
+
schSectionName?: string | undefined;
|
|
16130
16140
|
}>;
|
|
16131
16141
|
type ComponentProps = z.input<typeof componentProps>;
|
|
16132
16142
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -29600,6 +29610,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
29600
29610
|
key: z.ZodOptional<z.ZodAny>;
|
|
29601
29611
|
name: z.ZodString;
|
|
29602
29612
|
displayName: z.ZodOptional<z.ZodString>;
|
|
29613
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
29603
29614
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
29604
29615
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
29605
29616
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -33738,6 +33749,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33738
33749
|
obstructsWithinBounds?: boolean | undefined;
|
|
33739
33750
|
mfn?: string | undefined;
|
|
33740
33751
|
manufacturerPartNumber?: string | undefined;
|
|
33752
|
+
schSectionName?: string | undefined;
|
|
33741
33753
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33742
33754
|
schPinArrangement?: {
|
|
33743
33755
|
leftSize?: number | undefined;
|
|
@@ -34393,6 +34405,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34393
34405
|
obstructsWithinBounds?: boolean | undefined;
|
|
34394
34406
|
mfn?: string | undefined;
|
|
34395
34407
|
manufacturerPartNumber?: string | undefined;
|
|
34408
|
+
schSectionName?: string | undefined;
|
|
34396
34409
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
34397
34410
|
schPinArrangement?: {
|
|
34398
34411
|
leftSize?: number | undefined;
|
|
@@ -34565,6 +34578,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
34565
34578
|
key: z.ZodOptional<z.ZodAny>;
|
|
34566
34579
|
name: z.ZodString;
|
|
34567
34580
|
displayName: z.ZodOptional<z.ZodString>;
|
|
34581
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
34568
34582
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
34569
34583
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
34570
34584
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -38703,6 +38717,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38703
38717
|
obstructsWithinBounds?: boolean | undefined;
|
|
38704
38718
|
mfn?: string | undefined;
|
|
38705
38719
|
manufacturerPartNumber?: string | undefined;
|
|
38720
|
+
schSectionName?: string | undefined;
|
|
38706
38721
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
38707
38722
|
schPinArrangement?: {
|
|
38708
38723
|
leftSize?: number | undefined;
|
|
@@ -39358,6 +39373,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39358
39373
|
obstructsWithinBounds?: boolean | undefined;
|
|
39359
39374
|
mfn?: string | undefined;
|
|
39360
39375
|
manufacturerPartNumber?: string | undefined;
|
|
39376
|
+
schSectionName?: string | undefined;
|
|
39361
39377
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
39362
39378
|
schPinArrangement?: {
|
|
39363
39379
|
leftSize?: number | undefined;
|
|
@@ -39529,6 +39545,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39529
39545
|
key: z.ZodOptional<z.ZodAny>;
|
|
39530
39546
|
name: z.ZodString;
|
|
39531
39547
|
displayName: z.ZodOptional<z.ZodString>;
|
|
39548
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
39532
39549
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
39533
39550
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
39534
39551
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -43667,6 +43684,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
43667
43684
|
obstructsWithinBounds?: boolean | undefined;
|
|
43668
43685
|
mfn?: string | undefined;
|
|
43669
43686
|
manufacturerPartNumber?: string | undefined;
|
|
43687
|
+
schSectionName?: string | undefined;
|
|
43670
43688
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
43671
43689
|
schPinArrangement?: {
|
|
43672
43690
|
leftSize?: number | undefined;
|
|
@@ -44322,6 +44340,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
44322
44340
|
obstructsWithinBounds?: boolean | undefined;
|
|
44323
44341
|
mfn?: string | undefined;
|
|
44324
44342
|
manufacturerPartNumber?: string | undefined;
|
|
44343
|
+
schSectionName?: string | undefined;
|
|
44325
44344
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
44326
44345
|
schPinArrangement?: {
|
|
44327
44346
|
leftSize?: number | undefined;
|
|
@@ -44526,6 +44545,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44526
44545
|
key: z.ZodOptional<z.ZodAny>;
|
|
44527
44546
|
name: z.ZodString;
|
|
44528
44547
|
displayName: z.ZodOptional<z.ZodString>;
|
|
44548
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
44529
44549
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
44530
44550
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
44531
44551
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -48652,6 +48672,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
48652
48672
|
obstructsWithinBounds?: boolean | undefined;
|
|
48653
48673
|
mfn?: string | undefined;
|
|
48654
48674
|
manufacturerPartNumber?: string | undefined;
|
|
48675
|
+
schSectionName?: string | undefined;
|
|
48655
48676
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
48656
48677
|
schPinArrangement?: {
|
|
48657
48678
|
leftSize?: number | undefined;
|
|
@@ -49301,6 +49322,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
49301
49322
|
obstructsWithinBounds?: boolean | undefined;
|
|
49302
49323
|
mfn?: string | undefined;
|
|
49303
49324
|
manufacturerPartNumber?: string | undefined;
|
|
49325
|
+
schSectionName?: string | undefined;
|
|
49304
49326
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
49305
49327
|
schPinArrangement?: {
|
|
49306
49328
|
leftSize?: number | undefined;
|
|
@@ -49475,6 +49497,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49475
49497
|
key: z.ZodOptional<z.ZodAny>;
|
|
49476
49498
|
name: z.ZodString;
|
|
49477
49499
|
displayName: z.ZodOptional<z.ZodString>;
|
|
49500
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
49478
49501
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
49479
49502
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
49480
49503
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -53604,6 +53627,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
53604
53627
|
obstructsWithinBounds?: boolean | undefined;
|
|
53605
53628
|
mfn?: string | undefined;
|
|
53606
53629
|
manufacturerPartNumber?: string | undefined;
|
|
53630
|
+
schSectionName?: string | undefined;
|
|
53607
53631
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
53608
53632
|
schPinArrangement?: {
|
|
53609
53633
|
leftSize?: number | undefined;
|
|
@@ -54255,6 +54279,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
54255
54279
|
obstructsWithinBounds?: boolean | undefined;
|
|
54256
54280
|
mfn?: string | undefined;
|
|
54257
54281
|
manufacturerPartNumber?: string | undefined;
|
|
54282
|
+
schSectionName?: string | undefined;
|
|
54258
54283
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
54259
54284
|
schPinArrangement?: {
|
|
54260
54285
|
leftSize?: number | undefined;
|
|
@@ -54427,6 +54452,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54427
54452
|
key: z.ZodOptional<z.ZodAny>;
|
|
54428
54453
|
name: z.ZodString;
|
|
54429
54454
|
displayName: z.ZodOptional<z.ZodString>;
|
|
54455
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
54430
54456
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
54431
54457
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
54432
54458
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -58567,6 +58593,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
58567
58593
|
obstructsWithinBounds?: boolean | undefined;
|
|
58568
58594
|
mfn?: string | undefined;
|
|
58569
58595
|
manufacturerPartNumber?: string | undefined;
|
|
58596
|
+
schSectionName?: string | undefined;
|
|
58570
58597
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
58571
58598
|
schPinArrangement?: {
|
|
58572
58599
|
leftSize?: number | undefined;
|
|
@@ -59223,6 +59250,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
59223
59250
|
obstructsWithinBounds?: boolean | undefined;
|
|
59224
59251
|
mfn?: string | undefined;
|
|
59225
59252
|
manufacturerPartNumber?: string | undefined;
|
|
59253
|
+
schSectionName?: string | undefined;
|
|
59226
59254
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
59227
59255
|
schPinArrangement?: {
|
|
59228
59256
|
leftSize?: number | undefined;
|
|
@@ -59405,6 +59433,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59405
59433
|
key: z.ZodOptional<z.ZodAny>;
|
|
59406
59434
|
name: z.ZodString;
|
|
59407
59435
|
displayName: z.ZodOptional<z.ZodString>;
|
|
59436
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
59408
59437
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
59409
59438
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
59410
59439
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -63249,6 +63278,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63249
63278
|
obstructsWithinBounds?: boolean | undefined;
|
|
63250
63279
|
mfn?: string | undefined;
|
|
63251
63280
|
manufacturerPartNumber?: string | undefined;
|
|
63281
|
+
schSectionName?: string | undefined;
|
|
63252
63282
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63253
63283
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63254
63284
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -63830,6 +63860,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63830
63860
|
obstructsWithinBounds?: boolean | undefined;
|
|
63831
63861
|
mfn?: string | undefined;
|
|
63832
63862
|
manufacturerPartNumber?: string | undefined;
|
|
63863
|
+
schSectionName?: string | undefined;
|
|
63833
63864
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63834
63865
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63835
63866
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -63955,6 +63986,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63955
63986
|
key: z.ZodOptional<z.ZodAny>;
|
|
63956
63987
|
name: z.ZodString;
|
|
63957
63988
|
displayName: z.ZodOptional<z.ZodString>;
|
|
63989
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
63958
63990
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
63959
63991
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
63960
63992
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -67802,6 +67834,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
67802
67834
|
obstructsWithinBounds?: boolean | undefined;
|
|
67803
67835
|
mfn?: string | undefined;
|
|
67804
67836
|
manufacturerPartNumber?: string | undefined;
|
|
67837
|
+
schSectionName?: string | undefined;
|
|
67805
67838
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
67806
67839
|
voltageRating?: string | number | undefined;
|
|
67807
67840
|
schShowRatings?: boolean | undefined;
|
|
@@ -68385,6 +68418,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
68385
68418
|
obstructsWithinBounds?: boolean | undefined;
|
|
68386
68419
|
mfn?: string | undefined;
|
|
68387
68420
|
manufacturerPartNumber?: string | undefined;
|
|
68421
|
+
schSectionName?: string | undefined;
|
|
68388
68422
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
68389
68423
|
voltageRating?: string | number | undefined;
|
|
68390
68424
|
schShowRatings?: boolean | undefined;
|
|
@@ -70433,6 +70467,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
70433
70467
|
key: z.ZodOptional<z.ZodAny>;
|
|
70434
70468
|
name: z.ZodString;
|
|
70435
70469
|
displayName: z.ZodOptional<z.ZodString>;
|
|
70470
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
70436
70471
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
70437
70472
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
70438
70473
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -74284,6 +74319,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
74284
74319
|
obstructsWithinBounds?: boolean | undefined;
|
|
74285
74320
|
mfn?: string | undefined;
|
|
74286
74321
|
manufacturerPartNumber?: string | undefined;
|
|
74322
|
+
schSectionName?: string | undefined;
|
|
74287
74323
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
74288
74324
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
74289
74325
|
tolerance?: number | undefined;
|
|
@@ -74871,6 +74907,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
74871
74907
|
obstructsWithinBounds?: boolean | undefined;
|
|
74872
74908
|
mfn?: string | undefined;
|
|
74873
74909
|
manufacturerPartNumber?: string | undefined;
|
|
74910
|
+
schSectionName?: string | undefined;
|
|
74874
74911
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
74875
74912
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
74876
74913
|
tolerance?: string | number | undefined;
|
|
@@ -74983,6 +75020,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
74983
75020
|
key: z.ZodOptional<z.ZodAny>;
|
|
74984
75021
|
name: z.ZodString;
|
|
74985
75022
|
displayName: z.ZodOptional<z.ZodString>;
|
|
75023
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
74986
75024
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
74987
75025
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
74988
75026
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -78828,6 +78866,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
78828
78866
|
obstructsWithinBounds?: boolean | undefined;
|
|
78829
78867
|
mfn?: string | undefined;
|
|
78830
78868
|
manufacturerPartNumber?: string | undefined;
|
|
78869
|
+
schSectionName?: string | undefined;
|
|
78831
78870
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
78832
78871
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
78833
78872
|
}, {
|
|
@@ -79409,6 +79448,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
79409
79448
|
obstructsWithinBounds?: boolean | undefined;
|
|
79410
79449
|
mfn?: string | undefined;
|
|
79411
79450
|
manufacturerPartNumber?: string | undefined;
|
|
79451
|
+
schSectionName?: string | undefined;
|
|
79412
79452
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
79413
79453
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
79414
79454
|
}>;
|
|
@@ -79516,6 +79556,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
79516
79556
|
key: z.ZodOptional<z.ZodAny>;
|
|
79517
79557
|
name: z.ZodString;
|
|
79518
79558
|
displayName: z.ZodOptional<z.ZodString>;
|
|
79559
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
79519
79560
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
79520
79561
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
79521
79562
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -83365,6 +83406,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
83365
83406
|
obstructsWithinBounds?: boolean | undefined;
|
|
83366
83407
|
mfn?: string | undefined;
|
|
83367
83408
|
manufacturerPartNumber?: string | undefined;
|
|
83409
|
+
schSectionName?: string | undefined;
|
|
83368
83410
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
83369
83411
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
83370
83412
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -83949,6 +83991,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
83949
83991
|
obstructsWithinBounds?: boolean | undefined;
|
|
83950
83992
|
mfn?: string | undefined;
|
|
83951
83993
|
manufacturerPartNumber?: string | undefined;
|
|
83994
|
+
schSectionName?: string | undefined;
|
|
83952
83995
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
83953
83996
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
83954
83997
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -84054,6 +84097,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
84054
84097
|
key: z.ZodOptional<z.ZodAny>;
|
|
84055
84098
|
name: z.ZodString;
|
|
84056
84099
|
displayName: z.ZodOptional<z.ZodString>;
|
|
84100
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
84057
84101
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
84058
84102
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
84059
84103
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -87900,6 +87944,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
87900
87944
|
obstructsWithinBounds?: boolean | undefined;
|
|
87901
87945
|
mfn?: string | undefined;
|
|
87902
87946
|
manufacturerPartNumber?: string | undefined;
|
|
87947
|
+
schSectionName?: string | undefined;
|
|
87903
87948
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
87904
87949
|
}, {
|
|
87905
87950
|
name: string;
|
|
@@ -88481,6 +88526,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
88481
88526
|
obstructsWithinBounds?: boolean | undefined;
|
|
88482
88527
|
mfn?: string | undefined;
|
|
88483
88528
|
manufacturerPartNumber?: string | undefined;
|
|
88529
|
+
schSectionName?: string | undefined;
|
|
88484
88530
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
88485
88531
|
}>;
|
|
88486
88532
|
|
|
@@ -90096,6 +90142,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
90096
90142
|
key: z.ZodOptional<z.ZodAny>;
|
|
90097
90143
|
name: z.ZodString;
|
|
90098
90144
|
displayName: z.ZodOptional<z.ZodString>;
|
|
90145
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
90099
90146
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
90100
90147
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
90101
90148
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -93952,6 +93999,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
93952
93999
|
obstructsWithinBounds?: boolean | undefined;
|
|
93953
94000
|
mfn?: string | undefined;
|
|
93954
94001
|
manufacturerPartNumber?: string | undefined;
|
|
94002
|
+
schSectionName?: string | undefined;
|
|
93955
94003
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
93956
94004
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
93957
94005
|
schSize?: number | "default" | "xs" | "sm" | "md" | undefined;
|
|
@@ -94540,6 +94588,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
94540
94588
|
obstructsWithinBounds?: boolean | undefined;
|
|
94541
94589
|
mfn?: string | undefined;
|
|
94542
94590
|
manufacturerPartNumber?: string | undefined;
|
|
94591
|
+
schSectionName?: string | undefined;
|
|
94543
94592
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
94544
94593
|
schShowRatings?: boolean | undefined;
|
|
94545
94594
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -94682,6 +94731,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
94682
94731
|
key: z.ZodOptional<z.ZodAny>;
|
|
94683
94732
|
name: z.ZodString;
|
|
94684
94733
|
displayName: z.ZodOptional<z.ZodString>;
|
|
94734
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
94685
94735
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
94686
94736
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
94687
94737
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -98525,6 +98575,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
98525
98575
|
obstructsWithinBounds?: boolean | undefined;
|
|
98526
98576
|
mfn?: string | undefined;
|
|
98527
98577
|
manufacturerPartNumber?: string | undefined;
|
|
98578
|
+
schSectionName?: string | undefined;
|
|
98528
98579
|
padDiameter?: number | undefined;
|
|
98529
98580
|
soldermaskPullback?: number | undefined;
|
|
98530
98581
|
}, {
|
|
@@ -99105,6 +99156,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
99105
99156
|
obstructsWithinBounds?: boolean | undefined;
|
|
99106
99157
|
mfn?: string | undefined;
|
|
99107
99158
|
manufacturerPartNumber?: string | undefined;
|
|
99159
|
+
schSectionName?: string | undefined;
|
|
99108
99160
|
padDiameter?: string | number | undefined;
|
|
99109
99161
|
soldermaskPullback?: string | number | undefined;
|
|
99110
99162
|
}>;
|
|
@@ -104031,6 +104083,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
104031
104083
|
key: z.ZodOptional<z.ZodAny>;
|
|
104032
104084
|
name: z.ZodString;
|
|
104033
104085
|
displayName: z.ZodOptional<z.ZodString>;
|
|
104086
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
104034
104087
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
104035
104088
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
104036
104089
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -107876,6 +107929,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
107876
107929
|
obstructsWithinBounds?: boolean | undefined;
|
|
107877
107930
|
mfn?: string | undefined;
|
|
107878
107931
|
manufacturerPartNumber?: string | undefined;
|
|
107932
|
+
schSectionName?: string | undefined;
|
|
107879
107933
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
107880
107934
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
107881
107935
|
capacity?: number | undefined;
|
|
@@ -108458,6 +108512,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
108458
108512
|
obstructsWithinBounds?: boolean | undefined;
|
|
108459
108513
|
mfn?: string | undefined;
|
|
108460
108514
|
manufacturerPartNumber?: string | undefined;
|
|
108515
|
+
schSectionName?: string | undefined;
|
|
108461
108516
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
108462
108517
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
108463
108518
|
capacity?: string | number | undefined;
|
|
@@ -110265,6 +110320,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
110265
110320
|
key: z.ZodOptional<z.ZodAny>;
|
|
110266
110321
|
name: z.ZodString;
|
|
110267
110322
|
displayName: z.ZodOptional<z.ZodString>;
|
|
110323
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
110268
110324
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
110269
110325
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
110270
110326
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -114277,6 +114333,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
114277
114333
|
obstructsWithinBounds?: boolean | undefined;
|
|
114278
114334
|
mfn?: string | undefined;
|
|
114279
114335
|
manufacturerPartNumber?: string | undefined;
|
|
114336
|
+
schSectionName?: string | undefined;
|
|
114280
114337
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
114281
114338
|
schPinArrangement?: {
|
|
114282
114339
|
leftSize?: number | undefined;
|
|
@@ -114907,6 +114964,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
114907
114964
|
obstructsWithinBounds?: boolean | undefined;
|
|
114908
114965
|
mfn?: string | undefined;
|
|
114909
114966
|
manufacturerPartNumber?: string | undefined;
|
|
114967
|
+
schSectionName?: string | undefined;
|
|
114910
114968
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
114911
114969
|
schPinArrangement?: {
|
|
114912
114970
|
leftSize?: number | undefined;
|
|
@@ -115123,6 +115181,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
115123
115181
|
key: z.ZodOptional<z.ZodAny>;
|
|
115124
115182
|
name: z.ZodString;
|
|
115125
115183
|
displayName: z.ZodOptional<z.ZodString>;
|
|
115184
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
115126
115185
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
115127
115186
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
115128
115187
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -119261,6 +119320,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119261
119320
|
obstructsWithinBounds?: boolean | undefined;
|
|
119262
119321
|
mfn?: string | undefined;
|
|
119263
119322
|
manufacturerPartNumber?: string | undefined;
|
|
119323
|
+
schSectionName?: string | undefined;
|
|
119264
119324
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
119265
119325
|
schPinArrangement?: {
|
|
119266
119326
|
leftSize?: number | undefined;
|
|
@@ -119916,6 +119976,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119916
119976
|
obstructsWithinBounds?: boolean | undefined;
|
|
119917
119977
|
mfn?: string | undefined;
|
|
119918
119978
|
manufacturerPartNumber?: string | undefined;
|
|
119979
|
+
schSectionName?: string | undefined;
|
|
119919
119980
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
119920
119981
|
schPinArrangement?: {
|
|
119921
119982
|
leftSize?: number | undefined;
|
|
@@ -121595,6 +121656,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
121595
121656
|
key: z.ZodOptional<z.ZodAny>;
|
|
121596
121657
|
name: z.ZodString;
|
|
121597
121658
|
displayName: z.ZodOptional<z.ZodString>;
|
|
121659
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
121598
121660
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
121599
121661
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
121600
121662
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -125439,6 +125501,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
125439
125501
|
obstructsWithinBounds?: boolean | undefined;
|
|
125440
125502
|
mfn?: string | undefined;
|
|
125441
125503
|
manufacturerPartNumber?: string | undefined;
|
|
125504
|
+
schSectionName?: string | undefined;
|
|
125442
125505
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
125443
125506
|
}, {
|
|
125444
125507
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -126019,6 +126082,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
126019
126082
|
obstructsWithinBounds?: boolean | undefined;
|
|
126020
126083
|
mfn?: string | undefined;
|
|
126021
126084
|
manufacturerPartNumber?: string | undefined;
|
|
126085
|
+
schSectionName?: string | undefined;
|
|
126022
126086
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
126023
126087
|
}>;
|
|
126024
126088
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -126121,6 +126185,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
126121
126185
|
key: z.ZodOptional<z.ZodAny>;
|
|
126122
126186
|
name: z.ZodString;
|
|
126123
126187
|
displayName: z.ZodOptional<z.ZodString>;
|
|
126188
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
126124
126189
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
126125
126190
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
126126
126191
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -129966,6 +130031,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
129966
130031
|
obstructsWithinBounds?: boolean | undefined;
|
|
129967
130032
|
mfn?: string | undefined;
|
|
129968
130033
|
manufacturerPartNumber?: string | undefined;
|
|
130034
|
+
schSectionName?: string | undefined;
|
|
129969
130035
|
}, {
|
|
129970
130036
|
name: string;
|
|
129971
130037
|
channelType: "n" | "p";
|
|
@@ -130546,6 +130612,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
130546
130612
|
obstructsWithinBounds?: boolean | undefined;
|
|
130547
130613
|
mfn?: string | undefined;
|
|
130548
130614
|
manufacturerPartNumber?: string | undefined;
|
|
130615
|
+
schSectionName?: string | undefined;
|
|
130549
130616
|
}>;
|
|
130550
130617
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
130551
130618
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -130654,6 +130721,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
130654
130721
|
key: z.ZodOptional<z.ZodAny>;
|
|
130655
130722
|
name: z.ZodString;
|
|
130656
130723
|
displayName: z.ZodOptional<z.ZodString>;
|
|
130724
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
130657
130725
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
130658
130726
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
130659
130727
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -134496,6 +134564,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
134496
134564
|
obstructsWithinBounds?: boolean | undefined;
|
|
134497
134565
|
mfn?: string | undefined;
|
|
134498
134566
|
manufacturerPartNumber?: string | undefined;
|
|
134567
|
+
schSectionName?: string | undefined;
|
|
134499
134568
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
134500
134569
|
}, {
|
|
134501
134570
|
name: string;
|
|
@@ -135075,6 +135144,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
135075
135144
|
obstructsWithinBounds?: boolean | undefined;
|
|
135076
135145
|
mfn?: string | undefined;
|
|
135077
135146
|
manufacturerPartNumber?: string | undefined;
|
|
135147
|
+
schSectionName?: string | undefined;
|
|
135078
135148
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
135079
135149
|
}>;
|
|
135080
135150
|
/**
|
|
@@ -135184,6 +135254,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
135184
135254
|
key: z.ZodOptional<z.ZodAny>;
|
|
135185
135255
|
name: z.ZodString;
|
|
135186
135256
|
displayName: z.ZodOptional<z.ZodString>;
|
|
135257
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
135187
135258
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
135188
135259
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
135189
135260
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -139030,6 +139101,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
139030
139101
|
obstructsWithinBounds?: boolean | undefined;
|
|
139031
139102
|
mfn?: string | undefined;
|
|
139032
139103
|
manufacturerPartNumber?: string | undefined;
|
|
139104
|
+
schSectionName?: string | undefined;
|
|
139033
139105
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
139034
139106
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
139035
139107
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -139612,6 +139684,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
139612
139684
|
obstructsWithinBounds?: boolean | undefined;
|
|
139613
139685
|
mfn?: string | undefined;
|
|
139614
139686
|
manufacturerPartNumber?: string | undefined;
|
|
139687
|
+
schSectionName?: string | undefined;
|
|
139615
139688
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
139616
139689
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
139617
139690
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -139710,6 +139783,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
139710
139783
|
key: z.ZodOptional<z.ZodAny>;
|
|
139711
139784
|
name: z.ZodString;
|
|
139712
139785
|
displayName: z.ZodOptional<z.ZodString>;
|
|
139786
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
139713
139787
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
139714
139788
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
139715
139789
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -143561,6 +143635,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
143561
143635
|
obstructsWithinBounds?: boolean | undefined;
|
|
143562
143636
|
mfn?: string | undefined;
|
|
143563
143637
|
manufacturerPartNumber?: string | undefined;
|
|
143638
|
+
schSectionName?: string | undefined;
|
|
143564
143639
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
143565
143640
|
standard?: boolean | undefined;
|
|
143566
143641
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -144147,6 +144222,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144147
144222
|
obstructsWithinBounds?: boolean | undefined;
|
|
144148
144223
|
mfn?: string | undefined;
|
|
144149
144224
|
manufacturerPartNumber?: string | undefined;
|
|
144225
|
+
schSectionName?: string | undefined;
|
|
144150
144226
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144151
144227
|
standard?: boolean | undefined;
|
|
144152
144228
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -144733,6 +144809,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144733
144809
|
obstructsWithinBounds?: boolean | undefined;
|
|
144734
144810
|
mfn?: string | undefined;
|
|
144735
144811
|
manufacturerPartNumber?: string | undefined;
|
|
144812
|
+
schSectionName?: string | undefined;
|
|
144736
144813
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144737
144814
|
standard?: boolean | undefined;
|
|
144738
144815
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145319,6 +145396,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145319
145396
|
obstructsWithinBounds?: boolean | undefined;
|
|
145320
145397
|
mfn?: string | undefined;
|
|
145321
145398
|
manufacturerPartNumber?: string | undefined;
|
|
145399
|
+
schSectionName?: string | undefined;
|
|
145322
145400
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145323
145401
|
standard?: boolean | undefined;
|
|
145324
145402
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145911,6 +145989,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145911
145989
|
obstructsWithinBounds?: boolean | undefined;
|
|
145912
145990
|
mfn?: string | undefined;
|
|
145913
145991
|
manufacturerPartNumber?: string | undefined;
|
|
145992
|
+
schSectionName?: string | undefined;
|
|
145914
145993
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145915
145994
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
145916
145995
|
}, {
|
|
@@ -146491,6 +146570,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146491
146570
|
obstructsWithinBounds?: boolean | undefined;
|
|
146492
146571
|
mfn?: string | undefined;
|
|
146493
146572
|
manufacturerPartNumber?: string | undefined;
|
|
146573
|
+
schSectionName?: string | undefined;
|
|
146494
146574
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146495
146575
|
standard?: boolean | undefined;
|
|
146496
146576
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -146617,6 +146697,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
146617
146697
|
key: z.ZodOptional<z.ZodAny>;
|
|
146618
146698
|
name: z.ZodString;
|
|
146619
146699
|
displayName: z.ZodOptional<z.ZodString>;
|
|
146700
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
146620
146701
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
146621
146702
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
146622
146703
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -150464,6 +150545,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
150464
150545
|
obstructsWithinBounds?: boolean | undefined;
|
|
150465
150546
|
mfn?: string | undefined;
|
|
150466
150547
|
manufacturerPartNumber?: string | undefined;
|
|
150548
|
+
schSectionName?: string | undefined;
|
|
150467
150549
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
150468
150550
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
150469
150551
|
color?: string | undefined;
|
|
@@ -151048,6 +151130,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
151048
151130
|
obstructsWithinBounds?: boolean | undefined;
|
|
151049
151131
|
mfn?: string | undefined;
|
|
151050
151132
|
manufacturerPartNumber?: string | undefined;
|
|
151133
|
+
schSectionName?: string | undefined;
|
|
151051
151134
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
151052
151135
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
151053
151136
|
color?: string | undefined;
|
|
@@ -151165,6 +151248,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
151165
151248
|
key: z.ZodOptional<z.ZodAny>;
|
|
151166
151249
|
name: z.ZodString;
|
|
151167
151250
|
displayName: z.ZodOptional<z.ZodString>;
|
|
151251
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
151168
151252
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
151169
151253
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
151170
151254
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -155020,6 +155104,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
155020
155104
|
obstructsWithinBounds?: boolean | undefined;
|
|
155021
155105
|
mfn?: string | undefined;
|
|
155022
155106
|
manufacturerPartNumber?: string | undefined;
|
|
155107
|
+
schSectionName?: string | undefined;
|
|
155023
155108
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
155024
155109
|
spst?: boolean | undefined;
|
|
155025
155110
|
spdt?: boolean | undefined;
|
|
@@ -155609,6 +155694,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
155609
155694
|
obstructsWithinBounds?: boolean | undefined;
|
|
155610
155695
|
mfn?: string | undefined;
|
|
155611
155696
|
manufacturerPartNumber?: string | undefined;
|
|
155697
|
+
schSectionName?: string | undefined;
|
|
155612
155698
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
155613
155699
|
spst?: boolean | undefined;
|
|
155614
155700
|
spdt?: boolean | undefined;
|
|
@@ -156199,6 +156285,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
156199
156285
|
obstructsWithinBounds?: boolean | undefined;
|
|
156200
156286
|
mfn?: string | undefined;
|
|
156201
156287
|
manufacturerPartNumber?: string | undefined;
|
|
156288
|
+
schSectionName?: string | undefined;
|
|
156202
156289
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
156203
156290
|
spst?: boolean | undefined;
|
|
156204
156291
|
spdt?: boolean | undefined;
|
|
@@ -157328,6 +157415,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
157328
157415
|
key: z.ZodOptional<z.ZodAny>;
|
|
157329
157416
|
name: z.ZodString;
|
|
157330
157417
|
displayName: z.ZodOptional<z.ZodString>;
|
|
157418
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
157331
157419
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
157332
157420
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
157333
157421
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -161183,6 +161271,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161183
161271
|
obstructsWithinBounds?: boolean | undefined;
|
|
161184
161272
|
mfn?: string | undefined;
|
|
161185
161273
|
manufacturerPartNumber?: string | undefined;
|
|
161274
|
+
schSectionName?: string | undefined;
|
|
161186
161275
|
width?: number | undefined;
|
|
161187
161276
|
height?: number | undefined;
|
|
161188
161277
|
connections?: {
|
|
@@ -161769,6 +161858,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161769
161858
|
obstructsWithinBounds?: boolean | undefined;
|
|
161770
161859
|
mfn?: string | undefined;
|
|
161771
161860
|
manufacturerPartNumber?: string | undefined;
|
|
161861
|
+
schSectionName?: string | undefined;
|
|
161772
161862
|
width?: string | number | undefined;
|
|
161773
161863
|
height?: string | number | undefined;
|
|
161774
161864
|
connections?: {
|
|
@@ -162355,6 +162445,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162355
162445
|
obstructsWithinBounds?: boolean | undefined;
|
|
162356
162446
|
mfn?: string | undefined;
|
|
162357
162447
|
manufacturerPartNumber?: string | undefined;
|
|
162448
|
+
schSectionName?: string | undefined;
|
|
162358
162449
|
width?: number | undefined;
|
|
162359
162450
|
height?: number | undefined;
|
|
162360
162451
|
connections?: {
|
|
@@ -162941,6 +163032,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162941
163032
|
obstructsWithinBounds?: boolean | undefined;
|
|
162942
163033
|
mfn?: string | undefined;
|
|
162943
163034
|
manufacturerPartNumber?: string | undefined;
|
|
163035
|
+
schSectionName?: string | undefined;
|
|
162944
163036
|
width?: string | number | undefined;
|
|
162945
163037
|
height?: string | number | undefined;
|
|
162946
163038
|
connections?: {
|
|
@@ -164353,6 +164445,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
164353
164445
|
key: z.ZodOptional<z.ZodAny>;
|
|
164354
164446
|
name: z.ZodString;
|
|
164355
164447
|
displayName: z.ZodOptional<z.ZodString>;
|
|
164448
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
164356
164449
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
164357
164450
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
164358
164451
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -168196,6 +168289,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
168196
168289
|
obstructsWithinBounds?: boolean | undefined;
|
|
168197
168290
|
mfn?: string | undefined;
|
|
168198
168291
|
manufacturerPartNumber?: string | undefined;
|
|
168292
|
+
schSectionName?: string | undefined;
|
|
168199
168293
|
}, {
|
|
168200
168294
|
name: string;
|
|
168201
168295
|
voltage: string | number;
|
|
@@ -168775,6 +168869,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
168775
168869
|
obstructsWithinBounds?: boolean | undefined;
|
|
168776
168870
|
mfn?: string | undefined;
|
|
168777
168871
|
manufacturerPartNumber?: string | undefined;
|
|
168872
|
+
schSectionName?: string | undefined;
|
|
168778
168873
|
}>;
|
|
168779
168874
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
168780
168875
|
|
|
@@ -168883,6 +168978,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
168883
168978
|
key: z.ZodOptional<z.ZodAny>;
|
|
168884
168979
|
name: z.ZodString;
|
|
168885
168980
|
displayName: z.ZodOptional<z.ZodString>;
|
|
168981
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
168886
168982
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
168887
168983
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
168888
168984
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -172731,6 +172827,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
172731
172827
|
obstructsWithinBounds?: boolean | undefined;
|
|
172732
172828
|
mfn?: string | undefined;
|
|
172733
172829
|
manufacturerPartNumber?: string | undefined;
|
|
172830
|
+
schSectionName?: string | undefined;
|
|
172734
172831
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
172735
172832
|
frequency?: number | undefined;
|
|
172736
172833
|
voltage?: number | undefined;
|
|
@@ -173316,6 +173413,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173316
173413
|
obstructsWithinBounds?: boolean | undefined;
|
|
173317
173414
|
mfn?: string | undefined;
|
|
173318
173415
|
manufacturerPartNumber?: string | undefined;
|
|
173416
|
+
schSectionName?: string | undefined;
|
|
173319
173417
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
173320
173418
|
frequency?: string | number | undefined;
|
|
173321
173419
|
voltage?: string | number | undefined;
|
|
@@ -173430,6 +173528,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
173430
173528
|
key: z.ZodOptional<z.ZodAny>;
|
|
173431
173529
|
name: z.ZodString;
|
|
173432
173530
|
displayName: z.ZodOptional<z.ZodString>;
|
|
173531
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
173433
173532
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
173434
173533
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
173435
173534
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -177278,6 +177377,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177278
177377
|
obstructsWithinBounds?: boolean | undefined;
|
|
177279
177378
|
mfn?: string | undefined;
|
|
177280
177379
|
manufacturerPartNumber?: string | undefined;
|
|
177380
|
+
schSectionName?: string | undefined;
|
|
177281
177381
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
177282
177382
|
frequency?: number | undefined;
|
|
177283
177383
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -177863,6 +177963,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177863
177963
|
obstructsWithinBounds?: boolean | undefined;
|
|
177864
177964
|
mfn?: string | undefined;
|
|
177865
177965
|
manufacturerPartNumber?: string | undefined;
|
|
177966
|
+
schSectionName?: string | undefined;
|
|
177866
177967
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
177867
177968
|
frequency?: string | number | undefined;
|
|
177868
177969
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -177972,6 +178073,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
177972
178073
|
key: z.ZodOptional<z.ZodAny>;
|
|
177973
178074
|
name: z.ZodString;
|
|
177974
178075
|
displayName: z.ZodOptional<z.ZodString>;
|
|
178076
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
177975
178077
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
177976
178078
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
177977
178079
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -181818,6 +181920,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
181818
181920
|
obstructsWithinBounds?: boolean | undefined;
|
|
181819
181921
|
mfn?: string | undefined;
|
|
181820
181922
|
manufacturerPartNumber?: string | undefined;
|
|
181923
|
+
schSectionName?: string | undefined;
|
|
181821
181924
|
color?: string | undefined;
|
|
181822
181925
|
referenceTo?: string | undefined;
|
|
181823
181926
|
}, {
|
|
@@ -182399,6 +182502,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182399
182502
|
obstructsWithinBounds?: boolean | undefined;
|
|
182400
182503
|
mfn?: string | undefined;
|
|
182401
182504
|
manufacturerPartNumber?: string | undefined;
|
|
182505
|
+
schSectionName?: string | undefined;
|
|
182402
182506
|
color?: string | undefined;
|
|
182403
182507
|
referenceTo?: string | undefined;
|
|
182404
182508
|
}>;
|
|
@@ -182922,6 +183026,22 @@ interface SchematicCellProps {
|
|
|
182922
183026
|
text?: string;
|
|
182923
183027
|
}
|
|
182924
183028
|
|
|
183029
|
+
interface SchematicSectionProps {
|
|
183030
|
+
displayName?: string;
|
|
183031
|
+
name: string;
|
|
183032
|
+
}
|
|
183033
|
+
declare const schematicSectionProps: z.ZodObject<{
|
|
183034
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
183035
|
+
name: z.ZodString;
|
|
183036
|
+
}, "strip", z.ZodTypeAny, {
|
|
183037
|
+
name: string;
|
|
183038
|
+
displayName?: string | undefined;
|
|
183039
|
+
}, {
|
|
183040
|
+
name: string;
|
|
183041
|
+
displayName?: string | undefined;
|
|
183042
|
+
}>;
|
|
183043
|
+
type InferredSchematicSectionProps = z.input<typeof schematicSectionProps>;
|
|
183044
|
+
|
|
182925
183045
|
declare const copperTextProps: z.ZodObject<{
|
|
182926
183046
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
182927
183047
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -185241,4 +185361,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
185241
185361
|
}
|
|
185242
185362
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
185243
185363
|
|
|
185244
|
-
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, 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 FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, 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 SchematicRectProps, type SchematicRowProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, 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, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
185364
|
+
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, 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 FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, 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 SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, 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, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|