@tscircuit/props 0.0.318 → 0.0.319
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 +170 -165
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/lib/common/cadModel.ts +5 -0
- package/lib/components/cadassembly.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import
|
|
2
|
+
import * as react from 'react';
|
|
3
3
|
import { ReactElement } from 'react';
|
|
4
|
+
import { LayerRef, LayerRefInput, Point as Point$1, RouteHintPoint, PcbTrace, AnySourceComponent } from 'circuit-json';
|
|
4
5
|
|
|
5
6
|
declare const direction: z.ZodEnum<["up", "down", "left", "right"]>;
|
|
6
7
|
type Direction = "up" | "down" | "left" | "right";
|
|
@@ -704,8 +705,8 @@ declare const cadModelJscad: z.ZodObject<{
|
|
|
704
705
|
} | undefined;
|
|
705
706
|
modelUnitToMmScale?: string | number | undefined;
|
|
706
707
|
}>;
|
|
707
|
-
type CadModelProp = null | string | CadModelStl | CadModelObj | CadModelGltf | CadModelGlb | CadModelStep | CadModelWrl | CadModelJscad;
|
|
708
|
-
declare const cadModelProp: z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
708
|
+
type CadModelProp = null | string | ReactElement | CadModelStl | CadModelObj | CadModelGltf | CadModelGlb | CadModelStep | CadModelWrl | CadModelJscad;
|
|
709
|
+
declare const cadModelProp: z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
709
710
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
710
711
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
711
712
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -1587,7 +1588,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1587
1588
|
} & {
|
|
1588
1589
|
key: z.ZodOptional<z.ZodAny>;
|
|
1589
1590
|
name: z.ZodString;
|
|
1590
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
1591
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
1591
1592
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1592
1593
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1593
1594
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -2175,6 +2176,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2175
2176
|
}, "strip", z.ZodTypeAny, {
|
|
2176
2177
|
name: string;
|
|
2177
2178
|
symbol?: SymbolProp | undefined;
|
|
2179
|
+
key?: any;
|
|
2178
2180
|
pcbX?: number | undefined;
|
|
2179
2181
|
pcbY?: number | undefined;
|
|
2180
2182
|
pcbRotation?: number | undefined;
|
|
@@ -2200,7 +2202,6 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2200
2202
|
footprint?: FootprintProp | undefined;
|
|
2201
2203
|
schRelative?: boolean | undefined;
|
|
2202
2204
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2203
|
-
key?: any;
|
|
2204
2205
|
pinAttributes?: Record<string, {
|
|
2205
2206
|
providesPower?: boolean | undefined;
|
|
2206
2207
|
requiresPower?: boolean | undefined;
|
|
@@ -2337,13 +2338,14 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2337
2338
|
z: number;
|
|
2338
2339
|
} | undefined;
|
|
2339
2340
|
modelUnitToMmScale?: number | undefined;
|
|
2340
|
-
} | null | undefined;
|
|
2341
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
2341
2342
|
children?: any;
|
|
2342
2343
|
symbolName?: string | undefined;
|
|
2343
2344
|
doNotPlace?: boolean | undefined;
|
|
2344
2345
|
}, {
|
|
2345
2346
|
name: string;
|
|
2346
2347
|
symbol?: SymbolProp | undefined;
|
|
2348
|
+
key?: any;
|
|
2347
2349
|
pcbX?: string | number | undefined;
|
|
2348
2350
|
pcbY?: string | number | undefined;
|
|
2349
2351
|
pcbRotation?: string | number | undefined;
|
|
@@ -2371,7 +2373,6 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2371
2373
|
footprint?: FootprintProp | undefined;
|
|
2372
2374
|
schRelative?: boolean | undefined;
|
|
2373
2375
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2374
|
-
key?: any;
|
|
2375
2376
|
pinAttributes?: Record<string, {
|
|
2376
2377
|
providesPower?: boolean | undefined;
|
|
2377
2378
|
requiresPower?: boolean | undefined;
|
|
@@ -2508,7 +2509,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2508
2509
|
z: string | number;
|
|
2509
2510
|
} | undefined;
|
|
2510
2511
|
modelUnitToMmScale?: string | number | undefined;
|
|
2511
|
-
} | null | undefined;
|
|
2512
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
2512
2513
|
children?: any;
|
|
2513
2514
|
symbolName?: string | undefined;
|
|
2514
2515
|
doNotPlace?: boolean | undefined;
|
|
@@ -2552,7 +2553,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
2552
2553
|
} & {
|
|
2553
2554
|
key: z.ZodOptional<z.ZodAny>;
|
|
2554
2555
|
name: z.ZodString;
|
|
2555
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
2556
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
2556
2557
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
2557
2558
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2558
2559
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -3140,6 +3141,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3140
3141
|
}, "strip", z.ZodTypeAny, {
|
|
3141
3142
|
name: string;
|
|
3142
3143
|
symbol?: SymbolProp | undefined;
|
|
3144
|
+
key?: any;
|
|
3143
3145
|
pcbX?: number | undefined;
|
|
3144
3146
|
pcbY?: number | undefined;
|
|
3145
3147
|
pcbRotation?: number | undefined;
|
|
@@ -3165,7 +3167,6 @@ declare const componentProps: z.ZodObject<{
|
|
|
3165
3167
|
footprint?: FootprintProp | undefined;
|
|
3166
3168
|
schRelative?: boolean | undefined;
|
|
3167
3169
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3168
|
-
key?: any;
|
|
3169
3170
|
pinAttributes?: Record<string, {
|
|
3170
3171
|
providesPower?: boolean | undefined;
|
|
3171
3172
|
requiresPower?: boolean | undefined;
|
|
@@ -3302,13 +3303,14 @@ declare const componentProps: z.ZodObject<{
|
|
|
3302
3303
|
z: number;
|
|
3303
3304
|
} | undefined;
|
|
3304
3305
|
modelUnitToMmScale?: number | undefined;
|
|
3305
|
-
} | null | undefined;
|
|
3306
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
3306
3307
|
children?: any;
|
|
3307
3308
|
symbolName?: string | undefined;
|
|
3308
3309
|
doNotPlace?: boolean | undefined;
|
|
3309
3310
|
}, {
|
|
3310
3311
|
name: string;
|
|
3311
3312
|
symbol?: SymbolProp | undefined;
|
|
3313
|
+
key?: any;
|
|
3312
3314
|
pcbX?: string | number | undefined;
|
|
3313
3315
|
pcbY?: string | number | undefined;
|
|
3314
3316
|
pcbRotation?: string | number | undefined;
|
|
@@ -3336,7 +3338,6 @@ declare const componentProps: z.ZodObject<{
|
|
|
3336
3338
|
footprint?: FootprintProp | undefined;
|
|
3337
3339
|
schRelative?: boolean | undefined;
|
|
3338
3340
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3339
|
-
key?: any;
|
|
3340
3341
|
pinAttributes?: Record<string, {
|
|
3341
3342
|
providesPower?: boolean | undefined;
|
|
3342
3343
|
requiresPower?: boolean | undefined;
|
|
@@ -3473,7 +3474,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3473
3474
|
z: string | number;
|
|
3474
3475
|
} | undefined;
|
|
3475
3476
|
modelUnitToMmScale?: string | number | undefined;
|
|
3476
|
-
} | null | undefined;
|
|
3477
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
3477
3478
|
children?: any;
|
|
3478
3479
|
symbolName?: string | undefined;
|
|
3479
3480
|
doNotPlace?: boolean | undefined;
|
|
@@ -5397,6 +5398,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5397
5398
|
key: z.ZodOptional<z.ZodAny>;
|
|
5398
5399
|
}, "strip", z.ZodTypeAny, {
|
|
5399
5400
|
symbol?: SymbolProp | undefined;
|
|
5401
|
+
key?: any;
|
|
5400
5402
|
pcbX?: number | undefined;
|
|
5401
5403
|
pcbY?: number | undefined;
|
|
5402
5404
|
pcbRotation?: number | undefined;
|
|
@@ -5421,7 +5423,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5421
5423
|
schRotation?: number | undefined;
|
|
5422
5424
|
footprint?: FootprintProp | undefined;
|
|
5423
5425
|
schRelative?: boolean | undefined;
|
|
5424
|
-
key?: any;
|
|
5425
5426
|
name?: string | undefined;
|
|
5426
5427
|
children?: any;
|
|
5427
5428
|
grid?: boolean | undefined;
|
|
@@ -5588,6 +5589,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5588
5589
|
schMatchAdapt?: boolean | undefined;
|
|
5589
5590
|
}, {
|
|
5590
5591
|
symbol?: SymbolProp | undefined;
|
|
5592
|
+
key?: any;
|
|
5591
5593
|
pcbX?: string | number | undefined;
|
|
5592
5594
|
pcbY?: string | number | undefined;
|
|
5593
5595
|
pcbRotation?: string | number | undefined;
|
|
@@ -5614,7 +5616,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5614
5616
|
schRotation?: string | number | undefined;
|
|
5615
5617
|
footprint?: FootprintProp | undefined;
|
|
5616
5618
|
schRelative?: boolean | undefined;
|
|
5617
|
-
key?: any;
|
|
5618
5619
|
name?: string | undefined;
|
|
5619
5620
|
children?: any;
|
|
5620
5621
|
grid?: boolean | undefined;
|
|
@@ -6354,6 +6355,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6354
6355
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6355
6356
|
}, "strip", z.ZodTypeAny, {
|
|
6356
6357
|
symbol?: SymbolProp | undefined;
|
|
6358
|
+
key?: any;
|
|
6357
6359
|
pcbX?: number | undefined;
|
|
6358
6360
|
pcbY?: number | undefined;
|
|
6359
6361
|
pcbRotation?: number | undefined;
|
|
@@ -6378,7 +6380,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6378
6380
|
schRotation?: number | undefined;
|
|
6379
6381
|
footprint?: FootprintProp | undefined;
|
|
6380
6382
|
schRelative?: boolean | undefined;
|
|
6381
|
-
key?: any;
|
|
6382
6383
|
name?: string | undefined;
|
|
6383
6384
|
children?: any;
|
|
6384
6385
|
grid?: boolean | undefined;
|
|
@@ -6602,6 +6603,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6602
6603
|
outlineOffsetY?: number | undefined;
|
|
6603
6604
|
}, {
|
|
6604
6605
|
symbol?: SymbolProp | undefined;
|
|
6606
|
+
key?: any;
|
|
6605
6607
|
pcbX?: string | number | undefined;
|
|
6606
6608
|
pcbY?: string | number | undefined;
|
|
6607
6609
|
pcbRotation?: string | number | undefined;
|
|
@@ -6628,7 +6630,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6628
6630
|
schRotation?: string | number | undefined;
|
|
6629
6631
|
footprint?: FootprintProp | undefined;
|
|
6630
6632
|
schRelative?: boolean | undefined;
|
|
6631
|
-
key?: any;
|
|
6632
6633
|
name?: string | undefined;
|
|
6633
6634
|
children?: any;
|
|
6634
6635
|
grid?: boolean | undefined;
|
|
@@ -7429,6 +7430,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7429
7430
|
}, "strip", z.ZodTypeAny, {
|
|
7430
7431
|
subcircuit: true;
|
|
7431
7432
|
symbol?: SymbolProp | undefined;
|
|
7433
|
+
key?: any;
|
|
7432
7434
|
pcbX?: number | undefined;
|
|
7433
7435
|
pcbY?: number | undefined;
|
|
7434
7436
|
pcbRotation?: number | undefined;
|
|
@@ -7453,7 +7455,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7453
7455
|
schRotation?: number | undefined;
|
|
7454
7456
|
footprint?: FootprintProp | undefined;
|
|
7455
7457
|
schRelative?: boolean | undefined;
|
|
7456
|
-
key?: any;
|
|
7457
7458
|
name?: string | undefined;
|
|
7458
7459
|
children?: any;
|
|
7459
7460
|
grid?: boolean | undefined;
|
|
@@ -7678,6 +7679,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7678
7679
|
}, {
|
|
7679
7680
|
subcircuit: true;
|
|
7680
7681
|
symbol?: SymbolProp | undefined;
|
|
7682
|
+
key?: any;
|
|
7681
7683
|
pcbX?: string | number | undefined;
|
|
7682
7684
|
pcbY?: string | number | undefined;
|
|
7683
7685
|
pcbRotation?: string | number | undefined;
|
|
@@ -7704,7 +7706,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7704
7706
|
schRotation?: string | number | undefined;
|
|
7705
7707
|
footprint?: FootprintProp | undefined;
|
|
7706
7708
|
schRelative?: boolean | undefined;
|
|
7707
|
-
key?: any;
|
|
7708
7709
|
name?: string | undefined;
|
|
7709
7710
|
children?: any;
|
|
7710
7711
|
grid?: boolean | undefined;
|
|
@@ -8281,6 +8282,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8281
8282
|
subcircuit: z.ZodOptional<z.ZodLiteral<false>>;
|
|
8282
8283
|
}, "strip", z.ZodTypeAny, {
|
|
8283
8284
|
symbol?: SymbolProp | undefined;
|
|
8285
|
+
key?: any;
|
|
8284
8286
|
pcbX?: number | undefined;
|
|
8285
8287
|
pcbY?: number | undefined;
|
|
8286
8288
|
pcbRotation?: number | undefined;
|
|
@@ -8305,7 +8307,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8305
8307
|
schRotation?: number | undefined;
|
|
8306
8308
|
footprint?: FootprintProp | undefined;
|
|
8307
8309
|
schRelative?: boolean | undefined;
|
|
8308
|
-
key?: any;
|
|
8309
8310
|
name?: string | undefined;
|
|
8310
8311
|
children?: any;
|
|
8311
8312
|
grid?: boolean | undefined;
|
|
@@ -8473,6 +8474,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8473
8474
|
subcircuit?: false | undefined;
|
|
8474
8475
|
}, {
|
|
8475
8476
|
symbol?: SymbolProp | undefined;
|
|
8477
|
+
key?: any;
|
|
8476
8478
|
pcbX?: string | number | undefined;
|
|
8477
8479
|
pcbY?: string | number | undefined;
|
|
8478
8480
|
pcbRotation?: string | number | undefined;
|
|
@@ -8499,7 +8501,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8499
8501
|
schRotation?: string | number | undefined;
|
|
8500
8502
|
footprint?: FootprintProp | undefined;
|
|
8501
8503
|
schRelative?: boolean | undefined;
|
|
8502
|
-
key?: any;
|
|
8503
8504
|
name?: string | undefined;
|
|
8504
8505
|
children?: any;
|
|
8505
8506
|
grid?: boolean | undefined;
|
|
@@ -9241,6 +9242,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9241
9242
|
}, "strip", z.ZodTypeAny, {
|
|
9242
9243
|
subcircuit: true;
|
|
9243
9244
|
symbol?: SymbolProp | undefined;
|
|
9245
|
+
key?: any;
|
|
9244
9246
|
pcbX?: number | undefined;
|
|
9245
9247
|
pcbY?: number | undefined;
|
|
9246
9248
|
pcbRotation?: number | undefined;
|
|
@@ -9265,7 +9267,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9265
9267
|
schRotation?: number | undefined;
|
|
9266
9268
|
footprint?: FootprintProp | undefined;
|
|
9267
9269
|
schRelative?: boolean | undefined;
|
|
9268
|
-
key?: any;
|
|
9269
9270
|
name?: string | undefined;
|
|
9270
9271
|
children?: any;
|
|
9271
9272
|
grid?: boolean | undefined;
|
|
@@ -9490,6 +9491,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9490
9491
|
}, {
|
|
9491
9492
|
subcircuit: true;
|
|
9492
9493
|
symbol?: SymbolProp | undefined;
|
|
9494
|
+
key?: any;
|
|
9493
9495
|
pcbX?: string | number | undefined;
|
|
9494
9496
|
pcbY?: string | number | undefined;
|
|
9495
9497
|
pcbRotation?: string | number | undefined;
|
|
@@ -9516,7 +9518,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9516
9518
|
schRotation?: string | number | undefined;
|
|
9517
9519
|
footprint?: FootprintProp | undefined;
|
|
9518
9520
|
schRelative?: boolean | undefined;
|
|
9519
|
-
key?: any;
|
|
9520
9521
|
name?: string | undefined;
|
|
9521
9522
|
children?: any;
|
|
9522
9523
|
grid?: boolean | undefined;
|
|
@@ -10327,6 +10328,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
10327
10328
|
material: "fr4" | "fr1";
|
|
10328
10329
|
layers: 2 | 4;
|
|
10329
10330
|
symbol?: SymbolProp | undefined;
|
|
10331
|
+
key?: any;
|
|
10330
10332
|
pcbX?: number | undefined;
|
|
10331
10333
|
pcbY?: number | undefined;
|
|
10332
10334
|
pcbRotation?: number | undefined;
|
|
@@ -10351,7 +10353,6 @@ declare const boardProps: z.ZodObject<{
|
|
|
10351
10353
|
schRotation?: number | undefined;
|
|
10352
10354
|
footprint?: FootprintProp | undefined;
|
|
10353
10355
|
schRelative?: boolean | undefined;
|
|
10354
|
-
key?: any;
|
|
10355
10356
|
name?: string | undefined;
|
|
10356
10357
|
children?: any;
|
|
10357
10358
|
grid?: boolean | undefined;
|
|
@@ -10576,6 +10577,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
10576
10577
|
borderRadius?: number | undefined;
|
|
10577
10578
|
}, {
|
|
10578
10579
|
symbol?: SymbolProp | undefined;
|
|
10580
|
+
key?: any;
|
|
10579
10581
|
pcbX?: string | number | undefined;
|
|
10580
10582
|
pcbY?: string | number | undefined;
|
|
10581
10583
|
pcbRotation?: string | number | undefined;
|
|
@@ -10602,7 +10604,6 @@ declare const boardProps: z.ZodObject<{
|
|
|
10602
10604
|
schRotation?: string | number | undefined;
|
|
10603
10605
|
footprint?: FootprintProp | undefined;
|
|
10604
10606
|
schRelative?: boolean | undefined;
|
|
10605
|
-
key?: any;
|
|
10606
10607
|
name?: string | undefined;
|
|
10607
10608
|
children?: any;
|
|
10608
10609
|
grid?: boolean | undefined;
|
|
@@ -11411,6 +11412,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11411
11412
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11412
11413
|
}, "strip", z.ZodTypeAny, {
|
|
11413
11414
|
symbol?: SymbolProp | undefined;
|
|
11415
|
+
key?: any;
|
|
11414
11416
|
pcbX?: number | undefined;
|
|
11415
11417
|
pcbY?: number | undefined;
|
|
11416
11418
|
pcbRotation?: number | undefined;
|
|
@@ -11435,7 +11437,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11435
11437
|
schRotation?: number | undefined;
|
|
11436
11438
|
footprint?: FootprintProp | undefined;
|
|
11437
11439
|
schRelative?: boolean | undefined;
|
|
11438
|
-
key?: any;
|
|
11439
11440
|
name?: string | undefined;
|
|
11440
11441
|
children?: any;
|
|
11441
11442
|
grid?: boolean | undefined;
|
|
@@ -11659,6 +11660,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11659
11660
|
outlineOffsetY?: number | undefined;
|
|
11660
11661
|
}, {
|
|
11661
11662
|
symbol?: SymbolProp | undefined;
|
|
11663
|
+
key?: any;
|
|
11662
11664
|
pcbX?: string | number | undefined;
|
|
11663
11665
|
pcbY?: string | number | undefined;
|
|
11664
11666
|
pcbRotation?: string | number | undefined;
|
|
@@ -11685,7 +11687,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11685
11687
|
schRotation?: string | number | undefined;
|
|
11686
11688
|
footprint?: FootprintProp | undefined;
|
|
11687
11689
|
schRelative?: boolean | undefined;
|
|
11688
|
-
key?: any;
|
|
11689
11690
|
name?: string | undefined;
|
|
11690
11691
|
children?: any;
|
|
11691
11692
|
grid?: boolean | undefined;
|
|
@@ -12093,7 +12094,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12093
12094
|
} & {
|
|
12094
12095
|
key: z.ZodOptional<z.ZodAny>;
|
|
12095
12096
|
name: z.ZodString;
|
|
12096
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
12097
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
12097
12098
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
12098
12099
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12099
12100
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -12931,6 +12932,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12931
12932
|
}, "strip", z.ZodTypeAny, {
|
|
12932
12933
|
name: string;
|
|
12933
12934
|
symbol?: SymbolProp | undefined;
|
|
12935
|
+
key?: any;
|
|
12934
12936
|
pcbX?: number | undefined;
|
|
12935
12937
|
pcbY?: number | undefined;
|
|
12936
12938
|
pcbRotation?: number | undefined;
|
|
@@ -12956,7 +12958,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
12956
12958
|
footprint?: FootprintProp | undefined;
|
|
12957
12959
|
schRelative?: boolean | undefined;
|
|
12958
12960
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12959
|
-
key?: any;
|
|
12960
12961
|
pinAttributes?: Record<string, {
|
|
12961
12962
|
providesPower?: boolean | undefined;
|
|
12962
12963
|
requiresPower?: boolean | undefined;
|
|
@@ -13093,7 +13094,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13093
13094
|
z: number;
|
|
13094
13095
|
} | undefined;
|
|
13095
13096
|
modelUnitToMmScale?: number | undefined;
|
|
13096
|
-
} | null | undefined;
|
|
13097
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
13097
13098
|
children?: any;
|
|
13098
13099
|
symbolName?: string | undefined;
|
|
13099
13100
|
doNotPlace?: boolean | undefined;
|
|
@@ -13177,6 +13178,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13177
13178
|
}, {
|
|
13178
13179
|
name: string;
|
|
13179
13180
|
symbol?: SymbolProp | undefined;
|
|
13181
|
+
key?: any;
|
|
13180
13182
|
pcbX?: string | number | undefined;
|
|
13181
13183
|
pcbY?: string | number | undefined;
|
|
13182
13184
|
pcbRotation?: string | number | undefined;
|
|
@@ -13204,7 +13206,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
13204
13206
|
footprint?: FootprintProp | undefined;
|
|
13205
13207
|
schRelative?: boolean | undefined;
|
|
13206
13208
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13207
|
-
key?: any;
|
|
13208
13209
|
pinAttributes?: Record<string, {
|
|
13209
13210
|
providesPower?: boolean | undefined;
|
|
13210
13211
|
requiresPower?: boolean | undefined;
|
|
@@ -13341,7 +13342,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13341
13342
|
z: string | number;
|
|
13342
13343
|
} | undefined;
|
|
13343
13344
|
modelUnitToMmScale?: string | number | undefined;
|
|
13344
|
-
} | null | undefined;
|
|
13345
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
13345
13346
|
children?: any;
|
|
13346
13347
|
symbolName?: string | undefined;
|
|
13347
13348
|
doNotPlace?: boolean | undefined;
|
|
@@ -13465,7 +13466,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
13465
13466
|
} & {
|
|
13466
13467
|
key: z.ZodOptional<z.ZodAny>;
|
|
13467
13468
|
name: z.ZodString;
|
|
13468
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
13469
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
13469
13470
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
13470
13471
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
13471
13472
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -14303,6 +14304,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14303
14304
|
}, "strip", z.ZodTypeAny, {
|
|
14304
14305
|
name: string;
|
|
14305
14306
|
symbol?: SymbolProp | undefined;
|
|
14307
|
+
key?: any;
|
|
14306
14308
|
pcbX?: number | undefined;
|
|
14307
14309
|
pcbY?: number | undefined;
|
|
14308
14310
|
pcbRotation?: number | undefined;
|
|
@@ -14328,7 +14330,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
14328
14330
|
footprint?: FootprintProp | undefined;
|
|
14329
14331
|
schRelative?: boolean | undefined;
|
|
14330
14332
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14331
|
-
key?: any;
|
|
14332
14333
|
pinAttributes?: Record<string, {
|
|
14333
14334
|
providesPower?: boolean | undefined;
|
|
14334
14335
|
requiresPower?: boolean | undefined;
|
|
@@ -14465,7 +14466,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14465
14466
|
z: number;
|
|
14466
14467
|
} | undefined;
|
|
14467
14468
|
modelUnitToMmScale?: number | undefined;
|
|
14468
|
-
} | null | undefined;
|
|
14469
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
14469
14470
|
children?: any;
|
|
14470
14471
|
symbolName?: string | undefined;
|
|
14471
14472
|
doNotPlace?: boolean | undefined;
|
|
@@ -14549,6 +14550,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14549
14550
|
}, {
|
|
14550
14551
|
name: string;
|
|
14551
14552
|
symbol?: SymbolProp | undefined;
|
|
14553
|
+
key?: any;
|
|
14552
14554
|
pcbX?: string | number | undefined;
|
|
14553
14555
|
pcbY?: string | number | undefined;
|
|
14554
14556
|
pcbRotation?: string | number | undefined;
|
|
@@ -14576,7 +14578,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
14576
14578
|
footprint?: FootprintProp | undefined;
|
|
14577
14579
|
schRelative?: boolean | undefined;
|
|
14578
14580
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14579
|
-
key?: any;
|
|
14580
14581
|
pinAttributes?: Record<string, {
|
|
14581
14582
|
providesPower?: boolean | undefined;
|
|
14582
14583
|
requiresPower?: boolean | undefined;
|
|
@@ -14713,7 +14714,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14713
14714
|
z: string | number;
|
|
14714
14715
|
} | undefined;
|
|
14715
14716
|
modelUnitToMmScale?: string | number | undefined;
|
|
14716
|
-
} | null | undefined;
|
|
14717
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
14717
14718
|
children?: any;
|
|
14718
14719
|
symbolName?: string | undefined;
|
|
14719
14720
|
doNotPlace?: boolean | undefined;
|
|
@@ -14836,7 +14837,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
14836
14837
|
} & {
|
|
14837
14838
|
key: z.ZodOptional<z.ZodAny>;
|
|
14838
14839
|
name: z.ZodString;
|
|
14839
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
14840
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
14840
14841
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
14841
14842
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
14842
14843
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -15674,6 +15675,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15674
15675
|
}, "strip", z.ZodTypeAny, {
|
|
15675
15676
|
name: string;
|
|
15676
15677
|
symbol?: SymbolProp | undefined;
|
|
15678
|
+
key?: any;
|
|
15677
15679
|
pcbX?: number | undefined;
|
|
15678
15680
|
pcbY?: number | undefined;
|
|
15679
15681
|
pcbRotation?: number | undefined;
|
|
@@ -15699,7 +15701,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15699
15701
|
footprint?: FootprintProp | undefined;
|
|
15700
15702
|
schRelative?: boolean | undefined;
|
|
15701
15703
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15702
|
-
key?: any;
|
|
15703
15704
|
pinAttributes?: Record<string, {
|
|
15704
15705
|
providesPower?: boolean | undefined;
|
|
15705
15706
|
requiresPower?: boolean | undefined;
|
|
@@ -15836,7 +15837,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15836
15837
|
z: number;
|
|
15837
15838
|
} | undefined;
|
|
15838
15839
|
modelUnitToMmScale?: number | undefined;
|
|
15839
|
-
} | null | undefined;
|
|
15840
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
15840
15841
|
children?: any;
|
|
15841
15842
|
symbolName?: string | undefined;
|
|
15842
15843
|
doNotPlace?: boolean | undefined;
|
|
@@ -15920,6 +15921,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15920
15921
|
}, {
|
|
15921
15922
|
name: string;
|
|
15922
15923
|
symbol?: SymbolProp | undefined;
|
|
15924
|
+
key?: any;
|
|
15923
15925
|
pcbX?: string | number | undefined;
|
|
15924
15926
|
pcbY?: string | number | undefined;
|
|
15925
15927
|
pcbRotation?: string | number | undefined;
|
|
@@ -15947,7 +15949,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15947
15949
|
footprint?: FootprintProp | undefined;
|
|
15948
15950
|
schRelative?: boolean | undefined;
|
|
15949
15951
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15950
|
-
key?: any;
|
|
15951
15952
|
pinAttributes?: Record<string, {
|
|
15952
15953
|
providesPower?: boolean | undefined;
|
|
15953
15954
|
requiresPower?: boolean | undefined;
|
|
@@ -16084,7 +16085,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16084
16085
|
z: string | number;
|
|
16085
16086
|
} | undefined;
|
|
16086
16087
|
modelUnitToMmScale?: string | number | undefined;
|
|
16087
|
-
} | null | undefined;
|
|
16088
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
16088
16089
|
children?: any;
|
|
16089
16090
|
symbolName?: string | undefined;
|
|
16090
16091
|
doNotPlace?: boolean | undefined;
|
|
@@ -16239,7 +16240,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
16239
16240
|
} & {
|
|
16240
16241
|
key: z.ZodOptional<z.ZodAny>;
|
|
16241
16242
|
name: z.ZodString;
|
|
16242
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
16243
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
16243
16244
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
16244
16245
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
16245
16246
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -17066,6 +17067,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17066
17067
|
}, "strip", z.ZodTypeAny, {
|
|
17067
17068
|
name: string;
|
|
17068
17069
|
symbol?: SymbolProp | undefined;
|
|
17070
|
+
key?: any;
|
|
17069
17071
|
pcbX?: number | undefined;
|
|
17070
17072
|
pcbY?: number | undefined;
|
|
17071
17073
|
pcbRotation?: number | undefined;
|
|
@@ -17091,7 +17093,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17091
17093
|
footprint?: FootprintProp | undefined;
|
|
17092
17094
|
schRelative?: boolean | undefined;
|
|
17093
17095
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17094
|
-
key?: any;
|
|
17095
17096
|
pinAttributes?: Record<string, {
|
|
17096
17097
|
providesPower?: boolean | undefined;
|
|
17097
17098
|
requiresPower?: boolean | undefined;
|
|
@@ -17228,7 +17229,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17228
17229
|
z: number;
|
|
17229
17230
|
} | undefined;
|
|
17230
17231
|
modelUnitToMmScale?: number | undefined;
|
|
17231
|
-
} | null | undefined;
|
|
17232
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
17232
17233
|
children?: any;
|
|
17233
17234
|
symbolName?: string | undefined;
|
|
17234
17235
|
doNotPlace?: boolean | undefined;
|
|
@@ -17307,6 +17308,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17307
17308
|
}, {
|
|
17308
17309
|
name: string;
|
|
17309
17310
|
symbol?: SymbolProp | undefined;
|
|
17311
|
+
key?: any;
|
|
17310
17312
|
pcbX?: string | number | undefined;
|
|
17311
17313
|
pcbY?: string | number | undefined;
|
|
17312
17314
|
pcbRotation?: string | number | undefined;
|
|
@@ -17334,7 +17336,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17334
17336
|
footprint?: FootprintProp | undefined;
|
|
17335
17337
|
schRelative?: boolean | undefined;
|
|
17336
17338
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17337
|
-
key?: any;
|
|
17338
17339
|
pinAttributes?: Record<string, {
|
|
17339
17340
|
providesPower?: boolean | undefined;
|
|
17340
17341
|
requiresPower?: boolean | undefined;
|
|
@@ -17471,7 +17472,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17471
17472
|
z: string | number;
|
|
17472
17473
|
} | undefined;
|
|
17473
17474
|
modelUnitToMmScale?: string | number | undefined;
|
|
17474
|
-
} | null | undefined;
|
|
17475
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
17475
17476
|
children?: any;
|
|
17476
17477
|
symbolName?: string | undefined;
|
|
17477
17478
|
doNotPlace?: boolean | undefined;
|
|
@@ -17598,7 +17599,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
17598
17599
|
} & {
|
|
17599
17600
|
key: z.ZodOptional<z.ZodAny>;
|
|
17600
17601
|
name: z.ZodString;
|
|
17601
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
17602
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
17602
17603
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
17603
17604
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
17604
17605
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -18428,6 +18429,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18428
18429
|
}, "strip", z.ZodTypeAny, {
|
|
18429
18430
|
name: string;
|
|
18430
18431
|
symbol?: SymbolProp | undefined;
|
|
18432
|
+
key?: any;
|
|
18431
18433
|
pcbX?: number | undefined;
|
|
18432
18434
|
pcbY?: number | undefined;
|
|
18433
18435
|
pcbRotation?: number | undefined;
|
|
@@ -18453,7 +18455,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18453
18455
|
footprint?: FootprintProp | undefined;
|
|
18454
18456
|
schRelative?: boolean | undefined;
|
|
18455
18457
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18456
|
-
key?: any;
|
|
18457
18458
|
pinAttributes?: Record<string, {
|
|
18458
18459
|
providesPower?: boolean | undefined;
|
|
18459
18460
|
requiresPower?: boolean | undefined;
|
|
@@ -18590,7 +18591,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18590
18591
|
z: number;
|
|
18591
18592
|
} | undefined;
|
|
18592
18593
|
modelUnitToMmScale?: number | undefined;
|
|
18593
|
-
} | null | undefined;
|
|
18594
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
18594
18595
|
children?: any;
|
|
18595
18596
|
symbolName?: string | undefined;
|
|
18596
18597
|
doNotPlace?: boolean | undefined;
|
|
@@ -18671,6 +18672,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18671
18672
|
}, {
|
|
18672
18673
|
name: string;
|
|
18673
18674
|
symbol?: SymbolProp | undefined;
|
|
18675
|
+
key?: any;
|
|
18674
18676
|
pcbX?: string | number | undefined;
|
|
18675
18677
|
pcbY?: string | number | undefined;
|
|
18676
18678
|
pcbRotation?: string | number | undefined;
|
|
@@ -18698,7 +18700,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18698
18700
|
footprint?: FootprintProp | undefined;
|
|
18699
18701
|
schRelative?: boolean | undefined;
|
|
18700
18702
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18701
|
-
key?: any;
|
|
18702
18703
|
pinAttributes?: Record<string, {
|
|
18703
18704
|
providesPower?: boolean | undefined;
|
|
18704
18705
|
requiresPower?: boolean | undefined;
|
|
@@ -18835,7 +18836,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18835
18836
|
z: string | number;
|
|
18836
18837
|
} | undefined;
|
|
18837
18838
|
modelUnitToMmScale?: string | number | undefined;
|
|
18838
|
-
} | null | undefined;
|
|
18839
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
18839
18840
|
children?: any;
|
|
18840
18841
|
symbolName?: string | undefined;
|
|
18841
18842
|
doNotPlace?: boolean | undefined;
|
|
@@ -18973,7 +18974,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
18973
18974
|
} & {
|
|
18974
18975
|
key: z.ZodOptional<z.ZodAny>;
|
|
18975
18976
|
name: z.ZodString;
|
|
18976
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
18977
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
18977
18978
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
18978
18979
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
18979
18980
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -19698,6 +19699,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19698
19699
|
}, "strip", z.ZodTypeAny, {
|
|
19699
19700
|
name: string;
|
|
19700
19701
|
symbol?: SymbolProp | undefined;
|
|
19702
|
+
key?: any;
|
|
19701
19703
|
pcbX?: number | undefined;
|
|
19702
19704
|
pcbY?: number | undefined;
|
|
19703
19705
|
pcbRotation?: number | undefined;
|
|
@@ -19723,7 +19725,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19723
19725
|
footprint?: FootprintProp | undefined;
|
|
19724
19726
|
schRelative?: boolean | undefined;
|
|
19725
19727
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19726
|
-
key?: any;
|
|
19727
19728
|
pinAttributes?: Record<string, {
|
|
19728
19729
|
providesPower?: boolean | undefined;
|
|
19729
19730
|
requiresPower?: boolean | undefined;
|
|
@@ -19860,7 +19861,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19860
19861
|
z: number;
|
|
19861
19862
|
} | undefined;
|
|
19862
19863
|
modelUnitToMmScale?: number | undefined;
|
|
19863
|
-
} | null | undefined;
|
|
19864
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
19864
19865
|
children?: any;
|
|
19865
19866
|
symbolName?: string | undefined;
|
|
19866
19867
|
doNotPlace?: boolean | undefined;
|
|
@@ -19911,6 +19912,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19911
19912
|
}, {
|
|
19912
19913
|
name: string;
|
|
19913
19914
|
symbol?: SymbolProp | undefined;
|
|
19915
|
+
key?: any;
|
|
19914
19916
|
pcbX?: string | number | undefined;
|
|
19915
19917
|
pcbY?: string | number | undefined;
|
|
19916
19918
|
pcbRotation?: string | number | undefined;
|
|
@@ -19938,7 +19940,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19938
19940
|
footprint?: FootprintProp | undefined;
|
|
19939
19941
|
schRelative?: boolean | undefined;
|
|
19940
19942
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19941
|
-
key?: any;
|
|
19942
19943
|
pinAttributes?: Record<string, {
|
|
19943
19944
|
providesPower?: boolean | undefined;
|
|
19944
19945
|
requiresPower?: boolean | undefined;
|
|
@@ -20075,7 +20076,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
20075
20076
|
z: string | number;
|
|
20076
20077
|
} | undefined;
|
|
20077
20078
|
modelUnitToMmScale?: string | number | undefined;
|
|
20078
|
-
} | null | undefined;
|
|
20079
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
20079
20080
|
children?: any;
|
|
20080
20081
|
symbolName?: string | undefined;
|
|
20081
20082
|
doNotPlace?: boolean | undefined;
|
|
@@ -20191,7 +20192,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20191
20192
|
} & {
|
|
20192
20193
|
key: z.ZodOptional<z.ZodAny>;
|
|
20193
20194
|
name: z.ZodString;
|
|
20194
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
20195
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
20195
20196
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
20196
20197
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
20197
20198
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -20786,6 +20787,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20786
20787
|
name: string;
|
|
20787
20788
|
currentRating: string | number;
|
|
20788
20789
|
symbol?: SymbolProp | undefined;
|
|
20790
|
+
key?: any;
|
|
20789
20791
|
pcbX?: number | undefined;
|
|
20790
20792
|
pcbY?: number | undefined;
|
|
20791
20793
|
pcbRotation?: number | undefined;
|
|
@@ -20811,7 +20813,6 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20811
20813
|
footprint?: FootprintProp | undefined;
|
|
20812
20814
|
schRelative?: boolean | undefined;
|
|
20813
20815
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20814
|
-
key?: any;
|
|
20815
20816
|
pinAttributes?: Record<string, {
|
|
20816
20817
|
providesPower?: boolean | undefined;
|
|
20817
20818
|
requiresPower?: boolean | undefined;
|
|
@@ -20948,7 +20949,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20948
20949
|
z: number;
|
|
20949
20950
|
} | undefined;
|
|
20950
20951
|
modelUnitToMmScale?: number | undefined;
|
|
20951
|
-
} | null | undefined;
|
|
20952
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
20952
20953
|
children?: any;
|
|
20953
20954
|
symbolName?: string | undefined;
|
|
20954
20955
|
doNotPlace?: boolean | undefined;
|
|
@@ -20960,6 +20961,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20960
20961
|
name: string;
|
|
20961
20962
|
currentRating: string | number;
|
|
20962
20963
|
symbol?: SymbolProp | undefined;
|
|
20964
|
+
key?: any;
|
|
20963
20965
|
pcbX?: string | number | undefined;
|
|
20964
20966
|
pcbY?: string | number | undefined;
|
|
20965
20967
|
pcbRotation?: string | number | undefined;
|
|
@@ -20987,7 +20989,6 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20987
20989
|
footprint?: FootprintProp | undefined;
|
|
20988
20990
|
schRelative?: boolean | undefined;
|
|
20989
20991
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20990
|
-
key?: any;
|
|
20991
20992
|
pinAttributes?: Record<string, {
|
|
20992
20993
|
providesPower?: boolean | undefined;
|
|
20993
20994
|
requiresPower?: boolean | undefined;
|
|
@@ -21124,7 +21125,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
21124
21125
|
z: string | number;
|
|
21125
21126
|
} | undefined;
|
|
21126
21127
|
modelUnitToMmScale?: string | number | undefined;
|
|
21127
|
-
} | null | undefined;
|
|
21128
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
21128
21129
|
children?: any;
|
|
21129
21130
|
symbolName?: string | undefined;
|
|
21130
21131
|
doNotPlace?: boolean | undefined;
|
|
@@ -21849,7 +21850,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
21849
21850
|
} & {
|
|
21850
21851
|
key: z.ZodOptional<z.ZodAny>;
|
|
21851
21852
|
name: z.ZodString;
|
|
21852
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
21853
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
21853
21854
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
21854
21855
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
21855
21856
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -22446,6 +22447,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22446
22447
|
name: string;
|
|
22447
22448
|
resistance: number;
|
|
22448
22449
|
symbol?: SymbolProp | undefined;
|
|
22450
|
+
key?: any;
|
|
22449
22451
|
pcbX?: number | undefined;
|
|
22450
22452
|
pcbY?: number | undefined;
|
|
22451
22453
|
pcbRotation?: number | undefined;
|
|
@@ -22471,7 +22473,6 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22471
22473
|
footprint?: FootprintProp | undefined;
|
|
22472
22474
|
schRelative?: boolean | undefined;
|
|
22473
22475
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22474
|
-
key?: any;
|
|
22475
22476
|
pinAttributes?: Record<string, {
|
|
22476
22477
|
providesPower?: boolean | undefined;
|
|
22477
22478
|
requiresPower?: boolean | undefined;
|
|
@@ -22608,7 +22609,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22608
22609
|
z: number;
|
|
22609
22610
|
} | undefined;
|
|
22610
22611
|
modelUnitToMmScale?: number | undefined;
|
|
22611
|
-
} | null | undefined;
|
|
22612
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
22612
22613
|
children?: any;
|
|
22613
22614
|
symbolName?: string | undefined;
|
|
22614
22615
|
doNotPlace?: boolean | undefined;
|
|
@@ -22622,6 +22623,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22622
22623
|
name: string;
|
|
22623
22624
|
resistance: string | number;
|
|
22624
22625
|
symbol?: SymbolProp | undefined;
|
|
22626
|
+
key?: any;
|
|
22625
22627
|
pcbX?: string | number | undefined;
|
|
22626
22628
|
pcbY?: string | number | undefined;
|
|
22627
22629
|
pcbRotation?: string | number | undefined;
|
|
@@ -22649,7 +22651,6 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22649
22651
|
footprint?: FootprintProp | undefined;
|
|
22650
22652
|
schRelative?: boolean | undefined;
|
|
22651
22653
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22652
|
-
key?: any;
|
|
22653
22654
|
pinAttributes?: Record<string, {
|
|
22654
22655
|
providesPower?: boolean | undefined;
|
|
22655
22656
|
requiresPower?: boolean | undefined;
|
|
@@ -22786,7 +22787,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22786
22787
|
z: string | number;
|
|
22787
22788
|
} | undefined;
|
|
22788
22789
|
modelUnitToMmScale?: string | number | undefined;
|
|
22789
|
-
} | null | undefined;
|
|
22790
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
22790
22791
|
children?: any;
|
|
22791
22792
|
symbolName?: string | undefined;
|
|
22792
22793
|
doNotPlace?: boolean | undefined;
|
|
@@ -22843,7 +22844,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
22843
22844
|
} & {
|
|
22844
22845
|
key: z.ZodOptional<z.ZodAny>;
|
|
22845
22846
|
name: z.ZodString;
|
|
22846
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
22847
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
22847
22848
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
22848
22849
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
22849
22850
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -23435,6 +23436,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23435
23436
|
name: string;
|
|
23436
23437
|
maxResistance: number;
|
|
23437
23438
|
symbol?: SymbolProp | undefined;
|
|
23439
|
+
key?: any;
|
|
23438
23440
|
pcbX?: number | undefined;
|
|
23439
23441
|
pcbY?: number | undefined;
|
|
23440
23442
|
pcbRotation?: number | undefined;
|
|
@@ -23460,7 +23462,6 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23460
23462
|
footprint?: FootprintProp | undefined;
|
|
23461
23463
|
schRelative?: boolean | undefined;
|
|
23462
23464
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23463
|
-
key?: any;
|
|
23464
23465
|
pinAttributes?: Record<string, {
|
|
23465
23466
|
providesPower?: boolean | undefined;
|
|
23466
23467
|
requiresPower?: boolean | undefined;
|
|
@@ -23597,7 +23598,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23597
23598
|
z: number;
|
|
23598
23599
|
} | undefined;
|
|
23599
23600
|
modelUnitToMmScale?: number | undefined;
|
|
23600
|
-
} | null | undefined;
|
|
23601
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
23601
23602
|
children?: any;
|
|
23602
23603
|
symbolName?: string | undefined;
|
|
23603
23604
|
doNotPlace?: boolean | undefined;
|
|
@@ -23606,6 +23607,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23606
23607
|
name: string;
|
|
23607
23608
|
maxResistance: string | number;
|
|
23608
23609
|
symbol?: SymbolProp | undefined;
|
|
23610
|
+
key?: any;
|
|
23609
23611
|
pcbX?: string | number | undefined;
|
|
23610
23612
|
pcbY?: string | number | undefined;
|
|
23611
23613
|
pcbRotation?: string | number | undefined;
|
|
@@ -23633,7 +23635,6 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23633
23635
|
footprint?: FootprintProp | undefined;
|
|
23634
23636
|
schRelative?: boolean | undefined;
|
|
23635
23637
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23636
|
-
key?: any;
|
|
23637
23638
|
pinAttributes?: Record<string, {
|
|
23638
23639
|
providesPower?: boolean | undefined;
|
|
23639
23640
|
requiresPower?: boolean | undefined;
|
|
@@ -23770,7 +23771,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23770
23771
|
z: string | number;
|
|
23771
23772
|
} | undefined;
|
|
23772
23773
|
modelUnitToMmScale?: string | number | undefined;
|
|
23773
|
-
} | null | undefined;
|
|
23774
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
23774
23775
|
children?: any;
|
|
23775
23776
|
symbolName?: string | undefined;
|
|
23776
23777
|
doNotPlace?: boolean | undefined;
|
|
@@ -23828,7 +23829,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
23828
23829
|
} & {
|
|
23829
23830
|
key: z.ZodOptional<z.ZodAny>;
|
|
23830
23831
|
name: z.ZodString;
|
|
23831
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
23832
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
23832
23833
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
23833
23834
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
23834
23835
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -24426,6 +24427,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24426
24427
|
frequency: number;
|
|
24427
24428
|
loadCapacitance: number;
|
|
24428
24429
|
symbol?: SymbolProp | undefined;
|
|
24430
|
+
key?: any;
|
|
24429
24431
|
pcbX?: number | undefined;
|
|
24430
24432
|
pcbY?: number | undefined;
|
|
24431
24433
|
pcbRotation?: number | undefined;
|
|
@@ -24451,7 +24453,6 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24451
24453
|
footprint?: FootprintProp | undefined;
|
|
24452
24454
|
schRelative?: boolean | undefined;
|
|
24453
24455
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24454
|
-
key?: any;
|
|
24455
24456
|
pinAttributes?: Record<string, {
|
|
24456
24457
|
providesPower?: boolean | undefined;
|
|
24457
24458
|
requiresPower?: boolean | undefined;
|
|
@@ -24588,7 +24589,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24588
24589
|
z: number;
|
|
24589
24590
|
} | undefined;
|
|
24590
24591
|
modelUnitToMmScale?: number | undefined;
|
|
24591
|
-
} | null | undefined;
|
|
24592
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
24592
24593
|
children?: any;
|
|
24593
24594
|
symbolName?: string | undefined;
|
|
24594
24595
|
doNotPlace?: boolean | undefined;
|
|
@@ -24602,6 +24603,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24602
24603
|
frequency: string | number;
|
|
24603
24604
|
loadCapacitance: string | number;
|
|
24604
24605
|
symbol?: SymbolProp | undefined;
|
|
24606
|
+
key?: any;
|
|
24605
24607
|
pcbX?: string | number | undefined;
|
|
24606
24608
|
pcbY?: string | number | undefined;
|
|
24607
24609
|
pcbRotation?: string | number | undefined;
|
|
@@ -24629,7 +24631,6 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24629
24631
|
footprint?: FootprintProp | undefined;
|
|
24630
24632
|
schRelative?: boolean | undefined;
|
|
24631
24633
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24632
|
-
key?: any;
|
|
24633
24634
|
pinAttributes?: Record<string, {
|
|
24634
24635
|
providesPower?: boolean | undefined;
|
|
24635
24636
|
requiresPower?: boolean | undefined;
|
|
@@ -24766,7 +24767,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24766
24767
|
z: string | number;
|
|
24767
24768
|
} | undefined;
|
|
24768
24769
|
modelUnitToMmScale?: string | number | undefined;
|
|
24769
|
-
} | null | undefined;
|
|
24770
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
24770
24771
|
children?: any;
|
|
24771
24772
|
symbolName?: string | undefined;
|
|
24772
24773
|
doNotPlace?: boolean | undefined;
|
|
@@ -24822,7 +24823,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
24822
24823
|
} & {
|
|
24823
24824
|
key: z.ZodOptional<z.ZodAny>;
|
|
24824
24825
|
name: z.ZodString;
|
|
24825
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
24826
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
24826
24827
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
24827
24828
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
24828
24829
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -25416,6 +25417,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25416
25417
|
frequency: number;
|
|
25417
25418
|
loadCapacitance: number;
|
|
25418
25419
|
symbol?: SymbolProp | undefined;
|
|
25420
|
+
key?: any;
|
|
25419
25421
|
pcbX?: number | undefined;
|
|
25420
25422
|
pcbY?: number | undefined;
|
|
25421
25423
|
pcbRotation?: number | undefined;
|
|
@@ -25441,7 +25443,6 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25441
25443
|
footprint?: FootprintProp | undefined;
|
|
25442
25444
|
schRelative?: boolean | undefined;
|
|
25443
25445
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25444
|
-
key?: any;
|
|
25445
25446
|
pinAttributes?: Record<string, {
|
|
25446
25447
|
providesPower?: boolean | undefined;
|
|
25447
25448
|
requiresPower?: boolean | undefined;
|
|
@@ -25578,7 +25579,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25578
25579
|
z: number;
|
|
25579
25580
|
} | undefined;
|
|
25580
25581
|
modelUnitToMmScale?: number | undefined;
|
|
25581
|
-
} | null | undefined;
|
|
25582
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
25582
25583
|
children?: any;
|
|
25583
25584
|
symbolName?: string | undefined;
|
|
25584
25585
|
doNotPlace?: boolean | undefined;
|
|
@@ -25588,6 +25589,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25588
25589
|
frequency: string | number;
|
|
25589
25590
|
loadCapacitance: string | number;
|
|
25590
25591
|
symbol?: SymbolProp | undefined;
|
|
25592
|
+
key?: any;
|
|
25591
25593
|
pcbX?: string | number | undefined;
|
|
25592
25594
|
pcbY?: string | number | undefined;
|
|
25593
25595
|
pcbRotation?: string | number | undefined;
|
|
@@ -25615,7 +25617,6 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25615
25617
|
footprint?: FootprintProp | undefined;
|
|
25616
25618
|
schRelative?: boolean | undefined;
|
|
25617
25619
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25618
|
-
key?: any;
|
|
25619
25620
|
pinAttributes?: Record<string, {
|
|
25620
25621
|
providesPower?: boolean | undefined;
|
|
25621
25622
|
requiresPower?: boolean | undefined;
|
|
@@ -25752,7 +25753,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25752
25753
|
z: string | number;
|
|
25753
25754
|
} | undefined;
|
|
25754
25755
|
modelUnitToMmScale?: string | number | undefined;
|
|
25755
|
-
} | null | undefined;
|
|
25756
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
25756
25757
|
children?: any;
|
|
25757
25758
|
symbolName?: string | undefined;
|
|
25758
25759
|
doNotPlace?: boolean | undefined;
|
|
@@ -26361,6 +26362,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26361
26362
|
material: "fr4" | "fr1";
|
|
26362
26363
|
layers: 2 | 4;
|
|
26363
26364
|
symbol?: SymbolProp | undefined;
|
|
26365
|
+
key?: any;
|
|
26364
26366
|
pcbX?: number | undefined;
|
|
26365
26367
|
pcbY?: number | undefined;
|
|
26366
26368
|
pcbRotation?: number | undefined;
|
|
@@ -26385,7 +26387,6 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26385
26387
|
schRotation?: number | undefined;
|
|
26386
26388
|
footprint?: FootprintProp | undefined;
|
|
26387
26389
|
schRelative?: boolean | undefined;
|
|
26388
|
-
key?: any;
|
|
26389
26390
|
name?: string | undefined;
|
|
26390
26391
|
children?: any;
|
|
26391
26392
|
leftPinCount?: number | undefined;
|
|
@@ -26620,6 +26621,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26620
26621
|
innerHoles?: boolean | undefined;
|
|
26621
26622
|
}, {
|
|
26622
26623
|
symbol?: SymbolProp | undefined;
|
|
26624
|
+
key?: any;
|
|
26623
26625
|
pcbX?: string | number | undefined;
|
|
26624
26626
|
pcbY?: string | number | undefined;
|
|
26625
26627
|
pcbRotation?: string | number | undefined;
|
|
@@ -26646,7 +26648,6 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26646
26648
|
schRotation?: string | number | undefined;
|
|
26647
26649
|
footprint?: FootprintProp | undefined;
|
|
26648
26650
|
schRelative?: boolean | undefined;
|
|
26649
|
-
key?: any;
|
|
26650
26651
|
name?: string | undefined;
|
|
26651
26652
|
children?: any;
|
|
26652
26653
|
leftPinCount?: number | undefined;
|
|
@@ -26939,7 +26940,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
26939
26940
|
} & {
|
|
26940
26941
|
key: z.ZodOptional<z.ZodAny>;
|
|
26941
26942
|
name: z.ZodString;
|
|
26942
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
26943
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
26943
26944
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
26944
26945
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
26945
26946
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -27542,6 +27543,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27542
27543
|
schShowRatings: boolean;
|
|
27543
27544
|
polarized: boolean;
|
|
27544
27545
|
symbol?: SymbolProp | undefined;
|
|
27546
|
+
key?: any;
|
|
27545
27547
|
pcbX?: number | undefined;
|
|
27546
27548
|
pcbY?: number | undefined;
|
|
27547
27549
|
pcbRotation?: number | undefined;
|
|
@@ -27567,7 +27569,6 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27567
27569
|
footprint?: FootprintProp | undefined;
|
|
27568
27570
|
schRelative?: boolean | undefined;
|
|
27569
27571
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
27570
|
-
key?: any;
|
|
27571
27572
|
pinAttributes?: Record<string, {
|
|
27572
27573
|
providesPower?: boolean | undefined;
|
|
27573
27574
|
requiresPower?: boolean | undefined;
|
|
@@ -27704,7 +27705,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27704
27705
|
z: number;
|
|
27705
27706
|
} | undefined;
|
|
27706
27707
|
modelUnitToMmScale?: number | undefined;
|
|
27707
|
-
} | null | undefined;
|
|
27708
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
27708
27709
|
children?: any;
|
|
27709
27710
|
symbolName?: string | undefined;
|
|
27710
27711
|
doNotPlace?: boolean | undefined;
|
|
@@ -27720,6 +27721,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27720
27721
|
name: string;
|
|
27721
27722
|
capacitance: string | number;
|
|
27722
27723
|
symbol?: SymbolProp | undefined;
|
|
27724
|
+
key?: any;
|
|
27723
27725
|
pcbX?: string | number | undefined;
|
|
27724
27726
|
pcbY?: string | number | undefined;
|
|
27725
27727
|
pcbRotation?: string | number | undefined;
|
|
@@ -27747,7 +27749,6 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27747
27749
|
footprint?: FootprintProp | undefined;
|
|
27748
27750
|
schRelative?: boolean | undefined;
|
|
27749
27751
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
27750
|
-
key?: any;
|
|
27751
27752
|
pinAttributes?: Record<string, {
|
|
27752
27753
|
providesPower?: boolean | undefined;
|
|
27753
27754
|
requiresPower?: boolean | undefined;
|
|
@@ -27884,7 +27885,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27884
27885
|
z: string | number;
|
|
27885
27886
|
} | undefined;
|
|
27886
27887
|
modelUnitToMmScale?: string | number | undefined;
|
|
27887
|
-
} | null | undefined;
|
|
27888
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
27888
27889
|
children?: any;
|
|
27889
27890
|
symbolName?: string | undefined;
|
|
27890
27891
|
doNotPlace?: boolean | undefined;
|
|
@@ -29955,7 +29956,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
29955
29956
|
} & {
|
|
29956
29957
|
key: z.ZodOptional<z.ZodAny>;
|
|
29957
29958
|
name: z.ZodString;
|
|
29958
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
29959
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
29959
29960
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
29960
29961
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
29961
29962
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -30548,6 +30549,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30548
30549
|
}, "strip", z.ZodTypeAny, {
|
|
30549
30550
|
name: string;
|
|
30550
30551
|
symbol?: SymbolProp | undefined;
|
|
30552
|
+
key?: any;
|
|
30551
30553
|
pcbX?: number | undefined;
|
|
30552
30554
|
pcbY?: number | undefined;
|
|
30553
30555
|
pcbRotation?: number | undefined;
|
|
@@ -30573,7 +30575,6 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30573
30575
|
footprint?: FootprintProp | undefined;
|
|
30574
30576
|
schRelative?: boolean | undefined;
|
|
30575
30577
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
30576
|
-
key?: any;
|
|
30577
30578
|
pinAttributes?: Record<string, {
|
|
30578
30579
|
providesPower?: boolean | undefined;
|
|
30579
30580
|
requiresPower?: boolean | undefined;
|
|
@@ -30710,7 +30711,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30710
30711
|
z: number;
|
|
30711
30712
|
} | undefined;
|
|
30712
30713
|
modelUnitToMmScale?: number | undefined;
|
|
30713
|
-
} | null | undefined;
|
|
30714
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
30714
30715
|
children?: any;
|
|
30715
30716
|
symbolName?: string | undefined;
|
|
30716
30717
|
doNotPlace?: boolean | undefined;
|
|
@@ -30721,6 +30722,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30721
30722
|
}, {
|
|
30722
30723
|
name: string;
|
|
30723
30724
|
symbol?: SymbolProp | undefined;
|
|
30725
|
+
key?: any;
|
|
30724
30726
|
pcbX?: string | number | undefined;
|
|
30725
30727
|
pcbY?: string | number | undefined;
|
|
30726
30728
|
pcbRotation?: string | number | undefined;
|
|
@@ -30748,7 +30750,6 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30748
30750
|
footprint?: FootprintProp | undefined;
|
|
30749
30751
|
schRelative?: boolean | undefined;
|
|
30750
30752
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
30751
|
-
key?: any;
|
|
30752
30753
|
pinAttributes?: Record<string, {
|
|
30753
30754
|
providesPower?: boolean | undefined;
|
|
30754
30755
|
requiresPower?: boolean | undefined;
|
|
@@ -30885,7 +30886,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30885
30886
|
z: string | number;
|
|
30886
30887
|
} | undefined;
|
|
30887
30888
|
modelUnitToMmScale?: string | number | undefined;
|
|
30888
|
-
} | null | undefined;
|
|
30889
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
30889
30890
|
children?: any;
|
|
30890
30891
|
symbolName?: string | undefined;
|
|
30891
30892
|
doNotPlace?: boolean | undefined;
|
|
@@ -31016,7 +31017,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31016
31017
|
} & {
|
|
31017
31018
|
key: z.ZodOptional<z.ZodAny>;
|
|
31018
31019
|
name: z.ZodString;
|
|
31019
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
31020
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
31020
31021
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
31021
31022
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
31022
31023
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -31752,6 +31753,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31752
31753
|
gender: "male" | "female" | "unpopulated";
|
|
31753
31754
|
pinCount: number;
|
|
31754
31755
|
symbol?: SymbolProp | undefined;
|
|
31756
|
+
key?: any;
|
|
31755
31757
|
pcbX?: number | undefined;
|
|
31756
31758
|
pcbY?: number | undefined;
|
|
31757
31759
|
pcbRotation?: number | undefined;
|
|
@@ -31777,7 +31779,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31777
31779
|
footprint?: FootprintProp | undefined;
|
|
31778
31780
|
schRelative?: boolean | undefined;
|
|
31779
31781
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
31780
|
-
key?: any;
|
|
31781
31782
|
pinAttributes?: Record<string, {
|
|
31782
31783
|
providesPower?: boolean | undefined;
|
|
31783
31784
|
requiresPower?: boolean | undefined;
|
|
@@ -31914,7 +31915,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31914
31915
|
z: number;
|
|
31915
31916
|
} | undefined;
|
|
31916
31917
|
modelUnitToMmScale?: number | undefined;
|
|
31917
|
-
} | null | undefined;
|
|
31918
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
31918
31919
|
children?: any;
|
|
31919
31920
|
symbolName?: string | undefined;
|
|
31920
31921
|
doNotPlace?: boolean | undefined;
|
|
@@ -31973,6 +31974,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31973
31974
|
name: string;
|
|
31974
31975
|
pinCount: number;
|
|
31975
31976
|
symbol?: SymbolProp | undefined;
|
|
31977
|
+
key?: any;
|
|
31976
31978
|
pcbX?: string | number | undefined;
|
|
31977
31979
|
pcbY?: string | number | undefined;
|
|
31978
31980
|
pcbRotation?: string | number | undefined;
|
|
@@ -32000,7 +32002,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32000
32002
|
footprint?: FootprintProp | undefined;
|
|
32001
32003
|
schRelative?: boolean | undefined;
|
|
32002
32004
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
32003
|
-
key?: any;
|
|
32004
32005
|
pinAttributes?: Record<string, {
|
|
32005
32006
|
providesPower?: boolean | undefined;
|
|
32006
32007
|
requiresPower?: boolean | undefined;
|
|
@@ -32137,7 +32138,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32137
32138
|
z: string | number;
|
|
32138
32139
|
} | undefined;
|
|
32139
32140
|
modelUnitToMmScale?: string | number | undefined;
|
|
32140
|
-
} | null | undefined;
|
|
32141
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
32141
32142
|
children?: any;
|
|
32142
32143
|
symbolName?: string | undefined;
|
|
32143
32144
|
doNotPlace?: boolean | undefined;
|
|
@@ -32305,7 +32306,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
32305
32306
|
} & {
|
|
32306
32307
|
key: z.ZodOptional<z.ZodAny>;
|
|
32307
32308
|
name: z.ZodString;
|
|
32308
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
32309
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
32309
32310
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
32310
32311
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
32311
32312
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -33143,6 +33144,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33143
33144
|
}, "strip", z.ZodTypeAny, {
|
|
33144
33145
|
name: string;
|
|
33145
33146
|
symbol?: SymbolProp | undefined;
|
|
33147
|
+
key?: any;
|
|
33146
33148
|
pcbX?: number | undefined;
|
|
33147
33149
|
pcbY?: number | undefined;
|
|
33148
33150
|
pcbRotation?: number | undefined;
|
|
@@ -33168,7 +33170,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33168
33170
|
footprint?: FootprintProp | undefined;
|
|
33169
33171
|
schRelative?: boolean | undefined;
|
|
33170
33172
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
33171
|
-
key?: any;
|
|
33172
33173
|
pinAttributes?: Record<string, {
|
|
33173
33174
|
providesPower?: boolean | undefined;
|
|
33174
33175
|
requiresPower?: boolean | undefined;
|
|
@@ -33305,7 +33306,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33305
33306
|
z: number;
|
|
33306
33307
|
} | undefined;
|
|
33307
33308
|
modelUnitToMmScale?: number | undefined;
|
|
33308
|
-
} | null | undefined;
|
|
33309
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
33309
33310
|
children?: any;
|
|
33310
33311
|
symbolName?: string | undefined;
|
|
33311
33312
|
doNotPlace?: boolean | undefined;
|
|
@@ -33389,6 +33390,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33389
33390
|
}, {
|
|
33390
33391
|
name: string;
|
|
33391
33392
|
symbol?: SymbolProp | undefined;
|
|
33393
|
+
key?: any;
|
|
33392
33394
|
pcbX?: string | number | undefined;
|
|
33393
33395
|
pcbY?: string | number | undefined;
|
|
33394
33396
|
pcbRotation?: string | number | undefined;
|
|
@@ -33416,7 +33418,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33416
33418
|
footprint?: FootprintProp | undefined;
|
|
33417
33419
|
schRelative?: boolean | undefined;
|
|
33418
33420
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
33419
|
-
key?: any;
|
|
33420
33421
|
pinAttributes?: Record<string, {
|
|
33421
33422
|
providesPower?: boolean | undefined;
|
|
33422
33423
|
requiresPower?: boolean | undefined;
|
|
@@ -33553,7 +33554,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33553
33554
|
z: string | number;
|
|
33554
33555
|
} | undefined;
|
|
33555
33556
|
modelUnitToMmScale?: string | number | undefined;
|
|
33556
|
-
} | null | undefined;
|
|
33557
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
33557
33558
|
children?: any;
|
|
33558
33559
|
symbolName?: string | undefined;
|
|
33559
33560
|
doNotPlace?: boolean | undefined;
|
|
@@ -34210,6 +34211,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
34210
34211
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34211
34212
|
}, "strip", z.ZodTypeAny, {
|
|
34212
34213
|
symbol?: SymbolProp | undefined;
|
|
34214
|
+
key?: any;
|
|
34213
34215
|
pcbX?: number | undefined;
|
|
34214
34216
|
pcbY?: number | undefined;
|
|
34215
34217
|
pcbRotation?: number | undefined;
|
|
@@ -34234,7 +34236,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
34234
34236
|
schRotation?: number | undefined;
|
|
34235
34237
|
footprint?: FootprintProp | undefined;
|
|
34236
34238
|
schRelative?: boolean | undefined;
|
|
34237
|
-
key?: any;
|
|
34238
34239
|
name?: string | undefined;
|
|
34239
34240
|
children?: any;
|
|
34240
34241
|
grid?: boolean | undefined;
|
|
@@ -34458,6 +34459,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
34458
34459
|
outlineOffsetY?: number | undefined;
|
|
34459
34460
|
}, {
|
|
34460
34461
|
symbol?: SymbolProp | undefined;
|
|
34462
|
+
key?: any;
|
|
34461
34463
|
pcbX?: string | number | undefined;
|
|
34462
34464
|
pcbY?: string | number | undefined;
|
|
34463
34465
|
pcbRotation?: string | number | undefined;
|
|
@@ -34484,7 +34486,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
34484
34486
|
schRotation?: string | number | undefined;
|
|
34485
34487
|
footprint?: FootprintProp | undefined;
|
|
34486
34488
|
schRelative?: boolean | undefined;
|
|
34487
|
-
key?: any;
|
|
34488
34489
|
name?: string | undefined;
|
|
34489
34490
|
children?: any;
|
|
34490
34491
|
grid?: boolean | undefined;
|
|
@@ -34755,7 +34756,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
34755
34756
|
} & {
|
|
34756
34757
|
key: z.ZodOptional<z.ZodAny>;
|
|
34757
34758
|
name: z.ZodString;
|
|
34758
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
34759
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
34759
34760
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
34760
34761
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
34761
34762
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -35347,6 +35348,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35347
35348
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
35348
35349
|
name: string;
|
|
35349
35350
|
symbol?: SymbolProp | undefined;
|
|
35351
|
+
key?: any;
|
|
35350
35352
|
pcbX?: number | undefined;
|
|
35351
35353
|
pcbY?: number | undefined;
|
|
35352
35354
|
pcbRotation?: number | undefined;
|
|
@@ -35372,7 +35374,6 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35372
35374
|
footprint?: FootprintProp | undefined;
|
|
35373
35375
|
schRelative?: boolean | undefined;
|
|
35374
35376
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
35375
|
-
key?: any;
|
|
35376
35377
|
pinAttributes?: Record<string, {
|
|
35377
35378
|
providesPower?: boolean | undefined;
|
|
35378
35379
|
requiresPower?: boolean | undefined;
|
|
@@ -35509,7 +35510,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35509
35510
|
z: number;
|
|
35510
35511
|
} | undefined;
|
|
35511
35512
|
modelUnitToMmScale?: number | undefined;
|
|
35512
|
-
} | null | undefined;
|
|
35513
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
35513
35514
|
children?: any;
|
|
35514
35515
|
symbolName?: string | undefined;
|
|
35515
35516
|
doNotPlace?: boolean | undefined;
|
|
@@ -35518,6 +35519,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35518
35519
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
35519
35520
|
name: string;
|
|
35520
35521
|
symbol?: SymbolProp | undefined;
|
|
35522
|
+
key?: any;
|
|
35521
35523
|
pcbX?: string | number | undefined;
|
|
35522
35524
|
pcbY?: string | number | undefined;
|
|
35523
35525
|
pcbRotation?: string | number | undefined;
|
|
@@ -35545,7 +35547,6 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35545
35547
|
footprint?: FootprintProp | undefined;
|
|
35546
35548
|
schRelative?: boolean | undefined;
|
|
35547
35549
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
35548
|
-
key?: any;
|
|
35549
35550
|
pinAttributes?: Record<string, {
|
|
35550
35551
|
providesPower?: boolean | undefined;
|
|
35551
35552
|
requiresPower?: boolean | undefined;
|
|
@@ -35682,7 +35683,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35682
35683
|
z: string | number;
|
|
35683
35684
|
} | undefined;
|
|
35684
35685
|
modelUnitToMmScale?: string | number | undefined;
|
|
35685
|
-
} | null | undefined;
|
|
35686
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
35686
35687
|
children?: any;
|
|
35687
35688
|
symbolName?: string | undefined;
|
|
35688
35689
|
doNotPlace?: boolean | undefined;
|
|
@@ -35734,7 +35735,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
35734
35735
|
} & {
|
|
35735
35736
|
key: z.ZodOptional<z.ZodAny>;
|
|
35736
35737
|
name: z.ZodString;
|
|
35737
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
35738
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
35738
35739
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
35739
35740
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
35740
35741
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -36327,6 +36328,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36327
36328
|
channelType: "n" | "p";
|
|
36328
36329
|
mosfetMode: "enhancement" | "depletion";
|
|
36329
36330
|
symbol?: SymbolProp | undefined;
|
|
36331
|
+
key?: any;
|
|
36330
36332
|
pcbX?: number | undefined;
|
|
36331
36333
|
pcbY?: number | undefined;
|
|
36332
36334
|
pcbRotation?: number | undefined;
|
|
@@ -36352,7 +36354,6 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36352
36354
|
footprint?: FootprintProp | undefined;
|
|
36353
36355
|
schRelative?: boolean | undefined;
|
|
36354
36356
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
36355
|
-
key?: any;
|
|
36356
36357
|
pinAttributes?: Record<string, {
|
|
36357
36358
|
providesPower?: boolean | undefined;
|
|
36358
36359
|
requiresPower?: boolean | undefined;
|
|
@@ -36489,7 +36490,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36489
36490
|
z: number;
|
|
36490
36491
|
} | undefined;
|
|
36491
36492
|
modelUnitToMmScale?: number | undefined;
|
|
36492
|
-
} | null | undefined;
|
|
36493
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
36493
36494
|
children?: any;
|
|
36494
36495
|
symbolName?: string | undefined;
|
|
36495
36496
|
doNotPlace?: boolean | undefined;
|
|
@@ -36498,6 +36499,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36498
36499
|
channelType: "n" | "p";
|
|
36499
36500
|
mosfetMode: "enhancement" | "depletion";
|
|
36500
36501
|
symbol?: SymbolProp | undefined;
|
|
36502
|
+
key?: any;
|
|
36501
36503
|
pcbX?: string | number | undefined;
|
|
36502
36504
|
pcbY?: string | number | undefined;
|
|
36503
36505
|
pcbRotation?: string | number | undefined;
|
|
@@ -36525,7 +36527,6 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36525
36527
|
footprint?: FootprintProp | undefined;
|
|
36526
36528
|
schRelative?: boolean | undefined;
|
|
36527
36529
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
36528
|
-
key?: any;
|
|
36529
36530
|
pinAttributes?: Record<string, {
|
|
36530
36531
|
providesPower?: boolean | undefined;
|
|
36531
36532
|
requiresPower?: boolean | undefined;
|
|
@@ -36662,7 +36663,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36662
36663
|
z: string | number;
|
|
36663
36664
|
} | undefined;
|
|
36664
36665
|
modelUnitToMmScale?: string | number | undefined;
|
|
36665
|
-
} | null | undefined;
|
|
36666
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
36666
36667
|
children?: any;
|
|
36667
36668
|
symbolName?: string | undefined;
|
|
36668
36669
|
doNotPlace?: boolean | undefined;
|
|
@@ -36717,7 +36718,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
36717
36718
|
} & {
|
|
36718
36719
|
key: z.ZodOptional<z.ZodAny>;
|
|
36719
36720
|
name: z.ZodString;
|
|
36720
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
36721
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
36721
36722
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
36722
36723
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
36723
36724
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -37311,6 +37312,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37311
37312
|
name: string;
|
|
37312
37313
|
inductance: number;
|
|
37313
37314
|
symbol?: SymbolProp | undefined;
|
|
37315
|
+
key?: any;
|
|
37314
37316
|
pcbX?: number | undefined;
|
|
37315
37317
|
pcbY?: number | undefined;
|
|
37316
37318
|
pcbRotation?: number | undefined;
|
|
@@ -37336,7 +37338,6 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37336
37338
|
footprint?: FootprintProp | undefined;
|
|
37337
37339
|
schRelative?: boolean | undefined;
|
|
37338
37340
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
37339
|
-
key?: any;
|
|
37340
37341
|
pinAttributes?: Record<string, {
|
|
37341
37342
|
providesPower?: boolean | undefined;
|
|
37342
37343
|
requiresPower?: boolean | undefined;
|
|
@@ -37473,7 +37474,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37473
37474
|
z: number;
|
|
37474
37475
|
} | undefined;
|
|
37475
37476
|
modelUnitToMmScale?: number | undefined;
|
|
37476
|
-
} | null | undefined;
|
|
37477
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
37477
37478
|
children?: any;
|
|
37478
37479
|
symbolName?: string | undefined;
|
|
37479
37480
|
doNotPlace?: boolean | undefined;
|
|
@@ -37484,6 +37485,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37484
37485
|
name: string;
|
|
37485
37486
|
inductance: string | number;
|
|
37486
37487
|
symbol?: SymbolProp | undefined;
|
|
37488
|
+
key?: any;
|
|
37487
37489
|
pcbX?: string | number | undefined;
|
|
37488
37490
|
pcbY?: string | number | undefined;
|
|
37489
37491
|
pcbRotation?: string | number | undefined;
|
|
@@ -37511,7 +37513,6 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37511
37513
|
footprint?: FootprintProp | undefined;
|
|
37512
37514
|
schRelative?: boolean | undefined;
|
|
37513
37515
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
37514
|
-
key?: any;
|
|
37515
37516
|
pinAttributes?: Record<string, {
|
|
37516
37517
|
providesPower?: boolean | undefined;
|
|
37517
37518
|
requiresPower?: boolean | undefined;
|
|
@@ -37648,7 +37649,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37648
37649
|
z: string | number;
|
|
37649
37650
|
} | undefined;
|
|
37650
37651
|
modelUnitToMmScale?: string | number | undefined;
|
|
37651
|
-
} | null | undefined;
|
|
37652
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
37652
37653
|
children?: any;
|
|
37653
37654
|
symbolName?: string | undefined;
|
|
37654
37655
|
doNotPlace?: boolean | undefined;
|
|
@@ -37696,7 +37697,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
37696
37697
|
} & {
|
|
37697
37698
|
key: z.ZodOptional<z.ZodAny>;
|
|
37698
37699
|
name: z.ZodString;
|
|
37699
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
37700
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
37700
37701
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
37701
37702
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
37702
37703
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -38295,6 +38296,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38295
38296
|
name: string;
|
|
38296
38297
|
variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
|
|
38297
38298
|
symbol?: SymbolProp | undefined;
|
|
38299
|
+
key?: any;
|
|
38298
38300
|
pcbX?: number | undefined;
|
|
38299
38301
|
pcbY?: number | undefined;
|
|
38300
38302
|
pcbRotation?: number | undefined;
|
|
@@ -38320,7 +38322,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38320
38322
|
footprint?: FootprintProp | undefined;
|
|
38321
38323
|
schRelative?: boolean | undefined;
|
|
38322
38324
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
38323
|
-
key?: any;
|
|
38324
38325
|
pinAttributes?: Record<string, {
|
|
38325
38326
|
providesPower?: boolean | undefined;
|
|
38326
38327
|
requiresPower?: boolean | undefined;
|
|
@@ -38457,7 +38458,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38457
38458
|
z: number;
|
|
38458
38459
|
} | undefined;
|
|
38459
38460
|
modelUnitToMmScale?: number | undefined;
|
|
38460
|
-
} | null | undefined;
|
|
38461
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
38461
38462
|
children?: any;
|
|
38462
38463
|
symbolName?: string | undefined;
|
|
38463
38464
|
doNotPlace?: boolean | undefined;
|
|
@@ -38472,6 +38473,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38472
38473
|
}, {
|
|
38473
38474
|
name: string;
|
|
38474
38475
|
symbol?: SymbolProp | undefined;
|
|
38476
|
+
key?: any;
|
|
38475
38477
|
pcbX?: string | number | undefined;
|
|
38476
38478
|
pcbY?: string | number | undefined;
|
|
38477
38479
|
pcbRotation?: string | number | undefined;
|
|
@@ -38499,7 +38501,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38499
38501
|
footprint?: FootprintProp | undefined;
|
|
38500
38502
|
schRelative?: boolean | undefined;
|
|
38501
38503
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
38502
|
-
key?: any;
|
|
38503
38504
|
pinAttributes?: Record<string, {
|
|
38504
38505
|
providesPower?: boolean | undefined;
|
|
38505
38506
|
requiresPower?: boolean | undefined;
|
|
@@ -38636,7 +38637,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38636
38637
|
z: string | number;
|
|
38637
38638
|
} | undefined;
|
|
38638
38639
|
modelUnitToMmScale?: string | number | undefined;
|
|
38639
|
-
} | null | undefined;
|
|
38640
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
38640
38641
|
children?: any;
|
|
38641
38642
|
symbolName?: string | undefined;
|
|
38642
38643
|
doNotPlace?: boolean | undefined;
|
|
@@ -38653,6 +38654,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38653
38654
|
name: string;
|
|
38654
38655
|
variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
|
|
38655
38656
|
symbol?: SymbolProp | undefined;
|
|
38657
|
+
key?: any;
|
|
38656
38658
|
pcbX?: number | undefined;
|
|
38657
38659
|
pcbY?: number | undefined;
|
|
38658
38660
|
pcbRotation?: number | undefined;
|
|
@@ -38678,7 +38680,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38678
38680
|
footprint?: FootprintProp | undefined;
|
|
38679
38681
|
schRelative?: boolean | undefined;
|
|
38680
38682
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
38681
|
-
key?: any;
|
|
38682
38683
|
pinAttributes?: Record<string, {
|
|
38683
38684
|
providesPower?: boolean | undefined;
|
|
38684
38685
|
requiresPower?: boolean | undefined;
|
|
@@ -38815,7 +38816,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38815
38816
|
z: number;
|
|
38816
38817
|
} | undefined;
|
|
38817
38818
|
modelUnitToMmScale?: number | undefined;
|
|
38818
|
-
} | null | undefined;
|
|
38819
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
38819
38820
|
children?: any;
|
|
38820
38821
|
symbolName?: string | undefined;
|
|
38821
38822
|
doNotPlace?: boolean | undefined;
|
|
@@ -38830,6 +38831,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38830
38831
|
}, {
|
|
38831
38832
|
name: string;
|
|
38832
38833
|
symbol?: SymbolProp | undefined;
|
|
38834
|
+
key?: any;
|
|
38833
38835
|
pcbX?: string | number | undefined;
|
|
38834
38836
|
pcbY?: string | number | undefined;
|
|
38835
38837
|
pcbRotation?: string | number | undefined;
|
|
@@ -38857,7 +38859,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38857
38859
|
footprint?: FootprintProp | undefined;
|
|
38858
38860
|
schRelative?: boolean | undefined;
|
|
38859
38861
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
38860
|
-
key?: any;
|
|
38861
38862
|
pinAttributes?: Record<string, {
|
|
38862
38863
|
providesPower?: boolean | undefined;
|
|
38863
38864
|
requiresPower?: boolean | undefined;
|
|
@@ -38994,7 +38995,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38994
38995
|
z: string | number;
|
|
38995
38996
|
} | undefined;
|
|
38996
38997
|
modelUnitToMmScale?: string | number | undefined;
|
|
38997
|
-
} | null | undefined;
|
|
38998
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
38998
38999
|
children?: any;
|
|
38999
39000
|
symbolName?: string | undefined;
|
|
39000
39001
|
doNotPlace?: boolean | undefined;
|
|
@@ -39017,6 +39018,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39017
39018
|
name: string;
|
|
39018
39019
|
variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
|
|
39019
39020
|
symbol?: SymbolProp | undefined;
|
|
39021
|
+
key?: any;
|
|
39020
39022
|
pcbX?: number | undefined;
|
|
39021
39023
|
pcbY?: number | undefined;
|
|
39022
39024
|
pcbRotation?: number | undefined;
|
|
@@ -39042,7 +39044,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39042
39044
|
footprint?: FootprintProp | undefined;
|
|
39043
39045
|
schRelative?: boolean | undefined;
|
|
39044
39046
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
39045
|
-
key?: any;
|
|
39046
39047
|
pinAttributes?: Record<string, {
|
|
39047
39048
|
providesPower?: boolean | undefined;
|
|
39048
39049
|
requiresPower?: boolean | undefined;
|
|
@@ -39179,7 +39180,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39179
39180
|
z: number;
|
|
39180
39181
|
} | undefined;
|
|
39181
39182
|
modelUnitToMmScale?: number | undefined;
|
|
39182
|
-
} | null | undefined;
|
|
39183
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
39183
39184
|
children?: any;
|
|
39184
39185
|
symbolName?: string | undefined;
|
|
39185
39186
|
doNotPlace?: boolean | undefined;
|
|
@@ -39188,6 +39189,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39188
39189
|
}, {
|
|
39189
39190
|
name: string;
|
|
39190
39191
|
symbol?: SymbolProp | undefined;
|
|
39192
|
+
key?: any;
|
|
39191
39193
|
pcbX?: string | number | undefined;
|
|
39192
39194
|
pcbY?: string | number | undefined;
|
|
39193
39195
|
pcbRotation?: string | number | undefined;
|
|
@@ -39215,7 +39217,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39215
39217
|
footprint?: FootprintProp | undefined;
|
|
39216
39218
|
schRelative?: boolean | undefined;
|
|
39217
39219
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
39218
|
-
key?: any;
|
|
39219
39220
|
pinAttributes?: Record<string, {
|
|
39220
39221
|
providesPower?: boolean | undefined;
|
|
39221
39222
|
requiresPower?: boolean | undefined;
|
|
@@ -39352,7 +39353,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39352
39353
|
z: string | number;
|
|
39353
39354
|
} | undefined;
|
|
39354
39355
|
modelUnitToMmScale?: string | number | undefined;
|
|
39355
|
-
} | null | undefined;
|
|
39356
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
39356
39357
|
children?: any;
|
|
39357
39358
|
symbolName?: string | undefined;
|
|
39358
39359
|
doNotPlace?: boolean | undefined;
|
|
@@ -39428,7 +39429,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
39428
39429
|
} & {
|
|
39429
39430
|
key: z.ZodOptional<z.ZodAny>;
|
|
39430
39431
|
name: z.ZodString;
|
|
39431
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
39432
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
39432
39433
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
39433
39434
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
39434
39435
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -40023,6 +40024,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40023
40024
|
}, "strip", z.ZodTypeAny, {
|
|
40024
40025
|
name: string;
|
|
40025
40026
|
symbol?: SymbolProp | undefined;
|
|
40027
|
+
key?: any;
|
|
40026
40028
|
pcbX?: number | undefined;
|
|
40027
40029
|
pcbY?: number | undefined;
|
|
40028
40030
|
pcbRotation?: number | undefined;
|
|
@@ -40048,7 +40050,6 @@ declare const ledProps: z.ZodObject<{
|
|
|
40048
40050
|
footprint?: FootprintProp | undefined;
|
|
40049
40051
|
schRelative?: boolean | undefined;
|
|
40050
40052
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
40051
|
-
key?: any;
|
|
40052
40053
|
pinAttributes?: Record<string, {
|
|
40053
40054
|
providesPower?: boolean | undefined;
|
|
40054
40055
|
requiresPower?: boolean | undefined;
|
|
@@ -40185,7 +40186,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40185
40186
|
z: number;
|
|
40186
40187
|
} | undefined;
|
|
40187
40188
|
modelUnitToMmScale?: number | undefined;
|
|
40188
|
-
} | null | undefined;
|
|
40189
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
40189
40190
|
children?: any;
|
|
40190
40191
|
symbolName?: string | undefined;
|
|
40191
40192
|
doNotPlace?: boolean | undefined;
|
|
@@ -40198,6 +40199,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40198
40199
|
}, {
|
|
40199
40200
|
name: string;
|
|
40200
40201
|
symbol?: SymbolProp | undefined;
|
|
40202
|
+
key?: any;
|
|
40201
40203
|
pcbX?: string | number | undefined;
|
|
40202
40204
|
pcbY?: string | number | undefined;
|
|
40203
40205
|
pcbRotation?: string | number | undefined;
|
|
@@ -40225,7 +40227,6 @@ declare const ledProps: z.ZodObject<{
|
|
|
40225
40227
|
footprint?: FootprintProp | undefined;
|
|
40226
40228
|
schRelative?: boolean | undefined;
|
|
40227
40229
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
40228
|
-
key?: any;
|
|
40229
40230
|
pinAttributes?: Record<string, {
|
|
40230
40231
|
providesPower?: boolean | undefined;
|
|
40231
40232
|
requiresPower?: boolean | undefined;
|
|
@@ -40362,7 +40363,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40362
40363
|
z: string | number;
|
|
40363
40364
|
} | undefined;
|
|
40364
40365
|
modelUnitToMmScale?: string | number | undefined;
|
|
40365
|
-
} | null | undefined;
|
|
40366
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
40366
40367
|
children?: any;
|
|
40367
40368
|
symbolName?: string | undefined;
|
|
40368
40369
|
doNotPlace?: boolean | undefined;
|
|
@@ -40423,7 +40424,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
40423
40424
|
} & {
|
|
40424
40425
|
key: z.ZodOptional<z.ZodAny>;
|
|
40425
40426
|
name: z.ZodString;
|
|
40426
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
40427
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
40427
40428
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
40428
40429
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
40429
40430
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -41020,6 +41021,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41020
41021
|
isNormallyClosed: boolean;
|
|
41021
41022
|
symbol?: SymbolProp | undefined;
|
|
41022
41023
|
type?: "spst" | "spdt" | "dpst" | "dpdt" | undefined;
|
|
41024
|
+
key?: any;
|
|
41023
41025
|
pcbX?: number | undefined;
|
|
41024
41026
|
pcbY?: number | undefined;
|
|
41025
41027
|
pcbRotation?: number | undefined;
|
|
@@ -41045,7 +41047,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41045
41047
|
footprint?: FootprintProp | undefined;
|
|
41046
41048
|
schRelative?: boolean | undefined;
|
|
41047
41049
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
41048
|
-
key?: any;
|
|
41049
41050
|
pinAttributes?: Record<string, {
|
|
41050
41051
|
providesPower?: boolean | undefined;
|
|
41051
41052
|
requiresPower?: boolean | undefined;
|
|
@@ -41182,7 +41183,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41182
41183
|
z: number;
|
|
41183
41184
|
} | undefined;
|
|
41184
41185
|
modelUnitToMmScale?: number | undefined;
|
|
41185
|
-
} | null | undefined;
|
|
41186
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
41186
41187
|
children?: any;
|
|
41187
41188
|
symbolName?: string | undefined;
|
|
41188
41189
|
doNotPlace?: boolean | undefined;
|
|
@@ -41194,6 +41195,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41194
41195
|
name: string;
|
|
41195
41196
|
symbol?: SymbolProp | undefined;
|
|
41196
41197
|
type?: "spst" | "spdt" | "dpst" | "dpdt" | undefined;
|
|
41198
|
+
key?: any;
|
|
41197
41199
|
pcbX?: string | number | undefined;
|
|
41198
41200
|
pcbY?: string | number | undefined;
|
|
41199
41201
|
pcbRotation?: string | number | undefined;
|
|
@@ -41221,7 +41223,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41221
41223
|
footprint?: FootprintProp | undefined;
|
|
41222
41224
|
schRelative?: boolean | undefined;
|
|
41223
41225
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
41224
|
-
key?: any;
|
|
41225
41226
|
pinAttributes?: Record<string, {
|
|
41226
41227
|
providesPower?: boolean | undefined;
|
|
41227
41228
|
requiresPower?: boolean | undefined;
|
|
@@ -41358,7 +41359,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41358
41359
|
z: string | number;
|
|
41359
41360
|
} | undefined;
|
|
41360
41361
|
modelUnitToMmScale?: string | number | undefined;
|
|
41361
|
-
} | null | undefined;
|
|
41362
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
41362
41363
|
children?: any;
|
|
41363
41364
|
symbolName?: string | undefined;
|
|
41364
41365
|
doNotPlace?: boolean | undefined;
|
|
@@ -41371,6 +41372,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41371
41372
|
name: string;
|
|
41372
41373
|
symbol?: SymbolProp | undefined;
|
|
41373
41374
|
type?: "spst" | "spdt" | "dpst" | "dpdt" | undefined;
|
|
41375
|
+
key?: any;
|
|
41374
41376
|
pcbX?: string | number | undefined;
|
|
41375
41377
|
pcbY?: string | number | undefined;
|
|
41376
41378
|
pcbRotation?: string | number | undefined;
|
|
@@ -41398,7 +41400,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41398
41400
|
footprint?: FootprintProp | undefined;
|
|
41399
41401
|
schRelative?: boolean | undefined;
|
|
41400
41402
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
41401
|
-
key?: any;
|
|
41402
41403
|
pinAttributes?: Record<string, {
|
|
41403
41404
|
providesPower?: boolean | undefined;
|
|
41404
41405
|
requiresPower?: boolean | undefined;
|
|
@@ -41535,7 +41536,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41535
41536
|
z: string | number;
|
|
41536
41537
|
} | undefined;
|
|
41537
41538
|
modelUnitToMmScale?: string | number | undefined;
|
|
41538
|
-
} | null | undefined;
|
|
41539
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
41539
41540
|
children?: any;
|
|
41540
41541
|
symbolName?: string | undefined;
|
|
41541
41542
|
doNotPlace?: boolean | undefined;
|
|
@@ -41979,7 +41980,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
41979
41980
|
} & {
|
|
41980
41981
|
key: z.ZodOptional<z.ZodAny>;
|
|
41981
41982
|
name: z.ZodString;
|
|
41982
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
41983
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
41983
41984
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
41984
41985
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
41985
41986
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -42575,6 +42576,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42575
42576
|
name: string;
|
|
42576
42577
|
padShape: "circle" | "rect";
|
|
42577
42578
|
symbol?: SymbolProp | undefined;
|
|
42579
|
+
key?: any;
|
|
42578
42580
|
pcbX?: number | undefined;
|
|
42579
42581
|
pcbY?: number | undefined;
|
|
42580
42582
|
pcbRotation?: number | undefined;
|
|
@@ -42600,7 +42602,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42600
42602
|
footprint?: FootprintProp | undefined;
|
|
42601
42603
|
schRelative?: boolean | undefined;
|
|
42602
42604
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
42603
|
-
key?: any;
|
|
42604
42605
|
pinAttributes?: Record<string, {
|
|
42605
42606
|
providesPower?: boolean | undefined;
|
|
42606
42607
|
requiresPower?: boolean | undefined;
|
|
@@ -42737,7 +42738,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42737
42738
|
z: number;
|
|
42738
42739
|
} | undefined;
|
|
42739
42740
|
modelUnitToMmScale?: number | undefined;
|
|
42740
|
-
} | null | undefined;
|
|
42741
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
42741
42742
|
children?: any;
|
|
42742
42743
|
symbolName?: string | undefined;
|
|
42743
42744
|
doNotPlace?: boolean | undefined;
|
|
@@ -42749,6 +42750,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42749
42750
|
}, {
|
|
42750
42751
|
name: string;
|
|
42751
42752
|
symbol?: SymbolProp | undefined;
|
|
42753
|
+
key?: any;
|
|
42752
42754
|
pcbX?: string | number | undefined;
|
|
42753
42755
|
pcbY?: string | number | undefined;
|
|
42754
42756
|
pcbRotation?: string | number | undefined;
|
|
@@ -42776,7 +42778,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42776
42778
|
footprint?: FootprintProp | undefined;
|
|
42777
42779
|
schRelative?: boolean | undefined;
|
|
42778
42780
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
42779
|
-
key?: any;
|
|
42780
42781
|
pinAttributes?: Record<string, {
|
|
42781
42782
|
providesPower?: boolean | undefined;
|
|
42782
42783
|
requiresPower?: boolean | undefined;
|
|
@@ -42913,7 +42914,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42913
42914
|
z: string | number;
|
|
42914
42915
|
} | undefined;
|
|
42915
42916
|
modelUnitToMmScale?: string | number | undefined;
|
|
42916
|
-
} | null | undefined;
|
|
42917
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
42917
42918
|
children?: any;
|
|
42918
42919
|
symbolName?: string | undefined;
|
|
42919
42920
|
doNotPlace?: boolean | undefined;
|
|
@@ -42927,6 +42928,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42927
42928
|
name: string;
|
|
42928
42929
|
padShape: "circle" | "rect";
|
|
42929
42930
|
symbol?: SymbolProp | undefined;
|
|
42931
|
+
key?: any;
|
|
42930
42932
|
pcbX?: number | undefined;
|
|
42931
42933
|
pcbY?: number | undefined;
|
|
42932
42934
|
pcbRotation?: number | undefined;
|
|
@@ -42952,7 +42954,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42952
42954
|
footprint?: FootprintProp | undefined;
|
|
42953
42955
|
schRelative?: boolean | undefined;
|
|
42954
42956
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
42955
|
-
key?: any;
|
|
42956
42957
|
pinAttributes?: Record<string, {
|
|
42957
42958
|
providesPower?: boolean | undefined;
|
|
42958
42959
|
requiresPower?: boolean | undefined;
|
|
@@ -43089,7 +43090,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
43089
43090
|
z: number;
|
|
43090
43091
|
} | undefined;
|
|
43091
43092
|
modelUnitToMmScale?: number | undefined;
|
|
43092
|
-
} | null | undefined;
|
|
43093
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
43093
43094
|
children?: any;
|
|
43094
43095
|
symbolName?: string | undefined;
|
|
43095
43096
|
doNotPlace?: boolean | undefined;
|
|
@@ -43101,6 +43102,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
43101
43102
|
}, {
|
|
43102
43103
|
name: string;
|
|
43103
43104
|
symbol?: SymbolProp | undefined;
|
|
43105
|
+
key?: any;
|
|
43104
43106
|
pcbX?: string | number | undefined;
|
|
43105
43107
|
pcbY?: string | number | undefined;
|
|
43106
43108
|
pcbRotation?: string | number | undefined;
|
|
@@ -43128,7 +43130,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
43128
43130
|
footprint?: FootprintProp | undefined;
|
|
43129
43131
|
schRelative?: boolean | undefined;
|
|
43130
43132
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
43131
|
-
key?: any;
|
|
43132
43133
|
pinAttributes?: Record<string, {
|
|
43133
43134
|
providesPower?: boolean | undefined;
|
|
43134
43135
|
requiresPower?: boolean | undefined;
|
|
@@ -43265,7 +43266,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
43265
43266
|
z: string | number;
|
|
43266
43267
|
} | undefined;
|
|
43267
43268
|
modelUnitToMmScale?: string | number | undefined;
|
|
43268
|
-
} | null | undefined;
|
|
43269
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
43269
43270
|
children?: any;
|
|
43270
43271
|
symbolName?: string | undefined;
|
|
43271
43272
|
doNotPlace?: boolean | undefined;
|
|
@@ -43505,6 +43506,7 @@ interface CadAssemblyProps {
|
|
|
43505
43506
|
* "top" and this is most intuitive.
|
|
43506
43507
|
*/
|
|
43507
43508
|
originalLayer?: LayerRef;
|
|
43509
|
+
children?: any;
|
|
43508
43510
|
}
|
|
43509
43511
|
declare const cadassemblyProps: z.ZodObject<{
|
|
43510
43512
|
originalLayer: z.ZodOptional<z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -43516,9 +43518,12 @@ declare const cadassemblyProps: z.ZodObject<{
|
|
|
43516
43518
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
43517
43519
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43518
43520
|
}>>>;
|
|
43521
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
43519
43522
|
}, "strip", z.ZodTypeAny, {
|
|
43523
|
+
children?: any;
|
|
43520
43524
|
originalLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
43521
43525
|
}, {
|
|
43526
|
+
children?: any;
|
|
43522
43527
|
originalLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
43523
43528
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43524
43529
|
} | undefined;
|
|
@@ -43662,7 +43667,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
43662
43667
|
} & {
|
|
43663
43668
|
key: z.ZodOptional<z.ZodAny>;
|
|
43664
43669
|
name: z.ZodString;
|
|
43665
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
43670
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
43666
43671
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
43667
43672
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
43668
43673
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -44253,6 +44258,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44253
44258
|
name: string;
|
|
44254
44259
|
voltage: number;
|
|
44255
44260
|
symbol?: SymbolProp | undefined;
|
|
44261
|
+
key?: any;
|
|
44256
44262
|
pcbX?: number | undefined;
|
|
44257
44263
|
pcbY?: number | undefined;
|
|
44258
44264
|
pcbRotation?: number | undefined;
|
|
@@ -44278,7 +44284,6 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44278
44284
|
footprint?: FootprintProp | undefined;
|
|
44279
44285
|
schRelative?: boolean | undefined;
|
|
44280
44286
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44281
|
-
key?: any;
|
|
44282
44287
|
pinAttributes?: Record<string, {
|
|
44283
44288
|
providesPower?: boolean | undefined;
|
|
44284
44289
|
requiresPower?: boolean | undefined;
|
|
@@ -44415,7 +44420,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44415
44420
|
z: number;
|
|
44416
44421
|
} | undefined;
|
|
44417
44422
|
modelUnitToMmScale?: number | undefined;
|
|
44418
|
-
} | null | undefined;
|
|
44423
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
44419
44424
|
children?: any;
|
|
44420
44425
|
symbolName?: string | undefined;
|
|
44421
44426
|
doNotPlace?: boolean | undefined;
|
|
@@ -44423,6 +44428,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44423
44428
|
name: string;
|
|
44424
44429
|
voltage: string | number;
|
|
44425
44430
|
symbol?: SymbolProp | undefined;
|
|
44431
|
+
key?: any;
|
|
44426
44432
|
pcbX?: string | number | undefined;
|
|
44427
44433
|
pcbY?: string | number | undefined;
|
|
44428
44434
|
pcbRotation?: string | number | undefined;
|
|
@@ -44450,7 +44456,6 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44450
44456
|
footprint?: FootprintProp | undefined;
|
|
44451
44457
|
schRelative?: boolean | undefined;
|
|
44452
44458
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44453
|
-
key?: any;
|
|
44454
44459
|
pinAttributes?: Record<string, {
|
|
44455
44460
|
providesPower?: boolean | undefined;
|
|
44456
44461
|
requiresPower?: boolean | undefined;
|
|
@@ -44587,7 +44592,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44587
44592
|
z: string | number;
|
|
44588
44593
|
} | undefined;
|
|
44589
44594
|
modelUnitToMmScale?: string | number | undefined;
|
|
44590
|
-
} | null | undefined;
|
|
44595
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
44591
44596
|
children?: any;
|
|
44592
44597
|
symbolName?: string | undefined;
|
|
44593
44598
|
doNotPlace?: boolean | undefined;
|
|
@@ -44645,7 +44650,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
44645
44650
|
} & {
|
|
44646
44651
|
key: z.ZodOptional<z.ZodAny>;
|
|
44647
44652
|
name: z.ZodString;
|
|
44648
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
44653
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
44649
44654
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
44650
44655
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
44651
44656
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -45241,6 +45246,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45241
45246
|
}, "strip", z.ZodTypeAny, {
|
|
45242
45247
|
name: string;
|
|
45243
45248
|
symbol?: SymbolProp | undefined;
|
|
45249
|
+
key?: any;
|
|
45244
45250
|
pcbX?: number | undefined;
|
|
45245
45251
|
pcbY?: number | undefined;
|
|
45246
45252
|
pcbRotation?: number | undefined;
|
|
@@ -45266,7 +45272,6 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45266
45272
|
footprint?: FootprintProp | undefined;
|
|
45267
45273
|
schRelative?: boolean | undefined;
|
|
45268
45274
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
45269
|
-
key?: any;
|
|
45270
45275
|
pinAttributes?: Record<string, {
|
|
45271
45276
|
providesPower?: boolean | undefined;
|
|
45272
45277
|
requiresPower?: boolean | undefined;
|
|
@@ -45403,7 +45408,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45403
45408
|
z: number;
|
|
45404
45409
|
} | undefined;
|
|
45405
45410
|
modelUnitToMmScale?: number | undefined;
|
|
45406
|
-
} | null | undefined;
|
|
45411
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
45407
45412
|
children?: any;
|
|
45408
45413
|
symbolName?: string | undefined;
|
|
45409
45414
|
doNotPlace?: boolean | undefined;
|
|
@@ -45417,6 +45422,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45417
45422
|
}, {
|
|
45418
45423
|
name: string;
|
|
45419
45424
|
symbol?: SymbolProp | undefined;
|
|
45425
|
+
key?: any;
|
|
45420
45426
|
pcbX?: string | number | undefined;
|
|
45421
45427
|
pcbY?: string | number | undefined;
|
|
45422
45428
|
pcbRotation?: string | number | undefined;
|
|
@@ -45444,7 +45450,6 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45444
45450
|
footprint?: FootprintProp | undefined;
|
|
45445
45451
|
schRelative?: boolean | undefined;
|
|
45446
45452
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
45447
|
-
key?: any;
|
|
45448
45453
|
pinAttributes?: Record<string, {
|
|
45449
45454
|
providesPower?: boolean | undefined;
|
|
45450
45455
|
requiresPower?: boolean | undefined;
|
|
@@ -45581,7 +45586,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45581
45586
|
z: string | number;
|
|
45582
45587
|
} | undefined;
|
|
45583
45588
|
modelUnitToMmScale?: string | number | undefined;
|
|
45584
|
-
} | null | undefined;
|
|
45589
|
+
} | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
45585
45590
|
children?: any;
|
|
45586
45591
|
symbolName?: string | undefined;
|
|
45587
45592
|
doNotPlace?: boolean | undefined;
|