@tscircuit/runframe 0.0.1803 → 0.0.1804
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.
|
@@ -1730,7 +1730,7 @@ var useErrorTelemetry = ({
|
|
|
1730
1730
|
};
|
|
1731
1731
|
|
|
1732
1732
|
// package.json
|
|
1733
|
-
var version = "0.0.
|
|
1733
|
+
var version = "0.0.1803";
|
|
1734
1734
|
var package_default = {
|
|
1735
1735
|
name: "@tscircuit/runframe",
|
|
1736
1736
|
main: "dist/preview.js",
|
|
@@ -3069,7 +3069,7 @@ var searchKicadFootprints = async (query, limit = 20) => {
|
|
|
3069
3069
|
return fuse.search(query).slice(0, limit).map((result) => result.item);
|
|
3070
3070
|
};
|
|
3071
3071
|
var mapKicadFootprintToSummary = (footprintPath) => {
|
|
3072
|
-
const cleanedFootprint = footprintPath.replace(".pretty/", "
|
|
3072
|
+
const cleanedFootprint = footprintPath.replace(".pretty/", "/").replace(".kicad_mod", "");
|
|
3073
3073
|
const footprintString = `kicad:${cleanedFootprint}`;
|
|
3074
3074
|
return {
|
|
3075
3075
|
path: footprintPath,
|
package/dist/preview.js
CHANGED
package/dist/runner.js
CHANGED
|
@@ -34,7 +34,7 @@ import {
|
|
|
34
34
|
useRunFrameStore,
|
|
35
35
|
useRunnerStore,
|
|
36
36
|
useStyles
|
|
37
|
-
} from "./chunk-
|
|
37
|
+
} from "./chunk-L5EVZZE3.js";
|
|
38
38
|
|
|
39
39
|
// lib/components/RunFrame/RunFrame.tsx
|
|
40
40
|
import { createCircuitWebWorker } from "@tscircuit/eval/worker";
|
|
@@ -2290,7 +2290,7 @@ var searchKicadFootprints = async (query, limit = 20) => {
|
|
|
2290
2290
|
return fuse.search(query).slice(0, limit).map((r) => r.item);
|
|
2291
2291
|
};
|
|
2292
2292
|
var mapKicadFootprintToSearchResult = (footprintPath) => {
|
|
2293
|
-
const cleanedFootprint = footprintPath.replace(".pretty/", "
|
|
2293
|
+
const cleanedFootprint = footprintPath.replace(".pretty/", "/").replace(".kicad_mod", "");
|
|
2294
2294
|
const footprintString = `kicad:${cleanedFootprint}`;
|
|
2295
2295
|
return {
|
|
2296
2296
|
id: `kicad-${footprintPath}`,
|