@tscircuit/props 0.0.482 → 0.0.483
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/dist/index.d.ts +332 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -430,7 +430,9 @@ var pinAttributeMap = z15.object({
|
|
|
430
430
|
canUseOpenDrain: z15.boolean().optional(),
|
|
431
431
|
isUsingOpenDrain: z15.boolean().optional(),
|
|
432
432
|
canUsePushPull: z15.boolean().optional(),
|
|
433
|
-
isUsingPushPull: z15.boolean().optional()
|
|
433
|
+
isUsingPushPull: z15.boolean().optional(),
|
|
434
|
+
shouldHaveDecouplingCapacitor: z15.boolean().optional(),
|
|
435
|
+
recommendedDecouplingCapacitorCapacitance: z15.union([z15.string(), z15.number()]).optional()
|
|
434
436
|
});
|
|
435
437
|
expectTypesMatch(true);
|
|
436
438
|
var commonComponentProps = commonLayoutProps.merge(supplierProps).extend({
|