@tscircuit/props 0.0.538 → 0.0.539
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 +13 -0
- package/dist/index.d.ts +41 -9
- package/dist/index.js +304 -291
- package/dist/index.js.map +1 -1
- package/lib/components/chip.ts +10 -0
- package/lib/components/spicemodel.ts +15 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,6 +101,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput);
|
|
|
101
101
|
| `<smtpad />` | [`RectSmtPadProps`](#rectsmtpadprops-smtpad) |
|
|
102
102
|
| `<solderjumper />` | [`SolderJumperProps`](#solderjumperprops-solderjumper) |
|
|
103
103
|
| `<solderpaste />` | [`RectSolderPasteProps`](#rectsolderpasteprops-solderpaste) |
|
|
104
|
+
| `<spicemodel />` | [`SpicemodelProps`](#spicemodelprops-spicemodel) |
|
|
104
105
|
| `<stampboard />` | [`StampboardProps`](#stampboardprops-stampboard) |
|
|
105
106
|
| `<subcircuit />` | [`SubcircuitProps`](#subcircuitprops-subcircuit) |
|
|
106
107
|
| `<subpanel />` | [`SubpanelProps`](#subpanelprops-subpanel) |
|
|
@@ -415,6 +416,7 @@ export interface ChipPropsSU<
|
|
|
415
416
|
*/
|
|
416
417
|
noConnect?: readonly PinLabel[] | PinLabel[];
|
|
417
418
|
connections?: Connections<PinLabel>;
|
|
419
|
+
spiceModel?: SpicemodelElement;
|
|
418
420
|
}
|
|
419
421
|
```
|
|
420
422
|
|
|
@@ -1713,6 +1715,17 @@ export interface RectSolderPasteProps extends Omit<
|
|
|
1713
1715
|
|
|
1714
1716
|
[Source](https://github.com/tscircuit/props/blob/main/lib/components/solderpaste.ts)
|
|
1715
1717
|
|
|
1718
|
+
### SpicemodelProps `<spicemodel />`
|
|
1719
|
+
|
|
1720
|
+
```ts
|
|
1721
|
+
export interface SpicemodelProps {
|
|
1722
|
+
source: string;
|
|
1723
|
+
spicePinMapping?: Record<string, string>;
|
|
1724
|
+
}
|
|
1725
|
+
```
|
|
1726
|
+
|
|
1727
|
+
[Source](https://github.com/tscircuit/props/blob/main/lib/components/spicemodel.ts)
|
|
1728
|
+
|
|
1716
1729
|
### StampboardProps `<stampboard />`
|
|
1717
1730
|
|
|
1718
1731
|
```ts
|
package/dist/index.d.ts
CHANGED
|
@@ -29527,12 +29527,28 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29527
29527
|
schMatchAdapt?: boolean | undefined;
|
|
29528
29528
|
}>;
|
|
29529
29529
|
|
|
29530
|
+
interface SpicemodelProps {
|
|
29531
|
+
source: string;
|
|
29532
|
+
spicePinMapping?: Record<string, string>;
|
|
29533
|
+
}
|
|
29534
|
+
declare const spicemodelProps: z.ZodObject<{
|
|
29535
|
+
source: z.ZodString;
|
|
29536
|
+
spicePinMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
29537
|
+
}, "strip", z.ZodTypeAny, {
|
|
29538
|
+
source: string;
|
|
29539
|
+
spicePinMapping?: Record<string, string> | undefined;
|
|
29540
|
+
}, {
|
|
29541
|
+
source: string;
|
|
29542
|
+
spicePinMapping?: Record<string, string> | undefined;
|
|
29543
|
+
}>;
|
|
29544
|
+
|
|
29530
29545
|
type PinLabelsProp<PinNumber extends string = string, PinLabel extends string = string> = Record<PinNumber, PinLabel | readonly PinLabel[] | PinLabel[]>;
|
|
29531
29546
|
type PinLabelFromPinLabelMap<PinLabelMap extends PinLabelsProp> = PinLabelMap extends PinLabelsProp<infer PinNumber, infer PinLabel> ? PinLabel : never;
|
|
29532
29547
|
interface PinCompatibleVariant {
|
|
29533
29548
|
manufacturerPartNumber?: string;
|
|
29534
29549
|
supplierPartNumber?: SupplierPartNumbers;
|
|
29535
29550
|
}
|
|
29551
|
+
type SpicemodelElement = ReactElement<SpicemodelProps>;
|
|
29536
29552
|
interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> extends CommonComponentProps<PinLabel> {
|
|
29537
29553
|
manufacturerPartNumber?: string;
|
|
29538
29554
|
pinLabels?: PinLabelsProp<SchematicPinLabel, PinLabel>;
|
|
@@ -29562,6 +29578,7 @@ interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> ex
|
|
|
29562
29578
|
*/
|
|
29563
29579
|
noConnect?: readonly PinLabel[] | PinLabel[];
|
|
29564
29580
|
connections?: Connections<PinLabel>;
|
|
29581
|
+
spiceModel?: SpicemodelElement;
|
|
29565
29582
|
}
|
|
29566
29583
|
type ChipProps<PinLabelMap extends PinLabelsProp | string = string> = ChipPropsSU<PinLabelMap extends PinLabelsProp ? PinLabelFromPinLabelMap<PinLabelMap> | keyof PinLabelMap : PinLabelMap>;
|
|
29567
29584
|
/**
|
|
@@ -29697,7 +29714,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
29697
29714
|
displayName: z.ZodOptional<z.ZodString>;
|
|
29698
29715
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
29699
29716
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
29700
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<
|
|
29717
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
29701
29718
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
29702
29719
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
29703
29720
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -33258,6 +33275,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33258
33275
|
noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
|
|
33259
33276
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
33260
33277
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
33278
|
+
spiceModel: z.ZodOptional<z.ZodType<SpicemodelElement, z.ZodTypeDef, SpicemodelElement>>;
|
|
33261
33279
|
}, "strip", z.ZodTypeAny, {
|
|
33262
33280
|
name: string;
|
|
33263
33281
|
symbol?: SymbolProp | undefined;
|
|
@@ -33538,7 +33556,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33538
33556
|
zOffsetFromSurface?: number | undefined;
|
|
33539
33557
|
showAsTranslucentModel?: boolean | undefined;
|
|
33540
33558
|
stepUrl?: string | undefined;
|
|
33541
|
-
} |
|
|
33559
|
+
} | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
33542
33560
|
kicadFootprintMetadata?: {
|
|
33543
33561
|
layer?: string | undefined;
|
|
33544
33562
|
footprintName?: string | undefined;
|
|
@@ -33912,6 +33930,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33912
33930
|
}[] | undefined;
|
|
33913
33931
|
noSchematicRepresentation?: boolean | undefined;
|
|
33914
33932
|
noConnect?: readonly string[] | string[] | undefined;
|
|
33933
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
33915
33934
|
}, {
|
|
33916
33935
|
name: string;
|
|
33917
33936
|
symbol?: SymbolProp | undefined;
|
|
@@ -34194,7 +34213,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34194
34213
|
zOffsetFromSurface?: string | number | undefined;
|
|
34195
34214
|
showAsTranslucentModel?: boolean | undefined;
|
|
34196
34215
|
stepUrl?: string | undefined;
|
|
34197
|
-
} |
|
|
34216
|
+
} | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
34198
34217
|
kicadFootprintMetadata?: {
|
|
34199
34218
|
layer?: string | undefined;
|
|
34200
34219
|
footprintName?: string | undefined;
|
|
@@ -34568,6 +34587,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34568
34587
|
}[] | undefined;
|
|
34569
34588
|
noSchematicRepresentation?: boolean | undefined;
|
|
34570
34589
|
noConnect?: readonly string[] | string[] | undefined;
|
|
34590
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
34571
34591
|
}>;
|
|
34572
34592
|
/**
|
|
34573
34593
|
* @deprecated Use ChipProps instead.
|
|
@@ -34665,7 +34685,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
34665
34685
|
displayName: z.ZodOptional<z.ZodString>;
|
|
34666
34686
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
34667
34687
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
34668
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<
|
|
34688
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
34669
34689
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
34670
34690
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
34671
34691
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -38226,6 +38246,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38226
38246
|
noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
|
|
38227
38247
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
38228
38248
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
38249
|
+
spiceModel: z.ZodOptional<z.ZodType<SpicemodelElement, z.ZodTypeDef, SpicemodelElement>>;
|
|
38229
38250
|
}, "strip", z.ZodTypeAny, {
|
|
38230
38251
|
name: string;
|
|
38231
38252
|
symbol?: SymbolProp | undefined;
|
|
@@ -38506,7 +38527,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38506
38527
|
zOffsetFromSurface?: number | undefined;
|
|
38507
38528
|
showAsTranslucentModel?: boolean | undefined;
|
|
38508
38529
|
stepUrl?: string | undefined;
|
|
38509
|
-
} |
|
|
38530
|
+
} | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
38510
38531
|
kicadFootprintMetadata?: {
|
|
38511
38532
|
layer?: string | undefined;
|
|
38512
38533
|
footprintName?: string | undefined;
|
|
@@ -38880,6 +38901,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38880
38901
|
}[] | undefined;
|
|
38881
38902
|
noSchematicRepresentation?: boolean | undefined;
|
|
38882
38903
|
noConnect?: readonly string[] | string[] | undefined;
|
|
38904
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
38883
38905
|
}, {
|
|
38884
38906
|
name: string;
|
|
38885
38907
|
symbol?: SymbolProp | undefined;
|
|
@@ -39162,7 +39184,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39162
39184
|
zOffsetFromSurface?: string | number | undefined;
|
|
39163
39185
|
showAsTranslucentModel?: boolean | undefined;
|
|
39164
39186
|
stepUrl?: string | undefined;
|
|
39165
|
-
} |
|
|
39187
|
+
} | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
|
|
39166
39188
|
kicadFootprintMetadata?: {
|
|
39167
39189
|
layer?: string | undefined;
|
|
39168
39190
|
footprintName?: string | undefined;
|
|
@@ -39536,6 +39558,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39536
39558
|
}[] | undefined;
|
|
39537
39559
|
noSchematicRepresentation?: boolean | undefined;
|
|
39538
39560
|
noConnect?: readonly string[] | string[] | undefined;
|
|
39561
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
39539
39562
|
}>;
|
|
39540
39563
|
type InferredChipProps = z.input<typeof chipProps>;
|
|
39541
39564
|
|
|
@@ -43193,6 +43216,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
43193
43216
|
noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
|
|
43194
43217
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
43195
43218
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
43219
|
+
spiceModel: z.ZodOptional<z.ZodType<SpicemodelElement, z.ZodTypeDef, SpicemodelElement>>;
|
|
43196
43220
|
}, "strip", z.ZodTypeAny, {
|
|
43197
43221
|
name: string;
|
|
43198
43222
|
symbol?: SymbolProp | undefined;
|
|
@@ -43847,6 +43871,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
43847
43871
|
}[] | undefined;
|
|
43848
43872
|
noSchematicRepresentation?: boolean | undefined;
|
|
43849
43873
|
noConnect?: readonly string[] | string[] | undefined;
|
|
43874
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
43850
43875
|
}, {
|
|
43851
43876
|
name: string;
|
|
43852
43877
|
symbol?: SymbolProp | undefined;
|
|
@@ -44503,6 +44528,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
44503
44528
|
}[] | undefined;
|
|
44504
44529
|
noSchematicRepresentation?: boolean | undefined;
|
|
44505
44530
|
noConnect?: readonly string[] | string[] | undefined;
|
|
44531
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
44506
44532
|
}>;
|
|
44507
44533
|
interface PinoutProps<PinLabelMap extends PinLabelsProp | string = string> extends ChipProps<PinLabelMap> {
|
|
44508
44534
|
}
|
|
@@ -58100,6 +58126,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
58100
58126
|
noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
|
|
58101
58127
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
58102
58128
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
58129
|
+
spiceModel: z.ZodOptional<z.ZodType<SpicemodelElement, z.ZodTypeDef, SpicemodelElement>>;
|
|
58103
58130
|
} & {
|
|
58104
58131
|
standard: z.ZodOptional<z.ZodEnum<["usb_c", "m2"]>>;
|
|
58105
58132
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -58756,6 +58783,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
58756
58783
|
}[] | undefined;
|
|
58757
58784
|
noSchematicRepresentation?: boolean | undefined;
|
|
58758
58785
|
noConnect?: readonly string[] | string[] | undefined;
|
|
58786
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
58759
58787
|
standard?: "usb_c" | "m2" | undefined;
|
|
58760
58788
|
}, {
|
|
58761
58789
|
name: string;
|
|
@@ -59413,6 +59441,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
59413
59441
|
}[] | undefined;
|
|
59414
59442
|
noSchematicRepresentation?: boolean | undefined;
|
|
59415
59443
|
noConnect?: readonly string[] | string[] | undefined;
|
|
59444
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
59416
59445
|
standard?: "usb_c" | "m2" | undefined;
|
|
59417
59446
|
}>;
|
|
59418
59447
|
|
|
@@ -118846,6 +118875,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
118846
118875
|
noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
|
|
118847
118876
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
118848
118877
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
118878
|
+
spiceModel: z.ZodOptional<z.ZodType<SpicemodelElement, z.ZodTypeDef, SpicemodelElement>>;
|
|
118849
118879
|
}, "strip", z.ZodTypeAny, {
|
|
118850
118880
|
name: string;
|
|
118851
118881
|
symbol?: SymbolProp | undefined;
|
|
@@ -119500,6 +119530,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119500
119530
|
}[] | undefined;
|
|
119501
119531
|
noSchematicRepresentation?: boolean | undefined;
|
|
119502
119532
|
noConnect?: readonly string[] | string[] | undefined;
|
|
119533
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
119503
119534
|
}, {
|
|
119504
119535
|
name: string;
|
|
119505
119536
|
symbol?: SymbolProp | undefined;
|
|
@@ -120156,6 +120187,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
120156
120187
|
}[] | undefined;
|
|
120157
120188
|
noSchematicRepresentation?: boolean | undefined;
|
|
120158
120189
|
noConnect?: readonly string[] | string[] | undefined;
|
|
120190
|
+
spiceModel?: SpicemodelElement | undefined;
|
|
120159
120191
|
}>;
|
|
120160
120192
|
|
|
120161
120193
|
type SubcircuitProps = SubcircuitGroupProps;
|
|
@@ -125669,7 +125701,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
125669
125701
|
mfn?: string | undefined;
|
|
125670
125702
|
manufacturerPartNumber?: string | undefined;
|
|
125671
125703
|
schSectionName?: string | undefined;
|
|
125672
|
-
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "
|
|
125704
|
+
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
125673
125705
|
}, {
|
|
125674
125706
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
125675
125707
|
name: string;
|
|
@@ -126250,7 +126282,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
126250
126282
|
mfn?: string | undefined;
|
|
126251
126283
|
manufacturerPartNumber?: string | undefined;
|
|
126252
126284
|
schSectionName?: string | undefined;
|
|
126253
|
-
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "
|
|
126285
|
+
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
126254
126286
|
}>;
|
|
126255
126287
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
126256
126288
|
type TransistorPinLabels = (typeof transistorPins)[number];
|
|
@@ -185552,4 +185584,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
185552
185584
|
}
|
|
185553
185585
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
185554
185586
|
|
|
185555
|
-
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
185587
|
+
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, 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 SpicemodelElement, type SpicemodelProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|