@wfrog/vc-ui 1.5.2 → 1.5.3
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/es/components/explorer-list/explorer-list.mjs +4 -0
- package/dist/es/components/explorer-list/explorer-list.vue.d.ts +4 -0
- package/dist/es/components/explorer-tree/explorer-tree.mjs +4 -0
- package/dist/es/components/explorer-tree/explorer-tree.vue.d.ts +4 -0
- package/package.json +1 -1
- package/dist/es/components/cdn-tag.vue.d.ts +0 -5
|
@@ -96,6 +96,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
96
96
|
stop: "",
|
|
97
97
|
onClick: ($event) => emits("modify", item.value, item)
|
|
98
98
|
}, null, 8, ["onClick"])) : createCommentVNode("", true),
|
|
99
|
+
renderSlot(_ctx.$slots, "action", {
|
|
100
|
+
data: item,
|
|
101
|
+
index
|
|
102
|
+
}),
|
|
99
103
|
__props.actions.includes("remove") ? (openBlock(), createBlock(Component$3, {
|
|
100
104
|
key: 2,
|
|
101
105
|
title: "删除",
|
|
@@ -116,6 +116,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
116
116
|
stop: "",
|
|
117
117
|
onClick: ($event) => emits("modify", node.data.value, node)
|
|
118
118
|
}, null, 8, ["onClick"])) : createCommentVNode("", true),
|
|
119
|
+
renderSlot(_ctx.$slots, "action", {
|
|
120
|
+
data: node.data,
|
|
121
|
+
index: node.index
|
|
122
|
+
}),
|
|
119
123
|
__props.actions.includes("remove") ? (openBlock(), createBlock(Component$3, {
|
|
120
124
|
key: 2,
|
|
121
125
|
confirm: __props.confirmParams(node),
|
package/package.json
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
interface IPropType {
|
|
2
|
-
name: string;
|
|
3
|
-
}
|
|
4
|
-
declare const _default: import('vue').DefineComponent<IPropType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IPropType> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5
|
-
export default _default;
|