@tscircuit/core 0.0.1354 → 0.0.1356
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.d.ts +42 -56
- package/dist/index.js +63 -29
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -481,6 +481,8 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
481
481
|
get config(): {
|
|
482
482
|
zodProps: z.ZodUnion<[z.ZodObject<{
|
|
483
483
|
key: z.ZodOptional<z.ZodString>;
|
|
484
|
+
name: z.ZodOptional<z.ZodString>;
|
|
485
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
484
486
|
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
485
487
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
486
488
|
schematicRouteHints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -654,7 +656,9 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
654
656
|
})[];
|
|
655
657
|
key?: string | undefined;
|
|
656
658
|
thickness?: number | undefined;
|
|
659
|
+
name?: string | undefined;
|
|
657
660
|
highlightColor?: string | undefined;
|
|
661
|
+
displayName?: string | undefined;
|
|
658
662
|
width?: number | undefined;
|
|
659
663
|
maxLength?: number | undefined;
|
|
660
664
|
connectsTo?: string | string[] | undefined;
|
|
@@ -694,7 +698,9 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
694
698
|
})[];
|
|
695
699
|
key?: string | undefined;
|
|
696
700
|
thickness?: string | number | undefined;
|
|
701
|
+
name?: string | undefined;
|
|
697
702
|
highlightColor?: string | undefined;
|
|
703
|
+
displayName?: string | undefined;
|
|
698
704
|
width?: string | number | undefined;
|
|
699
705
|
maxLength?: string | number | undefined;
|
|
700
706
|
connectsTo?: string | string[] | undefined;
|
|
@@ -740,6 +746,8 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
740
746
|
schStroke?: string | undefined;
|
|
741
747
|
}>, z.ZodObject<{
|
|
742
748
|
key: z.ZodOptional<z.ZodString>;
|
|
749
|
+
name: z.ZodOptional<z.ZodString>;
|
|
750
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
743
751
|
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
744
752
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
745
753
|
schematicRouteHints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -921,7 +929,9 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
921
929
|
};
|
|
922
930
|
key?: string | undefined;
|
|
923
931
|
thickness?: number | undefined;
|
|
932
|
+
name?: string | undefined;
|
|
924
933
|
highlightColor?: string | undefined;
|
|
934
|
+
displayName?: string | undefined;
|
|
925
935
|
width?: number | undefined;
|
|
926
936
|
maxLength?: number | undefined;
|
|
927
937
|
connectsTo?: string | string[] | undefined;
|
|
@@ -964,7 +974,9 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
964
974
|
};
|
|
965
975
|
key?: string | undefined;
|
|
966
976
|
thickness?: string | number | undefined;
|
|
977
|
+
name?: string | undefined;
|
|
967
978
|
highlightColor?: string | undefined;
|
|
979
|
+
displayName?: string | undefined;
|
|
968
980
|
width?: string | number | undefined;
|
|
969
981
|
maxLength?: string | number | undefined;
|
|
970
982
|
connectsTo?: string | string[] | undefined;
|
|
@@ -1010,6 +1022,8 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
1010
1022
|
schStroke?: string | undefined;
|
|
1011
1023
|
}>, z.ZodObject<{
|
|
1012
1024
|
key: z.ZodOptional<z.ZodString>;
|
|
1025
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1026
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1013
1027
|
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1014
1028
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1015
1029
|
schematicRouteHints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1191,7 +1205,9 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
1191
1205
|
};
|
|
1192
1206
|
key?: string | undefined;
|
|
1193
1207
|
thickness?: number | undefined;
|
|
1208
|
+
name?: string | undefined;
|
|
1194
1209
|
highlightColor?: string | undefined;
|
|
1210
|
+
displayName?: string | undefined;
|
|
1195
1211
|
width?: number | undefined;
|
|
1196
1212
|
maxLength?: number | undefined;
|
|
1197
1213
|
connectsTo?: string | string[] | undefined;
|
|
@@ -1234,7 +1250,9 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
1234
1250
|
};
|
|
1235
1251
|
key?: string | undefined;
|
|
1236
1252
|
thickness?: string | number | undefined;
|
|
1253
|
+
name?: string | undefined;
|
|
1237
1254
|
highlightColor?: string | undefined;
|
|
1255
|
+
displayName?: string | undefined;
|
|
1238
1256
|
width?: string | number | undefined;
|
|
1239
1257
|
maxLength?: string | number | undefined;
|
|
1240
1258
|
connectsTo?: string | string[] | undefined;
|
|
@@ -70018,22 +70036,10 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
|
|
|
70018
70036
|
} & {
|
|
70019
70037
|
connections: zod.ZodEffects<zod.ZodRecord<zod.ZodEnum<["pin1", "pin2", "pos", "neg"]>, zod.ZodUnion<[zod.ZodUnion<[zod.ZodString, zod.ZodReadonly<zod.ZodArray<zod.ZodString, "many">>]>, zod.ZodArray<zod.ZodString, "many">]>>, Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>, Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>>;
|
|
70020
70038
|
color: zod.ZodOptional<zod.ZodString>;
|
|
70021
|
-
|
|
70022
|
-
|
|
70023
|
-
|
|
70024
|
-
|
|
70025
|
-
unitsPerDiv: zod.ZodOptional<zod.ZodNumber>;
|
|
70026
|
-
}, "strip", zod.ZodTypeAny, {
|
|
70027
|
-
center?: number | undefined;
|
|
70028
|
-
label?: string | undefined;
|
|
70029
|
-
offsetDivs?: number | undefined;
|
|
70030
|
-
unitsPerDiv?: number | undefined;
|
|
70031
|
-
}, {
|
|
70032
|
-
center?: number | undefined;
|
|
70033
|
-
label?: string | undefined;
|
|
70034
|
-
offsetDivs?: number | undefined;
|
|
70035
|
-
unitsPerDiv?: number | undefined;
|
|
70036
|
-
}>>;
|
|
70039
|
+
graphDisplayName: zod.ZodOptional<zod.ZodString>;
|
|
70040
|
+
graphCenter: zod.ZodOptional<zod.ZodNumber>;
|
|
70041
|
+
graphOffsetDivs: zod.ZodOptional<zod.ZodNumber>;
|
|
70042
|
+
graphUnitsPerDiv: zod.ZodOptional<zod.ZodNumber>;
|
|
70037
70043
|
}, "strip", zod.ZodTypeAny, {
|
|
70038
70044
|
name: string;
|
|
70039
70045
|
connections: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>;
|
|
@@ -70613,12 +70619,10 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
|
|
|
70613
70619
|
manufacturerPartNumber?: string | undefined;
|
|
70614
70620
|
schSectionName?: string | undefined;
|
|
70615
70621
|
color?: string | undefined;
|
|
70616
|
-
|
|
70617
|
-
|
|
70618
|
-
|
|
70619
|
-
|
|
70620
|
-
unitsPerDiv?: number | undefined;
|
|
70621
|
-
} | undefined;
|
|
70622
|
+
graphDisplayName?: string | undefined;
|
|
70623
|
+
graphCenter?: number | undefined;
|
|
70624
|
+
graphOffsetDivs?: number | undefined;
|
|
70625
|
+
graphUnitsPerDiv?: number | undefined;
|
|
70622
70626
|
}, {
|
|
70623
70627
|
name: string;
|
|
70624
70628
|
connections: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>;
|
|
@@ -71200,12 +71204,10 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
|
|
|
71200
71204
|
manufacturerPartNumber?: string | undefined;
|
|
71201
71205
|
schSectionName?: string | undefined;
|
|
71202
71206
|
color?: string | undefined;
|
|
71203
|
-
|
|
71204
|
-
|
|
71205
|
-
|
|
71206
|
-
|
|
71207
|
-
unitsPerDiv?: number | undefined;
|
|
71208
|
-
} | undefined;
|
|
71207
|
+
graphDisplayName?: string | undefined;
|
|
71208
|
+
graphCenter?: number | undefined;
|
|
71209
|
+
graphOffsetDivs?: number | undefined;
|
|
71210
|
+
graphUnitsPerDiv?: number | undefined;
|
|
71209
71211
|
}>;
|
|
71210
71212
|
sourceFtype: Ftype;
|
|
71211
71213
|
};
|
|
@@ -156239,22 +156241,10 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
156239
156241
|
connectsTo: z.ZodString;
|
|
156240
156242
|
referenceTo: z.ZodOptional<z.ZodString>;
|
|
156241
156243
|
color: z.ZodOptional<z.ZodString>;
|
|
156242
|
-
|
|
156243
|
-
|
|
156244
|
-
|
|
156245
|
-
|
|
156246
|
-
unitsPerDiv: z.ZodOptional<z.ZodNumber>;
|
|
156247
|
-
}, "strip", z.ZodTypeAny, {
|
|
156248
|
-
center?: number | undefined;
|
|
156249
|
-
label?: string | undefined;
|
|
156250
|
-
offsetDivs?: number | undefined;
|
|
156251
|
-
unitsPerDiv?: number | undefined;
|
|
156252
|
-
}, {
|
|
156253
|
-
center?: number | undefined;
|
|
156254
|
-
label?: string | undefined;
|
|
156255
|
-
offsetDivs?: number | undefined;
|
|
156256
|
-
unitsPerDiv?: number | undefined;
|
|
156257
|
-
}>>;
|
|
156244
|
+
graphDisplayName: z.ZodOptional<z.ZodString>;
|
|
156245
|
+
graphCenter: z.ZodOptional<z.ZodNumber>;
|
|
156246
|
+
graphOffsetDivs: z.ZodOptional<z.ZodNumber>;
|
|
156247
|
+
graphUnitsPerDiv: z.ZodOptional<z.ZodNumber>;
|
|
156258
156248
|
}, "strip", z.ZodTypeAny, {
|
|
156259
156249
|
connectsTo: string;
|
|
156260
156250
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
@@ -156835,12 +156825,10 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
156835
156825
|
schSectionName?: string | undefined;
|
|
156836
156826
|
color?: string | undefined;
|
|
156837
156827
|
referenceTo?: string | undefined;
|
|
156838
|
-
|
|
156839
|
-
|
|
156840
|
-
|
|
156841
|
-
|
|
156842
|
-
unitsPerDiv?: number | undefined;
|
|
156843
|
-
} | undefined;
|
|
156828
|
+
graphDisplayName?: string | undefined;
|
|
156829
|
+
graphCenter?: number | undefined;
|
|
156830
|
+
graphOffsetDivs?: number | undefined;
|
|
156831
|
+
graphUnitsPerDiv?: number | undefined;
|
|
156844
156832
|
}, {
|
|
156845
156833
|
connectsTo: string;
|
|
156846
156834
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
@@ -157423,12 +157411,10 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
157423
157411
|
schSectionName?: string | undefined;
|
|
157424
157412
|
color?: string | undefined;
|
|
157425
157413
|
referenceTo?: string | undefined;
|
|
157426
|
-
|
|
157427
|
-
|
|
157428
|
-
|
|
157429
|
-
|
|
157430
|
-
unitsPerDiv?: number | undefined;
|
|
157431
|
-
} | undefined;
|
|
157414
|
+
graphDisplayName?: string | undefined;
|
|
157415
|
+
graphCenter?: number | undefined;
|
|
157416
|
+
graphOffsetDivs?: number | undefined;
|
|
157417
|
+
graphUnitsPerDiv?: number | undefined;
|
|
157432
157418
|
}>;
|
|
157433
157419
|
};
|
|
157434
157420
|
doInitialSimulationRender(): void;
|
package/dist/index.js
CHANGED
|
@@ -18096,7 +18096,15 @@ import Debug8 from "debug";
|
|
|
18096
18096
|
import { getBoundFromCenteredRect } from "@tscircuit/math-utils";
|
|
18097
18097
|
import { symbols as symbols3 } from "schematic-symbols";
|
|
18098
18098
|
var SYMBOL_TEXT_FONT_SIZE = 0.18;
|
|
18099
|
-
var TEXT_BOX_ENABLED_FTYPES = /* @__PURE__ */ new Set([
|
|
18099
|
+
var TEXT_BOX_ENABLED_FTYPES = /* @__PURE__ */ new Set([
|
|
18100
|
+
"simple_resistor",
|
|
18101
|
+
"simple_capacitor",
|
|
18102
|
+
"simple_inductor",
|
|
18103
|
+
"simple_crystal",
|
|
18104
|
+
"simple_resonator",
|
|
18105
|
+
"simple_potentiometer",
|
|
18106
|
+
"simple_fuse"
|
|
18107
|
+
]);
|
|
18100
18108
|
function getTextBounds({
|
|
18101
18109
|
text,
|
|
18102
18110
|
position,
|
|
@@ -18209,19 +18217,28 @@ function getSchematicComponentWithTextBounds(db, schematicComponent) {
|
|
|
18209
18217
|
const boxBounds = getSymbolBoxBounds(schematicComponent);
|
|
18210
18218
|
const isVertical = schematicComponent.size.height > schematicComponent.size.width;
|
|
18211
18219
|
if (isVertical) return textBounds;
|
|
18212
|
-
const
|
|
18213
|
-
|
|
18214
|
-
|
|
18215
|
-
);
|
|
18216
|
-
|
|
18217
|
-
|
|
18218
|
-
|
|
18219
|
-
|
|
18220
|
-
|
|
18221
|
-
|
|
18222
|
-
|
|
18223
|
-
|
|
18224
|
-
|
|
18220
|
+
const padLeft = Math.max(0, boxBounds.minX - textBounds.minX);
|
|
18221
|
+
const padRight = Math.max(0, textBounds.maxX - boxBounds.maxX);
|
|
18222
|
+
const padTop = Math.max(0, textBounds.maxY - boxBounds.maxY);
|
|
18223
|
+
const padBottom = Math.max(0, boxBounds.minY - textBounds.minY);
|
|
18224
|
+
let left = padLeft;
|
|
18225
|
+
let right = padRight;
|
|
18226
|
+
if (padLeft > 0 && padRight > 0) {
|
|
18227
|
+
left = Math.max(padLeft, padRight);
|
|
18228
|
+
right = left;
|
|
18229
|
+
}
|
|
18230
|
+
let top = padTop;
|
|
18231
|
+
let bottom = padBottom;
|
|
18232
|
+
if (padTop > 0 && padBottom > 0) {
|
|
18233
|
+
top = Math.max(padTop, padBottom);
|
|
18234
|
+
bottom = top;
|
|
18235
|
+
}
|
|
18236
|
+
return {
|
|
18237
|
+
minX: boxBounds.minX - left,
|
|
18238
|
+
maxX: boxBounds.maxX + right,
|
|
18239
|
+
minY: boxBounds.minY - bottom,
|
|
18240
|
+
maxY: boxBounds.maxY + top
|
|
18241
|
+
};
|
|
18225
18242
|
}
|
|
18226
18243
|
|
|
18227
18244
|
// lib/components/primitive-components/Group/applySchematicMatchPackLayoutToTree.ts
|
|
@@ -24214,7 +24231,7 @@ import { identity as identity5 } from "transformation-matrix";
|
|
|
24214
24231
|
var package_default = {
|
|
24215
24232
|
name: "@tscircuit/core",
|
|
24216
24233
|
type: "module",
|
|
24217
|
-
version: "0.0.
|
|
24234
|
+
version: "0.0.1355",
|
|
24218
24235
|
types: "dist/index.d.ts",
|
|
24219
24236
|
main: "dist/index.js",
|
|
24220
24237
|
module: "dist/index.js",
|
|
@@ -24262,7 +24279,7 @@ var package_default = {
|
|
|
24262
24279
|
"@tscircuit/matchpack": "",
|
|
24263
24280
|
"@tscircuit/math-utils": "^0.0.36",
|
|
24264
24281
|
"@tscircuit/miniflex": "^0.0.4",
|
|
24265
|
-
"@tscircuit/props": "^0.0.
|
|
24282
|
+
"@tscircuit/props": "^0.0.555",
|
|
24266
24283
|
"@tscircuit/ngspice-spice-engine": "^0.0.18",
|
|
24267
24284
|
"@tscircuit/schematic-match-adapt": "^0.0.18",
|
|
24268
24285
|
"@tscircuit/solver-utils": "^0.0.16",
|
|
@@ -26948,7 +26965,7 @@ var Ammeter = class extends NormalComponent3 {
|
|
|
26948
26965
|
}
|
|
26949
26966
|
doInitialSourceRender() {
|
|
26950
26967
|
const { db } = this.root;
|
|
26951
|
-
const { supplierPartNumbers, displayName
|
|
26968
|
+
const { supplierPartNumbers, displayName } = this._parsedProps;
|
|
26952
26969
|
const source_component = db.source_component.insert({
|
|
26953
26970
|
ftype: "simple_ammeter",
|
|
26954
26971
|
name: this.name,
|
|
@@ -26959,7 +26976,13 @@ var Ammeter = class extends NormalComponent3 {
|
|
|
26959
26976
|
}
|
|
26960
26977
|
doInitialSimulationRender() {
|
|
26961
26978
|
const { db } = this.root;
|
|
26962
|
-
const {
|
|
26979
|
+
const {
|
|
26980
|
+
color,
|
|
26981
|
+
graphDisplayName,
|
|
26982
|
+
graphCenter,
|
|
26983
|
+
graphOffsetDivs,
|
|
26984
|
+
graphUnitsPerDiv
|
|
26985
|
+
} = this._parsedProps;
|
|
26963
26986
|
const posPort = this.portMap.pos;
|
|
26964
26987
|
const negPort = this.portMap.neg;
|
|
26965
26988
|
const { simulation_current_probe_id } = db.simulation_current_probe.insert({
|
|
@@ -26971,14 +26994,15 @@ var Ammeter = class extends NormalComponent3 {
|
|
|
26971
26994
|
subcircuit_id: this.getSubcircuit()?.subcircuit_id ?? void 0,
|
|
26972
26995
|
color
|
|
26973
26996
|
});
|
|
26974
|
-
|
|
26997
|
+
const hasGraphDisplayProps = graphDisplayName !== void 0 || graphCenter !== void 0 || graphOffsetDivs !== void 0 || graphUnitsPerDiv !== void 0;
|
|
26998
|
+
if (hasGraphDisplayProps) {
|
|
26975
26999
|
db.simulation_oscilloscope_trace.insert({
|
|
26976
27000
|
simulation_current_probe_id,
|
|
26977
|
-
display_name:
|
|
27001
|
+
display_name: graphDisplayName,
|
|
26978
27002
|
color,
|
|
26979
|
-
display_center_value:
|
|
26980
|
-
display_center_offset_divs:
|
|
26981
|
-
amps_per_div:
|
|
27003
|
+
display_center_value: graphCenter,
|
|
27004
|
+
display_center_offset_divs: graphOffsetDivs,
|
|
27005
|
+
amps_per_div: graphUnitsPerDiv
|
|
26982
27006
|
});
|
|
26983
27007
|
}
|
|
26984
27008
|
}
|
|
@@ -30879,7 +30903,16 @@ var VoltageProbe = class extends PrimitiveComponent2 {
|
|
|
30879
30903
|
}
|
|
30880
30904
|
doInitialSimulationRender() {
|
|
30881
30905
|
const { db } = this.root;
|
|
30882
|
-
const {
|
|
30906
|
+
const {
|
|
30907
|
+
connectsTo,
|
|
30908
|
+
name,
|
|
30909
|
+
referenceTo,
|
|
30910
|
+
color,
|
|
30911
|
+
graphDisplayName,
|
|
30912
|
+
graphCenter,
|
|
30913
|
+
graphOffsetDivs,
|
|
30914
|
+
graphUnitsPerDiv
|
|
30915
|
+
} = this._parsedProps;
|
|
30883
30916
|
const subcircuit = this.getSubcircuit();
|
|
30884
30917
|
if (!subcircuit) {
|
|
30885
30918
|
this.renderError("VoltageProbe must be inside a subcircuit");
|
|
@@ -30956,14 +30989,15 @@ var VoltageProbe = class extends PrimitiveComponent2 {
|
|
|
30956
30989
|
color: this.color
|
|
30957
30990
|
});
|
|
30958
30991
|
this.simulation_voltage_probe_id = simulation_voltage_probe_id;
|
|
30959
|
-
|
|
30992
|
+
const hasGraphDisplayProps = graphDisplayName !== void 0 || graphCenter !== void 0 || graphOffsetDivs !== void 0 || graphUnitsPerDiv !== void 0;
|
|
30993
|
+
if (hasGraphDisplayProps) {
|
|
30960
30994
|
db.simulation_oscilloscope_trace.insert({
|
|
30961
30995
|
simulation_voltage_probe_id,
|
|
30962
|
-
display_name:
|
|
30996
|
+
display_name: graphDisplayName,
|
|
30963
30997
|
color: color ?? void 0,
|
|
30964
|
-
display_center_value:
|
|
30965
|
-
display_center_offset_divs:
|
|
30966
|
-
volts_per_div:
|
|
30998
|
+
display_center_value: graphCenter,
|
|
30999
|
+
display_center_offset_divs: graphOffsetDivs,
|
|
31000
|
+
volts_per_div: graphUnitsPerDiv
|
|
30967
31001
|
});
|
|
30968
31002
|
}
|
|
30969
31003
|
}
|
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.1356",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@tscircuit/matchpack": "",
|
|
50
50
|
"@tscircuit/math-utils": "^0.0.36",
|
|
51
51
|
"@tscircuit/miniflex": "^0.0.4",
|
|
52
|
-
"@tscircuit/props": "^0.0.
|
|
52
|
+
"@tscircuit/props": "^0.0.555",
|
|
53
53
|
"@tscircuit/ngspice-spice-engine": "^0.0.18",
|
|
54
54
|
"@tscircuit/schematic-match-adapt": "^0.0.18",
|
|
55
55
|
"@tscircuit/solver-utils": "^0.0.16",
|