@tscircuit/core 0.0.505 → 0.0.506
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 +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9955,7 +9955,13 @@ var Crystal = class extends NormalComponent {
|
|
|
9955
9955
|
});
|
|
9956
9956
|
}
|
|
9957
9957
|
_getSchematicSymbolDisplayValue() {
|
|
9958
|
-
|
|
9958
|
+
const freqDisplay = `${formatSiUnit6(this._parsedProps.frequency)}Hz`;
|
|
9959
|
+
if (this._parsedProps.loadCapacitance) {
|
|
9960
|
+
return `${freqDisplay} / ${formatSiUnit6(
|
|
9961
|
+
this._parsedProps.loadCapacitance
|
|
9962
|
+
)}F`;
|
|
9963
|
+
}
|
|
9964
|
+
return freqDisplay;
|
|
9959
9965
|
}
|
|
9960
9966
|
doInitialSourceRender() {
|
|
9961
9967
|
const { db } = this.root;
|
|
@@ -10417,7 +10423,7 @@ import { identity as identity4 } from "transformation-matrix";
|
|
|
10417
10423
|
var package_default = {
|
|
10418
10424
|
name: "@tscircuit/core",
|
|
10419
10425
|
type: "module",
|
|
10420
|
-
version: "0.0.
|
|
10426
|
+
version: "0.0.505",
|
|
10421
10427
|
types: "dist/index.d.ts",
|
|
10422
10428
|
main: "dist/index.js",
|
|
10423
10429
|
module: "dist/index.js",
|