@tscircuit/props 0.0.349 → 0.0.351
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 +4 -0
- package/dist/index.d.ts +56 -455
- package/dist/index.js +24 -6
- package/dist/index.js.map +1 -1
- package/lib/components/analogsimulation.ts +5 -0
- package/lib/components/group.ts +19 -4
- package/lib/platformConfig.ts +41 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -152,6 +152,8 @@ export interface SubcircuitGroupProps extends BaseGroupProps {
|
|
|
152
152
|
```ts
|
|
153
153
|
export interface AnalogSimulationProps {
|
|
154
154
|
simulationType?: "spice_transient_analysis";
|
|
155
|
+
duration?: number | string;
|
|
156
|
+
timePerStep?: number | string;
|
|
155
157
|
}
|
|
156
158
|
```
|
|
157
159
|
|
|
@@ -1124,6 +1126,8 @@ export interface PlatformConfig {
|
|
|
1124
1126
|
|
|
1125
1127
|
autorouter?: AutorouterProp;
|
|
1126
1128
|
|
|
1129
|
+
autorouterMap?: Record<string, AutorouterDefinition>;
|
|
1130
|
+
|
|
1127
1131
|
// TODO this follows a subset of the localStorage interface
|
|
1128
1132
|
localCacheEngine?: any;
|
|
1129
1133
|
|