@tscircuit/props 0.0.551 → 0.0.552
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/README.md +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/components/analogsimulation.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -121750,6 +121750,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121750
121750
|
}>;
|
|
121751
121751
|
|
|
121752
121752
|
interface AnalogSimulationProps {
|
|
121753
|
+
name?: string;
|
|
121753
121754
|
simulationType?: "spice_transient_analysis";
|
|
121754
121755
|
duration?: number | string;
|
|
121755
121756
|
startTime?: number | string;
|
|
@@ -121764,6 +121765,7 @@ interface SpiceOptions {
|
|
|
121764
121765
|
vntol?: number | string;
|
|
121765
121766
|
}
|
|
121766
121767
|
declare const analogSimulationProps: z.ZodObject<{
|
|
121768
|
+
name: z.ZodOptional<z.ZodString>;
|
|
121767
121769
|
simulationType: z.ZodDefault<z.ZodLiteral<"spice_transient_analysis">>;
|
|
121768
121770
|
duration: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121769
121771
|
startTime: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -121787,6 +121789,7 @@ declare const analogSimulationProps: z.ZodObject<{
|
|
|
121787
121789
|
}>>;
|
|
121788
121790
|
}, "strip", z.ZodTypeAny, {
|
|
121789
121791
|
simulationType: "spice_transient_analysis";
|
|
121792
|
+
name?: string | undefined;
|
|
121790
121793
|
duration?: number | undefined;
|
|
121791
121794
|
startTime?: number | undefined;
|
|
121792
121795
|
timePerStep?: number | undefined;
|
|
@@ -121798,6 +121801,7 @@ declare const analogSimulationProps: z.ZodObject<{
|
|
|
121798
121801
|
vntol?: string | number | undefined;
|
|
121799
121802
|
} | undefined;
|
|
121800
121803
|
}, {
|
|
121804
|
+
name?: string | undefined;
|
|
121801
121805
|
duration?: string | number | undefined;
|
|
121802
121806
|
simulationType?: "spice_transient_analysis" | undefined;
|
|
121803
121807
|
startTime?: string | number | undefined;
|
package/dist/index.js
CHANGED
|
@@ -17398,6 +17398,7 @@ var spiceOptions = z74.object({
|
|
|
17398
17398
|
vntol: z74.union([z74.number(), z74.string()]).optional()
|
|
17399
17399
|
});
|
|
17400
17400
|
var analogSimulationProps = z74.object({
|
|
17401
|
+
name: z74.string().optional(),
|
|
17401
17402
|
simulationType: z74.literal("spice_transient_analysis").default("spice_transient_analysis"),
|
|
17402
17403
|
duration: ms.optional(),
|
|
17403
17404
|
startTime: ms.optional(),
|