@wfrog/vc-ui 1.11.17 → 1.12.1
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/gen-input/gen-input.d.ts +11 -0
- package/dist/es/components/gen-input/gen-input.mjs +74 -0
- package/dist/es/components/gen-input/gen-input.vue.d.ts +12 -0
- package/dist/es/components/gen-input/index.css +10 -0
- package/dist/es/components/gen-input/index.d.ts +4 -0
- package/dist/es/components/gen-input/index.mjs +6 -0
- package/dist/es/components/icon-picker/icon-picker.mjs +2 -2
- package/dist/es/components/iconify-icon/iconify-icon.mjs +2 -2
- package/dist/es/components/image/image.mjs +2 -2
- package/dist/es/components/info-tooltip/info-tooltip.mjs +2 -2
- package/dist/es/components/input/input.mjs +2 -2
- package/dist/es/components/input-number/input-number.mjs +2 -2
- package/dist/es/components/pca-picker/pca-picker.mjs +2 -2
- package/dist/es/components/screenfull/screenfull.mjs +2 -2
- package/dist/es/components/scrollbar/scrollbar.mjs +2 -2
- package/dist/es/components/select/select.mjs +2 -2
- package/dist/es/components/single-player/single-player.mjs +2 -2
- package/dist/es/components/splitter-panel/splitter-panel.mjs +2 -2
- package/dist/es/components/svg-icon/svg-icon.mjs +2 -2
- package/dist/es/components/switch/switch.mjs +2 -2
- package/dist/es/components/sync-scroll-container/sync-scroll-container.mjs +2 -2
- package/dist/es/components/tags/tags.mjs +2 -2
- package/dist/es/components/text-ellipsis/text-ellipsis.mjs +2 -2
- package/dist/es/components/thousand-input/thousand-input.mjs +2 -2
- package/dist/es/components/tinymce/tinymce.mjs +2 -2
- package/dist/es/components/transfer/transfer.mjs +2 -2
- package/dist/es/components/transfer-panel/transfer-panel.mjs +2 -2
- package/dist/es/components/tree-picker/tree-picker.mjs +2 -2
- package/dist/es/components/upload-file/upload-file.mjs +2 -2
- package/dist/es/index.d.ts +1 -0
- package/dist/es/index.mjs +30 -28
- package/dist/global.d.ts +1 -0
- package/dist/index.css +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface IGenInputProps {
|
|
2
|
+
modelValue: string | number | undefined;
|
|
3
|
+
checkboxLabel?: string;
|
|
4
|
+
defaultChecked?: boolean;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
genPlaceholder?: string;
|
|
8
|
+
}
|
|
9
|
+
export interface IGenInputEmits {
|
|
10
|
+
(e: 'update:modelValue', value: string | number): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import './index.css'
|
|
2
|
+
import { ElCheckbox } from 'element-plus/es';
|
|
3
|
+
import 'element-plus/es/components/base/style/css';
|
|
4
|
+
import 'element-plus/es/components/checkbox/style/css';
|
|
5
|
+
import { defineComponent, ref, computed, createElementBlock, openBlock, normalizeClass, createVNode, mergeProps, unref, isRef, withCtx, createTextVNode, toDisplayString } from 'vue';
|
|
6
|
+
import { C as Component$1 } from '../input/input.mjs';
|
|
7
|
+
import { useVModel } from '@vueuse/core';
|
|
8
|
+
import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
|
|
9
|
+
|
|
10
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
11
|
+
__name: "gen-input",
|
|
12
|
+
props: {
|
|
13
|
+
modelValue: {},
|
|
14
|
+
checkboxLabel: { default: "自动生成" },
|
|
15
|
+
defaultChecked: { type: Boolean, default: true },
|
|
16
|
+
placeholder: { default: "请输入唯一编码" },
|
|
17
|
+
disabled: { type: Boolean },
|
|
18
|
+
genPlaceholder: { default: "根据规则自动生成" }
|
|
19
|
+
},
|
|
20
|
+
emits: ["update:modelValue"],
|
|
21
|
+
setup(__props, { emit: __emit }) {
|
|
22
|
+
const props = __props;
|
|
23
|
+
const emits = __emit;
|
|
24
|
+
const myModelValue = useVModel(props, "modelValue", emits);
|
|
25
|
+
const checked = ref(props.defaultChecked);
|
|
26
|
+
const placeholder = computed(() => checked.value ? props.genPlaceholder : props.placeholder);
|
|
27
|
+
function handleChange() {
|
|
28
|
+
myModelValue.value = "";
|
|
29
|
+
}
|
|
30
|
+
return (_ctx, _cache) => {
|
|
31
|
+
const _component_ElCheckbox = ElCheckbox;
|
|
32
|
+
return openBlock(), createElementBlock("div", {
|
|
33
|
+
class: normalizeClass(_ctx.$style["gen-input"])
|
|
34
|
+
}, [
|
|
35
|
+
createVNode(Component$1, mergeProps({
|
|
36
|
+
modelValue: unref(myModelValue),
|
|
37
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(myModelValue) ? myModelValue.value = $event : null),
|
|
38
|
+
disabled: __props.disabled || unref(checked),
|
|
39
|
+
placeholder: unref(placeholder)
|
|
40
|
+
}, _ctx.$attrs), null, 16, ["modelValue", "disabled", "placeholder"]),
|
|
41
|
+
createVNode(_component_ElCheckbox, {
|
|
42
|
+
modelValue: unref(checked),
|
|
43
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(checked) ? checked.value = $event : null),
|
|
44
|
+
disabled: __props.disabled,
|
|
45
|
+
class: normalizeClass(_ctx.$style.checkbox),
|
|
46
|
+
onChange: handleChange
|
|
47
|
+
}, {
|
|
48
|
+
default: withCtx(() => [
|
|
49
|
+
createTextVNode(toDisplayString(__props.checkboxLabel), 1)
|
|
50
|
+
]),
|
|
51
|
+
_: 1
|
|
52
|
+
}, 8, ["modelValue", "disabled", "class"])
|
|
53
|
+
], 2);
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
/* unplugin-vue-components disabled */const checkbox = "_checkbox_1q48e_7";
|
|
59
|
+
const style0 = {
|
|
60
|
+
"gen-input": "_gen-input_1q48e_1",
|
|
61
|
+
checkbox: checkbox
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const cssModules = {
|
|
65
|
+
"$style": style0
|
|
66
|
+
};
|
|
67
|
+
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
68
|
+
|
|
69
|
+
const __vite_glob_0_35 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
70
|
+
__proto__: null,
|
|
71
|
+
default: Component
|
|
72
|
+
}, Symbol.toStringTag, { value: 'Module' }));
|
|
73
|
+
|
|
74
|
+
export { Component as C, __vite_glob_0_35 as _ };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IGenInputProps } from './gen-input';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<IGenInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
|
+
"update:modelValue": (value: string | number) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<IGenInputProps> & Readonly<{
|
|
5
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
checkboxLabel: string;
|
|
9
|
+
defaultChecked: boolean;
|
|
10
|
+
genPlaceholder: string;
|
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -488,9 +488,9 @@ const cssModules = {
|
|
|
488
488
|
};
|
|
489
489
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
490
490
|
|
|
491
|
-
const
|
|
491
|
+
const __vite_glob_0_36 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
492
492
|
__proto__: null,
|
|
493
493
|
default: Component
|
|
494
494
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
495
495
|
|
|
496
|
-
export { Component as C,
|
|
496
|
+
export { Component as C, __vite_glob_0_36 as _ };
|
|
@@ -1852,9 +1852,9 @@ const cssModules = {
|
|
|
1852
1852
|
};
|
|
1853
1853
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
1854
1854
|
|
|
1855
|
-
const
|
|
1855
|
+
const __vite_glob_0_38 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
1856
1856
|
__proto__: null,
|
|
1857
1857
|
default: Component
|
|
1858
1858
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
1859
1859
|
|
|
1860
|
-
export { Component as C,
|
|
1860
|
+
export { Component as C, __vite_glob_0_38 as _ };
|
|
@@ -159,9 +159,9 @@ const cssModules = {
|
|
|
159
159
|
};
|
|
160
160
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
161
161
|
|
|
162
|
-
const
|
|
162
|
+
const __vite_glob_0_39 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
163
163
|
__proto__: null,
|
|
164
164
|
default: Component
|
|
165
165
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
166
166
|
|
|
167
|
-
export { Component as C,
|
|
167
|
+
export { Component as C, __vite_glob_0_39 as _ };
|
|
@@ -433,9 +433,9 @@ const cssModules = {
|
|
|
433
433
|
};
|
|
434
434
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
435
435
|
|
|
436
|
-
const
|
|
436
|
+
const __vite_glob_0_40 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
437
437
|
__proto__: null,
|
|
438
438
|
default: Component
|
|
439
439
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
440
440
|
|
|
441
|
-
export { Component as C,
|
|
441
|
+
export { Component as C, __vite_glob_0_40 as _ };
|
|
@@ -93,9 +93,9 @@ const cssModules = {
|
|
|
93
93
|
};
|
|
94
94
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
95
95
|
|
|
96
|
-
const
|
|
96
|
+
const __vite_glob_0_42 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
97
97
|
__proto__: null,
|
|
98
98
|
default: Component
|
|
99
99
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
100
100
|
|
|
101
|
-
export { Component as C,
|
|
101
|
+
export { Component as C, __vite_glob_0_42 as _ };
|
|
@@ -142,9 +142,9 @@ const cssModules = {
|
|
|
142
142
|
};
|
|
143
143
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
144
144
|
|
|
145
|
-
const
|
|
145
|
+
const __vite_glob_0_41 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
146
146
|
__proto__: null,
|
|
147
147
|
default: Component
|
|
148
148
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
149
149
|
|
|
150
|
-
export { Component as C,
|
|
150
|
+
export { Component as C, __vite_glob_0_41 as _ };
|
|
@@ -1334,9 +1334,9 @@ const cssModules = {
|
|
|
1334
1334
|
};
|
|
1335
1335
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
1336
1336
|
|
|
1337
|
-
const
|
|
1337
|
+
const __vite_glob_0_43 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
1338
1338
|
__proto__: null,
|
|
1339
1339
|
default: Component
|
|
1340
1340
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
1341
1341
|
|
|
1342
|
-
export { Component as C,
|
|
1342
|
+
export { Component as C, __vite_glob_0_43 as _ };
|
|
@@ -85,9 +85,9 @@ const cssModules = {
|
|
|
85
85
|
};
|
|
86
86
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
87
87
|
|
|
88
|
-
const
|
|
88
|
+
const __vite_glob_0_45 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
89
89
|
__proto__: null,
|
|
90
90
|
default: Component
|
|
91
91
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
92
92
|
|
|
93
|
-
export { Component as C,
|
|
93
|
+
export { Component as C, __vite_glob_0_45 as _ };
|
|
@@ -45,9 +45,9 @@ const cssModules = {
|
|
|
45
45
|
};
|
|
46
46
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
47
47
|
|
|
48
|
-
const
|
|
48
|
+
const __vite_glob_0_46 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
49
49
|
__proto__: null,
|
|
50
50
|
default: Component
|
|
51
51
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
52
52
|
|
|
53
|
-
export { Component as C,
|
|
53
|
+
export { Component as C, __vite_glob_0_46 as _ };
|
|
@@ -67,9 +67,9 @@ const cssModules = {
|
|
|
67
67
|
};
|
|
68
68
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
69
69
|
|
|
70
|
-
const
|
|
70
|
+
const __vite_glob_0_47 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
71
71
|
__proto__: null,
|
|
72
72
|
default: Component
|
|
73
73
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
74
74
|
|
|
75
|
-
export { Component as C,
|
|
75
|
+
export { Component as C, __vite_glob_0_47 as _ };
|
|
@@ -187,9 +187,9 @@ const cssModules = {
|
|
|
187
187
|
};
|
|
188
188
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
189
189
|
|
|
190
|
-
const
|
|
190
|
+
const __vite_glob_0_48 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
191
191
|
__proto__: null,
|
|
192
192
|
default: Component
|
|
193
193
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
194
194
|
|
|
195
|
-
export { Component as C,
|
|
195
|
+
export { Component as C, __vite_glob_0_48 as _ };
|
|
@@ -29,9 +29,9 @@ const cssModules = {
|
|
|
29
29
|
};
|
|
30
30
|
const Component = /*#__PURE__*/_export_sfc(_sfc_main, [['render',_sfc_render],['__cssModules',cssModules]]);
|
|
31
31
|
|
|
32
|
-
const
|
|
32
|
+
const __vite_glob_0_49 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
33
33
|
__proto__: null,
|
|
34
34
|
default: Component
|
|
35
35
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
36
36
|
|
|
37
|
-
export { Component as C,
|
|
37
|
+
export { Component as C, __vite_glob_0_49 as _ };
|
|
@@ -38,9 +38,9 @@ const cssModules = {
|
|
|
38
38
|
};
|
|
39
39
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
40
40
|
|
|
41
|
-
const
|
|
41
|
+
const __vite_glob_0_51 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
42
42
|
__proto__: null,
|
|
43
43
|
default: Component
|
|
44
44
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
45
45
|
|
|
46
|
-
export { Component as C,
|
|
46
|
+
export { Component as C, __vite_glob_0_51 as _ };
|
|
@@ -79,9 +79,9 @@ const cssModules = {
|
|
|
79
79
|
};
|
|
80
80
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
81
81
|
|
|
82
|
-
const
|
|
82
|
+
const __vite_glob_0_52 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
83
83
|
__proto__: null,
|
|
84
84
|
default: Component
|
|
85
85
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
86
86
|
|
|
87
|
-
export { Component as C,
|
|
87
|
+
export { Component as C, __vite_glob_0_52 as _ };
|
|
@@ -149,9 +149,9 @@ const cssModules = {
|
|
|
149
149
|
};
|
|
150
150
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
151
151
|
|
|
152
|
-
const
|
|
152
|
+
const __vite_glob_0_53 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
153
153
|
__proto__: null,
|
|
154
154
|
default: Component
|
|
155
155
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
156
156
|
|
|
157
|
-
export { Component as C,
|
|
157
|
+
export { Component as C, __vite_glob_0_53 as _ };
|
|
@@ -286,9 +286,9 @@ const cssModules = {
|
|
|
286
286
|
};
|
|
287
287
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
288
288
|
|
|
289
|
-
const
|
|
289
|
+
const __vite_glob_0_54 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
290
290
|
__proto__: null,
|
|
291
291
|
default: Component
|
|
292
292
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
293
293
|
|
|
294
|
-
export { Component as C,
|
|
294
|
+
export { Component as C, __vite_glob_0_54 as _ };
|
|
@@ -129,9 +129,9 @@ const cssModules = {
|
|
|
129
129
|
};
|
|
130
130
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
131
131
|
|
|
132
|
-
const
|
|
132
|
+
const __vite_glob_0_55 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
133
133
|
__proto__: null,
|
|
134
134
|
default: Component
|
|
135
135
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
136
136
|
|
|
137
|
-
export { Component as C,
|
|
137
|
+
export { Component as C, __vite_glob_0_55 as _ };
|
|
@@ -153,9 +153,9 @@ const cssModules = {
|
|
|
153
153
|
};
|
|
154
154
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
155
155
|
|
|
156
|
-
const
|
|
156
|
+
const __vite_glob_0_56 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
157
157
|
__proto__: null,
|
|
158
158
|
default: Component
|
|
159
159
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
160
160
|
|
|
161
|
-
export { Component as C,
|
|
161
|
+
export { Component as C, __vite_glob_0_56 as _ };
|
|
@@ -200,9 +200,9 @@ const cssModules = {
|
|
|
200
200
|
};
|
|
201
201
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
202
202
|
|
|
203
|
-
const
|
|
203
|
+
const __vite_glob_0_57 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
204
204
|
__proto__: null,
|
|
205
205
|
default: Component
|
|
206
206
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
207
207
|
|
|
208
|
-
export { Component as C,
|
|
208
|
+
export { Component as C, __vite_glob_0_57 as _ };
|
|
@@ -110,9 +110,9 @@ const cssModules = {
|
|
|
110
110
|
};
|
|
111
111
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
112
112
|
|
|
113
|
-
const
|
|
113
|
+
const __vite_glob_0_59 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
114
114
|
__proto__: null,
|
|
115
115
|
default: Component
|
|
116
116
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
117
117
|
|
|
118
|
-
export { Component as C,
|
|
118
|
+
export { Component as C, __vite_glob_0_59 as _ };
|
|
@@ -285,9 +285,9 @@ const cssModules = {
|
|
|
285
285
|
};
|
|
286
286
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
287
287
|
|
|
288
|
-
const
|
|
288
|
+
const __vite_glob_0_58 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
289
289
|
__proto__: null,
|
|
290
290
|
default: Component
|
|
291
291
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
292
292
|
|
|
293
|
-
export { Component as C,
|
|
293
|
+
export { Component as C, __vite_glob_0_58 as _ };
|
|
@@ -175,9 +175,9 @@ const cssModules = {
|
|
|
175
175
|
};
|
|
176
176
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
177
177
|
|
|
178
|
-
const
|
|
178
|
+
const __vite_glob_0_60 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
179
179
|
__proto__: null,
|
|
180
180
|
default: Component
|
|
181
181
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
182
182
|
|
|
183
|
-
export { Component as C,
|
|
183
|
+
export { Component as C, __vite_glob_0_60 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_61 = /*#__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_61 as _ };
|
package/dist/es/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export { default as VcExplorerTree } from './components/explorer-tree/explorer-t
|
|
|
33
33
|
export { default as VcExplorer } from './components/explorer/explorer.vue';
|
|
34
34
|
export { default as VcFlag } from './components/flag/flag.vue';
|
|
35
35
|
export { default as VcFormItem } from './components/form-item/form-item.vue';
|
|
36
|
+
export { default as VcGenInput } from './components/gen-input/gen-input.vue';
|
|
36
37
|
export { default as VcIconPicker } from './components/icon-picker/icon-picker.vue';
|
|
37
38
|
export { default as VcIcon } from './components/icon/icon.vue';
|
|
38
39
|
export { default as VcIconifyIcon } from './components/iconify-icon/iconify-icon.vue';
|
package/dist/es/index.mjs
CHANGED
|
@@ -62,54 +62,56 @@ export { C as VcExplorer } from './components/explorer/explorer.mjs';
|
|
|
62
62
|
import { _ as _sfc_main$5 } from './components/flag/flag.mjs';
|
|
63
63
|
import { _ as __vite_glob_0_34 } from './components/form-item/form-item.mjs';
|
|
64
64
|
export { C as VcFormItem } from './components/form-item/form-item.mjs';
|
|
65
|
-
import { _ as __vite_glob_0_35 } from './components/
|
|
65
|
+
import { _ as __vite_glob_0_35 } from './components/gen-input/gen-input.mjs';
|
|
66
|
+
export { C as VcGenInput } from './components/gen-input/gen-input.mjs';
|
|
67
|
+
import { _ as __vite_glob_0_36 } from './components/icon-picker/icon-picker.mjs';
|
|
66
68
|
export { C as VcIconPicker } from './components/icon-picker/icon-picker.mjs';
|
|
67
69
|
import { _ as _sfc_main$2 } from './components/icon/icon.mjs';
|
|
68
|
-
import { _ as
|
|
70
|
+
import { _ as __vite_glob_0_38 } from './components/iconify-icon/iconify-icon.mjs';
|
|
69
71
|
export { C as VcIconifyIcon } from './components/iconify-icon/iconify-icon.mjs';
|
|
70
|
-
import { _ as
|
|
72
|
+
import { _ as __vite_glob_0_39 } from './components/image/image.mjs';
|
|
71
73
|
export { C as VcImage } from './components/image/image.mjs';
|
|
72
|
-
import { _ as
|
|
74
|
+
import { _ as __vite_glob_0_40 } from './components/info-tooltip/info-tooltip.mjs';
|
|
73
75
|
export { C as VcInfoTooltip } from './components/info-tooltip/info-tooltip.mjs';
|
|
74
|
-
import { _ as
|
|
76
|
+
import { _ as __vite_glob_0_41 } from './components/input-number/input-number.mjs';
|
|
75
77
|
export { C as VcInputNumber } from './components/input-number/input-number.mjs';
|
|
76
|
-
import { _ as
|
|
78
|
+
import { _ as __vite_glob_0_42 } from './components/input/input.mjs';
|
|
77
79
|
export { C as VcInput } from './components/input/input.mjs';
|
|
78
|
-
import { _ as
|
|
80
|
+
import { _ as __vite_glob_0_43 } from './components/pca-picker/pca-picker.mjs';
|
|
79
81
|
export { C as VcPcaPicker } from './components/pca-picker/pca-picker.mjs';
|
|
80
82
|
import { _ as _sfc_main$7 } from './components/qr-code/qr-code.mjs';
|
|
81
|
-
import { _ as
|
|
83
|
+
import { _ as __vite_glob_0_45 } from './components/screenfull/screenfull.mjs';
|
|
82
84
|
export { C as VcScreenfull } from './components/screenfull/screenfull.mjs';
|
|
83
|
-
import { _ as
|
|
85
|
+
import { _ as __vite_glob_0_46 } from './components/scrollbar/scrollbar.mjs';
|
|
84
86
|
export { C as VcScrollbar } from './components/scrollbar/scrollbar.mjs';
|
|
85
|
-
import { _ as
|
|
87
|
+
import { _ as __vite_glob_0_47 } from './components/select/select.mjs';
|
|
86
88
|
export { C as VcSelect } from './components/select/select.mjs';
|
|
87
|
-
import { _ as
|
|
89
|
+
import { _ as __vite_glob_0_48 } from './components/single-player/single-player.mjs';
|
|
88
90
|
export { C as VcSinglePlayer } from './components/single-player/single-player.mjs';
|
|
89
|
-
import { _ as
|
|
91
|
+
import { _ as __vite_glob_0_49 } from './components/splitter-panel/splitter-panel.mjs';
|
|
90
92
|
export { C as VcSplitterPanel } from './components/splitter-panel/splitter-panel.mjs';
|
|
91
93
|
import { _ as _sfc_main$8 } from './components/splitter/splitter.mjs';
|
|
92
|
-
import { _ as
|
|
94
|
+
import { _ as __vite_glob_0_51 } from './components/svg-icon/svg-icon.mjs';
|
|
93
95
|
export { C as VcSvgIcon } from './components/svg-icon/svg-icon.mjs';
|
|
94
|
-
import { _ as
|
|
96
|
+
import { _ as __vite_glob_0_52 } from './components/switch/switch.mjs';
|
|
95
97
|
export { C as VcSwitch } from './components/switch/switch.mjs';
|
|
96
|
-
import { _ as
|
|
98
|
+
import { _ as __vite_glob_0_53 } from './components/sync-scroll-container/sync-scroll-container.mjs';
|
|
97
99
|
export { C as VcSyncScrollContainer } from './components/sync-scroll-container/sync-scroll-container.mjs';
|
|
98
|
-
import { _ as
|
|
100
|
+
import { _ as __vite_glob_0_54 } from './components/tags/tags.mjs';
|
|
99
101
|
export { C as VcTags } from './components/tags/tags.mjs';
|
|
100
|
-
import { _ as
|
|
102
|
+
import { _ as __vite_glob_0_55 } from './components/text-ellipsis/text-ellipsis.mjs';
|
|
101
103
|
export { C as VcTextEllipsis } from './components/text-ellipsis/text-ellipsis.mjs';
|
|
102
|
-
import { _ as
|
|
104
|
+
import { _ as __vite_glob_0_56 } from './components/thousand-input/thousand-input.mjs';
|
|
103
105
|
export { C as VcThousandInput } from './components/thousand-input/thousand-input.mjs';
|
|
104
|
-
import { _ as
|
|
106
|
+
import { _ as __vite_glob_0_57 } from './components/tinymce/tinymce.mjs';
|
|
105
107
|
export { C as VcTinymce } from './components/tinymce/tinymce.mjs';
|
|
106
|
-
import { _ as
|
|
108
|
+
import { _ as __vite_glob_0_58 } from './components/transfer-panel/transfer-panel.mjs';
|
|
107
109
|
export { C as VcTransferPanel } from './components/transfer-panel/transfer-panel.mjs';
|
|
108
|
-
import { _ as
|
|
110
|
+
import { _ as __vite_glob_0_59 } from './components/transfer/transfer.mjs';
|
|
109
111
|
export { C as VcTransfer } from './components/transfer/transfer.mjs';
|
|
110
|
-
import { _ as
|
|
112
|
+
import { _ as __vite_glob_0_60 } from './components/tree-picker/tree-picker.mjs';
|
|
111
113
|
export { C as VcTreePicker } from './components/tree-picker/tree-picker.mjs';
|
|
112
|
-
import { _ as
|
|
114
|
+
import { _ as __vite_glob_0_61 } from './components/upload-file/upload-file.mjs';
|
|
113
115
|
export { C as VcUploadFile } from './components/upload-file/upload-file.mjs';
|
|
114
116
|
export { c as VcVCleave } from './chunk/DRLHgORP.mjs';
|
|
115
117
|
export { v as VcVFocus } from './chunk/CL65DvCP.mjs';
|
|
@@ -125,7 +127,7 @@ const __vite_glob_0_1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePro
|
|
|
125
127
|
default: _sfc_main$1
|
|
126
128
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
127
129
|
|
|
128
|
-
const
|
|
130
|
+
const __vite_glob_0_37 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
129
131
|
__proto__: null,
|
|
130
132
|
default: _sfc_main$2
|
|
131
133
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
@@ -150,19 +152,19 @@ const __vite_glob_0_11 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
150
152
|
default: _sfc_main$6
|
|
151
153
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
152
154
|
|
|
153
|
-
const
|
|
155
|
+
const __vite_glob_0_44 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
154
156
|
__proto__: null,
|
|
155
157
|
default: _sfc_main$7
|
|
156
158
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
157
159
|
|
|
158
|
-
const
|
|
160
|
+
const __vite_glob_0_50 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
159
161
|
__proto__: null,
|
|
160
162
|
default: _sfc_main$8
|
|
161
163
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
162
164
|
|
|
163
|
-
const version = "1.
|
|
165
|
+
const version = "1.12.1";
|
|
164
166
|
|
|
165
|
-
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-switch/color-switch.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-switch/dark-switch.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/form-item/form-item.vue": __vite_glob_0_34,"./components/icon-picker/icon-picker.vue":
|
|
167
|
+
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-switch/color-switch.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-switch/dark-switch.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/form-item/form-item.vue": __vite_glob_0_34,"./components/gen-input/gen-input.vue": __vite_glob_0_35,"./components/icon-picker/icon-picker.vue": __vite_glob_0_36,"./components/icon/icon.vue": __vite_glob_0_37,"./components/iconify-icon/iconify-icon.vue": __vite_glob_0_38,"./components/image/image.vue": __vite_glob_0_39,"./components/info-tooltip/info-tooltip.vue": __vite_glob_0_40,"./components/input-number/input-number.vue": __vite_glob_0_41,"./components/input/input.vue": __vite_glob_0_42,"./components/pca-picker/pca-picker.vue": __vite_glob_0_43,"./components/qr-code/qr-code.vue": __vite_glob_0_44,"./components/screenfull/screenfull.vue": __vite_glob_0_45,"./components/scrollbar/scrollbar.vue": __vite_glob_0_46,"./components/select/select.vue": __vite_glob_0_47,"./components/single-player/single-player.vue": __vite_glob_0_48,"./components/splitter-panel/splitter-panel.vue": __vite_glob_0_49,"./components/splitter/splitter.vue": __vite_glob_0_50,"./components/svg-icon/svg-icon.vue": __vite_glob_0_51,"./components/switch/switch.vue": __vite_glob_0_52,"./components/sync-scroll-container/sync-scroll-container.vue": __vite_glob_0_53,"./components/tags/tags.vue": __vite_glob_0_54,"./components/text-ellipsis/text-ellipsis.vue": __vite_glob_0_55,"./components/thousand-input/thousand-input.vue": __vite_glob_0_56,"./components/tinymce/tinymce.vue": __vite_glob_0_57,"./components/transfer-panel/transfer-panel.vue": __vite_glob_0_58,"./components/transfer/transfer.vue": __vite_glob_0_59,"./components/tree-picker/tree-picker.vue": __vite_glob_0_60,"./components/upload-file/upload-file.vue": __vite_glob_0_61});
|
|
166
168
|
const upper = (_, letter) => letter.toUpperCase();
|
|
167
169
|
function install(Vue) {
|
|
168
170
|
Object.keys(modules).forEach((key) => {
|
package/dist/global.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ declare module 'vue' {
|
|
|
36
36
|
VcExplorerTree: typeof import('@wfrog/vc-ui')['VcExplorerTree']
|
|
37
37
|
VcFlag: typeof import('@wfrog/vc-ui')['VcFlag']
|
|
38
38
|
VcFormItem: typeof import('@wfrog/vc-ui')['VcFormItem']
|
|
39
|
+
VcGenInput: typeof import('@wfrog/vc-ui')['VcGenInput']
|
|
39
40
|
VcIcon: typeof import('@wfrog/vc-ui')['VcIcon']
|
|
40
41
|
VcIconPicker: typeof import('@wfrog/vc-ui')['VcIconPicker']
|
|
41
42
|
VcIconifyIcon: typeof import('@wfrog/vc-ui')['VcIconifyIcon']
|
package/dist/index.css
CHANGED
|
@@ -1001,6 +1001,16 @@ div._explorer_volay_1 :glbal ._el-splitter__mask_volay_9 {
|
|
|
1001
1001
|
._label_1a4uj_1 {
|
|
1002
1002
|
margin-right: 4px;
|
|
1003
1003
|
}
|
|
1004
|
+
/* source: src/components/gen-input/gen-input.vue */
|
|
1005
|
+
._gen-input_1q48e_1 {
|
|
1006
|
+
display: flex;
|
|
1007
|
+
align-items: center;
|
|
1008
|
+
width: 100%;
|
|
1009
|
+
}
|
|
1010
|
+
._checkbox_1q48e_7 {
|
|
1011
|
+
margin-left: 12px;
|
|
1012
|
+
flex-shrink: 0;
|
|
1013
|
+
}
|
|
1004
1014
|
/* source: src/components/icon-picker/components/collections.vue,src/components/icon-picker/components/panel.vue,src/components/icon-picker/icon-picker.vue */
|
|
1005
1015
|
._wrapper_1r14t_1 {
|
|
1006
1016
|
height: 100%;
|