@me-framework/me-ui-antdv-next 0.0.39 → 0.0.42
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/dist/me-ui-antdv-next.js +942 -719
- package/dist/me-ui-antdv-next.umd.cjs +10 -10
- package/dist/menu/index.js +87 -76
- package/dist/menu/index.vue.d.ts +1 -0
- package/dist/menu/types.d.ts +4 -0
- package/dist/menu/useMenu.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/tree-menu/TreeMenuEdit.vue.d.ts +2 -2
- package/dist/tree-menu/index.css +1 -1
- package/dist/tree-menu/index.js +394 -182
- package/dist/tree-menu/index.vue.d.ts +10 -8
- package/package.json +1 -1
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { MeTreeMenuData, MeTreeMenuAction, MeTreeMenuInstance, MeTreeMenuItem, MeTreeMenuMoveConfirm, MeInputIconSelectorSource } from './types';
|
|
3
|
-
declare var __VLS_13: {},
|
|
3
|
+
declare var __VLS_13: {}, __VLS_15: {}, __VLS_35: {}, __VLS_69: {
|
|
4
4
|
data: any;
|
|
5
|
-
},
|
|
5
|
+
}, __VLS_97: {}, __VLS_117: {}, __VLS_120: {}, __VLS_123: {};
|
|
6
6
|
type __VLS_Slots = {} & {
|
|
7
7
|
header?: (props: typeof __VLS_13) => any;
|
|
8
8
|
} & {
|
|
9
|
-
'
|
|
9
|
+
'toolbar-prepend'?: (props: typeof __VLS_15) => any;
|
|
10
10
|
} & {
|
|
11
|
-
|
|
11
|
+
'dropdown-item'?: (props: typeof __VLS_35) => any;
|
|
12
12
|
} & {
|
|
13
|
-
|
|
13
|
+
label?: (props: typeof __VLS_69) => any;
|
|
14
14
|
} & {
|
|
15
|
-
|
|
15
|
+
right?: (props: typeof __VLS_97) => any;
|
|
16
16
|
} & {
|
|
17
|
-
'edit-
|
|
17
|
+
'edit-icon-selector'?: (props: typeof __VLS_117) => any;
|
|
18
18
|
} & {
|
|
19
|
-
edit?: (props: typeof
|
|
19
|
+
'edit-cover'?: (props: typeof __VLS_120) => any;
|
|
20
|
+
} & {
|
|
21
|
+
edit?: (props: typeof __VLS_123) => any;
|
|
20
22
|
};
|
|
21
23
|
declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
22
24
|
/** 树节点数据列表 */
|