@tscircuit/core 0.0.1085 → 0.0.1086

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 (2) hide show
  1. package/dist/index.js +19 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10506,6 +10506,15 @@ var NormalComponent3 = class extends PrimitiveComponent2 {
10506
10506
  const text = db.schematic_text.get(child.schematic_text_id);
10507
10507
  if (text) schematicElements.push(text);
10508
10508
  }
10509
+ if (child.isSchematicPrimitive && child.componentName === "SchematicPath") {
10510
+ const pathIds = child.schematic_path_ids;
10511
+ if (pathIds) {
10512
+ for (const pathId of pathIds) {
10513
+ const path = db.schematic_path.get(pathId);
10514
+ if (path) schematicElements.push(path);
10515
+ }
10516
+ }
10517
+ }
10509
10518
  if (child.children && child.children.length > 0) {
10510
10519
  collectSchematicPrimitives(child.children);
10511
10520
  }
@@ -14360,6 +14369,15 @@ function updateSchematicPrimitivesForLayoutShift({
14360
14369
  arc.center.x += deltaX;
14361
14370
  arc.center.y += deltaY;
14362
14371
  }
14372
+ const paths = db.schematic_path.list({
14373
+ schematic_component_id: schematicComponentId
14374
+ });
14375
+ for (const path of paths) {
14376
+ for (const point6 of path.points) {
14377
+ point6.x += deltaX;
14378
+ point6.y += deltaY;
14379
+ }
14380
+ }
14363
14381
  }
14364
14382
 
14365
14383
  // lib/components/primitive-components/Group/Group_doInitialSchematicLayoutGrid.ts
@@ -18176,7 +18194,7 @@ import { identity as identity5 } from "transformation-matrix";
18176
18194
  var package_default = {
18177
18195
  name: "@tscircuit/core",
18178
18196
  type: "module",
18179
- version: "0.0.1084",
18197
+ version: "0.0.1085",
18180
18198
  types: "dist/index.d.ts",
18181
18199
  main: "dist/index.js",
18182
18200
  module: "dist/index.js",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.1085",
4
+ "version": "0.0.1086",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",