@tscircuit/props 0.0.203 → 0.0.205
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 +5 -0
- package/dist/index.d.ts +75 -3
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/lib/components/led.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -83,6 +83,7 @@ export interface CommonComponentProps extends CommonLayoutProps {
|
|
|
83
83
|
cadModel?: CadModelProp
|
|
84
84
|
children?: any
|
|
85
85
|
symbolName?: string
|
|
86
|
+
doNotPlace?: boolean
|
|
86
87
|
}
|
|
87
88
|
```
|
|
88
89
|
|
|
@@ -650,6 +651,10 @@ export interface PlatformConfig {
|
|
|
650
651
|
|
|
651
652
|
cloudAutorouterUrl?: string
|
|
652
653
|
|
|
654
|
+
pcbDisabled?: boolean
|
|
655
|
+
schematicDisabled?: boolean
|
|
656
|
+
partsEngineDisabled?: boolean
|
|
657
|
+
|
|
653
658
|
footprintLibraryMap?: Record<
|
|
654
659
|
string,
|
|
655
660
|
Record<
|
package/dist/index.d.ts
CHANGED
|
@@ -713,6 +713,7 @@ interface CommonComponentProps extends CommonLayoutProps {
|
|
|
713
713
|
cadModel?: CadModelProp;
|
|
714
714
|
children?: any;
|
|
715
715
|
symbolName?: string;
|
|
716
|
+
doNotPlace?: boolean;
|
|
716
717
|
}
|
|
717
718
|
declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
718
719
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -970,6 +971,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
970
971
|
}>]>>;
|
|
971
972
|
children: z.ZodOptional<z.ZodAny>;
|
|
972
973
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
974
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
973
975
|
}>, "strip", z.ZodTypeAny, {
|
|
974
976
|
name: string;
|
|
975
977
|
pcbX?: number | undefined;
|
|
@@ -1037,6 +1039,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
1037
1039
|
} | null | undefined;
|
|
1038
1040
|
children?: any;
|
|
1039
1041
|
symbolName?: string | undefined;
|
|
1042
|
+
doNotPlace?: boolean | undefined;
|
|
1040
1043
|
}, {
|
|
1041
1044
|
name: string;
|
|
1042
1045
|
pcbX?: string | number | undefined;
|
|
@@ -1106,6 +1109,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
1106
1109
|
} | null | undefined;
|
|
1107
1110
|
children?: any;
|
|
1108
1111
|
symbolName?: string | undefined;
|
|
1112
|
+
doNotPlace?: boolean | undefined;
|
|
1109
1113
|
}>;
|
|
1110
1114
|
declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1111
1115
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -1363,6 +1367,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
1363
1367
|
}>]>>;
|
|
1364
1368
|
children: z.ZodOptional<z.ZodAny>;
|
|
1365
1369
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
1370
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
1366
1371
|
}>, "strip", z.ZodTypeAny, {
|
|
1367
1372
|
name: string;
|
|
1368
1373
|
pcbX?: number | undefined;
|
|
@@ -1430,6 +1435,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
1430
1435
|
} | null | undefined;
|
|
1431
1436
|
children?: any;
|
|
1432
1437
|
symbolName?: string | undefined;
|
|
1438
|
+
doNotPlace?: boolean | undefined;
|
|
1433
1439
|
}, {
|
|
1434
1440
|
name: string;
|
|
1435
1441
|
pcbX?: string | number | undefined;
|
|
@@ -1499,6 +1505,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
1499
1505
|
} | null | undefined;
|
|
1500
1506
|
children?: any;
|
|
1501
1507
|
symbolName?: string | undefined;
|
|
1508
|
+
doNotPlace?: boolean | undefined;
|
|
1502
1509
|
}>;
|
|
1503
1510
|
type ComponentProps = z.input<typeof componentProps>;
|
|
1504
1511
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -6317,6 +6324,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
6317
6324
|
}>]>>;
|
|
6318
6325
|
children: z.ZodOptional<z.ZodAny>;
|
|
6319
6326
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
6327
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
6320
6328
|
}>, {
|
|
6321
6329
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
6322
6330
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -6632,6 +6640,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
6632
6640
|
} | null | undefined;
|
|
6633
6641
|
children?: any;
|
|
6634
6642
|
symbolName?: string | undefined;
|
|
6643
|
+
doNotPlace?: boolean | undefined;
|
|
6635
6644
|
schWidth?: number | undefined;
|
|
6636
6645
|
schHeight?: number | undefined;
|
|
6637
6646
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -6776,6 +6785,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
6776
6785
|
} | null | undefined;
|
|
6777
6786
|
children?: any;
|
|
6778
6787
|
symbolName?: string | undefined;
|
|
6788
|
+
doNotPlace?: boolean | undefined;
|
|
6779
6789
|
schWidth?: string | number | undefined;
|
|
6780
6790
|
schHeight?: string | number | undefined;
|
|
6781
6791
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -7111,6 +7121,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
7111
7121
|
}>]>>;
|
|
7112
7122
|
children: z.ZodOptional<z.ZodAny>;
|
|
7113
7123
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
7124
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
7114
7125
|
}>, {
|
|
7115
7126
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
7116
7127
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -7426,6 +7437,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
7426
7437
|
} | null | undefined;
|
|
7427
7438
|
children?: any;
|
|
7428
7439
|
symbolName?: string | undefined;
|
|
7440
|
+
doNotPlace?: boolean | undefined;
|
|
7429
7441
|
schWidth?: number | undefined;
|
|
7430
7442
|
schHeight?: number | undefined;
|
|
7431
7443
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -7570,6 +7582,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
7570
7582
|
} | null | undefined;
|
|
7571
7583
|
children?: any;
|
|
7572
7584
|
symbolName?: string | undefined;
|
|
7585
|
+
doNotPlace?: boolean | undefined;
|
|
7573
7586
|
schWidth?: string | number | undefined;
|
|
7574
7587
|
schHeight?: string | number | undefined;
|
|
7575
7588
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -7923,6 +7936,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
7923
7936
|
}>]>>;
|
|
7924
7937
|
children: z.ZodOptional<z.ZodAny>;
|
|
7925
7938
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
7939
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
7926
7940
|
}>, {
|
|
7927
7941
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
7928
7942
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -8127,6 +8141,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
8127
8141
|
} | null | undefined;
|
|
8128
8142
|
children?: any;
|
|
8129
8143
|
symbolName?: string | undefined;
|
|
8144
|
+
doNotPlace?: boolean | undefined;
|
|
8130
8145
|
schWidth?: number | undefined;
|
|
8131
8146
|
schHeight?: number | undefined;
|
|
8132
8147
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -8240,6 +8255,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
8240
8255
|
} | null | undefined;
|
|
8241
8256
|
children?: any;
|
|
8242
8257
|
symbolName?: string | undefined;
|
|
8258
|
+
doNotPlace?: boolean | undefined;
|
|
8243
8259
|
schWidth?: string | number | undefined;
|
|
8244
8260
|
schHeight?: string | number | undefined;
|
|
8245
8261
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -8561,6 +8577,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
8561
8577
|
}>]>>;
|
|
8562
8578
|
children: z.ZodOptional<z.ZodAny>;
|
|
8563
8579
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
8580
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
8564
8581
|
}>, {
|
|
8565
8582
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
8566
8583
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -8765,6 +8782,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
8765
8782
|
} | null | undefined;
|
|
8766
8783
|
children?: any;
|
|
8767
8784
|
symbolName?: string | undefined;
|
|
8785
|
+
doNotPlace?: boolean | undefined;
|
|
8768
8786
|
schWidth?: number | undefined;
|
|
8769
8787
|
schHeight?: number | undefined;
|
|
8770
8788
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -8878,6 +8896,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
8878
8896
|
} | null | undefined;
|
|
8879
8897
|
children?: any;
|
|
8880
8898
|
symbolName?: string | undefined;
|
|
8899
|
+
doNotPlace?: boolean | undefined;
|
|
8881
8900
|
schWidth?: string | number | undefined;
|
|
8882
8901
|
schHeight?: string | number | undefined;
|
|
8883
8902
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -9206,6 +9225,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
9206
9225
|
}>]>>;
|
|
9207
9226
|
children: z.ZodOptional<z.ZodAny>;
|
|
9208
9227
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
9228
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
9209
9229
|
}>, {
|
|
9210
9230
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
9211
9231
|
voltageRating: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -9279,6 +9299,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
9279
9299
|
} | null | undefined;
|
|
9280
9300
|
children?: any;
|
|
9281
9301
|
symbolName?: string | undefined;
|
|
9302
|
+
doNotPlace?: boolean | undefined;
|
|
9282
9303
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
9283
9304
|
voltageRating?: string | number | undefined;
|
|
9284
9305
|
schShowRatings?: boolean | undefined;
|
|
@@ -9352,6 +9373,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
9352
9373
|
} | null | undefined;
|
|
9353
9374
|
children?: any;
|
|
9354
9375
|
symbolName?: string | undefined;
|
|
9376
|
+
doNotPlace?: boolean | undefined;
|
|
9355
9377
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
9356
9378
|
voltageRating?: string | number | undefined;
|
|
9357
9379
|
schShowRatings?: boolean | undefined;
|
|
@@ -10033,6 +10055,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
10033
10055
|
}>]>>;
|
|
10034
10056
|
children: z.ZodOptional<z.ZodAny>;
|
|
10035
10057
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
10058
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
10036
10059
|
}>, {
|
|
10037
10060
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10038
10061
|
pullupFor: z.ZodOptional<z.ZodString>;
|
|
@@ -10108,6 +10131,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
10108
10131
|
} | null | undefined;
|
|
10109
10132
|
children?: any;
|
|
10110
10133
|
symbolName?: string | undefined;
|
|
10134
|
+
doNotPlace?: boolean | undefined;
|
|
10111
10135
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
10112
10136
|
pullupFor?: string | undefined;
|
|
10113
10137
|
pullupTo?: string | undefined;
|
|
@@ -10183,6 +10207,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
10183
10207
|
} | null | undefined;
|
|
10184
10208
|
children?: any;
|
|
10185
10209
|
symbolName?: string | undefined;
|
|
10210
|
+
doNotPlace?: boolean | undefined;
|
|
10186
10211
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
10187
10212
|
pullupFor?: string | undefined;
|
|
10188
10213
|
pullupTo?: string | undefined;
|
|
@@ -10452,6 +10477,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
10452
10477
|
}>]>>;
|
|
10453
10478
|
children: z.ZodOptional<z.ZodAny>;
|
|
10454
10479
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
10480
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
10455
10481
|
}>, {
|
|
10456
10482
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10457
10483
|
pinVariant: z.ZodOptional<z.ZodEnum<["two_pin", "three_pin"]>>;
|
|
@@ -10523,6 +10549,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
10523
10549
|
} | null | undefined;
|
|
10524
10550
|
children?: any;
|
|
10525
10551
|
symbolName?: string | undefined;
|
|
10552
|
+
doNotPlace?: boolean | undefined;
|
|
10526
10553
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
10527
10554
|
}, {
|
|
10528
10555
|
name: string;
|
|
@@ -10594,6 +10621,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
10594
10621
|
} | null | undefined;
|
|
10595
10622
|
children?: any;
|
|
10596
10623
|
symbolName?: string | undefined;
|
|
10624
|
+
doNotPlace?: boolean | undefined;
|
|
10597
10625
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
10598
10626
|
}>;
|
|
10599
10627
|
|
|
@@ -10859,6 +10887,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
10859
10887
|
}>]>>;
|
|
10860
10888
|
children: z.ZodOptional<z.ZodAny>;
|
|
10861
10889
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
10890
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
10862
10891
|
}>, {
|
|
10863
10892
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10864
10893
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10932,6 +10961,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
10932
10961
|
} | null | undefined;
|
|
10933
10962
|
children?: any;
|
|
10934
10963
|
symbolName?: string | undefined;
|
|
10964
|
+
doNotPlace?: boolean | undefined;
|
|
10935
10965
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
10936
10966
|
}, {
|
|
10937
10967
|
name: string;
|
|
@@ -11004,6 +11034,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
11004
11034
|
} | null | undefined;
|
|
11005
11035
|
children?: any;
|
|
11006
11036
|
symbolName?: string | undefined;
|
|
11037
|
+
doNotPlace?: boolean | undefined;
|
|
11007
11038
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
11008
11039
|
}>;
|
|
11009
11040
|
declare const crystalPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -11270,6 +11301,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
11270
11301
|
}>]>>;
|
|
11271
11302
|
children: z.ZodOptional<z.ZodAny>;
|
|
11272
11303
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
11304
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
11273
11305
|
}>, {
|
|
11274
11306
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11275
11307
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11343,6 +11375,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
11343
11375
|
} | null | undefined;
|
|
11344
11376
|
children?: any;
|
|
11345
11377
|
symbolName?: string | undefined;
|
|
11378
|
+
doNotPlace?: boolean | undefined;
|
|
11346
11379
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
11347
11380
|
}, {
|
|
11348
11381
|
name: string;
|
|
@@ -11415,6 +11448,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
11415
11448
|
} | null | undefined;
|
|
11416
11449
|
children?: any;
|
|
11417
11450
|
symbolName?: string | undefined;
|
|
11451
|
+
doNotPlace?: boolean | undefined;
|
|
11418
11452
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
11419
11453
|
}>;
|
|
11420
11454
|
|
|
@@ -12360,6 +12394,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
12360
12394
|
}>]>>;
|
|
12361
12395
|
children: z.ZodOptional<z.ZodAny>;
|
|
12362
12396
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
12397
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
12363
12398
|
}>, {
|
|
12364
12399
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
12365
12400
|
maxVoltageRating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -12441,6 +12476,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
12441
12476
|
} | null | undefined;
|
|
12442
12477
|
children?: any;
|
|
12443
12478
|
symbolName?: string | undefined;
|
|
12479
|
+
doNotPlace?: boolean | undefined;
|
|
12444
12480
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
12445
12481
|
maxVoltageRating?: number | undefined;
|
|
12446
12482
|
decouplingFor?: string | undefined;
|
|
@@ -12518,6 +12554,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
12518
12554
|
} | null | undefined;
|
|
12519
12555
|
children?: any;
|
|
12520
12556
|
symbolName?: string | undefined;
|
|
12557
|
+
doNotPlace?: boolean | undefined;
|
|
12521
12558
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
12522
12559
|
schShowRatings?: boolean | undefined;
|
|
12523
12560
|
maxVoltageRating?: string | number | undefined;
|
|
@@ -14006,6 +14043,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
14006
14043
|
}>]>>;
|
|
14007
14044
|
children: z.ZodOptional<z.ZodAny>;
|
|
14008
14045
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
14046
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
14009
14047
|
}>, {
|
|
14010
14048
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
14011
14049
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -14075,6 +14113,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
14075
14113
|
} | null | undefined;
|
|
14076
14114
|
children?: any;
|
|
14077
14115
|
symbolName?: string | undefined;
|
|
14116
|
+
doNotPlace?: boolean | undefined;
|
|
14078
14117
|
capacity?: number | undefined;
|
|
14079
14118
|
}, {
|
|
14080
14119
|
name: string;
|
|
@@ -14145,6 +14184,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
14145
14184
|
} | null | undefined;
|
|
14146
14185
|
children?: any;
|
|
14147
14186
|
symbolName?: string | undefined;
|
|
14187
|
+
doNotPlace?: boolean | undefined;
|
|
14148
14188
|
capacity?: string | number | undefined;
|
|
14149
14189
|
}>;
|
|
14150
14190
|
declare const batteryPins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
@@ -14451,6 +14491,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
14451
14491
|
}>]>>;
|
|
14452
14492
|
children: z.ZodOptional<z.ZodAny>;
|
|
14453
14493
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
14494
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
14454
14495
|
}>, {
|
|
14455
14496
|
pinCount: z.ZodNumber;
|
|
14456
14497
|
pitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -14631,6 +14672,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
14631
14672
|
} | null | undefined;
|
|
14632
14673
|
children?: any;
|
|
14633
14674
|
symbolName?: string | undefined;
|
|
14675
|
+
doNotPlace?: boolean | undefined;
|
|
14634
14676
|
pinLabels?: string[] | undefined;
|
|
14635
14677
|
schPinArrangement?: {
|
|
14636
14678
|
leftSize?: number | undefined;
|
|
@@ -14735,6 +14777,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
14735
14777
|
} | null | undefined;
|
|
14736
14778
|
children?: any;
|
|
14737
14779
|
symbolName?: string | undefined;
|
|
14780
|
+
doNotPlace?: boolean | undefined;
|
|
14738
14781
|
pinLabels?: string[] | undefined;
|
|
14739
14782
|
schPinArrangement?: {
|
|
14740
14783
|
leftSize?: number | undefined;
|
|
@@ -15056,6 +15099,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15056
15099
|
}>]>>;
|
|
15057
15100
|
children: z.ZodOptional<z.ZodAny>;
|
|
15058
15101
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
15102
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
15059
15103
|
}>, {
|
|
15060
15104
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
15061
15105
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -15371,6 +15415,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15371
15415
|
} | null | undefined;
|
|
15372
15416
|
children?: any;
|
|
15373
15417
|
symbolName?: string | undefined;
|
|
15418
|
+
doNotPlace?: boolean | undefined;
|
|
15374
15419
|
schWidth?: number | undefined;
|
|
15375
15420
|
schHeight?: number | undefined;
|
|
15376
15421
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -15515,6 +15560,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15515
15560
|
} | null | undefined;
|
|
15516
15561
|
children?: any;
|
|
15517
15562
|
symbolName?: string | undefined;
|
|
15563
|
+
doNotPlace?: boolean | undefined;
|
|
15518
15564
|
schWidth?: string | number | undefined;
|
|
15519
15565
|
schHeight?: string | number | undefined;
|
|
15520
15566
|
manufacturerPartNumber?: string | undefined;
|
|
@@ -16447,6 +16493,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16447
16493
|
}>]>>;
|
|
16448
16494
|
children: z.ZodOptional<z.ZodAny>;
|
|
16449
16495
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
16496
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
16450
16497
|
}>, {
|
|
16451
16498
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet"]>;
|
|
16452
16499
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -16517,6 +16564,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16517
16564
|
} | null | undefined;
|
|
16518
16565
|
children?: any;
|
|
16519
16566
|
symbolName?: string | undefined;
|
|
16567
|
+
doNotPlace?: boolean | undefined;
|
|
16520
16568
|
}, {
|
|
16521
16569
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet";
|
|
16522
16570
|
name: string;
|
|
@@ -16587,6 +16635,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16587
16635
|
} | null | undefined;
|
|
16588
16636
|
children?: any;
|
|
16589
16637
|
symbolName?: string | undefined;
|
|
16638
|
+
doNotPlace?: boolean | undefined;
|
|
16590
16639
|
}>;
|
|
16591
16640
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
16592
16641
|
|
|
@@ -16850,6 +16899,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
16850
16899
|
}>]>>;
|
|
16851
16900
|
children: z.ZodOptional<z.ZodAny>;
|
|
16852
16901
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
16902
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
16853
16903
|
}>, {
|
|
16854
16904
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
16855
16905
|
mosfetMode: z.ZodEnum<["enhancement", "depletion"]>;
|
|
@@ -16922,6 +16972,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
16922
16972
|
} | null | undefined;
|
|
16923
16973
|
children?: any;
|
|
16924
16974
|
symbolName?: string | undefined;
|
|
16975
|
+
doNotPlace?: boolean | undefined;
|
|
16925
16976
|
}, {
|
|
16926
16977
|
name: string;
|
|
16927
16978
|
channelType: "n" | "p";
|
|
@@ -16993,6 +17044,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
16993
17044
|
} | null | undefined;
|
|
16994
17045
|
children?: any;
|
|
16995
17046
|
symbolName?: string | undefined;
|
|
17047
|
+
doNotPlace?: boolean | undefined;
|
|
16996
17048
|
}>;
|
|
16997
17049
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
16998
17050
|
|
|
@@ -17252,6 +17304,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
17252
17304
|
}>]>>;
|
|
17253
17305
|
children: z.ZodOptional<z.ZodAny>;
|
|
17254
17306
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
17307
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
17255
17308
|
}>, {
|
|
17256
17309
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17257
17310
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -17322,6 +17375,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
17322
17375
|
} | null | undefined;
|
|
17323
17376
|
children?: any;
|
|
17324
17377
|
symbolName?: string | undefined;
|
|
17378
|
+
doNotPlace?: boolean | undefined;
|
|
17325
17379
|
}, {
|
|
17326
17380
|
name: string;
|
|
17327
17381
|
inductance: string | number;
|
|
@@ -17392,6 +17446,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
17392
17446
|
} | null | undefined;
|
|
17393
17447
|
children?: any;
|
|
17394
17448
|
symbolName?: string | undefined;
|
|
17449
|
+
doNotPlace?: boolean | undefined;
|
|
17395
17450
|
}>;
|
|
17396
17451
|
declare const inductorPins: readonly ["pin1", "left", "pin2", "right"];
|
|
17397
17452
|
type InductorProps = z.input<typeof inductorProps>;
|
|
@@ -17652,6 +17707,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
17652
17707
|
}>]>>;
|
|
17653
17708
|
children: z.ZodOptional<z.ZodAny>;
|
|
17654
17709
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
17710
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
17655
17711
|
}>, {
|
|
17656
17712
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
17657
17713
|
variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "photo", "tvs"]>>>;
|
|
@@ -17728,6 +17784,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
17728
17784
|
} | null | undefined;
|
|
17729
17785
|
children?: any;
|
|
17730
17786
|
symbolName?: string | undefined;
|
|
17787
|
+
doNotPlace?: boolean | undefined;
|
|
17731
17788
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
17732
17789
|
standard?: boolean | undefined;
|
|
17733
17790
|
schottky?: boolean | undefined;
|
|
@@ -17803,6 +17860,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
17803
17860
|
} | null | undefined;
|
|
17804
17861
|
children?: any;
|
|
17805
17862
|
symbolName?: string | undefined;
|
|
17863
|
+
doNotPlace?: boolean | undefined;
|
|
17806
17864
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
17807
17865
|
standard?: boolean | undefined;
|
|
17808
17866
|
schottky?: boolean | undefined;
|
|
@@ -17878,6 +17936,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
17878
17936
|
} | null | undefined;
|
|
17879
17937
|
children?: any;
|
|
17880
17938
|
symbolName?: string | undefined;
|
|
17939
|
+
doNotPlace?: boolean | undefined;
|
|
17881
17940
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
17882
17941
|
standard?: boolean | undefined;
|
|
17883
17942
|
schottky?: boolean | undefined;
|
|
@@ -17953,6 +18012,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
17953
18012
|
} | null | undefined;
|
|
17954
18013
|
children?: any;
|
|
17955
18014
|
symbolName?: string | undefined;
|
|
18015
|
+
doNotPlace?: boolean | undefined;
|
|
17956
18016
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
17957
18017
|
standard?: boolean | undefined;
|
|
17958
18018
|
schottky?: boolean | undefined;
|
|
@@ -18033,6 +18093,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
18033
18093
|
} | null | undefined;
|
|
18034
18094
|
children?: any;
|
|
18035
18095
|
symbolName?: string | undefined;
|
|
18096
|
+
doNotPlace?: boolean | undefined;
|
|
18036
18097
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
18037
18098
|
}, {
|
|
18038
18099
|
name: string;
|
|
@@ -18103,6 +18164,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
18103
18164
|
} | null | undefined;
|
|
18104
18165
|
children?: any;
|
|
18105
18166
|
symbolName?: string | undefined;
|
|
18167
|
+
doNotPlace?: boolean | undefined;
|
|
18106
18168
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
18107
18169
|
standard?: boolean | undefined;
|
|
18108
18170
|
schottky?: boolean | undefined;
|
|
@@ -18386,10 +18448,11 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
18386
18448
|
}>]>>;
|
|
18387
18449
|
children: z.ZodOptional<z.ZodAny>;
|
|
18388
18450
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
18451
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
18389
18452
|
}>, {
|
|
18390
18453
|
color: z.ZodOptional<z.ZodString>;
|
|
18391
18454
|
wavelength: z.ZodOptional<z.ZodString>;
|
|
18392
|
-
|
|
18455
|
+
schDisplayValue: z.ZodOptional<z.ZodString>;
|
|
18393
18456
|
}>, "strip", z.ZodTypeAny, {
|
|
18394
18457
|
name: string;
|
|
18395
18458
|
pcbX?: number | undefined;
|
|
@@ -18457,9 +18520,10 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
18457
18520
|
} | null | undefined;
|
|
18458
18521
|
children?: any;
|
|
18459
18522
|
symbolName?: string | undefined;
|
|
18523
|
+
doNotPlace?: boolean | undefined;
|
|
18460
18524
|
color?: string | undefined;
|
|
18461
18525
|
wavelength?: string | undefined;
|
|
18462
|
-
|
|
18526
|
+
schDisplayValue?: string | undefined;
|
|
18463
18527
|
}, {
|
|
18464
18528
|
name: string;
|
|
18465
18529
|
pcbX?: string | number | undefined;
|
|
@@ -18529,9 +18593,10 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
18529
18593
|
} | null | undefined;
|
|
18530
18594
|
children?: any;
|
|
18531
18595
|
symbolName?: string | undefined;
|
|
18596
|
+
doNotPlace?: boolean | undefined;
|
|
18532
18597
|
color?: string | undefined;
|
|
18533
18598
|
wavelength?: string | undefined;
|
|
18534
|
-
|
|
18599
|
+
schDisplayValue?: string | undefined;
|
|
18535
18600
|
}>;
|
|
18536
18601
|
declare const ledPins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
18537
18602
|
type LedProps = z.input<typeof ledProps>;
|
|
@@ -18800,6 +18865,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
18800
18865
|
}>]>>;
|
|
18801
18866
|
children: z.ZodOptional<z.ZodAny>;
|
|
18802
18867
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
18868
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
18803
18869
|
}>, {
|
|
18804
18870
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
18805
18871
|
isNormallyClosed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -18876,6 +18942,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
18876
18942
|
} | null | undefined;
|
|
18877
18943
|
children?: any;
|
|
18878
18944
|
symbolName?: string | undefined;
|
|
18945
|
+
doNotPlace?: boolean | undefined;
|
|
18879
18946
|
spst?: boolean | undefined;
|
|
18880
18947
|
spdt?: boolean | undefined;
|
|
18881
18948
|
dpst?: boolean | undefined;
|
|
@@ -18950,6 +19017,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
18950
19017
|
} | null | undefined;
|
|
18951
19018
|
children?: any;
|
|
18952
19019
|
symbolName?: string | undefined;
|
|
19020
|
+
doNotPlace?: boolean | undefined;
|
|
18953
19021
|
spst?: boolean | undefined;
|
|
18954
19022
|
spdt?: boolean | undefined;
|
|
18955
19023
|
dpst?: boolean | undefined;
|
|
@@ -19025,6 +19093,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
19025
19093
|
} | null | undefined;
|
|
19026
19094
|
children?: any;
|
|
19027
19095
|
symbolName?: string | undefined;
|
|
19096
|
+
doNotPlace?: boolean | undefined;
|
|
19028
19097
|
spst?: boolean | undefined;
|
|
19029
19098
|
spdt?: boolean | undefined;
|
|
19030
19099
|
dpst?: boolean | undefined;
|
|
@@ -19605,6 +19674,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
19605
19674
|
}>]>>;
|
|
19606
19675
|
children: z.ZodOptional<z.ZodAny>;
|
|
19607
19676
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
19677
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
19608
19678
|
}>, {
|
|
19609
19679
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19610
19680
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -19675,6 +19745,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
19675
19745
|
} | null | undefined;
|
|
19676
19746
|
children?: any;
|
|
19677
19747
|
symbolName?: string | undefined;
|
|
19748
|
+
doNotPlace?: boolean | undefined;
|
|
19678
19749
|
}, {
|
|
19679
19750
|
name: string;
|
|
19680
19751
|
voltage: string | number;
|
|
@@ -19745,6 +19816,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
19745
19816
|
} | null | undefined;
|
|
19746
19817
|
children?: any;
|
|
19747
19818
|
symbolName?: string | undefined;
|
|
19819
|
+
doNotPlace?: boolean | undefined;
|
|
19748
19820
|
}>;
|
|
19749
19821
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
19750
19822
|
|
package/dist/index.js
CHANGED
|
@@ -107,7 +107,8 @@ var commonComponentProps = commonLayoutProps.merge(supplierProps).extend({
|
|
|
107
107
|
name: z6.string(),
|
|
108
108
|
cadModel: cadModelProp.optional(),
|
|
109
109
|
children: z6.any().optional(),
|
|
110
|
-
symbolName: z6.string().optional()
|
|
110
|
+
symbolName: z6.string().optional(),
|
|
111
|
+
doNotPlace: z6.boolean().optional()
|
|
111
112
|
});
|
|
112
113
|
expectTypesMatch(true);
|
|
113
114
|
var componentProps = commonComponentProps;
|
|
@@ -1044,7 +1045,7 @@ import { z as z52 } from "zod";
|
|
|
1044
1045
|
var ledProps = commonComponentProps.extend({
|
|
1045
1046
|
color: z52.string().optional(),
|
|
1046
1047
|
wavelength: z52.string().optional(),
|
|
1047
|
-
|
|
1048
|
+
schDisplayValue: z52.string().optional()
|
|
1048
1049
|
});
|
|
1049
1050
|
var ledPins = lrPolarPins;
|
|
1050
1051
|
|