@vxe-ui/plugin-menu 4.3.1 → 4.3.4
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/LICENSE +20 -20
- package/README.md +149 -149
- package/dist/index.umd.js +118 -38
- package/dist/index.umd.min.js +1 -1
- package/es/index.esm.js +83 -7
- package/es/index.js +83 -7
- package/lib/index.common.js +113 -33
- package/lib/index.js +113 -33
- package/lib/index.umd.js +118 -38
- package/lib/index.umd.min.js +1 -1
- package/package.json +77 -77
- package/src/index.ts +1562 -1488
- package/types/index.d.ts +15 -15
package/types/index.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { VxeUIExport } from 'vxe-pc-ui'
|
|
2
|
-
|
|
3
|
-
export interface VxeUIPluginMenuOptions {
|
|
4
|
-
copy?: (content: string | number) => boolean;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* 基于 Vxe UI 的扩展插件,支持右键菜单
|
|
9
|
-
*/
|
|
10
|
-
export declare const VxeUIPluginMenu: {
|
|
11
|
-
setConfig(options?: VxeUIPluginMenuOptions): void
|
|
12
|
-
install (VxeUI: VxeUIExport, options?: VxeUIPluginMenuOptions): void
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export default VxeUIPluginMenu
|
|
1
|
+
import { VxeUIExport } from 'vxe-pc-ui'
|
|
2
|
+
|
|
3
|
+
export interface VxeUIPluginMenuOptions {
|
|
4
|
+
copy?: (content: string | number) => boolean;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 基于 Vxe UI 的扩展插件,支持右键菜单
|
|
9
|
+
*/
|
|
10
|
+
export declare const VxeUIPluginMenu: {
|
|
11
|
+
setConfig(options?: VxeUIPluginMenuOptions): void
|
|
12
|
+
install (VxeUI: VxeUIExport, options?: VxeUIPluginMenuOptions): void
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default VxeUIPluginMenu
|