@tscircuit/core 0.0.807 → 0.0.808

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 +14 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3027,6 +3027,19 @@ var createComponentsFromCircuitJson = ({
3027
3027
  portHints: elm.port_hints
3028
3028
  })
3029
3029
  );
3030
+ } else if (elm.type === "pcb_smtpad" && elm.shape === "pill") {
3031
+ components.push(
3032
+ new SmtPad({
3033
+ shape: "pill",
3034
+ height: elm.height,
3035
+ width: elm.width,
3036
+ radius: elm.radius,
3037
+ portHints: elm.port_hints,
3038
+ pcbX: elm.x,
3039
+ pcbY: elm.y,
3040
+ layer: elm.layer
3041
+ })
3042
+ );
3030
3043
  } else if (elm.type === "pcb_silkscreen_path") {
3031
3044
  components.push(
3032
3045
  new SilkscreenPath({
@@ -17198,7 +17211,7 @@ import { identity as identity6 } from "transformation-matrix";
17198
17211
  var package_default = {
17199
17212
  name: "@tscircuit/core",
17200
17213
  type: "module",
17201
- version: "0.0.806",
17214
+ version: "0.0.807",
17202
17215
  types: "dist/index.d.ts",
17203
17216
  main: "dist/index.js",
17204
17217
  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.807",
4
+ "version": "0.0.808",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",