@wfrog/vc-ui 1.7.0 → 1.9.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/dist/es/components/drawer/drawer.d.ts +7 -0
- package/dist/es/components/drawer/drawer.mjs +71 -23
- package/dist/es/components/drawer/drawer.vue.d.ts +9 -3
- package/dist/es/components/drawer/index.css +39 -18
- package/dist/es/components/explorer-filter/explorer-filter.mjs +2 -2
- package/dist/es/components/explorer-footer/explorer-footer.mjs +2 -2
- package/dist/es/components/explorer-form/explorer-form.mjs +2 -2
- package/dist/es/components/explorer-list/explorer-list.mjs +2 -2
- package/dist/es/components/{explorer-dialog-form/explorer-dialog-form.d.ts → explorer-modal-form/explorer-modal-form.d.ts} +5 -4
- package/dist/es/components/{explorer-dialog-form/explorer-dialog-form.mjs → explorer-modal-form/explorer-modal-form.mjs} +24 -20
- package/dist/es/components/{explorer-dialog-form/explorer-dialog-form.vue.d.ts → explorer-modal-form/explorer-modal-form.vue.d.ts} +6 -6
- package/dist/es/components/explorer-modal-form/index.css +5 -0
- package/dist/es/components/{explorer-dialog-form → explorer-modal-form}/index.d.ts +1 -1
- package/dist/es/components/{explorer-dialog-form → explorer-modal-form}/index.mjs +1 -1
- package/dist/es/components/explorer-panel/explorer-panel.mjs +3 -3
- package/dist/es/components/explorer-panel/index.css +6 -3
- package/dist/es/components/explorer-query/explorer-query.mjs +3 -3
- package/dist/es/components/explorer-query/index.css +2 -2
- package/dist/es/components/explorer-tools/explorer-tools.mjs +6 -6
- package/dist/es/components/explorer-tools/index.css +8 -8
- package/dist/es/components/transfer/index.css +38 -0
- package/dist/es/components/transfer/index.d.ts +4 -0
- package/dist/es/components/transfer/index.mjs +6 -0
- package/dist/es/components/transfer/transfer.d.ts +12 -0
- package/dist/es/components/transfer/transfer.mjs +122 -0
- package/dist/es/components/transfer/transfer.vue.d.ts +12 -0
- package/dist/es/components/transfer-panel/components/transfer-child-panel.d.ts +19 -0
- package/dist/es/components/transfer-panel/components/transfer-child-panel.vue.d.ts +31 -0
- package/dist/es/components/transfer-panel/index.css +100 -0
- package/dist/es/components/transfer-panel/index.d.ts +4 -0
- package/dist/es/components/transfer-panel/index.mjs +6 -0
- package/dist/es/components/transfer-panel/transfer-panel.d.ts +13 -0
- package/dist/es/components/transfer-panel/transfer-panel.mjs +289 -0
- package/dist/es/components/transfer-panel/transfer-panel.vue.d.ts +14 -0
- package/dist/es/components/tree-picker/index.css +2 -2
- package/dist/es/components/tree-picker/tree-picker.mjs +4 -4
- package/dist/es/components/upload-file/upload-file.mjs +2 -2
- package/dist/es/index.d.ts +3 -1
- package/dist/es/index.mjs +14 -10
- package/dist/global.d.ts +3 -1
- package/dist/index.css +200 -39
- package/package.json +1 -1
- package/dist/es/components/explorer-dialog-form/index.css +0 -6
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import './index.css'
|
|
2
|
+
import { defineComponent, useCssVars, ref, computed, createElementBlock, openBlock, normalizeClass, createVNode, createElementVNode, unref, withKeys, isRef, withCtx, createBlock, createTextVNode, toDisplayString, Fragment, renderList, createCommentVNode, renderSlot } from 'vue';
|
|
3
|
+
import { useFormDisabled } from 'element-plus';
|
|
4
|
+
import '../../chunk/By7FMB3I.mjs';
|
|
5
|
+
import { E as ElInput } from '../../chunk/CdG7Eqv2.mjs';
|
|
6
|
+
import { E as ElText } from '../../chunk/D5u7KBz_.mjs';
|
|
7
|
+
import { Search } from '@element-plus/icons-vue';
|
|
8
|
+
import { C as Component$3 } from '../button/button.mjs';
|
|
9
|
+
import { C as Component$2 } from '../iconify-icon/iconify-icon.mjs';
|
|
10
|
+
import { C as Component$1 } from '../scrollbar/scrollbar.mjs';
|
|
11
|
+
import { useVModel } from '@vueuse/core';
|
|
12
|
+
import { d as debounce } from '../../chunk/Cdh3HNZa.mjs';
|
|
13
|
+
import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
|
|
14
|
+
|
|
15
|
+
const _hoisted_1 = ["onClick"];
|
|
16
|
+
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
17
|
+
__name: "transfer-child-panel",
|
|
18
|
+
props: {
|
|
19
|
+
title: {},
|
|
20
|
+
data: {},
|
|
21
|
+
placeholder: { default: "查询" },
|
|
22
|
+
type: {},
|
|
23
|
+
width: {},
|
|
24
|
+
modelValue: {},
|
|
25
|
+
debounce: { default: 300 },
|
|
26
|
+
disabled: { type: Boolean, default: void 0 }
|
|
27
|
+
},
|
|
28
|
+
emits: ["change", "update:modelValue"],
|
|
29
|
+
setup(__props, { emit: __emit }) {
|
|
30
|
+
useCssVars((_ctx) => ({
|
|
31
|
+
"v4db18f20": _ctx.width
|
|
32
|
+
}));
|
|
33
|
+
const props = __props;
|
|
34
|
+
const emits = __emit;
|
|
35
|
+
const myValue = useVModel(props, "modelValue", emits);
|
|
36
|
+
const keyword = ref("");
|
|
37
|
+
const filterKeyword = ref("");
|
|
38
|
+
const isSource = computed(() => props.type === "source");
|
|
39
|
+
const choicedData = computed(() => {
|
|
40
|
+
const result = [];
|
|
41
|
+
myValue.value?.forEach((item) => {
|
|
42
|
+
const target = props.data?.find((child) => child.value === item);
|
|
43
|
+
target && result.push(target);
|
|
44
|
+
});
|
|
45
|
+
return result;
|
|
46
|
+
});
|
|
47
|
+
const myData = computed(() => {
|
|
48
|
+
const typeData = isSource.value ? props.data : choicedData.value;
|
|
49
|
+
const filterData = typeData?.filter((item) => item.label.includes(filterKeyword.value));
|
|
50
|
+
return filterData;
|
|
51
|
+
});
|
|
52
|
+
function handleClick(item) {
|
|
53
|
+
if (props.disabled) {
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
if (myValue.value?.includes(item.value)) {
|
|
57
|
+
myValue.value = myValue.value.filter((v) => v !== item.value);
|
|
58
|
+
emits("change", 1, item);
|
|
59
|
+
} else {
|
|
60
|
+
myValue.value = [...myValue.value, item.value];
|
|
61
|
+
emits("change", -1, item);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
function handleFilter() {
|
|
65
|
+
filterKeyword.value = keyword.value;
|
|
66
|
+
}
|
|
67
|
+
function handleOperation() {
|
|
68
|
+
if (props.disabled) {
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
myValue.value = isSource.value ? props.data?.map((item) => item.value) : [];
|
|
72
|
+
emits("change", isSource.value ? 1 : -1);
|
|
73
|
+
}
|
|
74
|
+
const keywordChange = debounce(() => handleFilter(), props.debounce);
|
|
75
|
+
return (_ctx, _cache) => {
|
|
76
|
+
const _component_ElText = ElText;
|
|
77
|
+
const _component_ElInput = ElInput;
|
|
78
|
+
return openBlock(), createElementBlock("div", {
|
|
79
|
+
class: normalizeClass([_ctx.$style["transfer-child-panel"], { [_ctx.$style.disabled]: __props.disabled }])
|
|
80
|
+
}, [
|
|
81
|
+
createVNode(_component_ElInput, {
|
|
82
|
+
modelValue: unref(keyword),
|
|
83
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(keyword) ? keyword.value = $event : null),
|
|
84
|
+
placeholder: __props.placeholder,
|
|
85
|
+
clearable: "",
|
|
86
|
+
"prefix-icon": unref(Search),
|
|
87
|
+
disabled: __props.disabled,
|
|
88
|
+
onKeydown: withKeys(handleFilter, ["enter"]),
|
|
89
|
+
onClear: handleFilter,
|
|
90
|
+
onChange: handleFilter,
|
|
91
|
+
onInput: unref(keywordChange)
|
|
92
|
+
}, {
|
|
93
|
+
suffix: withCtx(() => [
|
|
94
|
+
unref(isSource) ? (openBlock(), createBlock(_component_ElText, {
|
|
95
|
+
key: 0,
|
|
96
|
+
size: "small",
|
|
97
|
+
type: "info"
|
|
98
|
+
}, {
|
|
99
|
+
default: withCtx(() => [
|
|
100
|
+
createTextVNode(toDisplayString(__props.title) + " " + toDisplayString(__props.data?.length || 0), 1)
|
|
101
|
+
]),
|
|
102
|
+
_: 1
|
|
103
|
+
})) : (openBlock(), createBlock(_component_ElText, {
|
|
104
|
+
key: 1,
|
|
105
|
+
size: "small",
|
|
106
|
+
type: "info"
|
|
107
|
+
}, {
|
|
108
|
+
default: withCtx(() => [
|
|
109
|
+
createTextVNode("已选择 " + toDisplayString(unref(choicedData)?.length || 0), 1)
|
|
110
|
+
]),
|
|
111
|
+
_: 1
|
|
112
|
+
}))
|
|
113
|
+
]),
|
|
114
|
+
_: 1
|
|
115
|
+
}, 8, ["modelValue", "placeholder", "prefix-icon", "disabled", "onInput"]),
|
|
116
|
+
createVNode(Component$1, { always: "" }, {
|
|
117
|
+
default: withCtx(() => [
|
|
118
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(myData), (item, index) => {
|
|
119
|
+
return openBlock(), createElementBlock("div", {
|
|
120
|
+
key: item.value,
|
|
121
|
+
class: normalizeClass([_ctx.$style.item, { [_ctx.$style.active]: unref(isSource) && unref(myValue)?.includes(item.value), [_ctx.$style.source]: unref(isSource) }]),
|
|
122
|
+
onClick: () => unref(isSource) && handleClick(item)
|
|
123
|
+
}, [
|
|
124
|
+
createElementVNode("div", {
|
|
125
|
+
class: normalizeClass(_ctx.$style.label)
|
|
126
|
+
}, [
|
|
127
|
+
renderSlot(_ctx.$slots, "default", {
|
|
128
|
+
data: item,
|
|
129
|
+
index
|
|
130
|
+
}, () => [
|
|
131
|
+
item.icon ? (openBlock(), createBlock(Component$2, {
|
|
132
|
+
key: 0,
|
|
133
|
+
name: item.icon,
|
|
134
|
+
class: normalizeClass(_ctx.$style.icon)
|
|
135
|
+
}, null, 8, ["name", "class"])) : createCommentVNode("", true),
|
|
136
|
+
createTextVNode(toDisplayString(item.label), 1)
|
|
137
|
+
])
|
|
138
|
+
], 2),
|
|
139
|
+
!unref(isSource) ? (openBlock(), createElementBlock("div", {
|
|
140
|
+
key: 0,
|
|
141
|
+
class: normalizeClass(_ctx.$style.actions)
|
|
142
|
+
}, [
|
|
143
|
+
createVNode(Component$3, {
|
|
144
|
+
link: "",
|
|
145
|
+
icon: { type: "el", name: "Close" },
|
|
146
|
+
type: "danger",
|
|
147
|
+
confirm: { type: "none" },
|
|
148
|
+
stop: "",
|
|
149
|
+
onClick: ($event) => handleClick(item)
|
|
150
|
+
}, null, 8, ["onClick"])
|
|
151
|
+
], 2)) : createCommentVNode("", true)
|
|
152
|
+
], 10, _hoisted_1);
|
|
153
|
+
}), 128))
|
|
154
|
+
]),
|
|
155
|
+
_: 3
|
|
156
|
+
}),
|
|
157
|
+
createElementVNode("div", {
|
|
158
|
+
class: normalizeClass(_ctx.$style.operation),
|
|
159
|
+
onClick: handleOperation
|
|
160
|
+
}, [
|
|
161
|
+
unref(isSource) ? (openBlock(), createBlock(_component_ElText, {
|
|
162
|
+
key: 0,
|
|
163
|
+
size: "small",
|
|
164
|
+
type: "info"
|
|
165
|
+
}, {
|
|
166
|
+
default: withCtx(() => [..._cache[1] || (_cache[1] = [
|
|
167
|
+
createTextVNode("全选", -1)
|
|
168
|
+
])]),
|
|
169
|
+
_: 1
|
|
170
|
+
})) : (openBlock(), createBlock(_component_ElText, {
|
|
171
|
+
key: 1,
|
|
172
|
+
size: "small",
|
|
173
|
+
type: "info"
|
|
174
|
+
}, {
|
|
175
|
+
default: withCtx(() => [..._cache[2] || (_cache[2] = [
|
|
176
|
+
createTextVNode("清空", -1)
|
|
177
|
+
])]),
|
|
178
|
+
_: 1
|
|
179
|
+
}))
|
|
180
|
+
], 2)
|
|
181
|
+
], 2);
|
|
182
|
+
};
|
|
183
|
+
}
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
/* unplugin-vue-components disabled */const item = "_item_ipfuy_10";
|
|
187
|
+
const source = "_source_ipfuy_21";
|
|
188
|
+
const actions = "_actions_ipfuy_27";
|
|
189
|
+
const active = "_active_ipfuy_31";
|
|
190
|
+
const label = "_label_ipfuy_36";
|
|
191
|
+
const icon = "_icon_ipfuy_42";
|
|
192
|
+
const operation = "_operation_ipfuy_59";
|
|
193
|
+
const disabled = "_disabled_ipfuy_76";
|
|
194
|
+
const style0$1 = {
|
|
195
|
+
"transfer-child-panel": "_transfer-child-panel_ipfuy_1",
|
|
196
|
+
item: item,
|
|
197
|
+
source: source,
|
|
198
|
+
actions: actions,
|
|
199
|
+
active: active,
|
|
200
|
+
label: label,
|
|
201
|
+
icon: icon,
|
|
202
|
+
operation: operation,
|
|
203
|
+
disabled: disabled
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
const cssModules$1 = {
|
|
207
|
+
"$style": style0$1
|
|
208
|
+
};
|
|
209
|
+
const TransferChildPanel = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__cssModules", cssModules$1]]);
|
|
210
|
+
|
|
211
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
212
|
+
__name: "transfer-panel",
|
|
213
|
+
props: {
|
|
214
|
+
modelValue: {},
|
|
215
|
+
title: {},
|
|
216
|
+
data: { default: () => [] },
|
|
217
|
+
height: { default: "300px" },
|
|
218
|
+
halfWidth: { default: "200px" },
|
|
219
|
+
disabled: { type: Boolean, default: void 0 }
|
|
220
|
+
},
|
|
221
|
+
emits: ["change", "update:modelValue"],
|
|
222
|
+
setup(__props, { emit: __emit }) {
|
|
223
|
+
useCssVars((_ctx) => ({
|
|
224
|
+
"v7fe0a745": unref(transferPanelHeight)
|
|
225
|
+
}));
|
|
226
|
+
const props = __props;
|
|
227
|
+
const emits = __emit;
|
|
228
|
+
const transferPanelValue = useVModel(props, "modelValue", emits);
|
|
229
|
+
const formDisabled = useFormDisabled();
|
|
230
|
+
const transferPanelHeight = computed(() => {
|
|
231
|
+
if (props.height && Number.isNaN(+props.height)) {
|
|
232
|
+
return props.height;
|
|
233
|
+
}
|
|
234
|
+
return `${props.height}px`;
|
|
235
|
+
});
|
|
236
|
+
const panelHalfWidth = computed(() => {
|
|
237
|
+
if (props.halfWidth && Number.isNaN(+props.halfWidth)) {
|
|
238
|
+
return props.halfWidth;
|
|
239
|
+
}
|
|
240
|
+
return `${props.halfWidth}px`;
|
|
241
|
+
});
|
|
242
|
+
return (_ctx, _cache) => {
|
|
243
|
+
return openBlock(), createElementBlock("div", {
|
|
244
|
+
class: normalizeClass(_ctx.$style["transfer-panel"])
|
|
245
|
+
}, [
|
|
246
|
+
createVNode(TransferChildPanel, {
|
|
247
|
+
modelValue: unref(transferPanelValue),
|
|
248
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(transferPanelValue) ? transferPanelValue.value = $event : null),
|
|
249
|
+
disabled: unref(formDisabled),
|
|
250
|
+
width: unref(panelHalfWidth),
|
|
251
|
+
title: __props.title,
|
|
252
|
+
type: "source",
|
|
253
|
+
data: __props.data,
|
|
254
|
+
onChange: _cache[1] || (_cache[1] = (...params) => emits("change", ...params))
|
|
255
|
+
}, null, 8, ["modelValue", "disabled", "width", "title", "data"]),
|
|
256
|
+
createElementVNode("div", {
|
|
257
|
+
class: normalizeClass(_ctx.$style.divider)
|
|
258
|
+
}, null, 2),
|
|
259
|
+
createVNode(TransferChildPanel, {
|
|
260
|
+
modelValue: unref(transferPanelValue),
|
|
261
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => isRef(transferPanelValue) ? transferPanelValue.value = $event : null),
|
|
262
|
+
disabled: unref(formDisabled),
|
|
263
|
+
width: unref(panelHalfWidth),
|
|
264
|
+
type: "choiced",
|
|
265
|
+
data: __props.data,
|
|
266
|
+
onChange: _cache[3] || (_cache[3] = (...params) => emits("change", ...params))
|
|
267
|
+
}, null, 8, ["modelValue", "disabled", "width", "data"])
|
|
268
|
+
], 2);
|
|
269
|
+
};
|
|
270
|
+
}
|
|
271
|
+
});
|
|
272
|
+
|
|
273
|
+
/* unplugin-vue-components disabled */const divider = "_divider_1mztg_9";
|
|
274
|
+
const style0 = {
|
|
275
|
+
"transfer-panel": "_transfer-panel_1mztg_1",
|
|
276
|
+
divider: divider
|
|
277
|
+
};
|
|
278
|
+
|
|
279
|
+
const cssModules = {
|
|
280
|
+
"$style": style0
|
|
281
|
+
};
|
|
282
|
+
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
283
|
+
|
|
284
|
+
const __vite_glob_0_55 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
285
|
+
__proto__: null,
|
|
286
|
+
default: Component
|
|
287
|
+
}, Symbol.toStringTag, { value: 'Module' }));
|
|
288
|
+
|
|
289
|
+
export { Component as C, __vite_glob_0_55 as _ };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ITransferPanelProps } from './transfer-panel';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<ITransferPanelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
|
+
change: (type: number, item?: import('./components/transfer-child-panel').ITransferChildItem | undefined) => any;
|
|
4
|
+
"update:modelValue": (value: string[] | number[]) => any;
|
|
5
|
+
}, string, import('vue').PublicProps, Readonly<ITransferPanelProps> & Readonly<{
|
|
6
|
+
onChange?: ((type: number, item?: import('./components/transfer-child-panel').ITransferChildItem | undefined) => any) | undefined;
|
|
7
|
+
"onUpdate:modelValue"?: ((value: string[] | number[]) => any) | undefined;
|
|
8
|
+
}>, {
|
|
9
|
+
data: import('./components/transfer-child-panel').ITransferChildItem[];
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
height: string | number;
|
|
12
|
+
halfWidth: string | number;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
._wrapper_q784j_13 {
|
|
13
13
|
display: inline-block;
|
|
14
14
|
width: unset;
|
|
15
|
-
min-width: var(--
|
|
15
|
+
min-width: var(--f8b9a976);
|
|
16
16
|
}
|
|
17
17
|
._wrapper_q784j_13._block_q784j_18 {
|
|
18
18
|
display: block;
|
|
19
|
-
width: var(--
|
|
19
|
+
width: var(--f8b9a976);
|
|
20
20
|
}
|
|
21
21
|
._wrapper_q784j_13 .el-tag .el-icon {
|
|
22
22
|
display: none;
|
|
@@ -33,7 +33,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
33
33
|
emits: ["update:modelValue", "change"],
|
|
34
34
|
setup(__props, { emit: __emit }) {
|
|
35
35
|
useCssVars((_ctx) => ({
|
|
36
|
-
"
|
|
36
|
+
"f8b9a976": unref(myWidth)
|
|
37
37
|
}));
|
|
38
38
|
const props = __props;
|
|
39
39
|
const emits = __emit;
|
|
@@ -50,7 +50,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
50
50
|
...props.props
|
|
51
51
|
}));
|
|
52
52
|
const myWidth = computed(() => {
|
|
53
|
-
return props.width || (props.block ? "100%" : "
|
|
53
|
+
return props.width || (props.block ? "100%" : "240px");
|
|
54
54
|
});
|
|
55
55
|
const $style = useCssModule();
|
|
56
56
|
const selectClassName = computed(() => ({ [$style["is-active"]]: popoverVisible.value, [$style.block]: props.block }));
|
|
@@ -168,9 +168,9 @@ const cssModules = {
|
|
|
168
168
|
};
|
|
169
169
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
170
170
|
|
|
171
|
-
const
|
|
171
|
+
const __vite_glob_0_57 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
172
172
|
__proto__: null,
|
|
173
173
|
default: Component
|
|
174
174
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
175
175
|
|
|
176
|
-
export { Component as C,
|
|
176
|
+
export { Component as C, __vite_glob_0_57 as _ };
|
|
@@ -191,9 +191,9 @@ const cssModules = {
|
|
|
191
191
|
};
|
|
192
192
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
193
193
|
|
|
194
|
-
const
|
|
194
|
+
const __vite_glob_0_58 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
195
195
|
__proto__: null,
|
|
196
196
|
default: Component
|
|
197
197
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
198
198
|
|
|
199
|
-
export { Component as C,
|
|
199
|
+
export { Component as C, __vite_glob_0_58 as _ };
|
package/dist/es/index.d.ts
CHANGED
|
@@ -20,11 +20,11 @@ export { default as VcEasyPagination } from './components/easy-pagination/easy-p
|
|
|
20
20
|
export { default as VcElIcon } from './components/el-icon/el-icon.vue';
|
|
21
21
|
export { default as VcExplorerColumnTable } from './components/explorer-column-table/explorer-column-table.vue';
|
|
22
22
|
export { default as VcExplorerContainer } from './components/explorer-container/explorer-container.vue';
|
|
23
|
-
export { default as VcExplorerDialogForm } from './components/explorer-dialog-form/explorer-dialog-form.vue';
|
|
24
23
|
export { default as VcExplorerFilter } from './components/explorer-filter/explorer-filter.vue';
|
|
25
24
|
export { default as VcExplorerFooter } from './components/explorer-footer/explorer-footer.vue';
|
|
26
25
|
export { default as VcExplorerForm } from './components/explorer-form/explorer-form.vue';
|
|
27
26
|
export { default as VcExplorerList } from './components/explorer-list/explorer-list.vue';
|
|
27
|
+
export { default as VcExplorerModalForm } from './components/explorer-modal-form/explorer-modal-form.vue';
|
|
28
28
|
export { default as VcExplorerPanel } from './components/explorer-panel/explorer-panel.vue';
|
|
29
29
|
export { default as VcExplorerQuery } from './components/explorer-query/explorer-query.vue';
|
|
30
30
|
export { default as VcExplorerTable } from './components/explorer-table/explorer-table.vue';
|
|
@@ -53,6 +53,8 @@ export { default as VcTags } from './components/tags/tags.vue';
|
|
|
53
53
|
export { default as VcTextEllipsis } from './components/text-ellipsis/text-ellipsis.vue';
|
|
54
54
|
export { default as VcThousandInput } from './components/thousand-input/thousand-input.vue';
|
|
55
55
|
export { default as VcTinymce } from './components/tinymce/tinymce.vue';
|
|
56
|
+
export { default as VcTransferPanel } from './components/transfer-panel/transfer-panel.vue';
|
|
57
|
+
export { default as VcTransfer } from './components/transfer/transfer.vue';
|
|
56
58
|
export { default as VcTreePicker } from './components/tree-picker/tree-picker.vue';
|
|
57
59
|
export { default as VcUploadFile } from './components/upload-file/upload-file.vue';
|
|
58
60
|
export { default as VcVCleave } from './directives/cleave';
|
package/dist/es/index.mjs
CHANGED
|
@@ -37,16 +37,16 @@ import { _ as __vite_glob_0_20 } from './components/explorer-column-table/explor
|
|
|
37
37
|
export { C as VcExplorerColumnTable } from './components/explorer-column-table/explorer-column-table.mjs';
|
|
38
38
|
import { _ as __vite_glob_0_21 } from './components/explorer-container/explorer-container.mjs';
|
|
39
39
|
export { C as VcExplorerContainer } from './components/explorer-container/explorer-container.mjs';
|
|
40
|
-
import { _ as __vite_glob_0_22 } from './components/explorer-
|
|
41
|
-
export { C as VcExplorerDialogForm } from './components/explorer-dialog-form/explorer-dialog-form.mjs';
|
|
42
|
-
import { _ as __vite_glob_0_23 } from './components/explorer-filter/explorer-filter.mjs';
|
|
40
|
+
import { _ as __vite_glob_0_22 } from './components/explorer-filter/explorer-filter.mjs';
|
|
43
41
|
export { C as VcExplorerFilter } from './components/explorer-filter/explorer-filter.mjs';
|
|
44
|
-
import { _ as
|
|
42
|
+
import { _ as __vite_glob_0_23 } from './components/explorer-footer/explorer-footer.mjs';
|
|
45
43
|
export { C as VcExplorerFooter } from './components/explorer-footer/explorer-footer.mjs';
|
|
46
|
-
import { _ as
|
|
44
|
+
import { _ as __vite_glob_0_24 } from './components/explorer-form/explorer-form.mjs';
|
|
47
45
|
export { C as VcExplorerForm } from './components/explorer-form/explorer-form.mjs';
|
|
48
|
-
import { _ as
|
|
46
|
+
import { _ as __vite_glob_0_25 } from './components/explorer-list/explorer-list.mjs';
|
|
49
47
|
export { C as VcExplorerList } from './components/explorer-list/explorer-list.mjs';
|
|
48
|
+
import { _ as __vite_glob_0_26 } from './components/explorer-modal-form/explorer-modal-form.mjs';
|
|
49
|
+
export { C as VcExplorerModalForm } from './components/explorer-modal-form/explorer-modal-form.mjs';
|
|
50
50
|
import { _ as __vite_glob_0_27 } from './components/explorer-panel/explorer-panel.mjs';
|
|
51
51
|
export { C as VcExplorerPanel } from './components/explorer-panel/explorer-panel.mjs';
|
|
52
52
|
import { _ as __vite_glob_0_28 } from './components/explorer-query/explorer-query.mjs';
|
|
@@ -99,9 +99,13 @@ import { _ as __vite_glob_0_53 } from './components/thousand-input/thousand-inpu
|
|
|
99
99
|
export { C as VcThousandInput } from './components/thousand-input/thousand-input.mjs';
|
|
100
100
|
import { _ as __vite_glob_0_54 } from './components/tinymce/tinymce.mjs';
|
|
101
101
|
export { C as VcTinymce } from './components/tinymce/tinymce.mjs';
|
|
102
|
-
import { _ as __vite_glob_0_55 } from './components/
|
|
102
|
+
import { _ as __vite_glob_0_55 } from './components/transfer-panel/transfer-panel.mjs';
|
|
103
|
+
export { C as VcTransferPanel } from './components/transfer-panel/transfer-panel.mjs';
|
|
104
|
+
import { _ as __vite_glob_0_56 } from './components/transfer/transfer.mjs';
|
|
105
|
+
export { C as VcTransfer } from './components/transfer/transfer.mjs';
|
|
106
|
+
import { _ as __vite_glob_0_57 } from './components/tree-picker/tree-picker.mjs';
|
|
103
107
|
export { C as VcTreePicker } from './components/tree-picker/tree-picker.mjs';
|
|
104
|
-
import { _ as
|
|
108
|
+
import { _ as __vite_glob_0_58 } from './components/upload-file/upload-file.mjs';
|
|
105
109
|
export { C as VcUploadFile } from './components/upload-file/upload-file.mjs';
|
|
106
110
|
export { c as VcVCleave } from './chunk/DRLHgORP.mjs';
|
|
107
111
|
export { v as VcVFocus } from './chunk/CL65DvCP.mjs';
|
|
@@ -152,9 +156,9 @@ const __vite_glob_0_47 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
152
156
|
default: _sfc_main$8
|
|
153
157
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
154
158
|
|
|
155
|
-
const version = "1.
|
|
159
|
+
const version = "1.9.0";
|
|
156
160
|
|
|
157
|
-
const modules = /* #__PURE__ */ Object.assign({"./components/awesome-icon/awesome-icon.vue": __vite_glob_0_0,"./components/backbottom/backbottom.vue": __vite_glob_0_1,"./components/button/button.vue": __vite_glob_0_2,"./components/chat-container/chat-container.vue": __vite_glob_0_3,"./components/choice-boolean/choice-boolean.vue": __vite_glob_0_4,"./components/choice/choice.vue": __vite_glob_0_5,"./components/color-switcher/color-switcher.vue": __vite_glob_0_6,"./components/config-provider/config-provider.vue": __vite_glob_0_7,"./components/cropper/cropper.vue": __vite_glob_0_8,"./components/currency/currency.vue": __vite_glob_0_9,"./components/dark-switcher/dark-switcher.vue": __vite_glob_0_10,"./components/daterange-picker/daterange-picker.vue": __vite_glob_0_11,"./components/dialog-camera-upload/dialog-camera-upload.vue": __vite_glob_0_12,"./components/dialog-map-point/dialog-map-point.vue": __vite_glob_0_13,"./components/dialog-upload-images/dialog-upload-images.vue": __vite_glob_0_14,"./components/dialog/dialog.vue": __vite_glob_0_15,"./components/drag-verify/drag-verify.vue": __vite_glob_0_16,"./components/drawer/drawer.vue": __vite_glob_0_17,"./components/easy-pagination/easy-pagination.vue": __vite_glob_0_18,"./components/el-icon/el-icon.vue": __vite_glob_0_19,"./components/explorer-column-table/explorer-column-table.vue": __vite_glob_0_20,"./components/explorer-container/explorer-container.vue": __vite_glob_0_21,"./components/explorer-
|
|
161
|
+
const modules = /* #__PURE__ */ Object.assign({"./components/awesome-icon/awesome-icon.vue": __vite_glob_0_0,"./components/backbottom/backbottom.vue": __vite_glob_0_1,"./components/button/button.vue": __vite_glob_0_2,"./components/chat-container/chat-container.vue": __vite_glob_0_3,"./components/choice-boolean/choice-boolean.vue": __vite_glob_0_4,"./components/choice/choice.vue": __vite_glob_0_5,"./components/color-switcher/color-switcher.vue": __vite_glob_0_6,"./components/config-provider/config-provider.vue": __vite_glob_0_7,"./components/cropper/cropper.vue": __vite_glob_0_8,"./components/currency/currency.vue": __vite_glob_0_9,"./components/dark-switcher/dark-switcher.vue": __vite_glob_0_10,"./components/daterange-picker/daterange-picker.vue": __vite_glob_0_11,"./components/dialog-camera-upload/dialog-camera-upload.vue": __vite_glob_0_12,"./components/dialog-map-point/dialog-map-point.vue": __vite_glob_0_13,"./components/dialog-upload-images/dialog-upload-images.vue": __vite_glob_0_14,"./components/dialog/dialog.vue": __vite_glob_0_15,"./components/drag-verify/drag-verify.vue": __vite_glob_0_16,"./components/drawer/drawer.vue": __vite_glob_0_17,"./components/easy-pagination/easy-pagination.vue": __vite_glob_0_18,"./components/el-icon/el-icon.vue": __vite_glob_0_19,"./components/explorer-column-table/explorer-column-table.vue": __vite_glob_0_20,"./components/explorer-container/explorer-container.vue": __vite_glob_0_21,"./components/explorer-filter/explorer-filter.vue": __vite_glob_0_22,"./components/explorer-footer/explorer-footer.vue": __vite_glob_0_23,"./components/explorer-form/explorer-form.vue": __vite_glob_0_24,"./components/explorer-list/explorer-list.vue": __vite_glob_0_25,"./components/explorer-modal-form/explorer-modal-form.vue": __vite_glob_0_26,"./components/explorer-panel/explorer-panel.vue": __vite_glob_0_27,"./components/explorer-query/explorer-query.vue": __vite_glob_0_28,"./components/explorer-table/explorer-table.vue": __vite_glob_0_29,"./components/explorer-tools/explorer-tools.vue": __vite_glob_0_30,"./components/explorer-tree/explorer-tree.vue": __vite_glob_0_31,"./components/explorer/explorer.vue": __vite_glob_0_32,"./components/flag/flag.vue": __vite_glob_0_33,"./components/icon-picker/icon-picker.vue": __vite_glob_0_34,"./components/icon/icon.vue": __vite_glob_0_35,"./components/iconify-icon/iconify-icon.vue": __vite_glob_0_36,"./components/image/image.vue": __vite_glob_0_37,"./components/input-number/input-number.vue": __vite_glob_0_38,"./components/input/input.vue": __vite_glob_0_39,"./components/pca-picker/pca-picker.vue": __vite_glob_0_40,"./components/qr-code/qr-code.vue": __vite_glob_0_41,"./components/screenfull/screenfull.vue": __vite_glob_0_42,"./components/scrollbar/scrollbar.vue": __vite_glob_0_43,"./components/select/select.vue": __vite_glob_0_44,"./components/single-player/single-player.vue": __vite_glob_0_45,"./components/splitter-panel/splitter-panel.vue": __vite_glob_0_46,"./components/splitter/splitter.vue": __vite_glob_0_47,"./components/svg-icon/svg-icon.vue": __vite_glob_0_48,"./components/switch/switch.vue": __vite_glob_0_49,"./components/sync-scroll-container/sync-scroll-container.vue": __vite_glob_0_50,"./components/tags/tags.vue": __vite_glob_0_51,"./components/text-ellipsis/text-ellipsis.vue": __vite_glob_0_52,"./components/thousand-input/thousand-input.vue": __vite_glob_0_53,"./components/tinymce/tinymce.vue": __vite_glob_0_54,"./components/transfer-panel/transfer-panel.vue": __vite_glob_0_55,"./components/transfer/transfer.vue": __vite_glob_0_56,"./components/tree-picker/tree-picker.vue": __vite_glob_0_57,"./components/upload-file/upload-file.vue": __vite_glob_0_58});
|
|
158
162
|
const upper = (_, letter) => letter.toUpperCase();
|
|
159
163
|
function install(Vue) {
|
|
160
164
|
Object.keys(modules).forEach((key) => {
|
package/dist/global.d.ts
CHANGED
|
@@ -24,11 +24,11 @@ declare module 'vue' {
|
|
|
24
24
|
VcExplorer: typeof import('@wfrog/vc-ui')['VcExplorer']
|
|
25
25
|
VcExplorerColumnTable: typeof import('@wfrog/vc-ui')['VcExplorerColumnTable']
|
|
26
26
|
VcExplorerContainer: typeof import('@wfrog/vc-ui')['VcExplorerContainer']
|
|
27
|
-
VcExplorerDialogForm: typeof import('@wfrog/vc-ui')['VcExplorerDialogForm']
|
|
28
27
|
VcExplorerFilter: typeof import('@wfrog/vc-ui')['VcExplorerFilter']
|
|
29
28
|
VcExplorerFooter: typeof import('@wfrog/vc-ui')['VcExplorerFooter']
|
|
30
29
|
VcExplorerForm: typeof import('@wfrog/vc-ui')['VcExplorerForm']
|
|
31
30
|
VcExplorerList: typeof import('@wfrog/vc-ui')['VcExplorerList']
|
|
31
|
+
VcExplorerModalForm: typeof import('@wfrog/vc-ui')['VcExplorerModalForm']
|
|
32
32
|
VcExplorerPanel: typeof import('@wfrog/vc-ui')['VcExplorerPanel']
|
|
33
33
|
VcExplorerQuery: typeof import('@wfrog/vc-ui')['VcExplorerQuery']
|
|
34
34
|
VcExplorerTable: typeof import('@wfrog/vc-ui')['VcExplorerTable']
|
|
@@ -56,6 +56,8 @@ declare module 'vue' {
|
|
|
56
56
|
VcTextEllipsis: typeof import('@wfrog/vc-ui')['VcTextEllipsis']
|
|
57
57
|
VcThousandInput: typeof import('@wfrog/vc-ui')['VcThousandInput']
|
|
58
58
|
VcTinymce: typeof import('@wfrog/vc-ui')['VcTinymce']
|
|
59
|
+
VcTransfer: typeof import('@wfrog/vc-ui')['VcTransfer']
|
|
60
|
+
VcTransferPanel: typeof import('@wfrog/vc-ui')['VcTransferPanel']
|
|
59
61
|
VcTreePicker: typeof import('@wfrog/vc-ui')['VcTreePicker']
|
|
60
62
|
VcUploadFile: typeof import('@wfrog/vc-ui')['VcUploadFile']
|
|
61
63
|
}
|