@tscircuit/props 0.0.513 → 0.0.515
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 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js.map +1 -1
- package/lib/components/chip.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -373,6 +373,7 @@ export interface ChipPropsSU<
|
|
|
373
373
|
schPortArrangement?: SchematicPortArrangement;
|
|
374
374
|
pinCompatibleVariants?: PinCompatibleVariant[];
|
|
375
375
|
schPinStyle?: SchematicPinStyle;
|
|
376
|
+
/** @deprecated Use schPinStyle instead. */
|
|
376
377
|
schPinSpacing?: Distance;
|
|
377
378
|
schWidth?: Distance;
|
|
378
379
|
schHeight?: Distance;
|
|
@@ -745,6 +746,7 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
745
746
|
schPinArrangement?: SchematicPinArrangement;
|
|
746
747
|
|
|
747
748
|
/**
|
|
749
|
+
* @deprecated Use schPinStyle instead.
|
|
748
750
|
* Spacing between pins when rendered as a schematic box
|
|
749
751
|
*/
|
|
750
752
|
schPinSpacing?: Distance;
|
|
@@ -905,6 +907,7 @@ export interface JumperProps extends CommonComponentProps {
|
|
|
905
907
|
SchematicPinLabel | SchematicPinLabel[]
|
|
906
908
|
>;
|
|
907
909
|
schPinStyle?: SchematicPinStyle;
|
|
910
|
+
/** @deprecated Use schPinStyle instead. */
|
|
908
911
|
schPinSpacing?: number | string;
|
|
909
912
|
schWidth?: number | string;
|
|
910
913
|
schHeight?: number | string;
|
|
@@ -1284,6 +1287,7 @@ export interface PinHeaderProps extends CommonComponentProps {
|
|
|
1284
1287
|
schPinStyle?: SchematicPinStyle;
|
|
1285
1288
|
|
|
1286
1289
|
/**
|
|
1290
|
+
* @deprecated Use schPinStyle instead.
|
|
1287
1291
|
* Schematic pin spacing
|
|
1288
1292
|
*/
|
|
1289
1293
|
schPinSpacing?: number | string;
|
package/dist/index.d.ts
CHANGED
|
@@ -29437,6 +29437,7 @@ interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> ex
|
|
|
29437
29437
|
schPortArrangement?: SchematicPortArrangement;
|
|
29438
29438
|
pinCompatibleVariants?: PinCompatibleVariant[];
|
|
29439
29439
|
schPinStyle?: SchematicPinStyle;
|
|
29440
|
+
/** @deprecated Use schPinStyle instead. */
|
|
29440
29441
|
schPinSpacing?: Distance;
|
|
29441
29442
|
schWidth?: Distance;
|
|
29442
29443
|
schHeight?: Distance;
|