@tscircuit/props 0.0.358 → 0.0.359

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/dist/index.d.ts CHANGED
@@ -3839,6 +3839,8 @@ declare const schematicPinStyle: z.ZodRecord<z.ZodString, z.ZodObject<{
3839
3839
  declare const schematicPinLabel: z.ZodString;
3840
3840
  type SchematicPinLabel = z.infer<typeof schematicPinLabel>;
3841
3841
 
3842
+ declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
3843
+
3842
3844
  type Point = {
3843
3845
  x: number | string;
3844
3846
  y: number | string;
@@ -5008,6 +5010,10 @@ interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
5008
5010
  pcbPaddingRight?: Distance;
5009
5011
  pcbPaddingTop?: Distance;
5010
5012
  pcbPaddingBottom?: Distance;
5013
+ /**
5014
+ * Anchor to use when interpreting pcbX/pcbY relative to pcbPosition
5015
+ */
5016
+ pcbPositionAnchor?: AutocompleteString<z.infer<typeof ninePointAnchor>>;
5011
5017
  /** @deprecated Use `pcbGrid` */
5012
5018
  grid?: boolean;
5013
5019
  /** @deprecated Use `pcbFlex` */
@@ -5154,7 +5160,6 @@ declare const baseGroupProps: z.ZodObject<{
5154
5160
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5155
5161
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5156
5162
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5157
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
5158
5163
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5159
5164
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5160
5165
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -5465,6 +5470,7 @@ declare const baseGroupProps: z.ZodObject<{
5465
5470
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5466
5471
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5467
5472
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5473
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
5468
5474
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
5469
5475
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
5470
5476
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -5636,7 +5642,7 @@ declare const baseGroupProps: z.ZodObject<{
5636
5642
  pcbX?: number | undefined;
5637
5643
  pcbY?: number | undefined;
5638
5644
  pcbRotation?: number | undefined;
5639
- pcbPositionAnchor?: string | undefined;
5645
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
5640
5646
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
5641
5647
  pcbMarginTop?: number | undefined;
5642
5648
  pcbMarginRight?: number | undefined;
@@ -5867,7 +5873,7 @@ declare const baseGroupProps: z.ZodObject<{
5867
5873
  pcbX?: string | number | undefined;
5868
5874
  pcbY?: string | number | undefined;
5869
5875
  pcbRotation?: string | number | undefined;
5870
- pcbPositionAnchor?: string | undefined;
5876
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
5871
5877
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
5872
5878
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
5873
5879
  } | undefined;
@@ -6100,7 +6106,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
6100
6106
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6101
6107
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6102
6108
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6103
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
6104
6109
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6105
6110
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6106
6111
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -6410,6 +6415,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
6410
6415
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6411
6416
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6412
6417
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6418
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
6413
6419
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
6414
6420
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
6415
6421
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -6772,7 +6778,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
6772
6778
  pcbX?: number | undefined;
6773
6779
  pcbY?: number | undefined;
6774
6780
  pcbRotation?: number | undefined;
6775
- pcbPositionAnchor?: string | undefined;
6781
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
6776
6782
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
6777
6783
  pcbMarginTop?: number | undefined;
6778
6784
  pcbMarginRight?: number | undefined;
@@ -6959,44 +6965,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
6959
6965
  pcbPaddingRight?: number | undefined;
6960
6966
  pcbPaddingTop?: number | undefined;
6961
6967
  pcbPaddingBottom?: number | undefined;
6962
- pcbGrid?: boolean | undefined;
6963
- pcbGridCols?: string | number | undefined;
6964
- pcbGridRows?: string | number | undefined;
6965
- pcbGridTemplateRows?: string | undefined;
6966
- pcbGridTemplateColumns?: string | undefined;
6967
- pcbGridTemplate?: string | undefined;
6968
- pcbGridGap?: string | number | undefined;
6969
- pcbGridRowGap?: string | number | undefined;
6970
- pcbGridColumnGap?: string | number | undefined;
6971
- pcbFlex?: string | boolean | undefined;
6972
- pcbFlexGap?: string | number | undefined;
6973
- pcbFlexDirection?: "row" | "column" | undefined;
6974
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
6975
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
6976
- pcbFlexRow?: boolean | undefined;
6977
- pcbFlexColumn?: boolean | undefined;
6978
- pcbGap?: string | number | undefined;
6979
- pcbPack?: boolean | undefined;
6980
- pcbPackGap?: string | number | undefined;
6981
- schGrid?: boolean | undefined;
6982
- schGridCols?: string | number | undefined;
6983
- schGridRows?: string | number | undefined;
6984
- schGridTemplateRows?: string | undefined;
6985
- schGridTemplateColumns?: string | undefined;
6986
- schGridTemplate?: string | undefined;
6987
- schGridGap?: string | number | undefined;
6988
- schGridRowGap?: string | number | undefined;
6989
- schGridColumnGap?: string | number | undefined;
6990
- schFlex?: string | boolean | undefined;
6991
- schFlexGap?: string | number | undefined;
6992
- schFlexDirection?: "row" | "column" | undefined;
6993
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
6994
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
6995
- schFlexRow?: boolean | undefined;
6996
- schFlexColumn?: boolean | undefined;
6997
- schGap?: string | number | undefined;
6998
- schPack?: boolean | undefined;
6999
- schMatchAdapt?: boolean | undefined;
7000
6968
  manualEdits?: {
7001
6969
  pcb_placements?: {
7002
6970
  center: {
@@ -7037,6 +7005,44 @@ declare const subcircuitGroupProps: z.ZodObject<{
7037
7005
  square?: boolean | undefined;
7038
7006
  emptyArea?: string | undefined;
7039
7007
  filledArea?: string | undefined;
7008
+ pcbGrid?: boolean | undefined;
7009
+ pcbGridCols?: string | number | undefined;
7010
+ pcbGridRows?: string | number | undefined;
7011
+ pcbGridTemplateRows?: string | undefined;
7012
+ pcbGridTemplateColumns?: string | undefined;
7013
+ pcbGridTemplate?: string | undefined;
7014
+ pcbGridGap?: string | number | undefined;
7015
+ pcbGridRowGap?: string | number | undefined;
7016
+ pcbGridColumnGap?: string | number | undefined;
7017
+ pcbFlex?: string | boolean | undefined;
7018
+ pcbFlexGap?: string | number | undefined;
7019
+ pcbFlexDirection?: "row" | "column" | undefined;
7020
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
7021
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
7022
+ pcbFlexRow?: boolean | undefined;
7023
+ pcbFlexColumn?: boolean | undefined;
7024
+ pcbGap?: string | number | undefined;
7025
+ pcbPack?: boolean | undefined;
7026
+ pcbPackGap?: string | number | undefined;
7027
+ schGrid?: boolean | undefined;
7028
+ schGridCols?: string | number | undefined;
7029
+ schGridRows?: string | number | undefined;
7030
+ schGridTemplateRows?: string | undefined;
7031
+ schGridTemplateColumns?: string | undefined;
7032
+ schGridTemplate?: string | undefined;
7033
+ schGridGap?: string | number | undefined;
7034
+ schGridRowGap?: string | number | undefined;
7035
+ schGridColumnGap?: string | number | undefined;
7036
+ schFlex?: string | boolean | undefined;
7037
+ schFlexGap?: string | number | undefined;
7038
+ schFlexDirection?: "row" | "column" | undefined;
7039
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
7040
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
7041
+ schFlexRow?: boolean | undefined;
7042
+ schFlexColumn?: boolean | undefined;
7043
+ schGap?: string | number | undefined;
7044
+ schPack?: boolean | undefined;
7045
+ schMatchAdapt?: boolean | undefined;
7040
7046
  outline?: {
7041
7047
  x: number;
7042
7048
  y: number;
@@ -7049,7 +7055,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
7049
7055
  pcbX?: string | number | undefined;
7050
7056
  pcbY?: string | number | undefined;
7051
7057
  pcbRotation?: string | number | undefined;
7052
- pcbPositionAnchor?: string | undefined;
7058
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
7053
7059
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
7054
7060
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
7055
7061
  } | undefined;
@@ -7238,44 +7244,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
7238
7244
  pcbPaddingRight?: string | number | undefined;
7239
7245
  pcbPaddingTop?: string | number | undefined;
7240
7246
  pcbPaddingBottom?: string | number | undefined;
7241
- pcbGrid?: boolean | undefined;
7242
- pcbGridCols?: string | number | undefined;
7243
- pcbGridRows?: string | number | undefined;
7244
- pcbGridTemplateRows?: string | undefined;
7245
- pcbGridTemplateColumns?: string | undefined;
7246
- pcbGridTemplate?: string | undefined;
7247
- pcbGridGap?: string | number | undefined;
7248
- pcbGridRowGap?: string | number | undefined;
7249
- pcbGridColumnGap?: string | number | undefined;
7250
- pcbFlex?: string | boolean | undefined;
7251
- pcbFlexGap?: string | number | undefined;
7252
- pcbFlexDirection?: "row" | "column" | undefined;
7253
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
7254
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
7255
- pcbFlexRow?: boolean | undefined;
7256
- pcbFlexColumn?: boolean | undefined;
7257
- pcbGap?: string | number | undefined;
7258
- pcbPack?: boolean | undefined;
7259
- pcbPackGap?: string | number | undefined;
7260
- schGrid?: boolean | undefined;
7261
- schGridCols?: string | number | undefined;
7262
- schGridRows?: string | number | undefined;
7263
- schGridTemplateRows?: string | undefined;
7264
- schGridTemplateColumns?: string | undefined;
7265
- schGridTemplate?: string | undefined;
7266
- schGridGap?: string | number | undefined;
7267
- schGridRowGap?: string | number | undefined;
7268
- schGridColumnGap?: string | number | undefined;
7269
- schFlex?: string | boolean | undefined;
7270
- schFlexGap?: string | number | undefined;
7271
- schFlexDirection?: "row" | "column" | undefined;
7272
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
7273
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
7274
- schFlexRow?: boolean | undefined;
7275
- schFlexColumn?: boolean | undefined;
7276
- schGap?: string | number | undefined;
7277
- schPack?: boolean | undefined;
7278
- schMatchAdapt?: boolean | undefined;
7279
7247
  manualEdits?: {
7280
7248
  pcb_placements?: {
7281
7249
  center: {
@@ -7318,6 +7286,44 @@ declare const subcircuitGroupProps: z.ZodObject<{
7318
7286
  square?: boolean | undefined;
7319
7287
  emptyArea?: string | undefined;
7320
7288
  filledArea?: string | undefined;
7289
+ pcbGrid?: boolean | undefined;
7290
+ pcbGridCols?: string | number | undefined;
7291
+ pcbGridRows?: string | number | undefined;
7292
+ pcbGridTemplateRows?: string | undefined;
7293
+ pcbGridTemplateColumns?: string | undefined;
7294
+ pcbGridTemplate?: string | undefined;
7295
+ pcbGridGap?: string | number | undefined;
7296
+ pcbGridRowGap?: string | number | undefined;
7297
+ pcbGridColumnGap?: string | number | undefined;
7298
+ pcbFlex?: string | boolean | undefined;
7299
+ pcbFlexGap?: string | number | undefined;
7300
+ pcbFlexDirection?: "row" | "column" | undefined;
7301
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
7302
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
7303
+ pcbFlexRow?: boolean | undefined;
7304
+ pcbFlexColumn?: boolean | undefined;
7305
+ pcbGap?: string | number | undefined;
7306
+ pcbPack?: boolean | undefined;
7307
+ pcbPackGap?: string | number | undefined;
7308
+ schGrid?: boolean | undefined;
7309
+ schGridCols?: string | number | undefined;
7310
+ schGridRows?: string | number | undefined;
7311
+ schGridTemplateRows?: string | undefined;
7312
+ schGridTemplateColumns?: string | undefined;
7313
+ schGridTemplate?: string | undefined;
7314
+ schGridGap?: string | number | undefined;
7315
+ schGridRowGap?: string | number | undefined;
7316
+ schGridColumnGap?: string | number | undefined;
7317
+ schFlex?: string | boolean | undefined;
7318
+ schFlexGap?: string | number | undefined;
7319
+ schFlexDirection?: "row" | "column" | undefined;
7320
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
7321
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
7322
+ schFlexRow?: boolean | undefined;
7323
+ schFlexColumn?: boolean | undefined;
7324
+ schGap?: string | number | undefined;
7325
+ schPack?: boolean | undefined;
7326
+ schMatchAdapt?: boolean | undefined;
7321
7327
  outline?: {
7322
7328
  x: string | number;
7323
7329
  y: string | number;
@@ -7329,7 +7335,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
7329
7335
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7330
7336
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7331
7337
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7332
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
7333
7338
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7334
7339
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7335
7340
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -7639,6 +7644,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
7639
7644
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7640
7645
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7641
7646
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7647
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
7642
7648
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
7643
7649
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
7644
7650
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -8004,7 +8010,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
8004
8010
  pcbX?: number | undefined;
8005
8011
  pcbY?: number | undefined;
8006
8012
  pcbRotation?: number | undefined;
8007
- pcbPositionAnchor?: string | undefined;
8013
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
8008
8014
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
8009
8015
  pcbMarginTop?: number | undefined;
8010
8016
  pcbMarginRight?: number | undefined;
@@ -8191,44 +8197,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
8191
8197
  pcbPaddingRight?: number | undefined;
8192
8198
  pcbPaddingTop?: number | undefined;
8193
8199
  pcbPaddingBottom?: number | undefined;
8194
- pcbGrid?: boolean | undefined;
8195
- pcbGridCols?: string | number | undefined;
8196
- pcbGridRows?: string | number | undefined;
8197
- pcbGridTemplateRows?: string | undefined;
8198
- pcbGridTemplateColumns?: string | undefined;
8199
- pcbGridTemplate?: string | undefined;
8200
- pcbGridGap?: string | number | undefined;
8201
- pcbGridRowGap?: string | number | undefined;
8202
- pcbGridColumnGap?: string | number | undefined;
8203
- pcbFlex?: string | boolean | undefined;
8204
- pcbFlexGap?: string | number | undefined;
8205
- pcbFlexDirection?: "row" | "column" | undefined;
8206
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8207
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8208
- pcbFlexRow?: boolean | undefined;
8209
- pcbFlexColumn?: boolean | undefined;
8210
- pcbGap?: string | number | undefined;
8211
- pcbPack?: boolean | undefined;
8212
- pcbPackGap?: string | number | undefined;
8213
- schGrid?: boolean | undefined;
8214
- schGridCols?: string | number | undefined;
8215
- schGridRows?: string | number | undefined;
8216
- schGridTemplateRows?: string | undefined;
8217
- schGridTemplateColumns?: string | undefined;
8218
- schGridTemplate?: string | undefined;
8219
- schGridGap?: string | number | undefined;
8220
- schGridRowGap?: string | number | undefined;
8221
- schGridColumnGap?: string | number | undefined;
8222
- schFlex?: string | boolean | undefined;
8223
- schFlexGap?: string | number | undefined;
8224
- schFlexDirection?: "row" | "column" | undefined;
8225
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8226
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8227
- schFlexRow?: boolean | undefined;
8228
- schFlexColumn?: boolean | undefined;
8229
- schGap?: string | number | undefined;
8230
- schPack?: boolean | undefined;
8231
- schMatchAdapt?: boolean | undefined;
8232
8200
  manualEdits?: {
8233
8201
  pcb_placements?: {
8234
8202
  center: {
@@ -8269,6 +8237,44 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
8269
8237
  square?: boolean | undefined;
8270
8238
  emptyArea?: string | undefined;
8271
8239
  filledArea?: string | undefined;
8240
+ pcbGrid?: boolean | undefined;
8241
+ pcbGridCols?: string | number | undefined;
8242
+ pcbGridRows?: string | number | undefined;
8243
+ pcbGridTemplateRows?: string | undefined;
8244
+ pcbGridTemplateColumns?: string | undefined;
8245
+ pcbGridTemplate?: string | undefined;
8246
+ pcbGridGap?: string | number | undefined;
8247
+ pcbGridRowGap?: string | number | undefined;
8248
+ pcbGridColumnGap?: string | number | undefined;
8249
+ pcbFlex?: string | boolean | undefined;
8250
+ pcbFlexGap?: string | number | undefined;
8251
+ pcbFlexDirection?: "row" | "column" | undefined;
8252
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8253
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8254
+ pcbFlexRow?: boolean | undefined;
8255
+ pcbFlexColumn?: boolean | undefined;
8256
+ pcbGap?: string | number | undefined;
8257
+ pcbPack?: boolean | undefined;
8258
+ pcbPackGap?: string | number | undefined;
8259
+ schGrid?: boolean | undefined;
8260
+ schGridCols?: string | number | undefined;
8261
+ schGridRows?: string | number | undefined;
8262
+ schGridTemplateRows?: string | undefined;
8263
+ schGridTemplateColumns?: string | undefined;
8264
+ schGridTemplate?: string | undefined;
8265
+ schGridGap?: string | number | undefined;
8266
+ schGridRowGap?: string | number | undefined;
8267
+ schGridColumnGap?: string | number | undefined;
8268
+ schFlex?: string | boolean | undefined;
8269
+ schFlexGap?: string | number | undefined;
8270
+ schFlexDirection?: "row" | "column" | undefined;
8271
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8272
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8273
+ schFlexRow?: boolean | undefined;
8274
+ schFlexColumn?: boolean | undefined;
8275
+ schGap?: string | number | undefined;
8276
+ schPack?: boolean | undefined;
8277
+ schMatchAdapt?: boolean | undefined;
8272
8278
  outline?: {
8273
8279
  x: number;
8274
8280
  y: number;
@@ -8282,7 +8288,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
8282
8288
  pcbX?: string | number | undefined;
8283
8289
  pcbY?: string | number | undefined;
8284
8290
  pcbRotation?: string | number | undefined;
8285
- pcbPositionAnchor?: string | undefined;
8291
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
8286
8292
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8287
8293
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8288
8294
  } | undefined;
@@ -8471,44 +8477,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
8471
8477
  pcbPaddingRight?: string | number | undefined;
8472
8478
  pcbPaddingTop?: string | number | undefined;
8473
8479
  pcbPaddingBottom?: string | number | undefined;
8474
- pcbGrid?: boolean | undefined;
8475
- pcbGridCols?: string | number | undefined;
8476
- pcbGridRows?: string | number | undefined;
8477
- pcbGridTemplateRows?: string | undefined;
8478
- pcbGridTemplateColumns?: string | undefined;
8479
- pcbGridTemplate?: string | undefined;
8480
- pcbGridGap?: string | number | undefined;
8481
- pcbGridRowGap?: string | number | undefined;
8482
- pcbGridColumnGap?: string | number | undefined;
8483
- pcbFlex?: string | boolean | undefined;
8484
- pcbFlexGap?: string | number | undefined;
8485
- pcbFlexDirection?: "row" | "column" | undefined;
8486
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8487
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8488
- pcbFlexRow?: boolean | undefined;
8489
- pcbFlexColumn?: boolean | undefined;
8490
- pcbGap?: string | number | undefined;
8491
- pcbPack?: boolean | undefined;
8492
- pcbPackGap?: string | number | undefined;
8493
- schGrid?: boolean | undefined;
8494
- schGridCols?: string | number | undefined;
8495
- schGridRows?: string | number | undefined;
8496
- schGridTemplateRows?: string | undefined;
8497
- schGridTemplateColumns?: string | undefined;
8498
- schGridTemplate?: string | undefined;
8499
- schGridGap?: string | number | undefined;
8500
- schGridRowGap?: string | number | undefined;
8501
- schGridColumnGap?: string | number | undefined;
8502
- schFlex?: string | boolean | undefined;
8503
- schFlexGap?: string | number | undefined;
8504
- schFlexDirection?: "row" | "column" | undefined;
8505
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8506
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8507
- schFlexRow?: boolean | undefined;
8508
- schFlexColumn?: boolean | undefined;
8509
- schGap?: string | number | undefined;
8510
- schPack?: boolean | undefined;
8511
- schMatchAdapt?: boolean | undefined;
8512
8480
  manualEdits?: {
8513
8481
  pcb_placements?: {
8514
8482
  center: {
@@ -8551,6 +8519,44 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
8551
8519
  square?: boolean | undefined;
8552
8520
  emptyArea?: string | undefined;
8553
8521
  filledArea?: string | undefined;
8522
+ pcbGrid?: boolean | undefined;
8523
+ pcbGridCols?: string | number | undefined;
8524
+ pcbGridRows?: string | number | undefined;
8525
+ pcbGridTemplateRows?: string | undefined;
8526
+ pcbGridTemplateColumns?: string | undefined;
8527
+ pcbGridTemplate?: string | undefined;
8528
+ pcbGridGap?: string | number | undefined;
8529
+ pcbGridRowGap?: string | number | undefined;
8530
+ pcbGridColumnGap?: string | number | undefined;
8531
+ pcbFlex?: string | boolean | undefined;
8532
+ pcbFlexGap?: string | number | undefined;
8533
+ pcbFlexDirection?: "row" | "column" | undefined;
8534
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8535
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8536
+ pcbFlexRow?: boolean | undefined;
8537
+ pcbFlexColumn?: boolean | undefined;
8538
+ pcbGap?: string | number | undefined;
8539
+ pcbPack?: boolean | undefined;
8540
+ pcbPackGap?: string | number | undefined;
8541
+ schGrid?: boolean | undefined;
8542
+ schGridCols?: string | number | undefined;
8543
+ schGridRows?: string | number | undefined;
8544
+ schGridTemplateRows?: string | undefined;
8545
+ schGridTemplateColumns?: string | undefined;
8546
+ schGridTemplate?: string | undefined;
8547
+ schGridGap?: string | number | undefined;
8548
+ schGridRowGap?: string | number | undefined;
8549
+ schGridColumnGap?: string | number | undefined;
8550
+ schFlex?: string | boolean | undefined;
8551
+ schFlexGap?: string | number | undefined;
8552
+ schFlexDirection?: "row" | "column" | undefined;
8553
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
8554
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
8555
+ schFlexRow?: boolean | undefined;
8556
+ schFlexColumn?: boolean | undefined;
8557
+ schGap?: string | number | undefined;
8558
+ schPack?: boolean | undefined;
8559
+ schMatchAdapt?: boolean | undefined;
8554
8560
  outline?: {
8555
8561
  x: string | number;
8556
8562
  y: string | number;
@@ -8562,7 +8568,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
8562
8568
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8563
8569
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8564
8570
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8565
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
8566
8571
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8567
8572
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8568
8573
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -8873,6 +8878,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
8873
8878
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8874
8879
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8875
8880
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8881
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
8876
8882
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
8877
8883
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
8878
8884
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -9046,7 +9052,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
9046
9052
  pcbX?: number | undefined;
9047
9053
  pcbY?: number | undefined;
9048
9054
  pcbRotation?: number | undefined;
9049
- pcbPositionAnchor?: string | undefined;
9055
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
9050
9056
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
9051
9057
  pcbMarginTop?: number | undefined;
9052
9058
  pcbMarginRight?: number | undefined;
@@ -9233,6 +9239,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
9233
9239
  pcbPaddingRight?: number | undefined;
9234
9240
  pcbPaddingTop?: number | undefined;
9235
9241
  pcbPaddingBottom?: number | undefined;
9242
+ subcircuit?: false | undefined;
9236
9243
  pcbGrid?: boolean | undefined;
9237
9244
  pcbGridCols?: string | number | undefined;
9238
9245
  pcbGridRows?: string | number | undefined;
@@ -9271,14 +9278,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
9271
9278
  schGap?: string | number | undefined;
9272
9279
  schPack?: boolean | undefined;
9273
9280
  schMatchAdapt?: boolean | undefined;
9274
- subcircuit?: false | undefined;
9275
9281
  }, {
9276
9282
  symbol?: SymbolProp | undefined;
9277
9283
  key?: any;
9278
9284
  pcbX?: string | number | undefined;
9279
9285
  pcbY?: string | number | undefined;
9280
9286
  pcbRotation?: string | number | undefined;
9281
- pcbPositionAnchor?: string | undefined;
9287
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
9282
9288
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
9283
9289
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
9284
9290
  } | undefined;
@@ -9467,6 +9473,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
9467
9473
  pcbPaddingRight?: string | number | undefined;
9468
9474
  pcbPaddingTop?: string | number | undefined;
9469
9475
  pcbPaddingBottom?: string | number | undefined;
9476
+ subcircuit?: false | undefined;
9470
9477
  pcbGrid?: boolean | undefined;
9471
9478
  pcbGridCols?: string | number | undefined;
9472
9479
  pcbGridRows?: string | number | undefined;
@@ -9505,12 +9512,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
9505
9512
  schGap?: string | number | undefined;
9506
9513
  schPack?: boolean | undefined;
9507
9514
  schMatchAdapt?: boolean | undefined;
9508
- subcircuit?: false | undefined;
9509
9515
  }>, z.ZodObject<{
9510
9516
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9511
9517
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9512
9518
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9513
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
9514
9519
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9515
9520
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9516
9521
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -9820,6 +9825,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
9820
9825
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9821
9826
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9822
9827
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9828
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
9823
9829
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
9824
9830
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
9825
9831
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -10185,7 +10191,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
10185
10191
  pcbX?: number | undefined;
10186
10192
  pcbY?: number | undefined;
10187
10193
  pcbRotation?: number | undefined;
10188
- pcbPositionAnchor?: string | undefined;
10194
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
10189
10195
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
10190
10196
  pcbMarginTop?: number | undefined;
10191
10197
  pcbMarginRight?: number | undefined;
@@ -10372,44 +10378,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
10372
10378
  pcbPaddingRight?: number | undefined;
10373
10379
  pcbPaddingTop?: number | undefined;
10374
10380
  pcbPaddingBottom?: number | undefined;
10375
- pcbGrid?: boolean | undefined;
10376
- pcbGridCols?: string | number | undefined;
10377
- pcbGridRows?: string | number | undefined;
10378
- pcbGridTemplateRows?: string | undefined;
10379
- pcbGridTemplateColumns?: string | undefined;
10380
- pcbGridTemplate?: string | undefined;
10381
- pcbGridGap?: string | number | undefined;
10382
- pcbGridRowGap?: string | number | undefined;
10383
- pcbGridColumnGap?: string | number | undefined;
10384
- pcbFlex?: string | boolean | undefined;
10385
- pcbFlexGap?: string | number | undefined;
10386
- pcbFlexDirection?: "row" | "column" | undefined;
10387
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10388
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10389
- pcbFlexRow?: boolean | undefined;
10390
- pcbFlexColumn?: boolean | undefined;
10391
- pcbGap?: string | number | undefined;
10392
- pcbPack?: boolean | undefined;
10393
- pcbPackGap?: string | number | undefined;
10394
- schGrid?: boolean | undefined;
10395
- schGridCols?: string | number | undefined;
10396
- schGridRows?: string | number | undefined;
10397
- schGridTemplateRows?: string | undefined;
10398
- schGridTemplateColumns?: string | undefined;
10399
- schGridTemplate?: string | undefined;
10400
- schGridGap?: string | number | undefined;
10401
- schGridRowGap?: string | number | undefined;
10402
- schGridColumnGap?: string | number | undefined;
10403
- schFlex?: string | boolean | undefined;
10404
- schFlexGap?: string | number | undefined;
10405
- schFlexDirection?: "row" | "column" | undefined;
10406
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10407
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10408
- schFlexRow?: boolean | undefined;
10409
- schFlexColumn?: boolean | undefined;
10410
- schGap?: string | number | undefined;
10411
- schPack?: boolean | undefined;
10412
- schMatchAdapt?: boolean | undefined;
10413
10381
  manualEdits?: {
10414
10382
  pcb_placements?: {
10415
10383
  center: {
@@ -10450,6 +10418,44 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
10450
10418
  square?: boolean | undefined;
10451
10419
  emptyArea?: string | undefined;
10452
10420
  filledArea?: string | undefined;
10421
+ pcbGrid?: boolean | undefined;
10422
+ pcbGridCols?: string | number | undefined;
10423
+ pcbGridRows?: string | number | undefined;
10424
+ pcbGridTemplateRows?: string | undefined;
10425
+ pcbGridTemplateColumns?: string | undefined;
10426
+ pcbGridTemplate?: string | undefined;
10427
+ pcbGridGap?: string | number | undefined;
10428
+ pcbGridRowGap?: string | number | undefined;
10429
+ pcbGridColumnGap?: string | number | undefined;
10430
+ pcbFlex?: string | boolean | undefined;
10431
+ pcbFlexGap?: string | number | undefined;
10432
+ pcbFlexDirection?: "row" | "column" | undefined;
10433
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10434
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10435
+ pcbFlexRow?: boolean | undefined;
10436
+ pcbFlexColumn?: boolean | undefined;
10437
+ pcbGap?: string | number | undefined;
10438
+ pcbPack?: boolean | undefined;
10439
+ pcbPackGap?: string | number | undefined;
10440
+ schGrid?: boolean | undefined;
10441
+ schGridCols?: string | number | undefined;
10442
+ schGridRows?: string | number | undefined;
10443
+ schGridTemplateRows?: string | undefined;
10444
+ schGridTemplateColumns?: string | undefined;
10445
+ schGridTemplate?: string | undefined;
10446
+ schGridGap?: string | number | undefined;
10447
+ schGridRowGap?: string | number | undefined;
10448
+ schGridColumnGap?: string | number | undefined;
10449
+ schFlex?: string | boolean | undefined;
10450
+ schFlexGap?: string | number | undefined;
10451
+ schFlexDirection?: "row" | "column" | undefined;
10452
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10453
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10454
+ schFlexRow?: boolean | undefined;
10455
+ schFlexColumn?: boolean | undefined;
10456
+ schGap?: string | number | undefined;
10457
+ schPack?: boolean | undefined;
10458
+ schMatchAdapt?: boolean | undefined;
10453
10459
  outline?: {
10454
10460
  x: number;
10455
10461
  y: number;
@@ -10463,7 +10469,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
10463
10469
  pcbX?: string | number | undefined;
10464
10470
  pcbY?: string | number | undefined;
10465
10471
  pcbRotation?: string | number | undefined;
10466
- pcbPositionAnchor?: string | undefined;
10472
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
10467
10473
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
10468
10474
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
10469
10475
  } | undefined;
@@ -10652,44 +10658,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
10652
10658
  pcbPaddingRight?: string | number | undefined;
10653
10659
  pcbPaddingTop?: string | number | undefined;
10654
10660
  pcbPaddingBottom?: string | number | undefined;
10655
- pcbGrid?: boolean | undefined;
10656
- pcbGridCols?: string | number | undefined;
10657
- pcbGridRows?: string | number | undefined;
10658
- pcbGridTemplateRows?: string | undefined;
10659
- pcbGridTemplateColumns?: string | undefined;
10660
- pcbGridTemplate?: string | undefined;
10661
- pcbGridGap?: string | number | undefined;
10662
- pcbGridRowGap?: string | number | undefined;
10663
- pcbGridColumnGap?: string | number | undefined;
10664
- pcbFlex?: string | boolean | undefined;
10665
- pcbFlexGap?: string | number | undefined;
10666
- pcbFlexDirection?: "row" | "column" | undefined;
10667
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10668
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10669
- pcbFlexRow?: boolean | undefined;
10670
- pcbFlexColumn?: boolean | undefined;
10671
- pcbGap?: string | number | undefined;
10672
- pcbPack?: boolean | undefined;
10673
- pcbPackGap?: string | number | undefined;
10674
- schGrid?: boolean | undefined;
10675
- schGridCols?: string | number | undefined;
10676
- schGridRows?: string | number | undefined;
10677
- schGridTemplateRows?: string | undefined;
10678
- schGridTemplateColumns?: string | undefined;
10679
- schGridTemplate?: string | undefined;
10680
- schGridGap?: string | number | undefined;
10681
- schGridRowGap?: string | number | undefined;
10682
- schGridColumnGap?: string | number | undefined;
10683
- schFlex?: string | boolean | undefined;
10684
- schFlexGap?: string | number | undefined;
10685
- schFlexDirection?: "row" | "column" | undefined;
10686
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10687
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10688
- schFlexRow?: boolean | undefined;
10689
- schFlexColumn?: boolean | undefined;
10690
- schGap?: string | number | undefined;
10691
- schPack?: boolean | undefined;
10692
- schMatchAdapt?: boolean | undefined;
10693
10661
  manualEdits?: {
10694
10662
  pcb_placements?: {
10695
10663
  center: {
@@ -10732,6 +10700,44 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
10732
10700
  square?: boolean | undefined;
10733
10701
  emptyArea?: string | undefined;
10734
10702
  filledArea?: string | undefined;
10703
+ pcbGrid?: boolean | undefined;
10704
+ pcbGridCols?: string | number | undefined;
10705
+ pcbGridRows?: string | number | undefined;
10706
+ pcbGridTemplateRows?: string | undefined;
10707
+ pcbGridTemplateColumns?: string | undefined;
10708
+ pcbGridTemplate?: string | undefined;
10709
+ pcbGridGap?: string | number | undefined;
10710
+ pcbGridRowGap?: string | number | undefined;
10711
+ pcbGridColumnGap?: string | number | undefined;
10712
+ pcbFlex?: string | boolean | undefined;
10713
+ pcbFlexGap?: string | number | undefined;
10714
+ pcbFlexDirection?: "row" | "column" | undefined;
10715
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10716
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10717
+ pcbFlexRow?: boolean | undefined;
10718
+ pcbFlexColumn?: boolean | undefined;
10719
+ pcbGap?: string | number | undefined;
10720
+ pcbPack?: boolean | undefined;
10721
+ pcbPackGap?: string | number | undefined;
10722
+ schGrid?: boolean | undefined;
10723
+ schGridCols?: string | number | undefined;
10724
+ schGridRows?: string | number | undefined;
10725
+ schGridTemplateRows?: string | undefined;
10726
+ schGridTemplateColumns?: string | undefined;
10727
+ schGridTemplate?: string | undefined;
10728
+ schGridGap?: string | number | undefined;
10729
+ schGridRowGap?: string | number | undefined;
10730
+ schGridColumnGap?: string | number | undefined;
10731
+ schFlex?: string | boolean | undefined;
10732
+ schFlexGap?: string | number | undefined;
10733
+ schFlexDirection?: "row" | "column" | undefined;
10734
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
10735
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
10736
+ schFlexRow?: boolean | undefined;
10737
+ schFlexColumn?: boolean | undefined;
10738
+ schGap?: string | number | undefined;
10739
+ schPack?: boolean | undefined;
10740
+ schMatchAdapt?: boolean | undefined;
10735
10741
  outline?: {
10736
10742
  x: string | number;
10737
10743
  y: string | number;
@@ -10740,8 +10746,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
10740
10746
  outlineOffsetY?: string | number | undefined;
10741
10747
  }>]>;
10742
10748
 
10743
- declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
10744
-
10745
10749
  declare const boardColorPresets: readonly ["not_specified", "green", "red", "blue", "purple", "black", "white", "yellow"];
10746
10750
  type BoardColorPreset = (typeof boardColorPresets)[number];
10747
10751
  type BoardColor = AutocompleteString<BoardColorPreset>;
@@ -10771,7 +10775,6 @@ declare const boardProps: z.ZodObject<Omit<{
10771
10775
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
10772
10776
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
10773
10777
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
10774
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
10775
10778
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
10776
10779
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
10777
10780
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -11081,6 +11084,7 @@ declare const boardProps: z.ZodObject<Omit<{
11081
11084
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
11082
11085
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
11083
11086
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
11087
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
11084
11088
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
11085
11089
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
11086
11090
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -11468,7 +11472,7 @@ declare const boardProps: z.ZodObject<Omit<{
11468
11472
  pcbX?: number | undefined;
11469
11473
  pcbY?: number | undefined;
11470
11474
  pcbRotation?: number | undefined;
11471
- pcbPositionAnchor?: string | undefined;
11475
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
11472
11476
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
11473
11477
  pcbMarginTop?: number | undefined;
11474
11478
  pcbMarginRight?: number | undefined;
@@ -11654,44 +11658,6 @@ declare const boardProps: z.ZodObject<Omit<{
11654
11658
  pcbPaddingRight?: number | undefined;
11655
11659
  pcbPaddingTop?: number | undefined;
11656
11660
  pcbPaddingBottom?: number | undefined;
11657
- pcbGrid?: boolean | undefined;
11658
- pcbGridCols?: string | number | undefined;
11659
- pcbGridRows?: string | number | undefined;
11660
- pcbGridTemplateRows?: string | undefined;
11661
- pcbGridTemplateColumns?: string | undefined;
11662
- pcbGridTemplate?: string | undefined;
11663
- pcbGridGap?: string | number | undefined;
11664
- pcbGridRowGap?: string | number | undefined;
11665
- pcbGridColumnGap?: string | number | undefined;
11666
- pcbFlex?: string | boolean | undefined;
11667
- pcbFlexGap?: string | number | undefined;
11668
- pcbFlexDirection?: "row" | "column" | undefined;
11669
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
11670
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
11671
- pcbFlexRow?: boolean | undefined;
11672
- pcbFlexColumn?: boolean | undefined;
11673
- pcbGap?: string | number | undefined;
11674
- pcbPack?: boolean | undefined;
11675
- pcbPackGap?: string | number | undefined;
11676
- schGrid?: boolean | undefined;
11677
- schGridCols?: string | number | undefined;
11678
- schGridRows?: string | number | undefined;
11679
- schGridTemplateRows?: string | undefined;
11680
- schGridTemplateColumns?: string | undefined;
11681
- schGridTemplate?: string | undefined;
11682
- schGridGap?: string | number | undefined;
11683
- schGridRowGap?: string | number | undefined;
11684
- schGridColumnGap?: string | number | undefined;
11685
- schFlex?: string | boolean | undefined;
11686
- schFlexGap?: string | number | undefined;
11687
- schFlexDirection?: "row" | "column" | undefined;
11688
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
11689
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
11690
- schFlexRow?: boolean | undefined;
11691
- schFlexColumn?: boolean | undefined;
11692
- schGap?: string | number | undefined;
11693
- schPack?: boolean | undefined;
11694
- schMatchAdapt?: boolean | undefined;
11695
11661
  manualEdits?: {
11696
11662
  pcb_placements?: {
11697
11663
  center: {
@@ -11732,6 +11698,44 @@ declare const boardProps: z.ZodObject<Omit<{
11732
11698
  square?: boolean | undefined;
11733
11699
  emptyArea?: string | undefined;
11734
11700
  filledArea?: string | undefined;
11701
+ pcbGrid?: boolean | undefined;
11702
+ pcbGridCols?: string | number | undefined;
11703
+ pcbGridRows?: string | number | undefined;
11704
+ pcbGridTemplateRows?: string | undefined;
11705
+ pcbGridTemplateColumns?: string | undefined;
11706
+ pcbGridTemplate?: string | undefined;
11707
+ pcbGridGap?: string | number | undefined;
11708
+ pcbGridRowGap?: string | number | undefined;
11709
+ pcbGridColumnGap?: string | number | undefined;
11710
+ pcbFlex?: string | boolean | undefined;
11711
+ pcbFlexGap?: string | number | undefined;
11712
+ pcbFlexDirection?: "row" | "column" | undefined;
11713
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
11714
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
11715
+ pcbFlexRow?: boolean | undefined;
11716
+ pcbFlexColumn?: boolean | undefined;
11717
+ pcbGap?: string | number | undefined;
11718
+ pcbPack?: boolean | undefined;
11719
+ pcbPackGap?: string | number | undefined;
11720
+ schGrid?: boolean | undefined;
11721
+ schGridCols?: string | number | undefined;
11722
+ schGridRows?: string | number | undefined;
11723
+ schGridTemplateRows?: string | undefined;
11724
+ schGridTemplateColumns?: string | undefined;
11725
+ schGridTemplate?: string | undefined;
11726
+ schGridGap?: string | number | undefined;
11727
+ schGridRowGap?: string | number | undefined;
11728
+ schGridColumnGap?: string | number | undefined;
11729
+ schFlex?: string | boolean | undefined;
11730
+ schFlexGap?: string | number | undefined;
11731
+ schFlexDirection?: "row" | "column" | undefined;
11732
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
11733
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
11734
+ schFlexRow?: boolean | undefined;
11735
+ schFlexColumn?: boolean | undefined;
11736
+ schGap?: string | number | undefined;
11737
+ schPack?: boolean | undefined;
11738
+ schMatchAdapt?: boolean | undefined;
11735
11739
  outline?: {
11736
11740
  x: number;
11737
11741
  y: number;
@@ -11758,7 +11762,7 @@ declare const boardProps: z.ZodObject<Omit<{
11758
11762
  pcbX?: string | number | undefined;
11759
11763
  pcbY?: string | number | undefined;
11760
11764
  pcbRotation?: string | number | undefined;
11761
- pcbPositionAnchor?: string | undefined;
11765
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
11762
11766
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
11763
11767
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
11764
11768
  } | undefined;
@@ -11946,44 +11950,6 @@ declare const boardProps: z.ZodObject<Omit<{
11946
11950
  pcbPaddingRight?: string | number | undefined;
11947
11951
  pcbPaddingTop?: string | number | undefined;
11948
11952
  pcbPaddingBottom?: string | number | undefined;
11949
- pcbGrid?: boolean | undefined;
11950
- pcbGridCols?: string | number | undefined;
11951
- pcbGridRows?: string | number | undefined;
11952
- pcbGridTemplateRows?: string | undefined;
11953
- pcbGridTemplateColumns?: string | undefined;
11954
- pcbGridTemplate?: string | undefined;
11955
- pcbGridGap?: string | number | undefined;
11956
- pcbGridRowGap?: string | number | undefined;
11957
- pcbGridColumnGap?: string | number | undefined;
11958
- pcbFlex?: string | boolean | undefined;
11959
- pcbFlexGap?: string | number | undefined;
11960
- pcbFlexDirection?: "row" | "column" | undefined;
11961
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
11962
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
11963
- pcbFlexRow?: boolean | undefined;
11964
- pcbFlexColumn?: boolean | undefined;
11965
- pcbGap?: string | number | undefined;
11966
- pcbPack?: boolean | undefined;
11967
- pcbPackGap?: string | number | undefined;
11968
- schGrid?: boolean | undefined;
11969
- schGridCols?: string | number | undefined;
11970
- schGridRows?: string | number | undefined;
11971
- schGridTemplateRows?: string | undefined;
11972
- schGridTemplateColumns?: string | undefined;
11973
- schGridTemplate?: string | undefined;
11974
- schGridGap?: string | number | undefined;
11975
- schGridRowGap?: string | number | undefined;
11976
- schGridColumnGap?: string | number | undefined;
11977
- schFlex?: string | boolean | undefined;
11978
- schFlexGap?: string | number | undefined;
11979
- schFlexDirection?: "row" | "column" | undefined;
11980
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
11981
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
11982
- schFlexRow?: boolean | undefined;
11983
- schFlexColumn?: boolean | undefined;
11984
- schGap?: string | number | undefined;
11985
- schPack?: boolean | undefined;
11986
- schMatchAdapt?: boolean | undefined;
11987
11953
  manualEdits?: {
11988
11954
  pcb_placements?: {
11989
11955
  center: {
@@ -12026,6 +11992,44 @@ declare const boardProps: z.ZodObject<Omit<{
12026
11992
  square?: boolean | undefined;
12027
11993
  emptyArea?: string | undefined;
12028
11994
  filledArea?: string | undefined;
11995
+ pcbGrid?: boolean | undefined;
11996
+ pcbGridCols?: string | number | undefined;
11997
+ pcbGridRows?: string | number | undefined;
11998
+ pcbGridTemplateRows?: string | undefined;
11999
+ pcbGridTemplateColumns?: string | undefined;
12000
+ pcbGridTemplate?: string | undefined;
12001
+ pcbGridGap?: string | number | undefined;
12002
+ pcbGridRowGap?: string | number | undefined;
12003
+ pcbGridColumnGap?: string | number | undefined;
12004
+ pcbFlex?: string | boolean | undefined;
12005
+ pcbFlexGap?: string | number | undefined;
12006
+ pcbFlexDirection?: "row" | "column" | undefined;
12007
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
12008
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
12009
+ pcbFlexRow?: boolean | undefined;
12010
+ pcbFlexColumn?: boolean | undefined;
12011
+ pcbGap?: string | number | undefined;
12012
+ pcbPack?: boolean | undefined;
12013
+ pcbPackGap?: string | number | undefined;
12014
+ schGrid?: boolean | undefined;
12015
+ schGridCols?: string | number | undefined;
12016
+ schGridRows?: string | number | undefined;
12017
+ schGridTemplateRows?: string | undefined;
12018
+ schGridTemplateColumns?: string | undefined;
12019
+ schGridTemplate?: string | undefined;
12020
+ schGridGap?: string | number | undefined;
12021
+ schGridRowGap?: string | number | undefined;
12022
+ schGridColumnGap?: string | number | undefined;
12023
+ schFlex?: string | boolean | undefined;
12024
+ schFlexGap?: string | number | undefined;
12025
+ schFlexDirection?: "row" | "column" | undefined;
12026
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
12027
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
12028
+ schFlexRow?: boolean | undefined;
12029
+ schFlexColumn?: boolean | undefined;
12030
+ schGap?: string | number | undefined;
12031
+ schPack?: boolean | undefined;
12032
+ schMatchAdapt?: boolean | undefined;
12029
12033
  outline?: {
12030
12034
  x: string | number;
12031
12035
  y: string | number;
@@ -12061,7 +12065,6 @@ declare const breakoutProps: z.ZodObject<{
12061
12065
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12062
12066
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12063
12067
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12064
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
12065
12068
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12066
12069
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12067
12070
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -12371,6 +12374,7 @@ declare const breakoutProps: z.ZodObject<{
12371
12374
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12372
12375
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12373
12376
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12377
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
12374
12378
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
12375
12379
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
12376
12380
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -12733,7 +12737,7 @@ declare const breakoutProps: z.ZodObject<{
12733
12737
  pcbX?: number | undefined;
12734
12738
  pcbY?: number | undefined;
12735
12739
  pcbRotation?: number | undefined;
12736
- pcbPositionAnchor?: string | undefined;
12740
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
12737
12741
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
12738
12742
  pcbMarginTop?: number | undefined;
12739
12743
  pcbMarginRight?: number | undefined;
@@ -12920,44 +12924,6 @@ declare const breakoutProps: z.ZodObject<{
12920
12924
  pcbPaddingRight?: number | undefined;
12921
12925
  pcbPaddingTop?: number | undefined;
12922
12926
  pcbPaddingBottom?: number | undefined;
12923
- pcbGrid?: boolean | undefined;
12924
- pcbGridCols?: string | number | undefined;
12925
- pcbGridRows?: string | number | undefined;
12926
- pcbGridTemplateRows?: string | undefined;
12927
- pcbGridTemplateColumns?: string | undefined;
12928
- pcbGridTemplate?: string | undefined;
12929
- pcbGridGap?: string | number | undefined;
12930
- pcbGridRowGap?: string | number | undefined;
12931
- pcbGridColumnGap?: string | number | undefined;
12932
- pcbFlex?: string | boolean | undefined;
12933
- pcbFlexGap?: string | number | undefined;
12934
- pcbFlexDirection?: "row" | "column" | undefined;
12935
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
12936
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
12937
- pcbFlexRow?: boolean | undefined;
12938
- pcbFlexColumn?: boolean | undefined;
12939
- pcbGap?: string | number | undefined;
12940
- pcbPack?: boolean | undefined;
12941
- pcbPackGap?: string | number | undefined;
12942
- schGrid?: boolean | undefined;
12943
- schGridCols?: string | number | undefined;
12944
- schGridRows?: string | number | undefined;
12945
- schGridTemplateRows?: string | undefined;
12946
- schGridTemplateColumns?: string | undefined;
12947
- schGridTemplate?: string | undefined;
12948
- schGridGap?: string | number | undefined;
12949
- schGridRowGap?: string | number | undefined;
12950
- schGridColumnGap?: string | number | undefined;
12951
- schFlex?: string | boolean | undefined;
12952
- schFlexGap?: string | number | undefined;
12953
- schFlexDirection?: "row" | "column" | undefined;
12954
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
12955
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
12956
- schFlexRow?: boolean | undefined;
12957
- schFlexColumn?: boolean | undefined;
12958
- schGap?: string | number | undefined;
12959
- schPack?: boolean | undefined;
12960
- schMatchAdapt?: boolean | undefined;
12961
12927
  manualEdits?: {
12962
12928
  pcb_placements?: {
12963
12929
  center: {
@@ -12998,6 +12964,44 @@ declare const breakoutProps: z.ZodObject<{
12998
12964
  square?: boolean | undefined;
12999
12965
  emptyArea?: string | undefined;
13000
12966
  filledArea?: string | undefined;
12967
+ pcbGrid?: boolean | undefined;
12968
+ pcbGridCols?: string | number | undefined;
12969
+ pcbGridRows?: string | number | undefined;
12970
+ pcbGridTemplateRows?: string | undefined;
12971
+ pcbGridTemplateColumns?: string | undefined;
12972
+ pcbGridTemplate?: string | undefined;
12973
+ pcbGridGap?: string | number | undefined;
12974
+ pcbGridRowGap?: string | number | undefined;
12975
+ pcbGridColumnGap?: string | number | undefined;
12976
+ pcbFlex?: string | boolean | undefined;
12977
+ pcbFlexGap?: string | number | undefined;
12978
+ pcbFlexDirection?: "row" | "column" | undefined;
12979
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
12980
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
12981
+ pcbFlexRow?: boolean | undefined;
12982
+ pcbFlexColumn?: boolean | undefined;
12983
+ pcbGap?: string | number | undefined;
12984
+ pcbPack?: boolean | undefined;
12985
+ pcbPackGap?: string | number | undefined;
12986
+ schGrid?: boolean | undefined;
12987
+ schGridCols?: string | number | undefined;
12988
+ schGridRows?: string | number | undefined;
12989
+ schGridTemplateRows?: string | undefined;
12990
+ schGridTemplateColumns?: string | undefined;
12991
+ schGridTemplate?: string | undefined;
12992
+ schGridGap?: string | number | undefined;
12993
+ schGridRowGap?: string | number | undefined;
12994
+ schGridColumnGap?: string | number | undefined;
12995
+ schFlex?: string | boolean | undefined;
12996
+ schFlexGap?: string | number | undefined;
12997
+ schFlexDirection?: "row" | "column" | undefined;
12998
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
12999
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
13000
+ schFlexRow?: boolean | undefined;
13001
+ schFlexColumn?: boolean | undefined;
13002
+ schGap?: string | number | undefined;
13003
+ schPack?: boolean | undefined;
13004
+ schMatchAdapt?: boolean | undefined;
13001
13005
  outline?: {
13002
13006
  x: number;
13003
13007
  y: number;
@@ -13010,7 +13014,7 @@ declare const breakoutProps: z.ZodObject<{
13010
13014
  pcbX?: string | number | undefined;
13011
13015
  pcbY?: string | number | undefined;
13012
13016
  pcbRotation?: string | number | undefined;
13013
- pcbPositionAnchor?: string | undefined;
13017
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
13014
13018
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
13015
13019
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
13016
13020
  } | undefined;
@@ -13199,44 +13203,6 @@ declare const breakoutProps: z.ZodObject<{
13199
13203
  pcbPaddingRight?: string | number | undefined;
13200
13204
  pcbPaddingTop?: string | number | undefined;
13201
13205
  pcbPaddingBottom?: string | number | undefined;
13202
- pcbGrid?: boolean | undefined;
13203
- pcbGridCols?: string | number | undefined;
13204
- pcbGridRows?: string | number | undefined;
13205
- pcbGridTemplateRows?: string | undefined;
13206
- pcbGridTemplateColumns?: string | undefined;
13207
- pcbGridTemplate?: string | undefined;
13208
- pcbGridGap?: string | number | undefined;
13209
- pcbGridRowGap?: string | number | undefined;
13210
- pcbGridColumnGap?: string | number | undefined;
13211
- pcbFlex?: string | boolean | undefined;
13212
- pcbFlexGap?: string | number | undefined;
13213
- pcbFlexDirection?: "row" | "column" | undefined;
13214
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
13215
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
13216
- pcbFlexRow?: boolean | undefined;
13217
- pcbFlexColumn?: boolean | undefined;
13218
- pcbGap?: string | number | undefined;
13219
- pcbPack?: boolean | undefined;
13220
- pcbPackGap?: string | number | undefined;
13221
- schGrid?: boolean | undefined;
13222
- schGridCols?: string | number | undefined;
13223
- schGridRows?: string | number | undefined;
13224
- schGridTemplateRows?: string | undefined;
13225
- schGridTemplateColumns?: string | undefined;
13226
- schGridTemplate?: string | undefined;
13227
- schGridGap?: string | number | undefined;
13228
- schGridRowGap?: string | number | undefined;
13229
- schGridColumnGap?: string | number | undefined;
13230
- schFlex?: string | boolean | undefined;
13231
- schFlexGap?: string | number | undefined;
13232
- schFlexDirection?: "row" | "column" | undefined;
13233
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
13234
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
13235
- schFlexRow?: boolean | undefined;
13236
- schFlexColumn?: boolean | undefined;
13237
- schGap?: string | number | undefined;
13238
- schPack?: boolean | undefined;
13239
- schMatchAdapt?: boolean | undefined;
13240
13206
  manualEdits?: {
13241
13207
  pcb_placements?: {
13242
13208
  center: {
@@ -13279,6 +13245,44 @@ declare const breakoutProps: z.ZodObject<{
13279
13245
  square?: boolean | undefined;
13280
13246
  emptyArea?: string | undefined;
13281
13247
  filledArea?: string | undefined;
13248
+ pcbGrid?: boolean | undefined;
13249
+ pcbGridCols?: string | number | undefined;
13250
+ pcbGridRows?: string | number | undefined;
13251
+ pcbGridTemplateRows?: string | undefined;
13252
+ pcbGridTemplateColumns?: string | undefined;
13253
+ pcbGridTemplate?: string | undefined;
13254
+ pcbGridGap?: string | number | undefined;
13255
+ pcbGridRowGap?: string | number | undefined;
13256
+ pcbGridColumnGap?: string | number | undefined;
13257
+ pcbFlex?: string | boolean | undefined;
13258
+ pcbFlexGap?: string | number | undefined;
13259
+ pcbFlexDirection?: "row" | "column" | undefined;
13260
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
13261
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
13262
+ pcbFlexRow?: boolean | undefined;
13263
+ pcbFlexColumn?: boolean | undefined;
13264
+ pcbGap?: string | number | undefined;
13265
+ pcbPack?: boolean | undefined;
13266
+ pcbPackGap?: string | number | undefined;
13267
+ schGrid?: boolean | undefined;
13268
+ schGridCols?: string | number | undefined;
13269
+ schGridRows?: string | number | undefined;
13270
+ schGridTemplateRows?: string | undefined;
13271
+ schGridTemplateColumns?: string | undefined;
13272
+ schGridTemplate?: string | undefined;
13273
+ schGridGap?: string | number | undefined;
13274
+ schGridRowGap?: string | number | undefined;
13275
+ schGridColumnGap?: string | number | undefined;
13276
+ schFlex?: string | boolean | undefined;
13277
+ schFlexGap?: string | number | undefined;
13278
+ schFlexDirection?: "row" | "column" | undefined;
13279
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
13280
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
13281
+ schFlexRow?: boolean | undefined;
13282
+ schFlexColumn?: boolean | undefined;
13283
+ schGap?: string | number | undefined;
13284
+ schPack?: boolean | undefined;
13285
+ schMatchAdapt?: boolean | undefined;
13282
13286
  outline?: {
13283
13287
  x: string | number;
13284
13288
  y: string | number;
@@ -27256,7 +27260,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
27256
27260
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27257
27261
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27258
27262
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27259
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
27260
27263
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27261
27264
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27262
27265
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -27566,6 +27569,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
27566
27569
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27567
27570
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27568
27571
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
27572
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
27569
27573
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
27570
27574
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
27571
27575
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -27964,7 +27968,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
27964
27968
  pcbX?: number | undefined;
27965
27969
  pcbY?: number | undefined;
27966
27970
  pcbRotation?: number | undefined;
27967
- pcbPositionAnchor?: string | undefined;
27971
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
27968
27972
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
27969
27973
  pcbMarginTop?: number | undefined;
27970
27974
  pcbMarginRight?: number | undefined;
@@ -28154,44 +28158,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
28154
28158
  pcbPaddingRight?: number | undefined;
28155
28159
  pcbPaddingTop?: number | undefined;
28156
28160
  pcbPaddingBottom?: number | undefined;
28157
- pcbGrid?: boolean | undefined;
28158
- pcbGridCols?: string | number | undefined;
28159
- pcbGridRows?: string | number | undefined;
28160
- pcbGridTemplateRows?: string | undefined;
28161
- pcbGridTemplateColumns?: string | undefined;
28162
- pcbGridTemplate?: string | undefined;
28163
- pcbGridGap?: string | number | undefined;
28164
- pcbGridRowGap?: string | number | undefined;
28165
- pcbGridColumnGap?: string | number | undefined;
28166
- pcbFlex?: string | boolean | undefined;
28167
- pcbFlexGap?: string | number | undefined;
28168
- pcbFlexDirection?: "row" | "column" | undefined;
28169
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28170
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28171
- pcbFlexRow?: boolean | undefined;
28172
- pcbFlexColumn?: boolean | undefined;
28173
- pcbGap?: string | number | undefined;
28174
- pcbPack?: boolean | undefined;
28175
- pcbPackGap?: string | number | undefined;
28176
- schGrid?: boolean | undefined;
28177
- schGridCols?: string | number | undefined;
28178
- schGridRows?: string | number | undefined;
28179
- schGridTemplateRows?: string | undefined;
28180
- schGridTemplateColumns?: string | undefined;
28181
- schGridTemplate?: string | undefined;
28182
- schGridGap?: string | number | undefined;
28183
- schGridRowGap?: string | number | undefined;
28184
- schGridColumnGap?: string | number | undefined;
28185
- schFlex?: string | boolean | undefined;
28186
- schFlexGap?: string | number | undefined;
28187
- schFlexDirection?: "row" | "column" | undefined;
28188
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28189
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28190
- schFlexRow?: boolean | undefined;
28191
- schFlexColumn?: boolean | undefined;
28192
- schGap?: string | number | undefined;
28193
- schPack?: boolean | undefined;
28194
- schMatchAdapt?: boolean | undefined;
28195
28161
  manualEdits?: {
28196
28162
  pcb_placements?: {
28197
28163
  center: {
@@ -28232,6 +28198,44 @@ declare const stampboardProps: z.ZodObject<Omit<{
28232
28198
  square?: boolean | undefined;
28233
28199
  emptyArea?: string | undefined;
28234
28200
  filledArea?: string | undefined;
28201
+ pcbGrid?: boolean | undefined;
28202
+ pcbGridCols?: string | number | undefined;
28203
+ pcbGridRows?: string | number | undefined;
28204
+ pcbGridTemplateRows?: string | undefined;
28205
+ pcbGridTemplateColumns?: string | undefined;
28206
+ pcbGridTemplate?: string | undefined;
28207
+ pcbGridGap?: string | number | undefined;
28208
+ pcbGridRowGap?: string | number | undefined;
28209
+ pcbGridColumnGap?: string | number | undefined;
28210
+ pcbFlex?: string | boolean | undefined;
28211
+ pcbFlexGap?: string | number | undefined;
28212
+ pcbFlexDirection?: "row" | "column" | undefined;
28213
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28214
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28215
+ pcbFlexRow?: boolean | undefined;
28216
+ pcbFlexColumn?: boolean | undefined;
28217
+ pcbGap?: string | number | undefined;
28218
+ pcbPack?: boolean | undefined;
28219
+ pcbPackGap?: string | number | undefined;
28220
+ schGrid?: boolean | undefined;
28221
+ schGridCols?: string | number | undefined;
28222
+ schGridRows?: string | number | undefined;
28223
+ schGridTemplateRows?: string | undefined;
28224
+ schGridTemplateColumns?: string | undefined;
28225
+ schGridTemplate?: string | undefined;
28226
+ schGridGap?: string | number | undefined;
28227
+ schGridRowGap?: string | number | undefined;
28228
+ schGridColumnGap?: string | number | undefined;
28229
+ schFlex?: string | boolean | undefined;
28230
+ schFlexGap?: string | number | undefined;
28231
+ schFlexDirection?: "row" | "column" | undefined;
28232
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28233
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28234
+ schFlexRow?: boolean | undefined;
28235
+ schFlexColumn?: boolean | undefined;
28236
+ schGap?: string | number | undefined;
28237
+ schPack?: boolean | undefined;
28238
+ schMatchAdapt?: boolean | undefined;
28235
28239
  outline?: {
28236
28240
  x: number;
28237
28241
  y: number;
@@ -28264,7 +28268,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
28264
28268
  pcbX?: string | number | undefined;
28265
28269
  pcbY?: string | number | undefined;
28266
28270
  pcbRotation?: string | number | undefined;
28267
- pcbPositionAnchor?: string | undefined;
28271
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
28268
28272
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
28269
28273
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
28270
28274
  } | undefined;
@@ -28456,44 +28460,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
28456
28460
  pcbPaddingRight?: string | number | undefined;
28457
28461
  pcbPaddingTop?: string | number | undefined;
28458
28462
  pcbPaddingBottom?: string | number | undefined;
28459
- pcbGrid?: boolean | undefined;
28460
- pcbGridCols?: string | number | undefined;
28461
- pcbGridRows?: string | number | undefined;
28462
- pcbGridTemplateRows?: string | undefined;
28463
- pcbGridTemplateColumns?: string | undefined;
28464
- pcbGridTemplate?: string | undefined;
28465
- pcbGridGap?: string | number | undefined;
28466
- pcbGridRowGap?: string | number | undefined;
28467
- pcbGridColumnGap?: string | number | undefined;
28468
- pcbFlex?: string | boolean | undefined;
28469
- pcbFlexGap?: string | number | undefined;
28470
- pcbFlexDirection?: "row" | "column" | undefined;
28471
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28472
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28473
- pcbFlexRow?: boolean | undefined;
28474
- pcbFlexColumn?: boolean | undefined;
28475
- pcbGap?: string | number | undefined;
28476
- pcbPack?: boolean | undefined;
28477
- pcbPackGap?: string | number | undefined;
28478
- schGrid?: boolean | undefined;
28479
- schGridCols?: string | number | undefined;
28480
- schGridRows?: string | number | undefined;
28481
- schGridTemplateRows?: string | undefined;
28482
- schGridTemplateColumns?: string | undefined;
28483
- schGridTemplate?: string | undefined;
28484
- schGridGap?: string | number | undefined;
28485
- schGridRowGap?: string | number | undefined;
28486
- schGridColumnGap?: string | number | undefined;
28487
- schFlex?: string | boolean | undefined;
28488
- schFlexGap?: string | number | undefined;
28489
- schFlexDirection?: "row" | "column" | undefined;
28490
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28491
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28492
- schFlexRow?: boolean | undefined;
28493
- schFlexColumn?: boolean | undefined;
28494
- schGap?: string | number | undefined;
28495
- schPack?: boolean | undefined;
28496
- schMatchAdapt?: boolean | undefined;
28497
28463
  manualEdits?: {
28498
28464
  pcb_placements?: {
28499
28465
  center: {
@@ -28536,6 +28502,44 @@ declare const stampboardProps: z.ZodObject<Omit<{
28536
28502
  square?: boolean | undefined;
28537
28503
  emptyArea?: string | undefined;
28538
28504
  filledArea?: string | undefined;
28505
+ pcbGrid?: boolean | undefined;
28506
+ pcbGridCols?: string | number | undefined;
28507
+ pcbGridRows?: string | number | undefined;
28508
+ pcbGridTemplateRows?: string | undefined;
28509
+ pcbGridTemplateColumns?: string | undefined;
28510
+ pcbGridTemplate?: string | undefined;
28511
+ pcbGridGap?: string | number | undefined;
28512
+ pcbGridRowGap?: string | number | undefined;
28513
+ pcbGridColumnGap?: string | number | undefined;
28514
+ pcbFlex?: string | boolean | undefined;
28515
+ pcbFlexGap?: string | number | undefined;
28516
+ pcbFlexDirection?: "row" | "column" | undefined;
28517
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28518
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28519
+ pcbFlexRow?: boolean | undefined;
28520
+ pcbFlexColumn?: boolean | undefined;
28521
+ pcbGap?: string | number | undefined;
28522
+ pcbPack?: boolean | undefined;
28523
+ pcbPackGap?: string | number | undefined;
28524
+ schGrid?: boolean | undefined;
28525
+ schGridCols?: string | number | undefined;
28526
+ schGridRows?: string | number | undefined;
28527
+ schGridTemplateRows?: string | undefined;
28528
+ schGridTemplateColumns?: string | undefined;
28529
+ schGridTemplate?: string | undefined;
28530
+ schGridGap?: string | number | undefined;
28531
+ schGridRowGap?: string | number | undefined;
28532
+ schGridColumnGap?: string | number | undefined;
28533
+ schFlex?: string | boolean | undefined;
28534
+ schFlexGap?: string | number | undefined;
28535
+ schFlexDirection?: "row" | "column" | undefined;
28536
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
28537
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
28538
+ schFlexRow?: boolean | undefined;
28539
+ schFlexColumn?: boolean | undefined;
28540
+ schGap?: string | number | undefined;
28541
+ schPack?: boolean | undefined;
28542
+ schMatchAdapt?: boolean | undefined;
28539
28543
  outline?: {
28540
28544
  x: string | number;
28541
28545
  y: string | number;
@@ -35508,7 +35512,6 @@ declare const subcircuitProps: z.ZodObject<{
35508
35512
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35509
35513
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35510
35514
  pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35511
- pcbPositionAnchor: z.ZodOptional<z.ZodString>;
35512
35515
  pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35513
35516
  pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35514
35517
  pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -35818,6 +35821,7 @@ declare const subcircuitProps: z.ZodObject<{
35818
35821
  pcbPaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35819
35822
  pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35820
35823
  pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
35824
+ pcbPositionAnchor: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
35821
35825
  layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
35822
35826
  position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
35823
35827
  gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -36180,7 +36184,7 @@ declare const subcircuitProps: z.ZodObject<{
36180
36184
  pcbX?: number | undefined;
36181
36185
  pcbY?: number | undefined;
36182
36186
  pcbRotation?: number | undefined;
36183
- pcbPositionAnchor?: string | undefined;
36187
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
36184
36188
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
36185
36189
  pcbMarginTop?: number | undefined;
36186
36190
  pcbMarginRight?: number | undefined;
@@ -36367,44 +36371,6 @@ declare const subcircuitProps: z.ZodObject<{
36367
36371
  pcbPaddingRight?: number | undefined;
36368
36372
  pcbPaddingTop?: number | undefined;
36369
36373
  pcbPaddingBottom?: number | undefined;
36370
- pcbGrid?: boolean | undefined;
36371
- pcbGridCols?: string | number | undefined;
36372
- pcbGridRows?: string | number | undefined;
36373
- pcbGridTemplateRows?: string | undefined;
36374
- pcbGridTemplateColumns?: string | undefined;
36375
- pcbGridTemplate?: string | undefined;
36376
- pcbGridGap?: string | number | undefined;
36377
- pcbGridRowGap?: string | number | undefined;
36378
- pcbGridColumnGap?: string | number | undefined;
36379
- pcbFlex?: string | boolean | undefined;
36380
- pcbFlexGap?: string | number | undefined;
36381
- pcbFlexDirection?: "row" | "column" | undefined;
36382
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36383
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36384
- pcbFlexRow?: boolean | undefined;
36385
- pcbFlexColumn?: boolean | undefined;
36386
- pcbGap?: string | number | undefined;
36387
- pcbPack?: boolean | undefined;
36388
- pcbPackGap?: string | number | undefined;
36389
- schGrid?: boolean | undefined;
36390
- schGridCols?: string | number | undefined;
36391
- schGridRows?: string | number | undefined;
36392
- schGridTemplateRows?: string | undefined;
36393
- schGridTemplateColumns?: string | undefined;
36394
- schGridTemplate?: string | undefined;
36395
- schGridGap?: string | number | undefined;
36396
- schGridRowGap?: string | number | undefined;
36397
- schGridColumnGap?: string | number | undefined;
36398
- schFlex?: string | boolean | undefined;
36399
- schFlexGap?: string | number | undefined;
36400
- schFlexDirection?: "row" | "column" | undefined;
36401
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36402
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36403
- schFlexRow?: boolean | undefined;
36404
- schFlexColumn?: boolean | undefined;
36405
- schGap?: string | number | undefined;
36406
- schPack?: boolean | undefined;
36407
- schMatchAdapt?: boolean | undefined;
36408
36374
  manualEdits?: {
36409
36375
  pcb_placements?: {
36410
36376
  center: {
@@ -36445,6 +36411,44 @@ declare const subcircuitProps: z.ZodObject<{
36445
36411
  square?: boolean | undefined;
36446
36412
  emptyArea?: string | undefined;
36447
36413
  filledArea?: string | undefined;
36414
+ pcbGrid?: boolean | undefined;
36415
+ pcbGridCols?: string | number | undefined;
36416
+ pcbGridRows?: string | number | undefined;
36417
+ pcbGridTemplateRows?: string | undefined;
36418
+ pcbGridTemplateColumns?: string | undefined;
36419
+ pcbGridTemplate?: string | undefined;
36420
+ pcbGridGap?: string | number | undefined;
36421
+ pcbGridRowGap?: string | number | undefined;
36422
+ pcbGridColumnGap?: string | number | undefined;
36423
+ pcbFlex?: string | boolean | undefined;
36424
+ pcbFlexGap?: string | number | undefined;
36425
+ pcbFlexDirection?: "row" | "column" | undefined;
36426
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36427
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36428
+ pcbFlexRow?: boolean | undefined;
36429
+ pcbFlexColumn?: boolean | undefined;
36430
+ pcbGap?: string | number | undefined;
36431
+ pcbPack?: boolean | undefined;
36432
+ pcbPackGap?: string | number | undefined;
36433
+ schGrid?: boolean | undefined;
36434
+ schGridCols?: string | number | undefined;
36435
+ schGridRows?: string | number | undefined;
36436
+ schGridTemplateRows?: string | undefined;
36437
+ schGridTemplateColumns?: string | undefined;
36438
+ schGridTemplate?: string | undefined;
36439
+ schGridGap?: string | number | undefined;
36440
+ schGridRowGap?: string | number | undefined;
36441
+ schGridColumnGap?: string | number | undefined;
36442
+ schFlex?: string | boolean | undefined;
36443
+ schFlexGap?: string | number | undefined;
36444
+ schFlexDirection?: "row" | "column" | undefined;
36445
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36446
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36447
+ schFlexRow?: boolean | undefined;
36448
+ schFlexColumn?: boolean | undefined;
36449
+ schGap?: string | number | undefined;
36450
+ schPack?: boolean | undefined;
36451
+ schMatchAdapt?: boolean | undefined;
36448
36452
  outline?: {
36449
36453
  x: number;
36450
36454
  y: number;
@@ -36457,7 +36461,7 @@ declare const subcircuitProps: z.ZodObject<{
36457
36461
  pcbX?: string | number | undefined;
36458
36462
  pcbY?: string | number | undefined;
36459
36463
  pcbRotation?: string | number | undefined;
36460
- pcbPositionAnchor?: string | undefined;
36464
+ pcbPositionAnchor?: AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right"> | undefined;
36461
36465
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
36462
36466
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
36463
36467
  } | undefined;
@@ -36646,44 +36650,6 @@ declare const subcircuitProps: z.ZodObject<{
36646
36650
  pcbPaddingRight?: string | number | undefined;
36647
36651
  pcbPaddingTop?: string | number | undefined;
36648
36652
  pcbPaddingBottom?: string | number | undefined;
36649
- pcbGrid?: boolean | undefined;
36650
- pcbGridCols?: string | number | undefined;
36651
- pcbGridRows?: string | number | undefined;
36652
- pcbGridTemplateRows?: string | undefined;
36653
- pcbGridTemplateColumns?: string | undefined;
36654
- pcbGridTemplate?: string | undefined;
36655
- pcbGridGap?: string | number | undefined;
36656
- pcbGridRowGap?: string | number | undefined;
36657
- pcbGridColumnGap?: string | number | undefined;
36658
- pcbFlex?: string | boolean | undefined;
36659
- pcbFlexGap?: string | number | undefined;
36660
- pcbFlexDirection?: "row" | "column" | undefined;
36661
- pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36662
- pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36663
- pcbFlexRow?: boolean | undefined;
36664
- pcbFlexColumn?: boolean | undefined;
36665
- pcbGap?: string | number | undefined;
36666
- pcbPack?: boolean | undefined;
36667
- pcbPackGap?: string | number | undefined;
36668
- schGrid?: boolean | undefined;
36669
- schGridCols?: string | number | undefined;
36670
- schGridRows?: string | number | undefined;
36671
- schGridTemplateRows?: string | undefined;
36672
- schGridTemplateColumns?: string | undefined;
36673
- schGridTemplate?: string | undefined;
36674
- schGridGap?: string | number | undefined;
36675
- schGridRowGap?: string | number | undefined;
36676
- schGridColumnGap?: string | number | undefined;
36677
- schFlex?: string | boolean | undefined;
36678
- schFlexGap?: string | number | undefined;
36679
- schFlexDirection?: "row" | "column" | undefined;
36680
- schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36681
- schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36682
- schFlexRow?: boolean | undefined;
36683
- schFlexColumn?: boolean | undefined;
36684
- schGap?: string | number | undefined;
36685
- schPack?: boolean | undefined;
36686
- schMatchAdapt?: boolean | undefined;
36687
36653
  manualEdits?: {
36688
36654
  pcb_placements?: {
36689
36655
  center: {
@@ -36726,6 +36692,44 @@ declare const subcircuitProps: z.ZodObject<{
36726
36692
  square?: boolean | undefined;
36727
36693
  emptyArea?: string | undefined;
36728
36694
  filledArea?: string | undefined;
36695
+ pcbGrid?: boolean | undefined;
36696
+ pcbGridCols?: string | number | undefined;
36697
+ pcbGridRows?: string | number | undefined;
36698
+ pcbGridTemplateRows?: string | undefined;
36699
+ pcbGridTemplateColumns?: string | undefined;
36700
+ pcbGridTemplate?: string | undefined;
36701
+ pcbGridGap?: string | number | undefined;
36702
+ pcbGridRowGap?: string | number | undefined;
36703
+ pcbGridColumnGap?: string | number | undefined;
36704
+ pcbFlex?: string | boolean | undefined;
36705
+ pcbFlexGap?: string | number | undefined;
36706
+ pcbFlexDirection?: "row" | "column" | undefined;
36707
+ pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36708
+ pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36709
+ pcbFlexRow?: boolean | undefined;
36710
+ pcbFlexColumn?: boolean | undefined;
36711
+ pcbGap?: string | number | undefined;
36712
+ pcbPack?: boolean | undefined;
36713
+ pcbPackGap?: string | number | undefined;
36714
+ schGrid?: boolean | undefined;
36715
+ schGridCols?: string | number | undefined;
36716
+ schGridRows?: string | number | undefined;
36717
+ schGridTemplateRows?: string | undefined;
36718
+ schGridTemplateColumns?: string | undefined;
36719
+ schGridTemplate?: string | undefined;
36720
+ schGridGap?: string | number | undefined;
36721
+ schGridRowGap?: string | number | undefined;
36722
+ schGridColumnGap?: string | number | undefined;
36723
+ schFlex?: string | boolean | undefined;
36724
+ schFlexGap?: string | number | undefined;
36725
+ schFlexDirection?: "row" | "column" | undefined;
36726
+ schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
36727
+ schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
36728
+ schFlexRow?: boolean | undefined;
36729
+ schFlexColumn?: boolean | undefined;
36730
+ schGap?: string | number | undefined;
36731
+ schPack?: boolean | undefined;
36732
+ schMatchAdapt?: boolean | undefined;
36729
36733
  outline?: {
36730
36734
  x: string | number;
36731
36735
  y: string | number;