@tscircuit/core 0.0.436 → 0.0.437
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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5809,6 +5809,7 @@ var NormalComponent = class extends PrimitiveComponent2 {
|
|
|
5809
5809
|
});
|
|
5810
5810
|
}
|
|
5811
5811
|
async _getSupplierPartNumbers(partsEngine, source_component, footprinterString) {
|
|
5812
|
+
if (this.props.doNotPlace) return {};
|
|
5812
5813
|
const cacheEngine = this.root?.platform?.localCacheEngine;
|
|
5813
5814
|
const cacheKey = this._getPartsEngineCacheKey(
|
|
5814
5815
|
source_component,
|
|
@@ -5839,6 +5840,7 @@ var NormalComponent = class extends PrimitiveComponent2 {
|
|
|
5839
5840
|
return supplierPartNumbers;
|
|
5840
5841
|
}
|
|
5841
5842
|
doInitialPartsEngineRender() {
|
|
5843
|
+
if (this.props.doNotPlace) return;
|
|
5842
5844
|
const partsEngine = this.getInheritedProperty("partsEngine");
|
|
5843
5845
|
if (!partsEngine) return;
|
|
5844
5846
|
const { db } = this.root;
|
|
@@ -5866,6 +5868,7 @@ var NormalComponent = class extends PrimitiveComponent2 {
|
|
|
5866
5868
|
});
|
|
5867
5869
|
}
|
|
5868
5870
|
updatePartsEngineRender() {
|
|
5871
|
+
if (this.props.doNotPlace) return;
|
|
5869
5872
|
const { db } = this.root;
|
|
5870
5873
|
const source_component = db.source_component.get(this.source_component_id);
|
|
5871
5874
|
if (!source_component) return;
|
|
@@ -8822,7 +8825,7 @@ import { identity as identity4 } from "transformation-matrix";
|
|
|
8822
8825
|
var package_default = {
|
|
8823
8826
|
name: "@tscircuit/core",
|
|
8824
8827
|
type: "module",
|
|
8825
|
-
version: "0.0.
|
|
8828
|
+
version: "0.0.436",
|
|
8826
8829
|
types: "dist/index.d.ts",
|
|
8827
8830
|
main: "dist/index.js",
|
|
8828
8831
|
module: "dist/index.js",
|