@tscircuit/props 0.0.591 → 0.0.592
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 +186 -101
- package/dist/index.d.ts +759 -3
- package/dist/index.js +599 -368
- package/dist/index.js.map +1 -1
- package/lib/components/analogacsweepsimulation.ts +85 -0
- package/lib/components/analogdcoperatingpointsimulation.ts +18 -0
- package/lib/components/analogdcsweepsimulation.ts +50 -0
- package/lib/components/analogsimulation.ts +22 -0
- package/lib/components/analogsweepparameter.ts +213 -0
- package/lib/components/analogtransientsimulation.ts +47 -0
- package/lib/components/currentsource.ts +6 -0
- package/lib/components/voltagesource.ts +6 -0
- package/lib/index.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -122317,6 +122317,40 @@ interface SpiceOptions {
|
|
|
122317
122317
|
abstol?: number | string;
|
|
122318
122318
|
vntol?: number | string;
|
|
122319
122319
|
}
|
|
122320
|
+
interface AnalogAnalysisSimulationBaseProps {
|
|
122321
|
+
/** Stable identity for the simulation experiment. */
|
|
122322
|
+
name?: string;
|
|
122323
|
+
/** SPICE implementation used to run this analysis. */
|
|
122324
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice">;
|
|
122325
|
+
/** Numerical solver settings forwarded to the selected SPICE engine. */
|
|
122326
|
+
spiceOptions?: SpiceOptions;
|
|
122327
|
+
/** Render each probe with an independent vertical graph scale. */
|
|
122328
|
+
graphIndependentAxes?: boolean;
|
|
122329
|
+
/** Optional nested sweep parameter for repeated analysis runs. */
|
|
122330
|
+
children?: ReactNode;
|
|
122331
|
+
}
|
|
122332
|
+
declare const analogAnalysisSimulationBaseProps: {
|
|
122333
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122334
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122335
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122336
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122337
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122338
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122339
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122340
|
+
}, "strip", z.ZodTypeAny, {
|
|
122341
|
+
method?: "trap" | "gear" | undefined;
|
|
122342
|
+
reltol?: string | number | undefined;
|
|
122343
|
+
abstol?: string | number | undefined;
|
|
122344
|
+
vntol?: string | number | undefined;
|
|
122345
|
+
}, {
|
|
122346
|
+
method?: "trap" | "gear" | undefined;
|
|
122347
|
+
reltol?: string | number | undefined;
|
|
122348
|
+
abstol?: string | number | undefined;
|
|
122349
|
+
vntol?: string | number | undefined;
|
|
122350
|
+
}>>;
|
|
122351
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122352
|
+
children: z.ZodOptional<z.ZodType<ReactNode, z.ZodTypeDef, ReactNode>>;
|
|
122353
|
+
};
|
|
122320
122354
|
declare const analogSimulationProps: z.ZodObject<{
|
|
122321
122355
|
name: z.ZodOptional<z.ZodString>;
|
|
122322
122356
|
simulationType: z.ZodDefault<z.ZodLiteral<"spice_transient_analysis">>;
|
|
@@ -122371,6 +122405,708 @@ declare const analogSimulationProps: z.ZodObject<{
|
|
|
122371
122405
|
graphIndependentAxes?: boolean | undefined;
|
|
122372
122406
|
}>;
|
|
122373
122407
|
|
|
122408
|
+
interface AnalogTransientSimulationProps extends AnalogAnalysisSimulationBaseProps {
|
|
122409
|
+
/** Simulation duration. Raw numbers are milliseconds. Defaults to 10ms. */
|
|
122410
|
+
duration?: number | string;
|
|
122411
|
+
/** Time at which recording starts. Raw numbers are milliseconds. Defaults to 0ms. */
|
|
122412
|
+
startTime?: number | string;
|
|
122413
|
+
/** Maximum simulation timestep. Raw numbers are milliseconds. Defaults to 0.01ms. */
|
|
122414
|
+
timePerStep?: number | string;
|
|
122415
|
+
}
|
|
122416
|
+
declare const analogTransientSimulationProps: z.ZodEffects<z.ZodObject<{
|
|
122417
|
+
duration: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
122418
|
+
startTime: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
122419
|
+
timePerStep: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
122420
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122421
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122422
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122423
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122424
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122425
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122426
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122427
|
+
}, "strip", z.ZodTypeAny, {
|
|
122428
|
+
method?: "trap" | "gear" | undefined;
|
|
122429
|
+
reltol?: string | number | undefined;
|
|
122430
|
+
abstol?: string | number | undefined;
|
|
122431
|
+
vntol?: string | number | undefined;
|
|
122432
|
+
}, {
|
|
122433
|
+
method?: "trap" | "gear" | undefined;
|
|
122434
|
+
reltol?: string | number | undefined;
|
|
122435
|
+
abstol?: string | number | undefined;
|
|
122436
|
+
vntol?: string | number | undefined;
|
|
122437
|
+
}>>;
|
|
122438
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122439
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122440
|
+
}, "strip", z.ZodTypeAny, {
|
|
122441
|
+
duration: number;
|
|
122442
|
+
startTime: number;
|
|
122443
|
+
timePerStep: number;
|
|
122444
|
+
name?: string | undefined;
|
|
122445
|
+
children?: react.ReactNode;
|
|
122446
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122447
|
+
spiceOptions?: {
|
|
122448
|
+
method?: "trap" | "gear" | undefined;
|
|
122449
|
+
reltol?: string | number | undefined;
|
|
122450
|
+
abstol?: string | number | undefined;
|
|
122451
|
+
vntol?: string | number | undefined;
|
|
122452
|
+
} | undefined;
|
|
122453
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122454
|
+
}, {
|
|
122455
|
+
name?: string | undefined;
|
|
122456
|
+
children?: react.ReactNode;
|
|
122457
|
+
duration?: string | number | undefined;
|
|
122458
|
+
startTime?: string | number | undefined;
|
|
122459
|
+
timePerStep?: string | number | undefined;
|
|
122460
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122461
|
+
spiceOptions?: {
|
|
122462
|
+
method?: "trap" | "gear" | undefined;
|
|
122463
|
+
reltol?: string | number | undefined;
|
|
122464
|
+
abstol?: string | number | undefined;
|
|
122465
|
+
vntol?: string | number | undefined;
|
|
122466
|
+
} | undefined;
|
|
122467
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122468
|
+
}>, {
|
|
122469
|
+
duration: number;
|
|
122470
|
+
startTime: number;
|
|
122471
|
+
timePerStep: number;
|
|
122472
|
+
name?: string | undefined;
|
|
122473
|
+
children?: react.ReactNode;
|
|
122474
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122475
|
+
spiceOptions?: {
|
|
122476
|
+
method?: "trap" | "gear" | undefined;
|
|
122477
|
+
reltol?: string | number | undefined;
|
|
122478
|
+
abstol?: string | number | undefined;
|
|
122479
|
+
vntol?: string | number | undefined;
|
|
122480
|
+
} | undefined;
|
|
122481
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122482
|
+
}, {
|
|
122483
|
+
name?: string | undefined;
|
|
122484
|
+
children?: react.ReactNode;
|
|
122485
|
+
duration?: string | number | undefined;
|
|
122486
|
+
startTime?: string | number | undefined;
|
|
122487
|
+
timePerStep?: string | number | undefined;
|
|
122488
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122489
|
+
spiceOptions?: {
|
|
122490
|
+
method?: "trap" | "gear" | undefined;
|
|
122491
|
+
reltol?: string | number | undefined;
|
|
122492
|
+
abstol?: string | number | undefined;
|
|
122493
|
+
vntol?: string | number | undefined;
|
|
122494
|
+
} | undefined;
|
|
122495
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122496
|
+
}>;
|
|
122497
|
+
|
|
122498
|
+
type AnalogDcOperatingPointSimulationProps = AnalogAnalysisSimulationBaseProps;
|
|
122499
|
+
declare const analogDcOperatingPointSimulationProps: z.ZodObject<{
|
|
122500
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122501
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122502
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122503
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122504
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122505
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122506
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122507
|
+
}, "strip", z.ZodTypeAny, {
|
|
122508
|
+
method?: "trap" | "gear" | undefined;
|
|
122509
|
+
reltol?: string | number | undefined;
|
|
122510
|
+
abstol?: string | number | undefined;
|
|
122511
|
+
vntol?: string | number | undefined;
|
|
122512
|
+
}, {
|
|
122513
|
+
method?: "trap" | "gear" | undefined;
|
|
122514
|
+
reltol?: string | number | undefined;
|
|
122515
|
+
abstol?: string | number | undefined;
|
|
122516
|
+
vntol?: string | number | undefined;
|
|
122517
|
+
}>>;
|
|
122518
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122519
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122520
|
+
}, "strip", z.ZodTypeAny, {
|
|
122521
|
+
name?: string | undefined;
|
|
122522
|
+
children?: react.ReactNode;
|
|
122523
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122524
|
+
spiceOptions?: {
|
|
122525
|
+
method?: "trap" | "gear" | undefined;
|
|
122526
|
+
reltol?: string | number | undefined;
|
|
122527
|
+
abstol?: string | number | undefined;
|
|
122528
|
+
vntol?: string | number | undefined;
|
|
122529
|
+
} | undefined;
|
|
122530
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122531
|
+
}, {
|
|
122532
|
+
name?: string | undefined;
|
|
122533
|
+
children?: react.ReactNode;
|
|
122534
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122535
|
+
spiceOptions?: {
|
|
122536
|
+
method?: "trap" | "gear" | undefined;
|
|
122537
|
+
reltol?: string | number | undefined;
|
|
122538
|
+
abstol?: string | number | undefined;
|
|
122539
|
+
vntol?: string | number | undefined;
|
|
122540
|
+
} | undefined;
|
|
122541
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122542
|
+
}>;
|
|
122543
|
+
|
|
122544
|
+
interface AnalogDcSweepSimulationProps extends AnalogAnalysisSimulationBaseProps {
|
|
122545
|
+
/** Selector for the independent voltage or current source being swept. */
|
|
122546
|
+
sweepSource: string;
|
|
122547
|
+
/** First source level. Raw numbers use volts or amperes according to the source. */
|
|
122548
|
+
sweepStart: number | string;
|
|
122549
|
+
/** Last source level. Raw numbers use volts or amperes according to the source. */
|
|
122550
|
+
sweepStop: number | string;
|
|
122551
|
+
/** Nonzero increment directed from sweepStart toward sweepStop. */
|
|
122552
|
+
sweepStep: number | string;
|
|
122553
|
+
}
|
|
122554
|
+
declare const analogDcSweepSimulationProps: z.ZodEffects<z.ZodObject<{
|
|
122555
|
+
sweepSource: z.ZodString;
|
|
122556
|
+
sweepStart: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>;
|
|
122557
|
+
sweepStop: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>;
|
|
122558
|
+
sweepStep: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>, number, string | number>;
|
|
122559
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122560
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122561
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122562
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122563
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122564
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122565
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122566
|
+
}, "strip", z.ZodTypeAny, {
|
|
122567
|
+
method?: "trap" | "gear" | undefined;
|
|
122568
|
+
reltol?: string | number | undefined;
|
|
122569
|
+
abstol?: string | number | undefined;
|
|
122570
|
+
vntol?: string | number | undefined;
|
|
122571
|
+
}, {
|
|
122572
|
+
method?: "trap" | "gear" | undefined;
|
|
122573
|
+
reltol?: string | number | undefined;
|
|
122574
|
+
abstol?: string | number | undefined;
|
|
122575
|
+
vntol?: string | number | undefined;
|
|
122576
|
+
}>>;
|
|
122577
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122578
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122579
|
+
}, "strip", z.ZodTypeAny, {
|
|
122580
|
+
sweepSource: string;
|
|
122581
|
+
sweepStart: number;
|
|
122582
|
+
sweepStop: number;
|
|
122583
|
+
sweepStep: number;
|
|
122584
|
+
name?: string | undefined;
|
|
122585
|
+
children?: react.ReactNode;
|
|
122586
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122587
|
+
spiceOptions?: {
|
|
122588
|
+
method?: "trap" | "gear" | undefined;
|
|
122589
|
+
reltol?: string | number | undefined;
|
|
122590
|
+
abstol?: string | number | undefined;
|
|
122591
|
+
vntol?: string | number | undefined;
|
|
122592
|
+
} | undefined;
|
|
122593
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122594
|
+
}, {
|
|
122595
|
+
sweepSource: string;
|
|
122596
|
+
sweepStart: string | number;
|
|
122597
|
+
sweepStop: string | number;
|
|
122598
|
+
sweepStep: string | number;
|
|
122599
|
+
name?: string | undefined;
|
|
122600
|
+
children?: react.ReactNode;
|
|
122601
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122602
|
+
spiceOptions?: {
|
|
122603
|
+
method?: "trap" | "gear" | undefined;
|
|
122604
|
+
reltol?: string | number | undefined;
|
|
122605
|
+
abstol?: string | number | undefined;
|
|
122606
|
+
vntol?: string | number | undefined;
|
|
122607
|
+
} | undefined;
|
|
122608
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122609
|
+
}>, {
|
|
122610
|
+
sweepSource: string;
|
|
122611
|
+
sweepStart: number;
|
|
122612
|
+
sweepStop: number;
|
|
122613
|
+
sweepStep: number;
|
|
122614
|
+
name?: string | undefined;
|
|
122615
|
+
children?: react.ReactNode;
|
|
122616
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122617
|
+
spiceOptions?: {
|
|
122618
|
+
method?: "trap" | "gear" | undefined;
|
|
122619
|
+
reltol?: string | number | undefined;
|
|
122620
|
+
abstol?: string | number | undefined;
|
|
122621
|
+
vntol?: string | number | undefined;
|
|
122622
|
+
} | undefined;
|
|
122623
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122624
|
+
}, {
|
|
122625
|
+
sweepSource: string;
|
|
122626
|
+
sweepStart: string | number;
|
|
122627
|
+
sweepStop: string | number;
|
|
122628
|
+
sweepStep: string | number;
|
|
122629
|
+
name?: string | undefined;
|
|
122630
|
+
children?: react.ReactNode;
|
|
122631
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122632
|
+
spiceOptions?: {
|
|
122633
|
+
method?: "trap" | "gear" | undefined;
|
|
122634
|
+
reltol?: string | number | undefined;
|
|
122635
|
+
abstol?: string | number | undefined;
|
|
122636
|
+
vntol?: string | number | undefined;
|
|
122637
|
+
} | undefined;
|
|
122638
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122639
|
+
}>;
|
|
122640
|
+
|
|
122641
|
+
interface AnalogAcSweepSimulationProps extends AnalogAnalysisSimulationBaseProps {
|
|
122642
|
+
/** Frequency spacing used by the AC analysis. */
|
|
122643
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122644
|
+
/** First positive frequency. Raw numbers are hertz. */
|
|
122645
|
+
startFrequency: number | string;
|
|
122646
|
+
/** Last frequency, which must be greater than startFrequency. Raw numbers are hertz. */
|
|
122647
|
+
stopFrequency: number | string;
|
|
122648
|
+
/** Samples per decade or octave; required for non-linear sweeps. */
|
|
122649
|
+
samplesPerInterval?: number;
|
|
122650
|
+
/** Total samples; required for linear sweeps. */
|
|
122651
|
+
sampleCount?: number;
|
|
122652
|
+
}
|
|
122653
|
+
declare const analogAcSweepSimulationProps: z.ZodEffects<z.ZodObject<{
|
|
122654
|
+
sweepType: z.ZodEnum<["linear", "decade", "octave"]>;
|
|
122655
|
+
startFrequency: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
122656
|
+
stopFrequency: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
122657
|
+
samplesPerInterval: z.ZodOptional<z.ZodNumber>;
|
|
122658
|
+
sampleCount: z.ZodOptional<z.ZodNumber>;
|
|
122659
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122660
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122661
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122662
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122663
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122664
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122665
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122666
|
+
}, "strip", z.ZodTypeAny, {
|
|
122667
|
+
method?: "trap" | "gear" | undefined;
|
|
122668
|
+
reltol?: string | number | undefined;
|
|
122669
|
+
abstol?: string | number | undefined;
|
|
122670
|
+
vntol?: string | number | undefined;
|
|
122671
|
+
}, {
|
|
122672
|
+
method?: "trap" | "gear" | undefined;
|
|
122673
|
+
reltol?: string | number | undefined;
|
|
122674
|
+
abstol?: string | number | undefined;
|
|
122675
|
+
vntol?: string | number | undefined;
|
|
122676
|
+
}>>;
|
|
122677
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122678
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122679
|
+
}, "strip", z.ZodTypeAny, {
|
|
122680
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122681
|
+
startFrequency: number;
|
|
122682
|
+
stopFrequency: number;
|
|
122683
|
+
name?: string | undefined;
|
|
122684
|
+
children?: react.ReactNode;
|
|
122685
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122686
|
+
spiceOptions?: {
|
|
122687
|
+
method?: "trap" | "gear" | undefined;
|
|
122688
|
+
reltol?: string | number | undefined;
|
|
122689
|
+
abstol?: string | number | undefined;
|
|
122690
|
+
vntol?: string | number | undefined;
|
|
122691
|
+
} | undefined;
|
|
122692
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122693
|
+
samplesPerInterval?: number | undefined;
|
|
122694
|
+
sampleCount?: number | undefined;
|
|
122695
|
+
}, {
|
|
122696
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122697
|
+
startFrequency: string | number;
|
|
122698
|
+
stopFrequency: string | number;
|
|
122699
|
+
name?: string | undefined;
|
|
122700
|
+
children?: react.ReactNode;
|
|
122701
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122702
|
+
spiceOptions?: {
|
|
122703
|
+
method?: "trap" | "gear" | undefined;
|
|
122704
|
+
reltol?: string | number | undefined;
|
|
122705
|
+
abstol?: string | number | undefined;
|
|
122706
|
+
vntol?: string | number | undefined;
|
|
122707
|
+
} | undefined;
|
|
122708
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122709
|
+
samplesPerInterval?: number | undefined;
|
|
122710
|
+
sampleCount?: number | undefined;
|
|
122711
|
+
}>, {
|
|
122712
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122713
|
+
startFrequency: number;
|
|
122714
|
+
stopFrequency: number;
|
|
122715
|
+
name?: string | undefined;
|
|
122716
|
+
children?: react.ReactNode;
|
|
122717
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122718
|
+
spiceOptions?: {
|
|
122719
|
+
method?: "trap" | "gear" | undefined;
|
|
122720
|
+
reltol?: string | number | undefined;
|
|
122721
|
+
abstol?: string | number | undefined;
|
|
122722
|
+
vntol?: string | number | undefined;
|
|
122723
|
+
} | undefined;
|
|
122724
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122725
|
+
samplesPerInterval?: number | undefined;
|
|
122726
|
+
sampleCount?: number | undefined;
|
|
122727
|
+
}, {
|
|
122728
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122729
|
+
startFrequency: string | number;
|
|
122730
|
+
stopFrequency: string | number;
|
|
122731
|
+
name?: string | undefined;
|
|
122732
|
+
children?: react.ReactNode;
|
|
122733
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122734
|
+
spiceOptions?: {
|
|
122735
|
+
method?: "trap" | "gear" | undefined;
|
|
122736
|
+
reltol?: string | number | undefined;
|
|
122737
|
+
abstol?: string | number | undefined;
|
|
122738
|
+
vntol?: string | number | undefined;
|
|
122739
|
+
} | undefined;
|
|
122740
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122741
|
+
samplesPerInterval?: number | undefined;
|
|
122742
|
+
sampleCount?: number | undefined;
|
|
122743
|
+
}>;
|
|
122744
|
+
|
|
122745
|
+
interface AnalogSweepCoordinatesProps {
|
|
122746
|
+
/** Stable identity for this sweep parameter. */
|
|
122747
|
+
name?: string;
|
|
122748
|
+
/** Explicit parameter coordinates. Cannot be combined with start/stop/step. */
|
|
122749
|
+
values?: Array<number | string>;
|
|
122750
|
+
/** First generated parameter coordinate. Requires stop and step. */
|
|
122751
|
+
start?: number | string;
|
|
122752
|
+
/** Last generated parameter coordinate. Requires start and step. */
|
|
122753
|
+
stop?: number | string;
|
|
122754
|
+
/** Nonzero parameter increment directed from start toward stop. */
|
|
122755
|
+
step?: number | string;
|
|
122756
|
+
}
|
|
122757
|
+
interface AnalogResistanceSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122758
|
+
parameterType: "resistance";
|
|
122759
|
+
/** Selector for the resistor whose simulation-only resistance is swept. */
|
|
122760
|
+
resistorRef: string;
|
|
122761
|
+
}
|
|
122762
|
+
interface AnalogCapacitanceSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122763
|
+
parameterType: "capacitance";
|
|
122764
|
+
/** Selector for the capacitor whose simulation-only capacitance is swept. */
|
|
122765
|
+
capacitorRef: string;
|
|
122766
|
+
}
|
|
122767
|
+
interface AnalogInductanceSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122768
|
+
parameterType: "inductance";
|
|
122769
|
+
/** Selector for the inductor whose simulation-only inductance is swept. */
|
|
122770
|
+
inductorRef: string;
|
|
122771
|
+
}
|
|
122772
|
+
interface AnalogVoltageSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122773
|
+
parameterType: "voltage";
|
|
122774
|
+
/** Net whose simulation-only voltage is swept. */
|
|
122775
|
+
net: string;
|
|
122776
|
+
}
|
|
122777
|
+
interface AnalogCurrentSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122778
|
+
parameterType: "current";
|
|
122779
|
+
/** Selector for the current source whose simulation-only current is swept. */
|
|
122780
|
+
currentSourceRef: string;
|
|
122781
|
+
}
|
|
122782
|
+
declare const analogResistanceSweepParameterProps: z.ZodObject<{
|
|
122783
|
+
parameterType: z.ZodLiteral<"resistance">;
|
|
122784
|
+
resistorRef: z.ZodString;
|
|
122785
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122786
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122787
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122788
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122789
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122790
|
+
}, "strict", z.ZodTypeAny, {
|
|
122791
|
+
parameterType: "resistance";
|
|
122792
|
+
resistorRef: string;
|
|
122793
|
+
values?: number[] | undefined;
|
|
122794
|
+
name?: string | undefined;
|
|
122795
|
+
start?: number | undefined;
|
|
122796
|
+
stop?: number | undefined;
|
|
122797
|
+
step?: number | undefined;
|
|
122798
|
+
}, {
|
|
122799
|
+
parameterType: "resistance";
|
|
122800
|
+
resistorRef: string;
|
|
122801
|
+
values?: (string | number)[] | undefined;
|
|
122802
|
+
name?: string | undefined;
|
|
122803
|
+
start?: string | number | undefined;
|
|
122804
|
+
stop?: string | number | undefined;
|
|
122805
|
+
step?: string | number | undefined;
|
|
122806
|
+
}>;
|
|
122807
|
+
declare const analogCapacitanceSweepParameterProps: z.ZodObject<{
|
|
122808
|
+
parameterType: z.ZodLiteral<"capacitance">;
|
|
122809
|
+
capacitorRef: z.ZodString;
|
|
122810
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122811
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122812
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122813
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122814
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122815
|
+
}, "strict", z.ZodTypeAny, {
|
|
122816
|
+
parameterType: "capacitance";
|
|
122817
|
+
capacitorRef: string;
|
|
122818
|
+
values?: number[] | undefined;
|
|
122819
|
+
name?: string | undefined;
|
|
122820
|
+
start?: number | undefined;
|
|
122821
|
+
stop?: number | undefined;
|
|
122822
|
+
step?: number | undefined;
|
|
122823
|
+
}, {
|
|
122824
|
+
parameterType: "capacitance";
|
|
122825
|
+
capacitorRef: string;
|
|
122826
|
+
values?: (string | number)[] | undefined;
|
|
122827
|
+
name?: string | undefined;
|
|
122828
|
+
start?: string | number | undefined;
|
|
122829
|
+
stop?: string | number | undefined;
|
|
122830
|
+
step?: string | number | undefined;
|
|
122831
|
+
}>;
|
|
122832
|
+
declare const analogInductanceSweepParameterProps: z.ZodObject<{
|
|
122833
|
+
parameterType: z.ZodLiteral<"inductance">;
|
|
122834
|
+
inductorRef: z.ZodString;
|
|
122835
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122836
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122837
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122838
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122839
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122840
|
+
}, "strict", z.ZodTypeAny, {
|
|
122841
|
+
parameterType: "inductance";
|
|
122842
|
+
inductorRef: string;
|
|
122843
|
+
values?: number[] | undefined;
|
|
122844
|
+
name?: string | undefined;
|
|
122845
|
+
start?: number | undefined;
|
|
122846
|
+
stop?: number | undefined;
|
|
122847
|
+
step?: number | undefined;
|
|
122848
|
+
}, {
|
|
122849
|
+
parameterType: "inductance";
|
|
122850
|
+
inductorRef: string;
|
|
122851
|
+
values?: (string | number)[] | undefined;
|
|
122852
|
+
name?: string | undefined;
|
|
122853
|
+
start?: string | number | undefined;
|
|
122854
|
+
stop?: string | number | undefined;
|
|
122855
|
+
step?: string | number | undefined;
|
|
122856
|
+
}>;
|
|
122857
|
+
declare const analogVoltageSweepParameterProps: z.ZodObject<{
|
|
122858
|
+
parameterType: z.ZodLiteral<"voltage">;
|
|
122859
|
+
net: z.ZodString;
|
|
122860
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122861
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122862
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122863
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122864
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122865
|
+
}, "strict", z.ZodTypeAny, {
|
|
122866
|
+
net: string;
|
|
122867
|
+
parameterType: "voltage";
|
|
122868
|
+
values?: number[] | undefined;
|
|
122869
|
+
name?: string | undefined;
|
|
122870
|
+
start?: number | undefined;
|
|
122871
|
+
stop?: number | undefined;
|
|
122872
|
+
step?: number | undefined;
|
|
122873
|
+
}, {
|
|
122874
|
+
net: string;
|
|
122875
|
+
parameterType: "voltage";
|
|
122876
|
+
values?: (string | number)[] | undefined;
|
|
122877
|
+
name?: string | undefined;
|
|
122878
|
+
start?: string | number | undefined;
|
|
122879
|
+
stop?: string | number | undefined;
|
|
122880
|
+
step?: string | number | undefined;
|
|
122881
|
+
}>;
|
|
122882
|
+
declare const analogCurrentSweepParameterProps: z.ZodObject<{
|
|
122883
|
+
parameterType: z.ZodLiteral<"current">;
|
|
122884
|
+
currentSourceRef: z.ZodString;
|
|
122885
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122886
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122887
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122888
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122889
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122890
|
+
}, "strict", z.ZodTypeAny, {
|
|
122891
|
+
parameterType: "current";
|
|
122892
|
+
currentSourceRef: string;
|
|
122893
|
+
values?: number[] | undefined;
|
|
122894
|
+
name?: string | undefined;
|
|
122895
|
+
start?: number | undefined;
|
|
122896
|
+
stop?: number | undefined;
|
|
122897
|
+
step?: number | undefined;
|
|
122898
|
+
}, {
|
|
122899
|
+
parameterType: "current";
|
|
122900
|
+
currentSourceRef: string;
|
|
122901
|
+
values?: (string | number)[] | undefined;
|
|
122902
|
+
name?: string | undefined;
|
|
122903
|
+
start?: string | number | undefined;
|
|
122904
|
+
stop?: string | number | undefined;
|
|
122905
|
+
step?: string | number | undefined;
|
|
122906
|
+
}>;
|
|
122907
|
+
type AnalogSweepParameterProps = AnalogResistanceSweepParameterProps | AnalogCapacitanceSweepParameterProps | AnalogInductanceSweepParameterProps | AnalogVoltageSweepParameterProps | AnalogCurrentSweepParameterProps;
|
|
122908
|
+
declare const analogSweepParameterProps: z.ZodEffects<z.ZodDiscriminatedUnion<"parameterType", [z.ZodObject<{
|
|
122909
|
+
parameterType: z.ZodLiteral<"resistance">;
|
|
122910
|
+
resistorRef: z.ZodString;
|
|
122911
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122912
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122913
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122914
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122915
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122916
|
+
}, "strict", z.ZodTypeAny, {
|
|
122917
|
+
parameterType: "resistance";
|
|
122918
|
+
resistorRef: string;
|
|
122919
|
+
values?: number[] | undefined;
|
|
122920
|
+
name?: string | undefined;
|
|
122921
|
+
start?: number | undefined;
|
|
122922
|
+
stop?: number | undefined;
|
|
122923
|
+
step?: number | undefined;
|
|
122924
|
+
}, {
|
|
122925
|
+
parameterType: "resistance";
|
|
122926
|
+
resistorRef: string;
|
|
122927
|
+
values?: (string | number)[] | undefined;
|
|
122928
|
+
name?: string | undefined;
|
|
122929
|
+
start?: string | number | undefined;
|
|
122930
|
+
stop?: string | number | undefined;
|
|
122931
|
+
step?: string | number | undefined;
|
|
122932
|
+
}>, z.ZodObject<{
|
|
122933
|
+
parameterType: z.ZodLiteral<"capacitance">;
|
|
122934
|
+
capacitorRef: z.ZodString;
|
|
122935
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122936
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122937
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122938
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122939
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122940
|
+
}, "strict", z.ZodTypeAny, {
|
|
122941
|
+
parameterType: "capacitance";
|
|
122942
|
+
capacitorRef: string;
|
|
122943
|
+
values?: number[] | undefined;
|
|
122944
|
+
name?: string | undefined;
|
|
122945
|
+
start?: number | undefined;
|
|
122946
|
+
stop?: number | undefined;
|
|
122947
|
+
step?: number | undefined;
|
|
122948
|
+
}, {
|
|
122949
|
+
parameterType: "capacitance";
|
|
122950
|
+
capacitorRef: string;
|
|
122951
|
+
values?: (string | number)[] | undefined;
|
|
122952
|
+
name?: string | undefined;
|
|
122953
|
+
start?: string | number | undefined;
|
|
122954
|
+
stop?: string | number | undefined;
|
|
122955
|
+
step?: string | number | undefined;
|
|
122956
|
+
}>, z.ZodObject<{
|
|
122957
|
+
parameterType: z.ZodLiteral<"inductance">;
|
|
122958
|
+
inductorRef: z.ZodString;
|
|
122959
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122960
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122961
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122962
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122963
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122964
|
+
}, "strict", z.ZodTypeAny, {
|
|
122965
|
+
parameterType: "inductance";
|
|
122966
|
+
inductorRef: string;
|
|
122967
|
+
values?: number[] | undefined;
|
|
122968
|
+
name?: string | undefined;
|
|
122969
|
+
start?: number | undefined;
|
|
122970
|
+
stop?: number | undefined;
|
|
122971
|
+
step?: number | undefined;
|
|
122972
|
+
}, {
|
|
122973
|
+
parameterType: "inductance";
|
|
122974
|
+
inductorRef: string;
|
|
122975
|
+
values?: (string | number)[] | undefined;
|
|
122976
|
+
name?: string | undefined;
|
|
122977
|
+
start?: string | number | undefined;
|
|
122978
|
+
stop?: string | number | undefined;
|
|
122979
|
+
step?: string | number | undefined;
|
|
122980
|
+
}>, z.ZodObject<{
|
|
122981
|
+
parameterType: z.ZodLiteral<"voltage">;
|
|
122982
|
+
net: z.ZodString;
|
|
122983
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122984
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122985
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122986
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122987
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122988
|
+
}, "strict", z.ZodTypeAny, {
|
|
122989
|
+
net: string;
|
|
122990
|
+
parameterType: "voltage";
|
|
122991
|
+
values?: number[] | undefined;
|
|
122992
|
+
name?: string | undefined;
|
|
122993
|
+
start?: number | undefined;
|
|
122994
|
+
stop?: number | undefined;
|
|
122995
|
+
step?: number | undefined;
|
|
122996
|
+
}, {
|
|
122997
|
+
net: string;
|
|
122998
|
+
parameterType: "voltage";
|
|
122999
|
+
values?: (string | number)[] | undefined;
|
|
123000
|
+
name?: string | undefined;
|
|
123001
|
+
start?: string | number | undefined;
|
|
123002
|
+
stop?: string | number | undefined;
|
|
123003
|
+
step?: string | number | undefined;
|
|
123004
|
+
}>, z.ZodObject<{
|
|
123005
|
+
parameterType: z.ZodLiteral<"current">;
|
|
123006
|
+
currentSourceRef: z.ZodString;
|
|
123007
|
+
name: z.ZodOptional<z.ZodString>;
|
|
123008
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
123009
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123010
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123011
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123012
|
+
}, "strict", z.ZodTypeAny, {
|
|
123013
|
+
parameterType: "current";
|
|
123014
|
+
currentSourceRef: string;
|
|
123015
|
+
values?: number[] | undefined;
|
|
123016
|
+
name?: string | undefined;
|
|
123017
|
+
start?: number | undefined;
|
|
123018
|
+
stop?: number | undefined;
|
|
123019
|
+
step?: number | undefined;
|
|
123020
|
+
}, {
|
|
123021
|
+
parameterType: "current";
|
|
123022
|
+
currentSourceRef: string;
|
|
123023
|
+
values?: (string | number)[] | undefined;
|
|
123024
|
+
name?: string | undefined;
|
|
123025
|
+
start?: string | number | undefined;
|
|
123026
|
+
stop?: string | number | undefined;
|
|
123027
|
+
step?: string | number | undefined;
|
|
123028
|
+
}>]>, {
|
|
123029
|
+
parameterType: "resistance";
|
|
123030
|
+
resistorRef: string;
|
|
123031
|
+
values?: number[] | undefined;
|
|
123032
|
+
name?: string | undefined;
|
|
123033
|
+
start?: number | undefined;
|
|
123034
|
+
stop?: number | undefined;
|
|
123035
|
+
step?: number | undefined;
|
|
123036
|
+
} | {
|
|
123037
|
+
parameterType: "capacitance";
|
|
123038
|
+
capacitorRef: string;
|
|
123039
|
+
values?: number[] | undefined;
|
|
123040
|
+
name?: string | undefined;
|
|
123041
|
+
start?: number | undefined;
|
|
123042
|
+
stop?: number | undefined;
|
|
123043
|
+
step?: number | undefined;
|
|
123044
|
+
} | {
|
|
123045
|
+
parameterType: "inductance";
|
|
123046
|
+
inductorRef: string;
|
|
123047
|
+
values?: number[] | undefined;
|
|
123048
|
+
name?: string | undefined;
|
|
123049
|
+
start?: number | undefined;
|
|
123050
|
+
stop?: number | undefined;
|
|
123051
|
+
step?: number | undefined;
|
|
123052
|
+
} | {
|
|
123053
|
+
net: string;
|
|
123054
|
+
parameterType: "voltage";
|
|
123055
|
+
values?: number[] | undefined;
|
|
123056
|
+
name?: string | undefined;
|
|
123057
|
+
start?: number | undefined;
|
|
123058
|
+
stop?: number | undefined;
|
|
123059
|
+
step?: number | undefined;
|
|
123060
|
+
} | {
|
|
123061
|
+
parameterType: "current";
|
|
123062
|
+
currentSourceRef: string;
|
|
123063
|
+
values?: number[] | undefined;
|
|
123064
|
+
name?: string | undefined;
|
|
123065
|
+
start?: number | undefined;
|
|
123066
|
+
stop?: number | undefined;
|
|
123067
|
+
step?: number | undefined;
|
|
123068
|
+
}, {
|
|
123069
|
+
parameterType: "resistance";
|
|
123070
|
+
resistorRef: string;
|
|
123071
|
+
values?: (string | number)[] | undefined;
|
|
123072
|
+
name?: string | undefined;
|
|
123073
|
+
start?: string | number | undefined;
|
|
123074
|
+
stop?: string | number | undefined;
|
|
123075
|
+
step?: string | number | undefined;
|
|
123076
|
+
} | {
|
|
123077
|
+
parameterType: "capacitance";
|
|
123078
|
+
capacitorRef: string;
|
|
123079
|
+
values?: (string | number)[] | undefined;
|
|
123080
|
+
name?: string | undefined;
|
|
123081
|
+
start?: string | number | undefined;
|
|
123082
|
+
stop?: string | number | undefined;
|
|
123083
|
+
step?: string | number | undefined;
|
|
123084
|
+
} | {
|
|
123085
|
+
parameterType: "inductance";
|
|
123086
|
+
inductorRef: string;
|
|
123087
|
+
values?: (string | number)[] | undefined;
|
|
123088
|
+
name?: string | undefined;
|
|
123089
|
+
start?: string | number | undefined;
|
|
123090
|
+
stop?: string | number | undefined;
|
|
123091
|
+
step?: string | number | undefined;
|
|
123092
|
+
} | {
|
|
123093
|
+
net: string;
|
|
123094
|
+
parameterType: "voltage";
|
|
123095
|
+
values?: (string | number)[] | undefined;
|
|
123096
|
+
name?: string | undefined;
|
|
123097
|
+
start?: string | number | undefined;
|
|
123098
|
+
stop?: string | number | undefined;
|
|
123099
|
+
step?: string | number | undefined;
|
|
123100
|
+
} | {
|
|
123101
|
+
parameterType: "current";
|
|
123102
|
+
currentSourceRef: string;
|
|
123103
|
+
values?: (string | number)[] | undefined;
|
|
123104
|
+
name?: string | undefined;
|
|
123105
|
+
start?: string | number | undefined;
|
|
123106
|
+
stop?: string | number | undefined;
|
|
123107
|
+
step?: string | number | undefined;
|
|
123108
|
+
}>;
|
|
123109
|
+
|
|
122374
123110
|
interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
122375
123111
|
key?: any;
|
|
122376
123112
|
name?: string;
|
|
@@ -169935,6 +170671,10 @@ interface VoltageSourceProps<PinLabel extends string = string> extends CommonCom
|
|
|
169935
170671
|
fallTime?: number | string;
|
|
169936
170672
|
pulseWidth?: number | string;
|
|
169937
170673
|
period?: number | string;
|
|
170674
|
+
/** Small-signal AC magnitude. Raw numbers are volts. */
|
|
170675
|
+
acMagnitude?: number | string;
|
|
170676
|
+
/** Small-signal AC phase. Raw numbers are degrees. */
|
|
170677
|
+
acPhase?: number | string;
|
|
169938
170678
|
connections?: Connections<VoltageSourcePinLabels>;
|
|
169939
170679
|
}
|
|
169940
170680
|
declare const voltageSourceProps: z.ZodObject<{
|
|
@@ -173308,6 +174048,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173308
174048
|
fallTime: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
173309
174049
|
pulseWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
173310
174050
|
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
174051
|
+
acMagnitude: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
174052
|
+
acPhase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
173311
174053
|
connections: z.ZodOptional<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">]>>>;
|
|
173312
174054
|
}, "strip", z.ZodTypeAny, {
|
|
173313
174055
|
name: string;
|
|
@@ -173899,6 +174641,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173899
174641
|
fallTime?: number | undefined;
|
|
173900
174642
|
pulseWidth?: number | undefined;
|
|
173901
174643
|
period?: number | undefined;
|
|
174644
|
+
acMagnitude?: number | undefined;
|
|
174645
|
+
acPhase?: number | undefined;
|
|
173902
174646
|
}, {
|
|
173903
174647
|
name: string;
|
|
173904
174648
|
symbol?: SymbolProp | undefined;
|
|
@@ -174491,6 +175235,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
174491
175235
|
fallTime?: string | number | undefined;
|
|
174492
175236
|
pulseWidth?: string | number | undefined;
|
|
174493
175237
|
period?: string | number | undefined;
|
|
175238
|
+
acMagnitude?: string | number | undefined;
|
|
175239
|
+
acPhase?: string | number | undefined;
|
|
174494
175240
|
}>;
|
|
174495
175241
|
declare const voltageSourcePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
174496
175242
|
|
|
@@ -174503,6 +175249,10 @@ interface CurrentSourceProps<PinLabel extends string = string> extends CommonCom
|
|
|
174503
175249
|
waveShape?: WaveShape;
|
|
174504
175250
|
phase?: number | string;
|
|
174505
175251
|
dutyCycle?: number | string;
|
|
175252
|
+
/** Small-signal AC magnitude. Raw numbers are amperes. */
|
|
175253
|
+
acMagnitude?: number | string;
|
|
175254
|
+
/** Small-signal AC phase. Raw numbers are degrees. */
|
|
175255
|
+
acPhase?: number | string;
|
|
174506
175256
|
connections?: Connections<CurrentSourcePinLabels>;
|
|
174507
175257
|
}
|
|
174508
175258
|
declare const currentSourceProps: z.ZodObject<{
|
|
@@ -177871,6 +178621,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177871
178621
|
waveShape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
177872
178622
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
177873
178623
|
dutyCycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
178624
|
+
acMagnitude: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
178625
|
+
acPhase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
177874
178626
|
connections: z.ZodOptional<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">]>>>;
|
|
177875
178627
|
}, "strip", z.ZodTypeAny, {
|
|
177876
178628
|
name: string;
|
|
@@ -178452,10 +179204,12 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
178452
179204
|
schSheetName?: string | undefined;
|
|
178453
179205
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
178454
179206
|
frequency?: number | undefined;
|
|
179207
|
+
current?: number | undefined;
|
|
178455
179208
|
waveShape?: "square" | "triangle" | "sawtooth" | "sinewave" | undefined;
|
|
178456
179209
|
phase?: number | undefined;
|
|
178457
179210
|
dutyCycle?: number | undefined;
|
|
178458
|
-
|
|
179211
|
+
acMagnitude?: number | undefined;
|
|
179212
|
+
acPhase?: number | undefined;
|
|
178459
179213
|
peakToPeakCurrent?: number | undefined;
|
|
178460
179214
|
}, {
|
|
178461
179215
|
name: string;
|
|
@@ -179039,10 +179793,12 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
179039
179793
|
schSheetName?: string | undefined;
|
|
179040
179794
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
179041
179795
|
frequency?: string | number | undefined;
|
|
179796
|
+
current?: string | number | undefined;
|
|
179042
179797
|
waveShape?: "square" | "triangle" | "sawtooth" | "sinewave" | undefined;
|
|
179043
179798
|
phase?: string | number | undefined;
|
|
179044
179799
|
dutyCycle?: string | number | undefined;
|
|
179045
|
-
|
|
179800
|
+
acMagnitude?: string | number | undefined;
|
|
179801
|
+
acPhase?: string | number | undefined;
|
|
179046
179802
|
peakToPeakCurrent?: string | number | undefined;
|
|
179047
179803
|
}>;
|
|
179048
179804
|
declare const currentSourcePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
@@ -191590,4 +192346,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
191590
192346
|
}
|
|
191591
192347
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
191592
192348
|
|
|
191593
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, 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 CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, 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 DifferentialPairProps, 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 EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, 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 InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, 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 ParsedEnclosureCutoutApertureProps, 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 PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, 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 RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, 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 SchematicSymbolProps, 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, assemblyDeviceProps, assemblyProps, 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, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, 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, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, 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, schematicSymbolProps, 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 };
|
|
192349
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, 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 CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, 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 DifferentialPairProps, 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 EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, 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 InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, 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 ParsedEnclosureCutoutApertureProps, 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 PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, 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 RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, 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 SchematicSymbolProps, 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, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, 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, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, 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, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, 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, schematicSymbolProps, 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 };
|