@tscircuit/cli 0.0.28 → 0.0.29
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.
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
} from "src/components/ui/menubar"
|
|
16
16
|
import toast from "react-hot-toast"
|
|
17
17
|
import { useGlobalStore } from "./hooks/use-global-store"
|
|
18
|
+
import packageJson from "../package.json"
|
|
18
19
|
|
|
19
20
|
export const HeaderMenu = () => {
|
|
20
21
|
const [viewMode, setViewMode] = useGlobalStore((s) => [
|
|
@@ -181,6 +182,21 @@ export const HeaderMenu = () => {
|
|
|
181
182
|
>
|
|
182
183
|
Changelog
|
|
183
184
|
</MenubarItem>
|
|
185
|
+
<MenubarSeparator />
|
|
186
|
+
<MenubarItem disabled>
|
|
187
|
+
@tscircuit/schematic-viewer v
|
|
188
|
+
{packageJson.dependencies["@tscircuit/schematic-viewer"].replace(
|
|
189
|
+
/\^/g,
|
|
190
|
+
""
|
|
191
|
+
)}
|
|
192
|
+
</MenubarItem>
|
|
193
|
+
<MenubarItem disabled>
|
|
194
|
+
@tscircuit/pcb-viewer v
|
|
195
|
+
{packageJson.dependencies["@tscircuit/pcb-viewer"].replace(
|
|
196
|
+
/\^/g,
|
|
197
|
+
""
|
|
198
|
+
)}
|
|
199
|
+
</MenubarItem>
|
|
184
200
|
</MenubarContent>
|
|
185
201
|
</MenubarMenu>
|
|
186
202
|
</Menubar>
|