-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix docs, export ContextMenu component
- Loading branch information
Showing
8 changed files
with
23 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export { default as Minimap } from "./components/Minimap.vue"; | ||
export { default as Connection } from "./connection/ConnectionView.vue"; | ||
export { default as ConnectionWrapper } from "./connection/ConnectionWrapper.vue"; | ||
export { default as TemporaryConnection } from "./connection/TemporaryConnection.vue"; | ||
export { ContextMenu } from "./contextmenu"; | ||
export { default as Node } from "./node/Node.vue"; | ||
export { default as NodeInterface } from "./node/NodeInterface.vue"; | ||
export { default as NodePalette } from "./nodepalette/NodePalette.vue"; | ||
export { default as ContextMenu } from "./components/ContextMenu.vue"; | ||
export { default as Minimap } from "./components/Minimap.vue"; | ||
export { default as Sidebar } from "./sidebar/Sidebar.vue"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { default as ContextMenu } from "./ContextMenu.vue"; | ||
export * from "./types"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type { Ref } from "vue"; | ||
|
||
export interface IMenuItem { | ||
label?: string; | ||
value?: any; | ||
isDivider?: boolean; | ||
submenu?: IMenuItem[]; | ||
disabled?: boolean | Readonly<Ref<boolean>>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
packages/renderer-vue/src/contextMenu.ts → ...es/renderer-vue/src/editor/contextMenu.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters