@tscircuit/props 0.0.244 → 0.0.246
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 +5 -0
- package/dist/index.d.ts +103 -13
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +6 -1
- package/lib/components/battery.ts +3 -1
- package/lib/components/capacitor.ts +2 -1
- package/lib/components/chip.ts +1 -1
- package/lib/components/crystal.ts +3 -1
- package/lib/components/diode.ts +3 -1
- package/lib/components/fuse.ts +3 -2
- package/lib/components/inductor.ts +3 -1
- package/lib/components/mosfet.ts +3 -1
- package/lib/components/resistor.ts +2 -1
- package/lib/components/transistor.ts +3 -1
- package/lib/platformConfig.ts +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -839,6 +839,11 @@ export interface PlatformConfig {
|
|
|
839
839
|
|
|
840
840
|
cloudAutorouterUrl?: string
|
|
841
841
|
|
|
842
|
+
projectName?: string
|
|
843
|
+
version?: string
|
|
844
|
+
url?: string
|
|
845
|
+
printBoardInformationToSilkscreen?: boolean
|
|
846
|
+
|
|
842
847
|
pcbDisabled?: boolean
|
|
843
848
|
schematicDisabled?: boolean
|
|
844
849
|
partsEngineDisabled?: boolean
|