@tscircuit/props 0.0.298 → 0.0.299

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.
@@ -2,6 +2,7 @@ import type { LayerRef } from "circuit-json"
2
2
  import type { ReactElement } from "react"
3
3
  import { z } from "zod"
4
4
  import { type AutocompleteString } from "./autocomplete"
5
+ import type { KicadAutocompleteStringPath } from "../generated/kicad-autocomplete"
5
6
 
6
7
  /**
7
8
  * This is an abbreviated definition of the soup elements that you can find here:
@@ -46,6 +47,7 @@ export type BasicFootprint =
46
47
 
47
48
  export type FootprintProp =
48
49
  | AutocompleteString<BasicFootprint>
50
+ | KicadAutocompleteStringPath
49
51
  | ReactElement
50
52
  | FootprintSoupElements[]
51
53