@opentinyvue/vue-tree-menu 3.23.0 → 3.24.0
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/lib/index.js +1 -1
- package/package.json +7 -7
- package/src/pc.vue.d.ts +2 -0
- package/src/props.d.ts +1 -0
package/lib/index.js
CHANGED
|
@@ -301,7 +301,7 @@ function _sfc_render(_ctx, _cache, $props2, $setup, $data, $options) {
|
|
|
301
301
|
);
|
|
302
302
|
}
|
|
303
303
|
var TreeMenu = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
304
|
-
var version = "3.
|
|
304
|
+
var version = "3.undefined";
|
|
305
305
|
TreeMenu.install = function(Vue) {
|
|
306
306
|
Vue.component(TreeMenu.name, TreeMenu);
|
|
307
307
|
};
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-tree-menu",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-common": "~3.
|
|
11
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
12
|
-
"@opentinyvue/vue-input": "~3.
|
|
13
|
-
"@opentinyvue/vue-tree": "~3.
|
|
14
|
-
"@opentinyvue/vue-theme": "~3.
|
|
15
|
-
"@opentinyvue/vue-icon": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
11
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-input": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-tree": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-theme": "~3.24.0",
|
|
15
|
+
"@opentinyvue/vue-icon": "~3.24.0"
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"types": "index.d.ts",
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
99
99
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
100
100
|
tiny_renderless: FunctionConstructor;
|
|
101
101
|
tiny_theme: StringConstructor;
|
|
102
|
+
tiny_mcp_config: ObjectConstructor;
|
|
102
103
|
tiny_chart_theme: ObjectConstructor;
|
|
103
104
|
}, {
|
|
104
105
|
t: (this: any, path: any, options?: any) => any;
|
|
@@ -210,6 +211,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
210
211
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
211
212
|
tiny_renderless: FunctionConstructor;
|
|
212
213
|
tiny_theme: StringConstructor;
|
|
214
|
+
tiny_mcp_config: ObjectConstructor;
|
|
213
215
|
tiny_chart_theme: ObjectConstructor;
|
|
214
216
|
}>> & {
|
|
215
217
|
onChange?: ((...args: any[]) => any) | undefined;
|
package/src/props.d.ts
CHANGED
|
@@ -99,5 +99,6 @@ export declare const treeMenuProps: {
|
|
|
99
99
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
100
100
|
tiny_renderless: FunctionConstructor;
|
|
101
101
|
tiny_theme: StringConstructor;
|
|
102
|
+
tiny_mcp_config: ObjectConstructor;
|
|
102
103
|
tiny_chart_theme: ObjectConstructor;
|
|
103
104
|
};
|