@tscircuit/core 0.0.1066 → 0.0.1068
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/dist/index.d.ts +4 -0
- package/dist/index.js +6058 -6033
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -509,6 +509,9 @@ declare abstract class PrimitiveComponent<ZodProps extends ZodType = any> extend
|
|
|
509
509
|
allowComponentVariables?: boolean;
|
|
510
510
|
componentVariables?: Record<string, number>;
|
|
511
511
|
}): number;
|
|
512
|
+
private _shouldAllowBoardVariablesByDefault;
|
|
513
|
+
private _isInsideFootprint;
|
|
514
|
+
private _isInsideNonBoardSubcircuit;
|
|
512
515
|
resolvePcbCoordinate(rawValue: unknown, axis: "pcbX" | "pcbY", options?: {
|
|
513
516
|
allowBoardVariables?: boolean;
|
|
514
517
|
allowComponentVariables?: boolean;
|
|
@@ -1823,6 +1826,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
1823
1826
|
pcb_board_id: string | null;
|
|
1824
1827
|
source_board_id: string | null;
|
|
1825
1828
|
_drcChecksComplete: boolean;
|
|
1829
|
+
_drcChecksInProgress: boolean;
|
|
1826
1830
|
_connectedSchematicPortPairs: Set<string>;
|
|
1827
1831
|
_panelPositionOffset: {
|
|
1828
1832
|
x: number;
|