From 68f730715198f51a79ff847b7fe499997d09a8ba Mon Sep 17 00:00:00 2001
From: hocino <94870540+hocino@users.noreply.github.com>
Date: Sun, 1 Sep 2024 08:41:12 +0100
Subject: [PATCH 1/3] docs update dead link on main-menu page
---
.../excalidraw/api/children-components/main-menu.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx b/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx
index e601a2471..b0062d962 100644
--- a/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx
+++ b/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx
@@ -133,7 +133,7 @@ function App() {
}
```
-Here is a [complete list](https://github.com/excalidraw/excalidraw/blob/master/packages/excalidraw/components/mainMenu/DefaultItems.tsx) of the default items.
+Here is a [complete list](https://github.com/excalidraw/excalidraw/blob/master/packages/excalidraw/components/main-menu/DefaultItems.tsx) of the default items.
### MainMenu.Group
From e611b4ff030349f2ee6fe8577ff70e3b54e1e76d Mon Sep 17 00:00:00 2001
From: hocino <94870540+hocino@users.noreply.github.com>
Date: Wed, 11 Sep 2024 11:11:54 +0100
Subject: [PATCH 2/3] doc: fix dead link
---
dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx b/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx
index 5c075de86..6337fe7ac 100644
--- a/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx
+++ b/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx
@@ -20,7 +20,7 @@ exportToCanvas({
getDimensions,
files,
exportPadding?: number;
-}: ExportOpts
+}: ExportOpts
| Name | Type | Default | Description |
From 2d9249a9def74f0a0e337bca10e4497eb6ab17f2 Mon Sep 17 00:00:00 2001
From: hocino <94870540+hocino@users.noreply.github.com>
Date: Wed, 25 Sep 2024 19:59:07 +0100
Subject: [PATCH 3/3] Docs: replace dead link
---
dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx b/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx
index 6337fe7ac..5502e9668 100644
--- a/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx
+++ b/dev-docs/docs/@excalidraw/excalidraw/api/utils/export.mdx
@@ -105,7 +105,7 @@ function App() {
exportToBlob(
- opts: ExportOpts & {
+ opts: ExportOpts & {
mimeType?: string,
quality?: number,
exportPadding?: number;
@@ -164,7 +164,7 @@ This function returns a promise which resolves to `svg` of the exported drawing.exportToClipboard(
- opts: ExportOpts & {
+ opts: ExportOpts & {
mimeType?: string,
quality?: number;
type: 'png' | 'svg' |'json'