@tscircuit/props 0.0.537 → 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 CHANGED
@@ -45,6 +45,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput);
45
45
  | `<currentsource />` | [`CurrentSourceProps`](#currentsourceprops-currentsource) |
46
46
  | `<cutout />` | [`RectCutoutProps`](#rectcutoutprops-cutout) |
47
47
  | `<diode />` | [`DiodeProps`](#diodeprops-diode) |
48
+ | `<drccheck />` | [`DrcCheckProps`](#drccheckprops-drccheck) |
48
49
  | `<fabricationnotedimension />` | [`FabricationNoteDimensionProps`](#fabricationnotedimensionprops-fabricationnotedimension) |
49
50
  | `<fabricationnotepath />` | [`FabricationNotePathProps`](#fabricationnotepathprops-fabricationnotepath) |
50
51
  | `<fabricationnoterect />` | [`FabricationNoteRectProps`](#fabricationnoterectprops-fabricationnoterect) |
@@ -100,6 +101,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput);
100
101
  | `<smtpad />` | [`RectSmtPadProps`](#rectsmtpadprops-smtpad) |
101
102
  | `<solderjumper />` | [`SolderJumperProps`](#solderjumperprops-solderjumper) |
102
103
  | `<solderpaste />` | [`RectSolderPasteProps`](#rectsolderpasteprops-solderpaste) |
104
+ | `<spicemodel />` | [`SpicemodelProps`](#spicemodelprops-spicemodel) |
103
105
  | `<stampboard />` | [`StampboardProps`](#stampboardprops-stampboard) |
104
106
  | `<subcircuit />` | [`SubcircuitProps`](#subcircuitprops-subcircuit) |
105
107
  | `<subpanel />` | [`SubpanelProps`](#subpanelprops-subpanel) |
@@ -414,6 +416,7 @@ export interface ChipPropsSU<
414
416
  */
415
417
  noConnect?: readonly PinLabel[] | PinLabel[];
416
418
  connections?: Connections<PinLabel>;
419
+ spiceModel?: SpicemodelElement;
417
420
  }
418
421
  ```
419
422
 
@@ -599,6 +602,17 @@ export interface DiodeProps<
599
602
 
600
603
  [Source](https://github.com/tscircuit/props/blob/main/lib/components/diode.ts)
601
604
 
605
+ ### DrcCheckProps `<drccheck />`
606
+
607
+ ```ts
608
+ export interface DrcCheckProps {
609
+ name?: string;
610
+ checkFn: CustomDrcCheckFn;
611
+ }
612
+ ```
613
+
614
+ [Source](https://github.com/tscircuit/props/blob/main/lib/components/drc-check.ts)
615
+
602
616
  ### FabricationNoteDimensionProps `<fabricationnotedimension />`
603
617
 
604
618
  ```ts
@@ -1701,6 +1715,17 @@ export interface RectSolderPasteProps extends Omit<
1701
1715
 
1702
1716
  [Source](https://github.com/tscircuit/props/blob/main/lib/components/solderpaste.ts)
1703
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
+
1704
1729
  ### StampboardProps `<stampboard />`
1705
1730
 
1706
1731
  ```ts
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import * as react from 'react';
3
3
  import { ReactElement } from 'react';
4
- import { LayerRef, LayerRefInput, Point as Point$1, RouteHintPoint, PcbTrace, AnySourceComponent, AnyCircuitElement, RouteHintPointInput } from 'circuit-json';
4
+ import { LayerRef, LayerRefInput, SourceNet, PcbPort, SourcePort, PcbComponent, SourceComponentBase, AnyCircuitElement, CircuitJsonError, Point as Point$1, RouteHintPoint, PcbTrace, AnySourceComponent, RouteHintPointInput } from 'circuit-json';
5
5
 
6
6
  declare const direction: z.ZodEnum<["up", "down", "left", "right"]>;
7
7
  type Direction = "up" | "down" | "left" | "right";
@@ -16555,6 +16555,46 @@ declare const kicadPinMetadata: z.ZodObject<{
16555
16555
  numberTextSize?: string | number | undefined;
16556
16556
  }>;
16557
16557
 
16558
+ type MaybePromise<T> = T | Promise<T>;
16559
+ type CircuitJsonWarning = Extract<AnyCircuitElement, {
16560
+ warning_type: string;
16561
+ }>;
16562
+ type CustomDrcCheckInput = Partial<CircuitJsonError> | Partial<CircuitJsonWarning>;
16563
+ interface SelectionResultComponent {
16564
+ getPort: (name: string) => SelectionResultPort | null;
16565
+ getPorts: () => SelectionResultPort[];
16566
+ getPcbComponent: () => PcbComponent | null;
16567
+ getSourceComponent: () => SourceComponentBase | null;
16568
+ }
16569
+ interface SelectionResultPort {
16570
+ getPcbPort: () => PcbPort | null;
16571
+ getSourcePort: () => SourcePort | null;
16572
+ }
16573
+ interface SelectionResultNet {
16574
+ getSourceNet: () => SourceNet | null;
16575
+ }
16576
+ type SelectionResult = SelectionResultComponent | SelectionResultPort | SelectionResultNet;
16577
+ type CustomDrcConnectable = string | AnyCircuitElement | SelectionResult | null | undefined;
16578
+ interface CustomDrcSelect {
16579
+ (selector: `net.${string}`): SelectionResultNet | null;
16580
+ (selector: `${string}.${string}`): SelectionResultPort | null;
16581
+ (selector: string): SelectionResult | null;
16582
+ }
16583
+ interface CustomDrcSelectAll {
16584
+ (selector: `chip${string}`): SelectionResultComponent[];
16585
+ (selector: string): SelectionResult[];
16586
+ }
16587
+ interface CustomDrcCheckContext {
16588
+ select: CustomDrcSelect;
16589
+ selectAll: CustomDrcSelectAll;
16590
+ isConnected: (a: CustomDrcConnectable, b: CustomDrcConnectable) => boolean;
16591
+ isPulledUp: (a: CustomDrcConnectable) => boolean;
16592
+ isPulledDown: (a: CustomDrcConnectable) => boolean;
16593
+ getResistanceBetween: (a: CustomDrcConnectable, b: CustomDrcConnectable) => number | null;
16594
+ }
16595
+ type CustomDrcCheckFn = (ctx: CustomDrcCheckContext) => MaybePromise<CustomDrcCheckInput | CustomDrcCheckInput[] | null | undefined | void>;
16596
+ declare const customDrcCheckFn: z.ZodType<CustomDrcCheckFn, z.ZodTypeDef, CustomDrcCheckFn>;
16597
+
16558
16598
  declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
16559
16599
 
16560
16600
  type Point = {
@@ -29487,12 +29527,28 @@ declare const breakoutProps: z.ZodObject<{
29487
29527
  schMatchAdapt?: boolean | undefined;
29488
29528
  }>;
29489
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
+
29490
29545
  type PinLabelsProp<PinNumber extends string = string, PinLabel extends string = string> = Record<PinNumber, PinLabel | readonly PinLabel[] | PinLabel[]>;
29491
29546
  type PinLabelFromPinLabelMap<PinLabelMap extends PinLabelsProp> = PinLabelMap extends PinLabelsProp<infer PinNumber, infer PinLabel> ? PinLabel : never;
29492
29547
  interface PinCompatibleVariant {
29493
29548
  manufacturerPartNumber?: string;
29494
29549
  supplierPartNumber?: SupplierPartNumbers;
29495
29550
  }
29551
+ type SpicemodelElement = ReactElement<SpicemodelProps>;
29496
29552
  interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> extends CommonComponentProps<PinLabel> {
29497
29553
  manufacturerPartNumber?: string;
29498
29554
  pinLabels?: PinLabelsProp<SchematicPinLabel, PinLabel>;
@@ -29522,6 +29578,7 @@ interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> ex
29522
29578
  */
29523
29579
  noConnect?: readonly PinLabel[] | PinLabel[];
29524
29580
  connections?: Connections<PinLabel>;
29581
+ spiceModel?: SpicemodelElement;
29525
29582
  }
29526
29583
  type ChipProps<PinLabelMap extends PinLabelsProp | string = string> = ChipPropsSU<PinLabelMap extends PinLabelsProp ? PinLabelFromPinLabelMap<PinLabelMap> | keyof PinLabelMap : PinLabelMap>;
29527
29584
  /**
@@ -29657,7 +29714,7 @@ declare const chipProps: z.ZodObject<{
29657
29714
  displayName: z.ZodOptional<z.ZodString>;
29658
29715
  schSectionName: z.ZodOptional<z.ZodString>;
29659
29716
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
29660
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
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<{
29661
29718
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
29662
29719
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
29663
29720
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -33218,6 +33275,7 @@ declare const chipProps: z.ZodObject<{
33218
33275
  noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
33219
33276
  noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
33220
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>>;
33221
33279
  }, "strip", z.ZodTypeAny, {
33222
33280
  name: string;
33223
33281
  symbol?: SymbolProp | undefined;
@@ -33498,7 +33556,7 @@ declare const chipProps: z.ZodObject<{
33498
33556
  zOffsetFromSurface?: number | undefined;
33499
33557
  showAsTranslucentModel?: boolean | undefined;
33500
33558
  stepUrl?: string | undefined;
33501
- } | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
33559
+ } | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
33502
33560
  kicadFootprintMetadata?: {
33503
33561
  layer?: string | undefined;
33504
33562
  footprintName?: string | undefined;
@@ -33872,6 +33930,7 @@ declare const chipProps: z.ZodObject<{
33872
33930
  }[] | undefined;
33873
33931
  noSchematicRepresentation?: boolean | undefined;
33874
33932
  noConnect?: readonly string[] | string[] | undefined;
33933
+ spiceModel?: SpicemodelElement | undefined;
33875
33934
  }, {
33876
33935
  name: string;
33877
33936
  symbol?: SymbolProp | undefined;
@@ -34154,7 +34213,7 @@ declare const chipProps: z.ZodObject<{
34154
34213
  zOffsetFromSurface?: string | number | undefined;
34155
34214
  showAsTranslucentModel?: boolean | undefined;
34156
34215
  stepUrl?: string | undefined;
34157
- } | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
34216
+ } | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
34158
34217
  kicadFootprintMetadata?: {
34159
34218
  layer?: string | undefined;
34160
34219
  footprintName?: string | undefined;
@@ -34528,6 +34587,7 @@ declare const chipProps: z.ZodObject<{
34528
34587
  }[] | undefined;
34529
34588
  noSchematicRepresentation?: boolean | undefined;
34530
34589
  noConnect?: readonly string[] | string[] | undefined;
34590
+ spiceModel?: SpicemodelElement | undefined;
34531
34591
  }>;
34532
34592
  /**
34533
34593
  * @deprecated Use ChipProps instead.
@@ -34625,7 +34685,7 @@ declare const bugProps: z.ZodObject<{
34625
34685
  displayName: z.ZodOptional<z.ZodString>;
34626
34686
  schSectionName: z.ZodOptional<z.ZodString>;
34627
34687
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
34628
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
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<{
34629
34689
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
34630
34690
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
34631
34691
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -38186,6 +38246,7 @@ declare const bugProps: z.ZodObject<{
38186
38246
  noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
38187
38247
  noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
38188
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>>;
38189
38250
  }, "strip", z.ZodTypeAny, {
38190
38251
  name: string;
38191
38252
  symbol?: SymbolProp | undefined;
@@ -38466,7 +38527,7 @@ declare const bugProps: z.ZodObject<{
38466
38527
  zOffsetFromSurface?: number | undefined;
38467
38528
  showAsTranslucentModel?: boolean | undefined;
38468
38529
  stepUrl?: string | undefined;
38469
- } | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
38530
+ } | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
38470
38531
  kicadFootprintMetadata?: {
38471
38532
  layer?: string | undefined;
38472
38533
  footprintName?: string | undefined;
@@ -38840,6 +38901,7 @@ declare const bugProps: z.ZodObject<{
38840
38901
  }[] | undefined;
38841
38902
  noSchematicRepresentation?: boolean | undefined;
38842
38903
  noConnect?: readonly string[] | string[] | undefined;
38904
+ spiceModel?: SpicemodelElement | undefined;
38843
38905
  }, {
38844
38906
  name: string;
38845
38907
  symbol?: SymbolProp | undefined;
@@ -39122,7 +39184,7 @@ declare const bugProps: z.ZodObject<{
39122
39184
  zOffsetFromSurface?: string | number | undefined;
39123
39185
  showAsTranslucentModel?: boolean | undefined;
39124
39186
  stepUrl?: string | undefined;
39125
- } | react.ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
39187
+ } | ReactElement<any, string | react.JSXElementConstructor<any>> | null | undefined;
39126
39188
  kicadFootprintMetadata?: {
39127
39189
  layer?: string | undefined;
39128
39190
  footprintName?: string | undefined;
@@ -39496,6 +39558,7 @@ declare const bugProps: z.ZodObject<{
39496
39558
  }[] | undefined;
39497
39559
  noSchematicRepresentation?: boolean | undefined;
39498
39560
  noConnect?: readonly string[] | string[] | undefined;
39561
+ spiceModel?: SpicemodelElement | undefined;
39499
39562
  }>;
39500
39563
  type InferredChipProps = z.input<typeof chipProps>;
39501
39564
 
@@ -43153,6 +43216,7 @@ declare const pinoutProps: z.ZodObject<{
43153
43216
  noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
43154
43217
  noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
43155
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>>;
43156
43220
  }, "strip", z.ZodTypeAny, {
43157
43221
  name: string;
43158
43222
  symbol?: SymbolProp | undefined;
@@ -43807,6 +43871,7 @@ declare const pinoutProps: z.ZodObject<{
43807
43871
  }[] | undefined;
43808
43872
  noSchematicRepresentation?: boolean | undefined;
43809
43873
  noConnect?: readonly string[] | string[] | undefined;
43874
+ spiceModel?: SpicemodelElement | undefined;
43810
43875
  }, {
43811
43876
  name: string;
43812
43877
  symbol?: SymbolProp | undefined;
@@ -44463,6 +44528,7 @@ declare const pinoutProps: z.ZodObject<{
44463
44528
  }[] | undefined;
44464
44529
  noSchematicRepresentation?: boolean | undefined;
44465
44530
  noConnect?: readonly string[] | string[] | undefined;
44531
+ spiceModel?: SpicemodelElement | undefined;
44466
44532
  }>;
44467
44533
  interface PinoutProps<PinLabelMap extends PinLabelsProp | string = string> extends ChipProps<PinLabelMap> {
44468
44534
  }
@@ -58060,6 +58126,7 @@ declare const connectorProps: z.ZodObject<{
58060
58126
  noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
58061
58127
  noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
58062
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>>;
58063
58130
  } & {
58064
58131
  standard: z.ZodOptional<z.ZodEnum<["usb_c", "m2"]>>;
58065
58132
  }, "strip", z.ZodTypeAny, {
@@ -58716,6 +58783,7 @@ declare const connectorProps: z.ZodObject<{
58716
58783
  }[] | undefined;
58717
58784
  noSchematicRepresentation?: boolean | undefined;
58718
58785
  noConnect?: readonly string[] | string[] | undefined;
58786
+ spiceModel?: SpicemodelElement | undefined;
58719
58787
  standard?: "usb_c" | "m2" | undefined;
58720
58788
  }, {
58721
58789
  name: string;
@@ -59373,6 +59441,7 @@ declare const connectorProps: z.ZodObject<{
59373
59441
  }[] | undefined;
59374
59442
  noSchematicRepresentation?: boolean | undefined;
59375
59443
  noConnect?: readonly string[] | string[] | undefined;
59444
+ spiceModel?: SpicemodelElement | undefined;
59376
59445
  standard?: "usb_c" | "m2" | undefined;
59377
59446
  }>;
59378
59447
 
@@ -100306,6 +100375,21 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
100306
100375
  }>]>;
100307
100376
  type CutoutPropsInput = z.input<typeof cutoutProps>;
100308
100377
 
100378
+ interface DrcCheckProps {
100379
+ name?: string;
100380
+ checkFn: CustomDrcCheckFn;
100381
+ }
100382
+ declare const drcCheckProps: z.ZodObject<{
100383
+ name: z.ZodOptional<z.ZodString>;
100384
+ checkFn: z.ZodType<CustomDrcCheckFn, z.ZodTypeDef, CustomDrcCheckFn>;
100385
+ }, "strip", z.ZodTypeAny, {
100386
+ checkFn: CustomDrcCheckFn;
100387
+ name?: string | undefined;
100388
+ }, {
100389
+ checkFn: CustomDrcCheckFn;
100390
+ name?: string | undefined;
100391
+ }>;
100392
+
100309
100393
  interface RectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100310
100394
  name?: string;
100311
100395
  shape: "rect";
@@ -118791,6 +118875,7 @@ declare const pushButtonProps: z.ZodObject<{
118791
118875
  noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
118792
118876
  noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
118793
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>>;
118794
118879
  }, "strip", z.ZodTypeAny, {
118795
118880
  name: string;
118796
118881
  symbol?: SymbolProp | undefined;
@@ -119445,6 +119530,7 @@ declare const pushButtonProps: z.ZodObject<{
119445
119530
  }[] | undefined;
119446
119531
  noSchematicRepresentation?: boolean | undefined;
119447
119532
  noConnect?: readonly string[] | string[] | undefined;
119533
+ spiceModel?: SpicemodelElement | undefined;
119448
119534
  }, {
119449
119535
  name: string;
119450
119536
  symbol?: SymbolProp | undefined;
@@ -120101,6 +120187,7 @@ declare const pushButtonProps: z.ZodObject<{
120101
120187
  }[] | undefined;
120102
120188
  noSchematicRepresentation?: boolean | undefined;
120103
120189
  noConnect?: readonly string[] | string[] | undefined;
120190
+ spiceModel?: SpicemodelElement | undefined;
120104
120191
  }>;
120105
120192
 
120106
120193
  type SubcircuitProps = SubcircuitGroupProps;
@@ -125614,7 +125701,7 @@ declare const transistorProps: z.ZodObject<{
125614
125701
  mfn?: string | undefined;
125615
125702
  manufacturerPartNumber?: string | undefined;
125616
125703
  schSectionName?: string | undefined;
125617
- connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
125704
+ connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
125618
125705
  }, {
125619
125706
  type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
125620
125707
  name: string;
@@ -126195,7 +126282,7 @@ declare const transistorProps: z.ZodObject<{
126195
126282
  mfn?: string | undefined;
126196
126283
  manufacturerPartNumber?: string | undefined;
126197
126284
  schSectionName?: string | undefined;
126198
- connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
126285
+ connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
126199
126286
  }>;
126200
126287
  declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
126201
126288
  type TransistorPinLabels = (typeof transistorPins)[number];
@@ -185497,4 +185584,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
185497
185584
  }
185498
185585
  declare const projectConfig: z.ZodType<ProjectConfig>;
185499
185586
 
185500
- export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type 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 Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, 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 };