@tscircuit/core 0.0.381 → 0.0.382

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +3 -0
  2. package/dist/index.js +2513 -2483
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -533,6 +533,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
533
533
  schematic_trace_id: string | null;
534
534
  _portsRoutedOnPcb: Port[];
535
535
  subcircuit_connectivity_map_key: string | null;
536
+ _traceConnectionHash: string | null;
536
537
  constructor(props: z.input<typeof traceProps>);
537
538
  get config(): {
538
539
  zodProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
@@ -766,6 +767,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
766
767
  */
767
768
  _isExplicitlyConnectedToNet(net: Net): boolean;
768
769
  doInitialCreateNetsFromProps(): void;
770
+ _computeTraceConnectionHash(): string | null;
769
771
  doInitialSourceTraceRender(): void;
770
772
  _insertErrorIfTraceIsOutsideBoard(mergedRoute: PcbTraceRoutePoint[], ports: Port[]): void;
771
773
  doInitialPcbTraceRender(): void;
@@ -1052,6 +1054,7 @@ declare class Group<Props extends z.ZodType<any, any, any> = typeof groupProps>
1052
1054
  declare class Board extends Group<typeof boardProps> {
1053
1055
  pcb_board_id: string | null;
1054
1056
  _drcChecksComplete: boolean;
1057
+ _connectedSchematicPortPairs: Set<string>;
1055
1058
  get isSubcircuit(): boolean;
1056
1059
  get config(): {
1057
1060
  componentName: string;