@tscircuit/props 0.0.564 → 0.0.566
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 +7 -0
- package/dist/index.d.ts +36 -3
- package/dist/index.js +15 -4
- package/dist/index.js.map +1 -1
- package/lib/components/ammeter.ts +6 -0
- package/lib/components/diode.ts +16 -3
- package/lib/components/voltageprobe.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -218,6 +218,9 @@ export interface AmmeterProps<
|
|
|
218
218
|
connections: Connections<AmmeterPinLabels>;
|
|
219
219
|
color?: string;
|
|
220
220
|
graphDisplayName?: string;
|
|
221
|
+
graphCenter?: number;
|
|
222
|
+
graphVerticalOffset?: number | string;
|
|
223
|
+
graphCurrentPerDiv?: number | string;
|
|
221
224
|
}
|
|
222
225
|
```
|
|
223
226
|
|
|
@@ -608,6 +611,7 @@ export interface RectCutoutProps extends Omit<
|
|
|
608
611
|
export interface DiodeProps<
|
|
609
612
|
PinLabel extends string = string,
|
|
610
613
|
> extends CommonComponentProps<PinLabel> {
|
|
614
|
+
pinLabels?: DiodePinLabelsProp<PinLabel>;
|
|
611
615
|
connections?: {
|
|
612
616
|
anode?: string | string[] | readonly string[];
|
|
613
617
|
cathode?: string | string[] | readonly string[];
|
|
@@ -1978,6 +1982,9 @@ export interface VoltageProbeProps extends Omit<CommonComponentProps, "name"> {
|
|
|
1978
1982
|
referenceTo?: string;
|
|
1979
1983
|
color?: string;
|
|
1980
1984
|
graphDisplayName?: string;
|
|
1985
|
+
graphCenter?: number;
|
|
1986
|
+
graphVerticalOffset?: number | string;
|
|
1987
|
+
graphVoltagePerDiv?: number | string;
|
|
1981
1988
|
}
|
|
1982
1989
|
```
|
|
1983
1990
|
|
package/dist/index.d.ts
CHANGED
|
@@ -140287,6 +140287,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
140287
140287
|
maxCurrentRating?: string | number | undefined;
|
|
140288
140288
|
}>;
|
|
140289
140289
|
|
|
140290
|
+
declare const diodePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
140291
|
+
type DiodePinLabels = (typeof diodePins)[number];
|
|
140292
|
+
type DiodePinLabelsProp<PinLabel extends string = string> = Partial<Record<DiodePinLabels, PinLabel | PinLabel[] | readonly PinLabel[]>>;
|
|
140290
140293
|
declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
140291
140294
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
140292
140295
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -143656,6 +143659,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
143656
143659
|
photo: z.ZodOptional<z.ZodBoolean>;
|
|
143657
143660
|
tvs: z.ZodOptional<z.ZodBoolean>;
|
|
143658
143661
|
schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
|
|
143662
|
+
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
143659
143663
|
}, "strip", z.ZodTypeAny, {
|
|
143660
143664
|
name: string;
|
|
143661
143665
|
variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
|
|
@@ -144236,6 +144240,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144236
144240
|
schSectionName?: string | undefined;
|
|
144237
144241
|
schSheetName?: string | undefined;
|
|
144238
144242
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144243
|
+
pinLabels?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144239
144244
|
standard?: boolean | undefined;
|
|
144240
144245
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
144241
144246
|
schottky?: boolean | undefined;
|
|
@@ -144824,6 +144829,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144824
144829
|
schSectionName?: string | undefined;
|
|
144825
144830
|
schSheetName?: string | undefined;
|
|
144826
144831
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144832
|
+
pinLabels?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144827
144833
|
standard?: boolean | undefined;
|
|
144828
144834
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
144829
144835
|
schottky?: boolean | undefined;
|
|
@@ -145412,6 +145418,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145412
145418
|
schSectionName?: string | undefined;
|
|
145413
145419
|
schSheetName?: string | undefined;
|
|
145414
145420
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145421
|
+
pinLabels?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145415
145422
|
standard?: boolean | undefined;
|
|
145416
145423
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
145417
145424
|
schottky?: boolean | undefined;
|
|
@@ -146000,6 +146007,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146000
146007
|
schSectionName?: string | undefined;
|
|
146001
146008
|
schSheetName?: string | undefined;
|
|
146002
146009
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146010
|
+
pinLabels?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146003
146011
|
standard?: boolean | undefined;
|
|
146004
146012
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
146005
146013
|
schottky?: boolean | undefined;
|
|
@@ -146594,6 +146602,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146594
146602
|
schSectionName?: string | undefined;
|
|
146595
146603
|
schSheetName?: string | undefined;
|
|
146596
146604
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146605
|
+
pinLabels?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146597
146606
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
146598
146607
|
}, {
|
|
146599
146608
|
name: string;
|
|
@@ -147176,6 +147185,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
147176
147185
|
schSectionName?: string | undefined;
|
|
147177
147186
|
schSheetName?: string | undefined;
|
|
147178
147187
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
147188
|
+
pinLabels?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
147179
147189
|
standard?: boolean | undefined;
|
|
147180
147190
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
147181
147191
|
schottky?: boolean | undefined;
|
|
@@ -147185,9 +147195,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
147185
147195
|
tvs?: boolean | undefined;
|
|
147186
147196
|
variant?: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs" | undefined;
|
|
147187
147197
|
}>;
|
|
147188
|
-
declare const diodePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
147189
|
-
type DiodePinLabels = (typeof diodePins)[number];
|
|
147190
147198
|
interface DiodeProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
|
|
147199
|
+
pinLabels?: DiodePinLabelsProp<PinLabel>;
|
|
147191
147200
|
connections?: {
|
|
147192
147201
|
anode?: string | string[] | readonly string[];
|
|
147193
147202
|
cathode?: string | string[] | readonly string[];
|
|
@@ -178641,6 +178650,9 @@ interface VoltageProbeProps extends Omit<CommonComponentProps, "name"> {
|
|
|
178641
178650
|
referenceTo?: string;
|
|
178642
178651
|
color?: string;
|
|
178643
178652
|
graphDisplayName?: string;
|
|
178653
|
+
graphCenter?: number;
|
|
178654
|
+
graphVerticalOffset?: number | string;
|
|
178655
|
+
graphVoltagePerDiv?: number | string;
|
|
178644
178656
|
}
|
|
178645
178657
|
declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
178646
178658
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -182007,6 +182019,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182007
182019
|
referenceTo: z.ZodOptional<z.ZodString>;
|
|
182008
182020
|
color: z.ZodOptional<z.ZodString>;
|
|
182009
182021
|
graphDisplayName: z.ZodOptional<z.ZodString>;
|
|
182022
|
+
graphCenter: z.ZodOptional<z.ZodNumber>;
|
|
182023
|
+
graphVerticalOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
182024
|
+
graphVoltagePerDiv: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
182010
182025
|
}, "strip", z.ZodTypeAny, {
|
|
182011
182026
|
connectsTo: string;
|
|
182012
182027
|
symbol?: SymbolProp | undefined;
|
|
@@ -182589,6 +182604,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182589
182604
|
color?: string | undefined;
|
|
182590
182605
|
referenceTo?: string | undefined;
|
|
182591
182606
|
graphDisplayName?: string | undefined;
|
|
182607
|
+
graphCenter?: number | undefined;
|
|
182608
|
+
graphVerticalOffset?: string | number | undefined;
|
|
182609
|
+
graphVoltagePerDiv?: string | number | undefined;
|
|
182592
182610
|
}, {
|
|
182593
182611
|
connectsTo: string;
|
|
182594
182612
|
symbol?: SymbolProp | undefined;
|
|
@@ -183173,6 +183191,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
183173
183191
|
color?: string | undefined;
|
|
183174
183192
|
referenceTo?: string | undefined;
|
|
183175
183193
|
graphDisplayName?: string | undefined;
|
|
183194
|
+
graphCenter?: number | undefined;
|
|
183195
|
+
graphVerticalOffset?: string | number | undefined;
|
|
183196
|
+
graphVoltagePerDiv?: string | number | undefined;
|
|
183176
183197
|
}>;
|
|
183177
183198
|
|
|
183178
183199
|
declare const ammeterPinLabels: readonly ["pin1", "pin2", "pos", "neg"];
|
|
@@ -183181,6 +183202,9 @@ interface AmmeterProps<PinLabel extends string = string> extends CommonComponent
|
|
|
183181
183202
|
connections: Connections<AmmeterPinLabels>;
|
|
183182
183203
|
color?: string;
|
|
183183
183204
|
graphDisplayName?: string;
|
|
183205
|
+
graphCenter?: number;
|
|
183206
|
+
graphVerticalOffset?: number | string;
|
|
183207
|
+
graphCurrentPerDiv?: number | string;
|
|
183184
183208
|
}
|
|
183185
183209
|
declare const ammeterProps: z.ZodObject<{
|
|
183186
183210
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -186545,6 +186569,9 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
186545
186569
|
connections: z.ZodEffects<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>, Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>, Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>>;
|
|
186546
186570
|
color: z.ZodOptional<z.ZodString>;
|
|
186547
186571
|
graphDisplayName: z.ZodOptional<z.ZodString>;
|
|
186572
|
+
graphCenter: z.ZodOptional<z.ZodNumber>;
|
|
186573
|
+
graphVerticalOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
186574
|
+
graphCurrentPerDiv: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
186548
186575
|
}, "strip", z.ZodTypeAny, {
|
|
186549
186576
|
name: string;
|
|
186550
186577
|
connections: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>;
|
|
@@ -187126,6 +187153,9 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
187126
187153
|
schSheetName?: string | undefined;
|
|
187127
187154
|
color?: string | undefined;
|
|
187128
187155
|
graphDisplayName?: string | undefined;
|
|
187156
|
+
graphCenter?: number | undefined;
|
|
187157
|
+
graphVerticalOffset?: string | number | undefined;
|
|
187158
|
+
graphCurrentPerDiv?: string | number | undefined;
|
|
187129
187159
|
}, {
|
|
187130
187160
|
name: string;
|
|
187131
187161
|
connections: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>;
|
|
@@ -187709,6 +187739,9 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
187709
187739
|
schSheetName?: string | undefined;
|
|
187710
187740
|
color?: string | undefined;
|
|
187711
187741
|
graphDisplayName?: string | undefined;
|
|
187742
|
+
graphCenter?: number | undefined;
|
|
187743
|
+
graphVerticalOffset?: string | number | undefined;
|
|
187744
|
+
graphCurrentPerDiv?: string | number | undefined;
|
|
187712
187745
|
}>;
|
|
187713
187746
|
declare const ammeterPins: readonly ["pin1", "pin2", "pos", "neg"];
|
|
187714
187747
|
|
|
@@ -190771,4 +190804,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
190771
190804
|
}
|
|
190772
190805
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
190773
190806
|
|
|
190774
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
190807
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
package/dist/index.js
CHANGED
|
@@ -17530,6 +17530,7 @@ expectTypesMatch(true);
|
|
|
17530
17530
|
|
|
17531
17531
|
// lib/components/diode.ts
|
|
17532
17532
|
import { z as z81 } from "zod";
|
|
17533
|
+
var diodePins = lrPolarPins;
|
|
17533
17534
|
var diodeConnectionKeys = z81.enum([
|
|
17534
17535
|
"anode",
|
|
17535
17536
|
"cathode",
|
|
@@ -17540,6 +17541,10 @@ var diodeConnectionKeys = z81.enum([
|
|
|
17540
17541
|
]);
|
|
17541
17542
|
var connectionTarget3 = z81.string().or(z81.array(z81.string()).readonly()).or(z81.array(z81.string()));
|
|
17542
17543
|
var connectionsProp2 = z81.record(diodeConnectionKeys, connectionTarget3);
|
|
17544
|
+
var diodePinLabelsProp = z81.record(
|
|
17545
|
+
z81.enum(diodePins),
|
|
17546
|
+
schematicPinLabel.or(z81.array(schematicPinLabel).readonly()).or(z81.array(schematicPinLabel))
|
|
17547
|
+
);
|
|
17543
17548
|
var diodeVariant = z81.enum([
|
|
17544
17549
|
"standard",
|
|
17545
17550
|
"schottky",
|
|
@@ -17557,7 +17562,8 @@ var diodeProps = commonComponentProps.extend({
|
|
|
17557
17562
|
avalanche: z81.boolean().optional(),
|
|
17558
17563
|
photo: z81.boolean().optional(),
|
|
17559
17564
|
tvs: z81.boolean().optional(),
|
|
17560
|
-
schOrientation: schematicOrientation.optional()
|
|
17565
|
+
schOrientation: schematicOrientation.optional(),
|
|
17566
|
+
pinLabels: diodePinLabelsProp.optional()
|
|
17561
17567
|
}).superRefine((data, ctx) => {
|
|
17562
17568
|
const enabledFlags = [
|
|
17563
17569
|
data.standard,
|
|
@@ -17616,7 +17622,6 @@ var diodeProps = commonComponentProps.extend({
|
|
|
17616
17622
|
}
|
|
17617
17623
|
return result;
|
|
17618
17624
|
});
|
|
17619
|
-
var diodePins = lrPolarPins;
|
|
17620
17625
|
expectTypesMatch(true);
|
|
17621
17626
|
|
|
17622
17627
|
// lib/components/led.ts
|
|
@@ -17990,7 +17995,10 @@ var voltageProbeProps = commonComponentProps.omit({ name: true }).extend({
|
|
|
17990
17995
|
connectsTo: z102.string(),
|
|
17991
17996
|
referenceTo: z102.string().optional(),
|
|
17992
17997
|
color: z102.string().optional(),
|
|
17993
|
-
graphDisplayName: z102.string().optional()
|
|
17998
|
+
graphDisplayName: z102.string().optional(),
|
|
17999
|
+
graphCenter: z102.number().optional(),
|
|
18000
|
+
graphVerticalOffset: z102.number().or(z102.string()).optional(),
|
|
18001
|
+
graphVoltagePerDiv: z102.number().or(z102.string()).optional()
|
|
17994
18002
|
});
|
|
17995
18003
|
expectTypesMatch(true);
|
|
17996
18004
|
|
|
@@ -18006,7 +18014,10 @@ var ammeterProps = commonComponentProps.extend({
|
|
|
18006
18014
|
"Ammeter connections must include either pos/neg or pin1/pin2"
|
|
18007
18015
|
),
|
|
18008
18016
|
color: z103.string().optional(),
|
|
18009
|
-
graphDisplayName: z103.string().optional()
|
|
18017
|
+
graphDisplayName: z103.string().optional(),
|
|
18018
|
+
graphCenter: z103.number().optional(),
|
|
18019
|
+
graphVerticalOffset: z103.number().or(z103.string()).optional(),
|
|
18020
|
+
graphCurrentPerDiv: z103.number().or(z103.string()).optional()
|
|
18010
18021
|
});
|
|
18011
18022
|
var ammeterPins = ammeterPinLabels;
|
|
18012
18023
|
expectTypesMatch(true);
|