@tscircuit/props 0.0.350 → 0.0.352
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 -1
- package/dist/index.d.ts +42 -447
- package/dist/index.js +19 -3
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +19 -4
- package/lib/components/voltageprobe.ts +8 -4
- package/lib/platformConfig.ts +38 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1088,7 +1088,8 @@ export interface ViaProps extends CommonLayoutProps {
|
|
|
1088
1088
|
### VoltageProbeProps `<voltageprobe />`
|
|
1089
1089
|
|
|
1090
1090
|
```ts
|
|
1091
|
-
export interface VoltageProbeProps extends CommonComponentProps {
|
|
1091
|
+
export interface VoltageProbeProps extends Omit<CommonComponentProps, "name"> {
|
|
1092
|
+
name?: string;
|
|
1092
1093
|
connectsTo: string | string[];
|
|
1093
1094
|
}
|
|
1094
1095
|
```
|
|
@@ -1126,6 +1127,8 @@ export interface PlatformConfig {
|
|
|
1126
1127
|
|
|
1127
1128
|
autorouter?: AutorouterProp;
|
|
1128
1129
|
|
|
1130
|
+
autorouterMap?: Record<string, AutorouterDefinition>;
|
|
1131
|
+
|
|
1129
1132
|
// TODO this follows a subset of the localStorage interface
|
|
1130
1133
|
localCacheEngine?: any;
|
|
1131
1134
|
|