@tscircuit/core 0.0.246 → 0.0.247
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 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -5062,7 +5062,8 @@ var Capacitor = class extends NormalComponent {
|
|
|
5062
5062
|
// @ts-ignore
|
|
5063
5063
|
manufacturer_part_number: props.manufacturerPartNumber ?? props.mfn,
|
|
5064
5064
|
supplier_part_numbers: props.supplierPartNumbers,
|
|
5065
|
-
capacitance: props.capacitance
|
|
5065
|
+
capacitance: props.capacitance,
|
|
5066
|
+
display_capacitance: this._getSchematicSymbolDisplayValue()
|
|
5066
5067
|
});
|
|
5067
5068
|
this.source_component_id = source_component.source_component_id;
|
|
5068
5069
|
}
|
|
@@ -5279,7 +5280,8 @@ var Resistor = class extends NormalComponent {
|
|
|
5279
5280
|
// @ts-ignore
|
|
5280
5281
|
manufacturer_part_number: props.manufacturerPartNumber ?? props.mfn,
|
|
5281
5282
|
supplier_part_numbers: props.supplierPartNumbers,
|
|
5282
|
-
resistance: props.resistance
|
|
5283
|
+
resistance: props.resistance,
|
|
5284
|
+
display_resistance: this._getSchematicSymbolDisplayValue()
|
|
5283
5285
|
});
|
|
5284
5286
|
this.source_component_id = source_component.source_component_id;
|
|
5285
5287
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tscircuit/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.247",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@tscircuit/props": "^0.0.123",
|
|
47
47
|
"@tscircuit/schematic-autolayout": "^0.0.6",
|
|
48
48
|
"@tscircuit/soup-util": "^0.0.41",
|
|
49
|
-
"circuit-json": "^0.0.
|
|
49
|
+
"circuit-json": "^0.0.124",
|
|
50
50
|
"circuit-json-to-connectivity-map": "^0.0.17",
|
|
51
51
|
"format-si-unit": "^0.0.2",
|
|
52
52
|
"nanoid": "^5.0.7",
|