@tscircuit/props 0.0.418 → 0.0.419
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 +83 -64
- package/dist/index.d.ts +12 -1
- package/dist/index.js +879 -871
- package/dist/index.js.map +1 -1
- package/lib/common/schematicSize.ts +8 -0
- package/lib/components/capacitor.ts +6 -0
- package/lib/components/resistor.ts +6 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -199,8 +199,9 @@ export interface AnalogSimulationProps {
|
|
|
199
199
|
### BatteryProps `<battery />`
|
|
200
200
|
|
|
201
201
|
```ts
|
|
202
|
-
export interface BatteryProps<
|
|
203
|
-
extends
|
|
202
|
+
export interface BatteryProps<
|
|
203
|
+
PinLabel extends string = string,
|
|
204
|
+
> extends CommonComponentProps<PinLabel> {
|
|
204
205
|
capacity?: number | string;
|
|
205
206
|
voltage?: number | string;
|
|
206
207
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C";
|
|
@@ -213,8 +214,10 @@ export interface BatteryProps<PinLabel extends string = string>
|
|
|
213
214
|
### BoardProps `<board />`
|
|
214
215
|
|
|
215
216
|
```ts
|
|
216
|
-
export interface BoardProps
|
|
217
|
-
|
|
217
|
+
export interface BoardProps extends Omit<
|
|
218
|
+
SubcircuitGroupProps,
|
|
219
|
+
"subcircuit" | "connections"
|
|
220
|
+
> {
|
|
218
221
|
title?: string;
|
|
219
222
|
material?: "fr4" | "fr1";
|
|
220
223
|
/** Number of layers for the PCB */
|
|
@@ -247,8 +250,10 @@ export interface BoardProps
|
|
|
247
250
|
### BreakoutProps `<breakout />`
|
|
248
251
|
|
|
249
252
|
```ts
|
|
250
|
-
export interface BreakoutProps
|
|
251
|
-
|
|
253
|
+
export interface BreakoutProps extends Omit<
|
|
254
|
+
SubcircuitGroupProps,
|
|
255
|
+
"subcircuit"
|
|
256
|
+
> {
|
|
252
257
|
padding?: Distance;
|
|
253
258
|
paddingLeft?: Distance;
|
|
254
259
|
paddingRight?: Distance;
|
|
@@ -262,8 +267,10 @@ export interface BreakoutProps
|
|
|
262
267
|
### BreakoutPointProps `<breakoutpoint />`
|
|
263
268
|
|
|
264
269
|
```ts
|
|
265
|
-
export interface BreakoutPointProps
|
|
266
|
-
|
|
270
|
+
export interface BreakoutPointProps extends Omit<
|
|
271
|
+
PcbLayoutProps,
|
|
272
|
+
"pcbRotation" | "layer"
|
|
273
|
+
> {
|
|
267
274
|
connection: string;
|
|
268
275
|
}
|
|
269
276
|
```
|
|
@@ -311,8 +318,9 @@ export interface CadModelProps extends CadModelBase {
|
|
|
311
318
|
### CapacitorProps `<capacitor />`
|
|
312
319
|
|
|
313
320
|
```ts
|
|
314
|
-
export interface CapacitorProps<
|
|
315
|
-
extends
|
|
321
|
+
export interface CapacitorProps<
|
|
322
|
+
PinLabel extends string = string,
|
|
323
|
+
> extends CommonComponentProps<PinLabel> {
|
|
316
324
|
capacitance: number | string;
|
|
317
325
|
maxVoltageRating?: number | string;
|
|
318
326
|
schShowRatings?: boolean;
|
|
@@ -323,6 +331,7 @@ export interface CapacitorProps<PinLabel extends string = string>
|
|
|
323
331
|
bypassTo?: string;
|
|
324
332
|
maxDecouplingTraceLength?: number;
|
|
325
333
|
schOrientation?: SchematicOrientation;
|
|
334
|
+
schSize?: SchematicSymbolSize;
|
|
326
335
|
connections?: Connections<CapacitorPinLabels>;
|
|
327
336
|
}
|
|
328
337
|
```
|
|
@@ -464,8 +473,9 @@ export type CourtyardRectProps = z.input<typeof courtyardRectProps>;
|
|
|
464
473
|
### CrystalProps `<crystal />`
|
|
465
474
|
|
|
466
475
|
```ts
|
|
467
|
-
export interface CrystalProps<
|
|
468
|
-
extends
|
|
476
|
+
export interface CrystalProps<
|
|
477
|
+
PinLabel extends string = string,
|
|
478
|
+
> extends CommonComponentProps<PinLabel> {
|
|
469
479
|
frequency: number | string;
|
|
470
480
|
loadCapacitance: number | string;
|
|
471
481
|
manufacturerPartNumber?: string;
|
|
@@ -481,8 +491,10 @@ export interface CrystalProps<PinLabel extends string = string>
|
|
|
481
491
|
### RectCutoutProps `<cutout />`
|
|
482
492
|
|
|
483
493
|
```ts
|
|
484
|
-
export interface RectCutoutProps
|
|
485
|
-
|
|
494
|
+
export interface RectCutoutProps extends Omit<
|
|
495
|
+
PcbLayoutProps,
|
|
496
|
+
"layer" | "pcbRotation"
|
|
497
|
+
> {
|
|
486
498
|
name?: string;
|
|
487
499
|
shape: "rect";
|
|
488
500
|
width: Distance;
|
|
@@ -495,8 +507,9 @@ export interface RectCutoutProps
|
|
|
495
507
|
### DiodeProps `<diode />`
|
|
496
508
|
|
|
497
509
|
```ts
|
|
498
|
-
export interface DiodeProps<
|
|
499
|
-
extends
|
|
510
|
+
export interface DiodeProps<
|
|
511
|
+
PinLabel extends string = string,
|
|
512
|
+
> extends CommonComponentProps<PinLabel> {
|
|
500
513
|
connections?: {
|
|
501
514
|
anode?: string | string[] | readonly string[];
|
|
502
515
|
cathode?: string | string[] | readonly string[];
|
|
@@ -521,11 +534,10 @@ export interface DiodeProps<PinLabel extends string = string>
|
|
|
521
534
|
### FabricationNoteDimensionProps `<fabricationnotedimension />`
|
|
522
535
|
|
|
523
536
|
```ts
|
|
524
|
-
export interface FabricationNoteDimensionProps
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
> {
|
|
537
|
+
export interface FabricationNoteDimensionProps extends Omit<
|
|
538
|
+
PcbLayoutProps,
|
|
539
|
+
"pcbX" | "pcbY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"
|
|
540
|
+
> {
|
|
529
541
|
from: string | Point;
|
|
530
542
|
to: string | Point;
|
|
531
543
|
text?: string;
|
|
@@ -606,8 +618,9 @@ export interface FootprintProps {
|
|
|
606
618
|
### FuseProps `<fuse />`
|
|
607
619
|
|
|
608
620
|
```ts
|
|
609
|
-
export interface FuseProps<
|
|
610
|
-
extends
|
|
621
|
+
export interface FuseProps<
|
|
622
|
+
PinLabel extends string = string,
|
|
623
|
+
> extends CommonComponentProps<PinLabel> {
|
|
611
624
|
/**
|
|
612
625
|
* Current rating of the fuse in amperes
|
|
613
626
|
*/
|
|
@@ -783,8 +796,9 @@ export interface CircleHoleProps extends PcbLayoutProps {
|
|
|
783
796
|
### InductorProps `<inductor />`
|
|
784
797
|
|
|
785
798
|
```ts
|
|
786
|
-
export interface InductorProps<
|
|
787
|
-
extends
|
|
799
|
+
export interface InductorProps<
|
|
800
|
+
PinLabel extends string = string,
|
|
801
|
+
> extends CommonComponentProps<PinLabel> {
|
|
788
802
|
inductance: number | string;
|
|
789
803
|
maxCurrentRating?: number | string;
|
|
790
804
|
schOrientation?: SchematicOrientation;
|
|
@@ -856,8 +870,9 @@ export type LedProps = z.input<typeof ledProps>;
|
|
|
856
870
|
### MosfetProps `<mosfet />`
|
|
857
871
|
|
|
858
872
|
```ts
|
|
859
|
-
export interface MosfetProps<
|
|
860
|
-
extends
|
|
873
|
+
export interface MosfetProps<
|
|
874
|
+
PinLabel extends string = string,
|
|
875
|
+
> extends CommonComponentProps<PinLabel> {
|
|
861
876
|
channelType: "n" | "p";
|
|
862
877
|
mosfetMode: "enhancement" | "depletion";
|
|
863
878
|
}
|
|
@@ -944,11 +959,10 @@ export type PcbKeepoutProps = z.input<typeof pcbKeepoutProps>;
|
|
|
944
959
|
### PcbNoteDimensionProps `<pcbnotedimension />`
|
|
945
960
|
|
|
946
961
|
```ts
|
|
947
|
-
export interface PcbNoteDimensionProps
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
> {
|
|
962
|
+
export interface PcbNoteDimensionProps extends Omit<
|
|
963
|
+
PcbLayoutProps,
|
|
964
|
+
"pcbX" | "pcbY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"
|
|
965
|
+
> {
|
|
952
966
|
from: string | Point;
|
|
953
967
|
to: string | Point;
|
|
954
968
|
text?: string;
|
|
@@ -969,11 +983,10 @@ export interface PcbNoteDimensionProps
|
|
|
969
983
|
### PcbNoteLineProps `<pcbnoteline />`
|
|
970
984
|
|
|
971
985
|
```ts
|
|
972
|
-
export interface PcbNoteLineProps
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
> {
|
|
986
|
+
export interface PcbNoteLineProps extends Omit<
|
|
987
|
+
PcbLayoutProps,
|
|
988
|
+
"pcbX" | "pcbY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"
|
|
989
|
+
> {
|
|
977
990
|
x1: string | number;
|
|
978
991
|
y1: string | number;
|
|
979
992
|
x2: string | number;
|
|
@@ -989,11 +1002,10 @@ export interface PcbNoteLineProps
|
|
|
989
1002
|
### PcbNotePathProps `<pcbnotepath />`
|
|
990
1003
|
|
|
991
1004
|
```ts
|
|
992
|
-
export interface PcbNotePathProps
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
> {
|
|
1005
|
+
export interface PcbNotePathProps extends Omit<
|
|
1006
|
+
PcbLayoutProps,
|
|
1007
|
+
"pcbX" | "pcbY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"
|
|
1008
|
+
> {
|
|
997
1009
|
route: RouteHintPointInput[];
|
|
998
1010
|
strokeWidth?: string | number;
|
|
999
1011
|
color?: string;
|
|
@@ -1152,8 +1164,10 @@ export interface PinHeaderProps extends CommonComponentProps {
|
|
|
1152
1164
|
### CirclePlatedHoleProps `<platedhole />`
|
|
1153
1165
|
|
|
1154
1166
|
```ts
|
|
1155
|
-
export interface CirclePlatedHoleProps
|
|
1156
|
-
|
|
1167
|
+
export interface CirclePlatedHoleProps extends Omit<
|
|
1168
|
+
PcbLayoutProps,
|
|
1169
|
+
"pcbRotation" | "layer"
|
|
1170
|
+
> {
|
|
1157
1171
|
name?: string;
|
|
1158
1172
|
connectsTo?: string | string[];
|
|
1159
1173
|
shape: "circle";
|
|
@@ -1207,14 +1221,16 @@ export type PushButtonProps<T extends PinLabelsProp | string = string> =
|
|
|
1207
1221
|
### ResistorProps `<resistor />`
|
|
1208
1222
|
|
|
1209
1223
|
```ts
|
|
1210
|
-
export interface ResistorProps<
|
|
1211
|
-
extends
|
|
1224
|
+
export interface ResistorProps<
|
|
1225
|
+
PinLabel extends string = string,
|
|
1226
|
+
> extends CommonComponentProps<PinLabel> {
|
|
1212
1227
|
resistance: number | string;
|
|
1213
1228
|
pullupFor?: string;
|
|
1214
1229
|
pullupTo?: string;
|
|
1215
1230
|
pulldownFor?: string;
|
|
1216
1231
|
pulldownTo?: string;
|
|
1217
1232
|
schOrientation?: SchematicOrientation;
|
|
1233
|
+
schSize?: SchematicSymbolSize;
|
|
1218
1234
|
connections?: Connections<ResistorPinLabels>;
|
|
1219
1235
|
}
|
|
1220
1236
|
```
|
|
@@ -1411,8 +1427,10 @@ export interface SolderJumperProps extends JumperProps {
|
|
|
1411
1427
|
### RectSolderPasteProps `<solderpaste />`
|
|
1412
1428
|
|
|
1413
1429
|
```ts
|
|
1414
|
-
export interface RectSolderPasteProps
|
|
1415
|
-
|
|
1430
|
+
export interface RectSolderPasteProps extends Omit<
|
|
1431
|
+
PcbLayoutProps,
|
|
1432
|
+
"pcbRotation"
|
|
1433
|
+
> {
|
|
1416
1434
|
shape: "rect";
|
|
1417
1435
|
width: Distance;
|
|
1418
1436
|
height: Distance;
|
|
@@ -1538,8 +1556,9 @@ export type TraceHintProps = z.input<typeof traceHintProps>;
|
|
|
1538
1556
|
### TransistorProps `<transistor />`
|
|
1539
1557
|
|
|
1540
1558
|
```ts
|
|
1541
|
-
export interface TransistorProps<
|
|
1542
|
-
extends
|
|
1559
|
+
export interface TransistorProps<
|
|
1560
|
+
PinLabel extends string = string,
|
|
1561
|
+
> extends CommonComponentProps<PinLabel> {
|
|
1543
1562
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
1544
1563
|
connections?: Connections<transistorPinsLabels>;
|
|
1545
1564
|
}
|
|
@@ -1579,8 +1598,9 @@ export interface VoltageProbeProps extends Omit<CommonComponentProps, "name"> {
|
|
|
1579
1598
|
### VoltageSourceProps `<voltagesource />`
|
|
1580
1599
|
|
|
1581
1600
|
```ts
|
|
1582
|
-
export interface VoltageSourceProps<
|
|
1583
|
-
extends
|
|
1601
|
+
export interface VoltageSourceProps<
|
|
1602
|
+
PinLabel extends string = string,
|
|
1603
|
+
> extends CommonComponentProps<PinLabel> {
|
|
1584
1604
|
voltage?: number | string;
|
|
1585
1605
|
frequency?: number | string;
|
|
1586
1606
|
peakToPeakVoltage?: number | string;
|
|
@@ -1666,18 +1686,17 @@ export interface PlatformConfig {
|
|
|
1666
1686
|
### ProjectConfig
|
|
1667
1687
|
|
|
1668
1688
|
```ts
|
|
1669
|
-
export interface ProjectConfig
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
> {}
|
|
1689
|
+
export interface ProjectConfig extends Pick<
|
|
1690
|
+
PlatformConfig,
|
|
1691
|
+
| "projectName"
|
|
1692
|
+
| "projectBaseUrl"
|
|
1693
|
+
| "version"
|
|
1694
|
+
| "url"
|
|
1695
|
+
| "printBoardInformationToSilkscreen"
|
|
1696
|
+
| "includeBoardFiles"
|
|
1697
|
+
| "snapshotsDir"
|
|
1698
|
+
| "defaultSpiceEngine"
|
|
1699
|
+
> {}
|
|
1681
1700
|
```
|
|
1682
1701
|
|
|
1683
1702
|
[Source](https://github.com/tscircuit/props/blob/main/lib/projectConfig.ts)
|
package/dist/index.d.ts
CHANGED
|
@@ -4292,6 +4292,9 @@ declare const schematicPinStyle: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4292
4292
|
declare const schematicPinLabel: z.ZodString;
|
|
4293
4293
|
type SchematicPinLabel = z.infer<typeof schematicPinLabel>;
|
|
4294
4294
|
|
|
4295
|
+
declare const schematicSymbolSize: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["xs", "sm", "default", "md"]>]>;
|
|
4296
|
+
type SchematicSymbolSize = z.input<typeof schematicSymbolSize>;
|
|
4297
|
+
|
|
4295
4298
|
declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
4296
4299
|
|
|
4297
4300
|
type Point = {
|
|
@@ -27828,6 +27831,7 @@ interface ResistorProps<PinLabel extends string = string> extends CommonComponen
|
|
|
27828
27831
|
pulldownFor?: string;
|
|
27829
27832
|
pulldownTo?: string;
|
|
27830
27833
|
schOrientation?: SchematicOrientation;
|
|
27834
|
+
schSize?: SchematicSymbolSize;
|
|
27831
27835
|
connections?: Connections<ResistorPinLabels>;
|
|
27832
27836
|
}
|
|
27833
27837
|
declare const resistorProps: z.ZodObject<{
|
|
@@ -28530,6 +28534,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28530
28534
|
pulldownFor: z.ZodOptional<z.ZodString>;
|
|
28531
28535
|
pulldownTo: z.ZodOptional<z.ZodString>;
|
|
28532
28536
|
schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
|
|
28537
|
+
schSize: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["xs", "sm", "default", "md"]>]>>;
|
|
28533
28538
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
28534
28539
|
}, "strip", z.ZodTypeAny, {
|
|
28535
28540
|
name: string;
|
|
@@ -28732,6 +28737,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28732
28737
|
pullupTo?: string | undefined;
|
|
28733
28738
|
pulldownFor?: string | undefined;
|
|
28734
28739
|
pulldownTo?: string | undefined;
|
|
28740
|
+
schSize?: number | "xs" | "sm" | "default" | "md" | undefined;
|
|
28735
28741
|
}, {
|
|
28736
28742
|
name: string;
|
|
28737
28743
|
resistance: string | number;
|
|
@@ -28935,6 +28941,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28935
28941
|
pullupTo?: string | undefined;
|
|
28936
28942
|
pulldownFor?: string | undefined;
|
|
28937
28943
|
pulldownTo?: string | undefined;
|
|
28944
|
+
schSize?: string | number | undefined;
|
|
28938
28945
|
}>;
|
|
28939
28946
|
declare const resistorPins: readonly ["pin1", "left", "pin2", "right"];
|
|
28940
28947
|
|
|
@@ -33666,6 +33673,7 @@ interface CapacitorProps<PinLabel extends string = string> extends CommonCompone
|
|
|
33666
33673
|
bypassTo?: string;
|
|
33667
33674
|
maxDecouplingTraceLength?: number;
|
|
33668
33675
|
schOrientation?: SchematicOrientation;
|
|
33676
|
+
schSize?: SchematicSymbolSize;
|
|
33669
33677
|
connections?: Connections<CapacitorPinLabels>;
|
|
33670
33678
|
}
|
|
33671
33679
|
declare const capacitorProps: z.ZodObject<{
|
|
@@ -34372,6 +34380,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34372
34380
|
bypassTo: z.ZodOptional<z.ZodString>;
|
|
34373
34381
|
maxDecouplingTraceLength: z.ZodOptional<z.ZodNumber>;
|
|
34374
34382
|
schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
|
|
34383
|
+
schSize: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["xs", "sm", "default", "md"]>]>>;
|
|
34375
34384
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg", "anode", "cathode"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
34376
34385
|
}, "strip", z.ZodTypeAny, {
|
|
34377
34386
|
name: string;
|
|
@@ -34572,6 +34581,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34572
34581
|
showAsTranslucentModel?: boolean | undefined;
|
|
34573
34582
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
34574
34583
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
34584
|
+
schSize?: number | "xs" | "sm" | "default" | "md" | undefined;
|
|
34575
34585
|
maxVoltageRating?: number | undefined;
|
|
34576
34586
|
decouplingFor?: string | undefined;
|
|
34577
34587
|
decouplingTo?: string | undefined;
|
|
@@ -34778,6 +34788,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34778
34788
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
34779
34789
|
schShowRatings?: boolean | undefined;
|
|
34780
34790
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
34791
|
+
schSize?: string | number | undefined;
|
|
34781
34792
|
maxVoltageRating?: string | number | undefined;
|
|
34782
34793
|
polarized?: boolean | undefined;
|
|
34783
34794
|
decouplingFor?: string | undefined;
|
|
@@ -60800,4 +60811,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
60800
60811
|
}
|
|
60801
60812
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
60802
60813
|
|
|
60803
|
-
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardOutlineProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardOutlineProps, courtyardRectProps, 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, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
60814
|
+
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardOutlineProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardOutlineProps, courtyardRectProps, 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, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|