@tscircuit/props 0.0.482 → 0.0.484
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 +1 -0
- package/dist/index.d.ts +339 -0
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +6 -0
- package/lib/components/panel.ts +2 -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({
|
|
@@ -1051,7 +1053,8 @@ var panelProps = baseGroupProps.omit({
|
|
|
1051
1053
|
edgePaddingLeft: distance.optional(),
|
|
1052
1054
|
edgePaddingRight: distance.optional(),
|
|
1053
1055
|
edgePaddingTop: distance.optional(),
|
|
1054
|
-
edgePaddingBottom: distance.optional()
|
|
1056
|
+
edgePaddingBottom: distance.optional(),
|
|
1057
|
+
_subcircuitCachingEnabled: z37.boolean().optional()
|
|
1055
1058
|
});
|
|
1056
1059
|
expectTypesMatch(true);
|
|
1057
1060
|
|