@imengyu/vue3-context-menu 1.2.8 → 1.2.9
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/index.d.ts +2 -0
- package/lib/MenuBar +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export default ContextMenuGlobal;
|
|
|
5
5
|
|
|
6
6
|
export * from './lib/ContextMenuDefine';
|
|
7
7
|
import MenuBar from './lib/MenuBar.vue';
|
|
8
|
+
import { MenuBarOptions } from './lib/MenuBar';
|
|
8
9
|
import ContextMenu from './lib/ContextMenu.vue';
|
|
9
10
|
import ContextMenuItem from './lib/ContextMenuItem.vue';
|
|
10
11
|
import ContextMenuSeparator from './lib/ContextMenuSeparator.vue';
|
|
@@ -16,6 +17,7 @@ export {
|
|
|
16
17
|
ContextMenuSeparator,
|
|
17
18
|
ContextMenuGroup,
|
|
18
19
|
MenuBar,
|
|
20
|
+
MenuBarOptions,
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
declare module 'vue3-context-menu' {
|
package/lib/MenuBar
ADDED
|
File without changes
|