@tscircuit/core 0.0.672 → 0.0.674
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 +6 -5
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -8711,9 +8711,10 @@ import { length } from "circuit-json";
|
|
|
8711
8711
|
function Group_doInitialSchematicLayoutGrid(group) {
|
|
8712
8712
|
const { db } = group.root;
|
|
8713
8713
|
const props = group._parsedProps;
|
|
8714
|
-
const schematicChildren = group.children.filter(
|
|
8715
|
-
|
|
8716
|
-
|
|
8714
|
+
const schematicChildren = group.children.filter((child) => {
|
|
8715
|
+
const isExplicitlyPositioned = child._parsedProps?.schX !== void 0 || child._parsedProps?.schY !== void 0;
|
|
8716
|
+
return child.schematic_component_id && !isExplicitlyPositioned;
|
|
8717
|
+
});
|
|
8717
8718
|
if (schematicChildren.length === 0) return;
|
|
8718
8719
|
let maxCellWidth = 0;
|
|
8719
8720
|
let maxCellHeight = 0;
|
|
@@ -13880,7 +13881,7 @@ import { identity as identity5 } from "transformation-matrix";
|
|
|
13880
13881
|
var package_default = {
|
|
13881
13882
|
name: "@tscircuit/core",
|
|
13882
13883
|
type: "module",
|
|
13883
|
-
version: "0.0.
|
|
13884
|
+
version: "0.0.673",
|
|
13884
13885
|
types: "dist/index.d.ts",
|
|
13885
13886
|
main: "dist/index.js",
|
|
13886
13887
|
module: "dist/index.js",
|
|
@@ -13911,7 +13912,7 @@ var package_default = {
|
|
|
13911
13912
|
"@biomejs/biome": "^1.8.3",
|
|
13912
13913
|
"@tscircuit/capacity-autorouter": "^0.0.100",
|
|
13913
13914
|
"@tscircuit/checks": "^0.0.71",
|
|
13914
|
-
"@tscircuit/circuit-json-util": "^0.0.
|
|
13915
|
+
"@tscircuit/circuit-json-util": "^0.0.67",
|
|
13915
13916
|
"@tscircuit/footprinter": "^0.0.208",
|
|
13916
13917
|
"@tscircuit/import-snippet": "^0.0.4",
|
|
13917
13918
|
"@tscircuit/infgrid-ijump-astar": "^0.0.33",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tscircuit/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.674",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@biomejs/biome": "^1.8.3",
|
|
33
33
|
"@tscircuit/capacity-autorouter": "^0.0.100",
|
|
34
34
|
"@tscircuit/checks": "^0.0.71",
|
|
35
|
-
"@tscircuit/circuit-json-util": "^0.0.
|
|
35
|
+
"@tscircuit/circuit-json-util": "^0.0.67",
|
|
36
36
|
"@tscircuit/footprinter": "^0.0.208",
|
|
37
37
|
"@tscircuit/import-snippet": "^0.0.4",
|
|
38
38
|
"@tscircuit/infgrid-ijump-astar": "^0.0.33",
|