@tscircuit/props 0.0.479 → 0.0.480
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 +2988 -0
- package/dist/index.js +23 -7
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +40 -4
- package/package.json +1 -1
package/lib/common/layout.ts
CHANGED
|
@@ -6,9 +6,9 @@ import {
|
|
|
6
6
|
supplier_name,
|
|
7
7
|
} from "circuit-json"
|
|
8
8
|
import { expectTypesMatch } from "lib/typecheck"
|
|
9
|
-
import { pcbCoordinate } from "./distance"
|
|
10
9
|
import { z } from "zod"
|
|
11
10
|
import { type CadModelProp, cadModelProp } from "./cadModel"
|
|
11
|
+
import { pcbCoordinate } from "./distance"
|
|
12
12
|
import { type FootprintProp, footprintProp } from "./footprintProp"
|
|
13
13
|
import {
|
|
14
14
|
type KicadFootprintMetadata,
|
|
@@ -18,9 +18,9 @@ import {
|
|
|
18
18
|
type KicadSymbolMetadata,
|
|
19
19
|
kicadSymbolMetadata,
|
|
20
20
|
} from "./kicadSymbolMetadata"
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
21
|
+
import { type PcbStyle, pcbStyle } from "./pcbStyle"
|
|
22
|
+
import { type PcbSx, pcbSx } from "./pcbSx"
|
|
23
|
+
import { type SchStyle, schStyle } from "./schStyle"
|
|
24
24
|
import { type SymbolProp, symbolProp } from "./symbolProp"
|
|
25
25
|
import { url } from "./url"
|
|
26
26
|
|
|
@@ -236,6 +236,24 @@ export interface PinAttributeMap {
|
|
|
236
236
|
includeInBoardPinout?: boolean
|
|
237
237
|
highlightColor?: string
|
|
238
238
|
mustBeConnected?: boolean
|
|
239
|
+
isI2cSda?: boolean
|
|
240
|
+
isI2cScl?: boolean
|
|
241
|
+
isSpiMosi?: boolean
|
|
242
|
+
isSpiMiso?: boolean
|
|
243
|
+
isSpiSck?: boolean
|
|
244
|
+
isSpiCs?: boolean
|
|
245
|
+
isUartTx?: boolean
|
|
246
|
+
isUartRx?: boolean
|
|
247
|
+
canUseInternalPullup?: boolean
|
|
248
|
+
isUsingInternalPullup?: boolean
|
|
249
|
+
needsExternalPullup?: boolean
|
|
250
|
+
canUseInternalPulldown?: boolean
|
|
251
|
+
isUsingInternalPulldown?: boolean
|
|
252
|
+
needsExternalPulldown?: boolean
|
|
253
|
+
canUseOpenDrain?: boolean
|
|
254
|
+
isUsingOpenDrain?: boolean
|
|
255
|
+
canUsePushPull?: boolean
|
|
256
|
+
isUsingPushPull?: boolean
|
|
239
257
|
}
|
|
240
258
|
|
|
241
259
|
export const pinAttributeMap = z.object({
|
|
@@ -249,6 +267,24 @@ export const pinAttributeMap = z.object({
|
|
|
249
267
|
includeInBoardPinout: z.boolean().optional(),
|
|
250
268
|
highlightColor: z.string().optional(),
|
|
251
269
|
mustBeConnected: z.boolean().optional(),
|
|
270
|
+
isI2cSda: z.boolean().optional(),
|
|
271
|
+
isI2cScl: z.boolean().optional(),
|
|
272
|
+
isSpiMosi: z.boolean().optional(),
|
|
273
|
+
isSpiMiso: z.boolean().optional(),
|
|
274
|
+
isSpiSck: z.boolean().optional(),
|
|
275
|
+
isSpiCs: z.boolean().optional(),
|
|
276
|
+
isUartTx: z.boolean().optional(),
|
|
277
|
+
isUartRx: z.boolean().optional(),
|
|
278
|
+
canUseInternalPullup: z.boolean().optional(),
|
|
279
|
+
isUsingInternalPullup: z.boolean().optional(),
|
|
280
|
+
needsExternalPullup: z.boolean().optional(),
|
|
281
|
+
canUseInternalPulldown: z.boolean().optional(),
|
|
282
|
+
isUsingInternalPulldown: z.boolean().optional(),
|
|
283
|
+
needsExternalPulldown: z.boolean().optional(),
|
|
284
|
+
canUseOpenDrain: z.boolean().optional(),
|
|
285
|
+
isUsingOpenDrain: z.boolean().optional(),
|
|
286
|
+
canUsePushPull: z.boolean().optional(),
|
|
287
|
+
isUsingPushPull: z.boolean().optional(),
|
|
252
288
|
})
|
|
253
289
|
|
|
254
290
|
expectTypesMatch<PinAttributeMap, z.input<typeof pinAttributeMap>>(true)
|