@tscircuit/props 0.0.339 → 0.0.341
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 +3 -0
- package/dist/index.d.ts +101 -1
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +12 -0
- package/lib/platformConfig.ts +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -662,6 +662,7 @@ export interface MosfetProps<PinLabel extends string = string>
|
|
|
662
662
|
export interface NetProps {
|
|
663
663
|
name: string;
|
|
664
664
|
connectsTo?: string | string[];
|
|
665
|
+
highlightColor?: string;
|
|
665
666
|
}
|
|
666
667
|
```
|
|
667
668
|
|
|
@@ -1105,6 +1106,8 @@ export interface PlatformConfig {
|
|
|
1105
1106
|
schematicDisabled?: boolean;
|
|
1106
1107
|
partsEngineDisabled?: boolean;
|
|
1107
1108
|
|
|
1109
|
+
spiceEngine?: SpiceEngine;
|
|
1110
|
+
|
|
1108
1111
|
footprintLibraryMap?: Record<
|
|
1109
1112
|
string,
|
|
1110
1113
|
| ((path: string) => Promise<FootprintLibraryResult>)
|