@tscircuit/props 0.0.190 → 0.0.191
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/dist/index.d.ts +639 -1
- package/dist/index.js +337 -319
- package/dist/index.js.map +1 -1
- package/lib/components/connector.ts +53 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8204,6 +8204,644 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
8204
8204
|
pinCount?: 2 | 3 | undefined;
|
|
8205
8205
|
}>;
|
|
8206
8206
|
|
|
8207
|
+
interface ConnectorProps extends CommonComponentProps {
|
|
8208
|
+
manufacturerPartNumber?: string;
|
|
8209
|
+
pinLabels?: Record<number | string, string | string[]>;
|
|
8210
|
+
schPinStyle?: SchematicPinStyle;
|
|
8211
|
+
schPinSpacing?: number | string;
|
|
8212
|
+
schWidth?: number | string;
|
|
8213
|
+
schHeight?: number | string;
|
|
8214
|
+
schDirection?: "left" | "right";
|
|
8215
|
+
schPortArrangement?: SchematicPortArrangement;
|
|
8216
|
+
/**
|
|
8217
|
+
* Groups of pins that are internally connected (bridged)
|
|
8218
|
+
* e.g., [["1","2"], ["2","3"]]
|
|
8219
|
+
*/
|
|
8220
|
+
internallyConnectedPins?: string[][];
|
|
8221
|
+
/**
|
|
8222
|
+
* Connector standard, e.g. usb_c, m2
|
|
8223
|
+
*/
|
|
8224
|
+
standard?: "usb_c" | "m2";
|
|
8225
|
+
}
|
|
8226
|
+
declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
8227
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8228
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8229
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8230
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8231
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8232
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8233
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
8234
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
8235
|
+
}, "strip", z.ZodTypeAny, {
|
|
8236
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8237
|
+
}, {
|
|
8238
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8239
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8240
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8241
|
+
}>>;
|
|
8242
|
+
footprint: z.ZodOptional<z.ZodType<Footprint, z.ZodTypeDef, Footprint>>;
|
|
8243
|
+
}, {
|
|
8244
|
+
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
8245
|
+
}>, {
|
|
8246
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
8247
|
+
name: z.ZodString;
|
|
8248
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
8249
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
8250
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8251
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8252
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8253
|
+
}, "strip", z.ZodTypeAny, {
|
|
8254
|
+
x: string | number;
|
|
8255
|
+
y: string | number;
|
|
8256
|
+
z: string | number;
|
|
8257
|
+
}, {
|
|
8258
|
+
x: string | number;
|
|
8259
|
+
y: string | number;
|
|
8260
|
+
z: string | number;
|
|
8261
|
+
}>]>>;
|
|
8262
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
8263
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8264
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8265
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8266
|
+
}, "strip", z.ZodTypeAny, {
|
|
8267
|
+
x: number;
|
|
8268
|
+
y: number;
|
|
8269
|
+
z: number;
|
|
8270
|
+
}, {
|
|
8271
|
+
x: string | number;
|
|
8272
|
+
y: string | number;
|
|
8273
|
+
z: string | number;
|
|
8274
|
+
}>>;
|
|
8275
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
8276
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8277
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8278
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8279
|
+
}, "strip", z.ZodTypeAny, {
|
|
8280
|
+
x: number;
|
|
8281
|
+
y: number;
|
|
8282
|
+
z: number;
|
|
8283
|
+
}, {
|
|
8284
|
+
x: string | number;
|
|
8285
|
+
y: string | number;
|
|
8286
|
+
z: string | number;
|
|
8287
|
+
}>>;
|
|
8288
|
+
}, {
|
|
8289
|
+
stlUrl: z.ZodString;
|
|
8290
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8291
|
+
stlUrl: string;
|
|
8292
|
+
rotationOffset?: number | {
|
|
8293
|
+
x: string | number;
|
|
8294
|
+
y: string | number;
|
|
8295
|
+
z: string | number;
|
|
8296
|
+
} | undefined;
|
|
8297
|
+
positionOffset?: {
|
|
8298
|
+
x: number;
|
|
8299
|
+
y: number;
|
|
8300
|
+
z: number;
|
|
8301
|
+
} | undefined;
|
|
8302
|
+
size?: {
|
|
8303
|
+
x: number;
|
|
8304
|
+
y: number;
|
|
8305
|
+
z: number;
|
|
8306
|
+
} | undefined;
|
|
8307
|
+
}, {
|
|
8308
|
+
stlUrl: string;
|
|
8309
|
+
rotationOffset?: number | {
|
|
8310
|
+
x: string | number;
|
|
8311
|
+
y: string | number;
|
|
8312
|
+
z: string | number;
|
|
8313
|
+
} | undefined;
|
|
8314
|
+
positionOffset?: {
|
|
8315
|
+
x: string | number;
|
|
8316
|
+
y: string | number;
|
|
8317
|
+
z: string | number;
|
|
8318
|
+
} | undefined;
|
|
8319
|
+
size?: {
|
|
8320
|
+
x: string | number;
|
|
8321
|
+
y: string | number;
|
|
8322
|
+
z: string | number;
|
|
8323
|
+
} | undefined;
|
|
8324
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8325
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
8326
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8327
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8328
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8329
|
+
}, "strip", z.ZodTypeAny, {
|
|
8330
|
+
x: string | number;
|
|
8331
|
+
y: string | number;
|
|
8332
|
+
z: string | number;
|
|
8333
|
+
}, {
|
|
8334
|
+
x: string | number;
|
|
8335
|
+
y: string | number;
|
|
8336
|
+
z: string | number;
|
|
8337
|
+
}>]>>;
|
|
8338
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
8339
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8340
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8341
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8342
|
+
}, "strip", z.ZodTypeAny, {
|
|
8343
|
+
x: number;
|
|
8344
|
+
y: number;
|
|
8345
|
+
z: number;
|
|
8346
|
+
}, {
|
|
8347
|
+
x: string | number;
|
|
8348
|
+
y: string | number;
|
|
8349
|
+
z: string | number;
|
|
8350
|
+
}>>;
|
|
8351
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
8352
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8353
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8354
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8355
|
+
}, "strip", z.ZodTypeAny, {
|
|
8356
|
+
x: number;
|
|
8357
|
+
y: number;
|
|
8358
|
+
z: number;
|
|
8359
|
+
}, {
|
|
8360
|
+
x: string | number;
|
|
8361
|
+
y: string | number;
|
|
8362
|
+
z: string | number;
|
|
8363
|
+
}>>;
|
|
8364
|
+
}, {
|
|
8365
|
+
objUrl: z.ZodString;
|
|
8366
|
+
mtlUrl: z.ZodOptional<z.ZodString>;
|
|
8367
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8368
|
+
objUrl: string;
|
|
8369
|
+
rotationOffset?: number | {
|
|
8370
|
+
x: string | number;
|
|
8371
|
+
y: string | number;
|
|
8372
|
+
z: string | number;
|
|
8373
|
+
} | undefined;
|
|
8374
|
+
positionOffset?: {
|
|
8375
|
+
x: number;
|
|
8376
|
+
y: number;
|
|
8377
|
+
z: number;
|
|
8378
|
+
} | undefined;
|
|
8379
|
+
size?: {
|
|
8380
|
+
x: number;
|
|
8381
|
+
y: number;
|
|
8382
|
+
z: number;
|
|
8383
|
+
} | undefined;
|
|
8384
|
+
mtlUrl?: string | undefined;
|
|
8385
|
+
}, {
|
|
8386
|
+
objUrl: string;
|
|
8387
|
+
rotationOffset?: number | {
|
|
8388
|
+
x: string | number;
|
|
8389
|
+
y: string | number;
|
|
8390
|
+
z: string | number;
|
|
8391
|
+
} | undefined;
|
|
8392
|
+
positionOffset?: {
|
|
8393
|
+
x: string | number;
|
|
8394
|
+
y: string | number;
|
|
8395
|
+
z: string | number;
|
|
8396
|
+
} | undefined;
|
|
8397
|
+
size?: {
|
|
8398
|
+
x: string | number;
|
|
8399
|
+
y: string | number;
|
|
8400
|
+
z: string | number;
|
|
8401
|
+
} | undefined;
|
|
8402
|
+
mtlUrl?: string | undefined;
|
|
8403
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8404
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
8405
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8406
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8407
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8408
|
+
}, "strip", z.ZodTypeAny, {
|
|
8409
|
+
x: string | number;
|
|
8410
|
+
y: string | number;
|
|
8411
|
+
z: string | number;
|
|
8412
|
+
}, {
|
|
8413
|
+
x: string | number;
|
|
8414
|
+
y: string | number;
|
|
8415
|
+
z: string | number;
|
|
8416
|
+
}>]>>;
|
|
8417
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
8418
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8419
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8420
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8421
|
+
}, "strip", z.ZodTypeAny, {
|
|
8422
|
+
x: number;
|
|
8423
|
+
y: number;
|
|
8424
|
+
z: number;
|
|
8425
|
+
}, {
|
|
8426
|
+
x: string | number;
|
|
8427
|
+
y: string | number;
|
|
8428
|
+
z: string | number;
|
|
8429
|
+
}>>;
|
|
8430
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
8431
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8432
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8433
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8434
|
+
}, "strip", z.ZodTypeAny, {
|
|
8435
|
+
x: number;
|
|
8436
|
+
y: number;
|
|
8437
|
+
z: number;
|
|
8438
|
+
}, {
|
|
8439
|
+
x: string | number;
|
|
8440
|
+
y: string | number;
|
|
8441
|
+
z: string | number;
|
|
8442
|
+
}>>;
|
|
8443
|
+
}, {
|
|
8444
|
+
jscad: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
8445
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8446
|
+
jscad: Record<string, any>;
|
|
8447
|
+
rotationOffset?: number | {
|
|
8448
|
+
x: string | number;
|
|
8449
|
+
y: string | number;
|
|
8450
|
+
z: string | number;
|
|
8451
|
+
} | undefined;
|
|
8452
|
+
positionOffset?: {
|
|
8453
|
+
x: number;
|
|
8454
|
+
y: number;
|
|
8455
|
+
z: number;
|
|
8456
|
+
} | undefined;
|
|
8457
|
+
size?: {
|
|
8458
|
+
x: number;
|
|
8459
|
+
y: number;
|
|
8460
|
+
z: number;
|
|
8461
|
+
} | undefined;
|
|
8462
|
+
}, {
|
|
8463
|
+
jscad: Record<string, any>;
|
|
8464
|
+
rotationOffset?: number | {
|
|
8465
|
+
x: string | number;
|
|
8466
|
+
y: string | number;
|
|
8467
|
+
z: string | number;
|
|
8468
|
+
} | undefined;
|
|
8469
|
+
positionOffset?: {
|
|
8470
|
+
x: string | number;
|
|
8471
|
+
y: string | number;
|
|
8472
|
+
z: string | number;
|
|
8473
|
+
} | undefined;
|
|
8474
|
+
size?: {
|
|
8475
|
+
x: string | number;
|
|
8476
|
+
y: string | number;
|
|
8477
|
+
z: string | number;
|
|
8478
|
+
} | undefined;
|
|
8479
|
+
}>]>>;
|
|
8480
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
8481
|
+
symbolName: z.ZodOptional<z.ZodString>;
|
|
8482
|
+
}>, {
|
|
8483
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
8484
|
+
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
8485
|
+
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8486
|
+
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8487
|
+
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8488
|
+
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8489
|
+
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8490
|
+
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8491
|
+
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8492
|
+
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8493
|
+
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8494
|
+
}, "strip", z.ZodTypeAny, {
|
|
8495
|
+
marginLeft?: number | undefined;
|
|
8496
|
+
marginRight?: number | undefined;
|
|
8497
|
+
marginTop?: number | undefined;
|
|
8498
|
+
marginBottom?: number | undefined;
|
|
8499
|
+
leftMargin?: number | undefined;
|
|
8500
|
+
rightMargin?: number | undefined;
|
|
8501
|
+
topMargin?: number | undefined;
|
|
8502
|
+
bottomMargin?: number | undefined;
|
|
8503
|
+
}, {
|
|
8504
|
+
marginLeft?: string | number | undefined;
|
|
8505
|
+
marginRight?: string | number | undefined;
|
|
8506
|
+
marginTop?: string | number | undefined;
|
|
8507
|
+
marginBottom?: string | number | undefined;
|
|
8508
|
+
leftMargin?: string | number | undefined;
|
|
8509
|
+
rightMargin?: string | number | undefined;
|
|
8510
|
+
topMargin?: string | number | undefined;
|
|
8511
|
+
bottomMargin?: string | number | undefined;
|
|
8512
|
+
}>>>;
|
|
8513
|
+
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8514
|
+
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8515
|
+
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8516
|
+
schDirection: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
8517
|
+
schPortArrangement: z.ZodOptional<z.ZodObject<{
|
|
8518
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
8519
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
8520
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
8521
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
8522
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8523
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8524
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8525
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8526
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
8527
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8528
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8529
|
+
}, "strip", z.ZodTypeAny, {
|
|
8530
|
+
pins: (string | number)[];
|
|
8531
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8532
|
+
}, {
|
|
8533
|
+
pins: (string | number)[];
|
|
8534
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8535
|
+
}>>;
|
|
8536
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
8537
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8538
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8539
|
+
}, "strip", z.ZodTypeAny, {
|
|
8540
|
+
pins: (string | number)[];
|
|
8541
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8542
|
+
}, {
|
|
8543
|
+
pins: (string | number)[];
|
|
8544
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8545
|
+
}>>;
|
|
8546
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
8547
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8548
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8549
|
+
}, "strip", z.ZodTypeAny, {
|
|
8550
|
+
pins: (string | number)[];
|
|
8551
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8552
|
+
}, {
|
|
8553
|
+
pins: (string | number)[];
|
|
8554
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8555
|
+
}>>;
|
|
8556
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
8557
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8558
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8559
|
+
}, "strip", z.ZodTypeAny, {
|
|
8560
|
+
pins: (string | number)[];
|
|
8561
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8562
|
+
}, {
|
|
8563
|
+
pins: (string | number)[];
|
|
8564
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8565
|
+
}>>;
|
|
8566
|
+
}, "strip", z.ZodTypeAny, {
|
|
8567
|
+
leftSize?: number | undefined;
|
|
8568
|
+
topSize?: number | undefined;
|
|
8569
|
+
rightSize?: number | undefined;
|
|
8570
|
+
bottomSize?: number | undefined;
|
|
8571
|
+
leftSide?: {
|
|
8572
|
+
pins: (string | number)[];
|
|
8573
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8574
|
+
} | undefined;
|
|
8575
|
+
topSide?: {
|
|
8576
|
+
pins: (string | number)[];
|
|
8577
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8578
|
+
} | undefined;
|
|
8579
|
+
rightSide?: {
|
|
8580
|
+
pins: (string | number)[];
|
|
8581
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8582
|
+
} | undefined;
|
|
8583
|
+
bottomSide?: {
|
|
8584
|
+
pins: (string | number)[];
|
|
8585
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8586
|
+
} | undefined;
|
|
8587
|
+
leftPinCount?: number | undefined;
|
|
8588
|
+
rightPinCount?: number | undefined;
|
|
8589
|
+
topPinCount?: number | undefined;
|
|
8590
|
+
bottomPinCount?: number | undefined;
|
|
8591
|
+
}, {
|
|
8592
|
+
leftSize?: number | undefined;
|
|
8593
|
+
topSize?: number | undefined;
|
|
8594
|
+
rightSize?: number | undefined;
|
|
8595
|
+
bottomSize?: number | undefined;
|
|
8596
|
+
leftSide?: {
|
|
8597
|
+
pins: (string | number)[];
|
|
8598
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8599
|
+
} | undefined;
|
|
8600
|
+
topSide?: {
|
|
8601
|
+
pins: (string | number)[];
|
|
8602
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8603
|
+
} | undefined;
|
|
8604
|
+
rightSide?: {
|
|
8605
|
+
pins: (string | number)[];
|
|
8606
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8607
|
+
} | undefined;
|
|
8608
|
+
bottomSide?: {
|
|
8609
|
+
pins: (string | number)[];
|
|
8610
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8611
|
+
} | undefined;
|
|
8612
|
+
leftPinCount?: number | undefined;
|
|
8613
|
+
rightPinCount?: number | undefined;
|
|
8614
|
+
topPinCount?: number | undefined;
|
|
8615
|
+
bottomPinCount?: number | undefined;
|
|
8616
|
+
}>>;
|
|
8617
|
+
internallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8618
|
+
standard: z.ZodOptional<z.ZodEnum<["usb_c", "m2"]>>;
|
|
8619
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8620
|
+
name: string;
|
|
8621
|
+
pcbX?: number | undefined;
|
|
8622
|
+
pcbY?: number | undefined;
|
|
8623
|
+
pcbRotation?: number | undefined;
|
|
8624
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
8625
|
+
schX?: number | undefined;
|
|
8626
|
+
schY?: number | undefined;
|
|
8627
|
+
schRotation?: number | undefined;
|
|
8628
|
+
footprint?: Footprint | undefined;
|
|
8629
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8630
|
+
key?: any;
|
|
8631
|
+
cadModel?: string | {
|
|
8632
|
+
stlUrl: string;
|
|
8633
|
+
rotationOffset?: number | {
|
|
8634
|
+
x: string | number;
|
|
8635
|
+
y: string | number;
|
|
8636
|
+
z: string | number;
|
|
8637
|
+
} | undefined;
|
|
8638
|
+
positionOffset?: {
|
|
8639
|
+
x: number;
|
|
8640
|
+
y: number;
|
|
8641
|
+
z: number;
|
|
8642
|
+
} | undefined;
|
|
8643
|
+
size?: {
|
|
8644
|
+
x: number;
|
|
8645
|
+
y: number;
|
|
8646
|
+
z: number;
|
|
8647
|
+
} | undefined;
|
|
8648
|
+
} | {
|
|
8649
|
+
objUrl: string;
|
|
8650
|
+
rotationOffset?: number | {
|
|
8651
|
+
x: string | number;
|
|
8652
|
+
y: string | number;
|
|
8653
|
+
z: string | number;
|
|
8654
|
+
} | undefined;
|
|
8655
|
+
positionOffset?: {
|
|
8656
|
+
x: number;
|
|
8657
|
+
y: number;
|
|
8658
|
+
z: number;
|
|
8659
|
+
} | undefined;
|
|
8660
|
+
size?: {
|
|
8661
|
+
x: number;
|
|
8662
|
+
y: number;
|
|
8663
|
+
z: number;
|
|
8664
|
+
} | undefined;
|
|
8665
|
+
mtlUrl?: string | undefined;
|
|
8666
|
+
} | {
|
|
8667
|
+
jscad: Record<string, any>;
|
|
8668
|
+
rotationOffset?: number | {
|
|
8669
|
+
x: string | number;
|
|
8670
|
+
y: string | number;
|
|
8671
|
+
z: string | number;
|
|
8672
|
+
} | undefined;
|
|
8673
|
+
positionOffset?: {
|
|
8674
|
+
x: number;
|
|
8675
|
+
y: number;
|
|
8676
|
+
z: number;
|
|
8677
|
+
} | undefined;
|
|
8678
|
+
size?: {
|
|
8679
|
+
x: number;
|
|
8680
|
+
y: number;
|
|
8681
|
+
z: number;
|
|
8682
|
+
} | undefined;
|
|
8683
|
+
} | null | undefined;
|
|
8684
|
+
children?: any;
|
|
8685
|
+
symbolName?: string | undefined;
|
|
8686
|
+
schWidth?: number | undefined;
|
|
8687
|
+
schHeight?: number | undefined;
|
|
8688
|
+
manufacturerPartNumber?: string | undefined;
|
|
8689
|
+
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
8690
|
+
internallyConnectedPins?: string[][] | undefined;
|
|
8691
|
+
schPortArrangement?: {
|
|
8692
|
+
leftSize?: number | undefined;
|
|
8693
|
+
topSize?: number | undefined;
|
|
8694
|
+
rightSize?: number | undefined;
|
|
8695
|
+
bottomSize?: number | undefined;
|
|
8696
|
+
leftSide?: {
|
|
8697
|
+
pins: (string | number)[];
|
|
8698
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8699
|
+
} | undefined;
|
|
8700
|
+
topSide?: {
|
|
8701
|
+
pins: (string | number)[];
|
|
8702
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8703
|
+
} | undefined;
|
|
8704
|
+
rightSide?: {
|
|
8705
|
+
pins: (string | number)[];
|
|
8706
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8707
|
+
} | undefined;
|
|
8708
|
+
bottomSide?: {
|
|
8709
|
+
pins: (string | number)[];
|
|
8710
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8711
|
+
} | undefined;
|
|
8712
|
+
leftPinCount?: number | undefined;
|
|
8713
|
+
rightPinCount?: number | undefined;
|
|
8714
|
+
topPinCount?: number | undefined;
|
|
8715
|
+
bottomPinCount?: number | undefined;
|
|
8716
|
+
} | undefined;
|
|
8717
|
+
schPinStyle?: Record<string, {
|
|
8718
|
+
marginLeft?: number | undefined;
|
|
8719
|
+
marginRight?: number | undefined;
|
|
8720
|
+
marginTop?: number | undefined;
|
|
8721
|
+
marginBottom?: number | undefined;
|
|
8722
|
+
leftMargin?: number | undefined;
|
|
8723
|
+
rightMargin?: number | undefined;
|
|
8724
|
+
topMargin?: number | undefined;
|
|
8725
|
+
bottomMargin?: number | undefined;
|
|
8726
|
+
}> | undefined;
|
|
8727
|
+
schPinSpacing?: number | undefined;
|
|
8728
|
+
schDirection?: "left" | "right" | undefined;
|
|
8729
|
+
standard?: "usb_c" | "m2" | undefined;
|
|
8730
|
+
}, {
|
|
8731
|
+
name: string;
|
|
8732
|
+
pcbX?: string | number | undefined;
|
|
8733
|
+
pcbY?: string | number | undefined;
|
|
8734
|
+
pcbRotation?: string | number | undefined;
|
|
8735
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8736
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8737
|
+
} | undefined;
|
|
8738
|
+
schX?: string | number | undefined;
|
|
8739
|
+
schY?: string | number | undefined;
|
|
8740
|
+
schRotation?: string | number | undefined;
|
|
8741
|
+
footprint?: Footprint | undefined;
|
|
8742
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8743
|
+
key?: any;
|
|
8744
|
+
cadModel?: string | {
|
|
8745
|
+
stlUrl: string;
|
|
8746
|
+
rotationOffset?: number | {
|
|
8747
|
+
x: string | number;
|
|
8748
|
+
y: string | number;
|
|
8749
|
+
z: string | number;
|
|
8750
|
+
} | undefined;
|
|
8751
|
+
positionOffset?: {
|
|
8752
|
+
x: string | number;
|
|
8753
|
+
y: string | number;
|
|
8754
|
+
z: string | number;
|
|
8755
|
+
} | undefined;
|
|
8756
|
+
size?: {
|
|
8757
|
+
x: string | number;
|
|
8758
|
+
y: string | number;
|
|
8759
|
+
z: string | number;
|
|
8760
|
+
} | undefined;
|
|
8761
|
+
} | {
|
|
8762
|
+
objUrl: string;
|
|
8763
|
+
rotationOffset?: number | {
|
|
8764
|
+
x: string | number;
|
|
8765
|
+
y: string | number;
|
|
8766
|
+
z: string | number;
|
|
8767
|
+
} | undefined;
|
|
8768
|
+
positionOffset?: {
|
|
8769
|
+
x: string | number;
|
|
8770
|
+
y: string | number;
|
|
8771
|
+
z: string | number;
|
|
8772
|
+
} | undefined;
|
|
8773
|
+
size?: {
|
|
8774
|
+
x: string | number;
|
|
8775
|
+
y: string | number;
|
|
8776
|
+
z: string | number;
|
|
8777
|
+
} | undefined;
|
|
8778
|
+
mtlUrl?: string | undefined;
|
|
8779
|
+
} | {
|
|
8780
|
+
jscad: Record<string, any>;
|
|
8781
|
+
rotationOffset?: number | {
|
|
8782
|
+
x: string | number;
|
|
8783
|
+
y: string | number;
|
|
8784
|
+
z: string | number;
|
|
8785
|
+
} | undefined;
|
|
8786
|
+
positionOffset?: {
|
|
8787
|
+
x: string | number;
|
|
8788
|
+
y: string | number;
|
|
8789
|
+
z: string | number;
|
|
8790
|
+
} | undefined;
|
|
8791
|
+
size?: {
|
|
8792
|
+
x: string | number;
|
|
8793
|
+
y: string | number;
|
|
8794
|
+
z: string | number;
|
|
8795
|
+
} | undefined;
|
|
8796
|
+
} | null | undefined;
|
|
8797
|
+
children?: any;
|
|
8798
|
+
symbolName?: string | undefined;
|
|
8799
|
+
schWidth?: string | number | undefined;
|
|
8800
|
+
schHeight?: string | number | undefined;
|
|
8801
|
+
manufacturerPartNumber?: string | undefined;
|
|
8802
|
+
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
8803
|
+
internallyConnectedPins?: string[][] | undefined;
|
|
8804
|
+
schPortArrangement?: {
|
|
8805
|
+
leftSize?: number | undefined;
|
|
8806
|
+
topSize?: number | undefined;
|
|
8807
|
+
rightSize?: number | undefined;
|
|
8808
|
+
bottomSize?: number | undefined;
|
|
8809
|
+
leftSide?: {
|
|
8810
|
+
pins: (string | number)[];
|
|
8811
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8812
|
+
} | undefined;
|
|
8813
|
+
topSide?: {
|
|
8814
|
+
pins: (string | number)[];
|
|
8815
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8816
|
+
} | undefined;
|
|
8817
|
+
rightSide?: {
|
|
8818
|
+
pins: (string | number)[];
|
|
8819
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8820
|
+
} | undefined;
|
|
8821
|
+
bottomSide?: {
|
|
8822
|
+
pins: (string | number)[];
|
|
8823
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8824
|
+
} | undefined;
|
|
8825
|
+
leftPinCount?: number | undefined;
|
|
8826
|
+
rightPinCount?: number | undefined;
|
|
8827
|
+
topPinCount?: number | undefined;
|
|
8828
|
+
bottomPinCount?: number | undefined;
|
|
8829
|
+
} | undefined;
|
|
8830
|
+
schPinStyle?: Record<string, {
|
|
8831
|
+
marginLeft?: string | number | undefined;
|
|
8832
|
+
marginRight?: string | number | undefined;
|
|
8833
|
+
marginTop?: string | number | undefined;
|
|
8834
|
+
marginBottom?: string | number | undefined;
|
|
8835
|
+
leftMargin?: string | number | undefined;
|
|
8836
|
+
rightMargin?: string | number | undefined;
|
|
8837
|
+
topMargin?: string | number | undefined;
|
|
8838
|
+
bottomMargin?: string | number | undefined;
|
|
8839
|
+
}> | undefined;
|
|
8840
|
+
schPinSpacing?: string | number | undefined;
|
|
8841
|
+
schDirection?: "left" | "right" | undefined;
|
|
8842
|
+
standard?: "usb_c" | "m2" | undefined;
|
|
8843
|
+
}>;
|
|
8844
|
+
|
|
8207
8845
|
/**
|
|
8208
8846
|
* Pin labels for fuse component
|
|
8209
8847
|
*/
|
|
@@ -19661,4 +20299,4 @@ declare const platformConfig: z.ZodObject<{
|
|
|
19661
20299
|
cloudAutorouterUrl?: string | undefined;
|
|
19662
20300
|
}>;
|
|
19663
20301
|
|
|
19664
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|
|
20302
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|