@tscircuit/core 0.0.552 → 0.0.553
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.js +5 -24
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7298,28 +7298,9 @@ var normalizePinLabels = (inputPinLabels) => {
|
|
|
7298
7298
|
};
|
|
7299
7299
|
|
|
7300
7300
|
// lib/components/primitive-components/Group/Group_doInitialSchematicLayoutMatchAdapt.ts
|
|
7301
|
-
import "@tscircuit/schematic-match-adapt";
|
|
7302
|
-
import "@tscircuit/schematic-match-adapt";
|
|
7303
|
-
|
|
7304
|
-
// lib/utils/schematic/deriveSourceTraceIdFromMatchAdaptPath.ts
|
|
7305
|
-
import {
|
|
7306
|
-
getRefKey,
|
|
7307
|
-
parseRefKey
|
|
7308
|
-
} from "@tscircuit/schematic-match-adapt";
|
|
7309
|
-
|
|
7310
|
-
// lib/components/primitive-components/Group/Group_doInitialSchematicLayoutMatchAdapt.ts
|
|
7311
|
-
import "@tscircuit/circuit-json-util";
|
|
7312
|
-
import "circuit-json-to-connectivity-map";
|
|
7313
7301
|
import { corpusNoNetLabel } from "@tscircuit/schematic-corpus";
|
|
7314
|
-
import {
|
|
7315
|
-
|
|
7316
|
-
} from "circuit-json-to-bpc";
|
|
7317
|
-
import {
|
|
7318
|
-
layoutSchematicGraph,
|
|
7319
|
-
getGraphicsForBpcGraph
|
|
7320
|
-
} from "bpc-graph";
|
|
7321
|
-
import "graphics-debug";
|
|
7322
|
-
import "circuit-to-svg";
|
|
7302
|
+
import { convertCircuitJsonToBpc } from "circuit-json-to-bpc";
|
|
7303
|
+
import { layoutSchematicGraph, getGraphicsForBpcGraph } from "bpc-graph";
|
|
7323
7304
|
import Debug5 from "debug";
|
|
7324
7305
|
var debug4 = Debug5("Group_doInitialSchematicLayoutMatchAdapt");
|
|
7325
7306
|
function Group_doInitialSchematicLayoutMatchAdapt(group) {
|
|
@@ -7420,12 +7401,12 @@ function Group_doInitialSchematicLayoutMatchAdapt(group) {
|
|
|
7420
7401
|
}
|
|
7421
7402
|
|
|
7422
7403
|
// lib/components/primitive-components/Group/Group_doInitialSourceAddConnectivityMapKey.ts
|
|
7423
|
-
import { ConnectivityMap as
|
|
7404
|
+
import { ConnectivityMap as ConnectivityMap2 } from "circuit-json-to-connectivity-map";
|
|
7424
7405
|
function Group_doInitialSourceAddConnectivityMapKey(group) {
|
|
7425
7406
|
if (!group.isSubcircuit) return;
|
|
7426
7407
|
const { db } = group.root;
|
|
7427
7408
|
const traces = group.selectAll("trace");
|
|
7428
|
-
const connMap = new
|
|
7409
|
+
const connMap = new ConnectivityMap2({});
|
|
7429
7410
|
connMap.addConnections(
|
|
7430
7411
|
traces.map((t) => {
|
|
7431
7412
|
const source_trace = db.source_trace.get(
|
|
@@ -10714,7 +10695,7 @@ import { identity as identity5 } from "transformation-matrix";
|
|
|
10714
10695
|
var package_default = {
|
|
10715
10696
|
name: "@tscircuit/core",
|
|
10716
10697
|
type: "module",
|
|
10717
|
-
version: "0.0.
|
|
10698
|
+
version: "0.0.552",
|
|
10718
10699
|
types: "dist/index.d.ts",
|
|
10719
10700
|
main: "dist/index.js",
|
|
10720
10701
|
module: "dist/index.js",
|