@wfrog/vc-ui 1.13.10 → 1.14.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/thousand-separator/index.d.ts +4 -0
- package/dist/es/components/thousand-separator/index.mjs +6 -0
- package/dist/es/components/thousand-separator/thousand-separator.d.ts +6 -0
- package/dist/es/components/thousand-separator/thousand-separator.mjs +98 -0
- package/dist/es/components/thousand-separator/thousand-separator.vue.d.ts +8 -0
- 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/tree-select/tree-select.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 +15 -9
- package/dist/global.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { defineComponent, computed, createElementBlock, openBlock, toDisplayString, unref } from 'vue';
|
|
2
|
+
import '../../chunk/D9iEroQw.mjs';
|
|
3
|
+
|
|
4
|
+
function thousandSeparator(value, options = {}) {
|
|
5
|
+
if (value === null || value === void 0 || value === "") {
|
|
6
|
+
return "";
|
|
7
|
+
}
|
|
8
|
+
const separator = options.separator ?? ",";
|
|
9
|
+
const decimalPlaces = options.decimalPlaces ?? 0;
|
|
10
|
+
if (typeof value === "string") {
|
|
11
|
+
const cleanStr = value.split(separator).join("").trim();
|
|
12
|
+
if (/^[+-]?(?:\d+(?:\.\d*)?|\.\d+)$/.test(cleanStr)) {
|
|
13
|
+
return formatNumericString(cleanStr, separator, decimalPlaces);
|
|
14
|
+
}
|
|
15
|
+
const num = Number.parseFloat(cleanStr);
|
|
16
|
+
if (Number.isNaN(num)) {
|
|
17
|
+
return value;
|
|
18
|
+
}
|
|
19
|
+
return formatNumber(num, separator, decimalPlaces);
|
|
20
|
+
}
|
|
21
|
+
return formatNumber(value, separator, decimalPlaces);
|
|
22
|
+
}
|
|
23
|
+
function formatNumber(num, separator, decimalPlaces) {
|
|
24
|
+
if (!Number.isFinite(num))
|
|
25
|
+
return String(num);
|
|
26
|
+
const safeNum = Object.is(num, -0) ? 0 : num;
|
|
27
|
+
const formatter = new Intl.NumberFormat("en-US", buildOptions(safeNum, decimalPlaces));
|
|
28
|
+
return formatter.formatToParts(safeNum).map((part) => part.type === "group" ? separator : part.value).join("");
|
|
29
|
+
}
|
|
30
|
+
function buildOptions(num, decimalPlaces) {
|
|
31
|
+
if (decimalPlaces < 0) {
|
|
32
|
+
const decimalLength = (String(Math.abs(num)).split(".")[1] ?? "").length;
|
|
33
|
+
return {
|
|
34
|
+
useGrouping: true,
|
|
35
|
+
minimumFractionDigits: 0,
|
|
36
|
+
maximumFractionDigits: decimalLength
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
useGrouping: true,
|
|
41
|
+
minimumFractionDigits: decimalPlaces,
|
|
42
|
+
maximumFractionDigits: decimalPlaces
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function formatNumericString(cleanStr, separator, decimalPlaces) {
|
|
46
|
+
const negative = cleanStr.startsWith("-");
|
|
47
|
+
const s = negative || cleanStr.startsWith("+") ? cleanStr.slice(1) : cleanStr;
|
|
48
|
+
let [intPart = "0", decPart = ""] = s.split(".");
|
|
49
|
+
intPart = intPart.replace(/^0+(?=\d)/, "") || "0";
|
|
50
|
+
if (decimalPlaces >= 0) {
|
|
51
|
+
const keep = decimalPlaces;
|
|
52
|
+
const nextDigit = decPart[keep];
|
|
53
|
+
let kept = decPart.slice(0, keep);
|
|
54
|
+
if (nextDigit && nextDigit >= "5") {
|
|
55
|
+
const combined = BigInt(intPart + kept.padEnd(keep, "0")) + BigInt(1);
|
|
56
|
+
const str = combined.toString().padStart(intPart.length + keep, "0");
|
|
57
|
+
if (keep === 0) {
|
|
58
|
+
intPart = str;
|
|
59
|
+
kept = "";
|
|
60
|
+
} else {
|
|
61
|
+
intPart = str.slice(0, -keep);
|
|
62
|
+
kept = str.slice(-keep);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
decPart = kept.padEnd(keep, "0");
|
|
66
|
+
}
|
|
67
|
+
const groupedInt = intPart.replace(/\B(?=(\d{3})+(?!\d))/g, separator);
|
|
68
|
+
const dec = decPart ? `.${decPart}` : "";
|
|
69
|
+
const isZero = intPart === "0" && !/[1-9]/.test(decPart);
|
|
70
|
+
return (negative && !isZero ? "-" : "") + groupedInt + dec;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
74
|
+
__name: "thousand-separator",
|
|
75
|
+
props: {
|
|
76
|
+
value: { default: null },
|
|
77
|
+
separator: { default: "," },
|
|
78
|
+
decimalPlaces: { default: 0 },
|
|
79
|
+
placeholder: { default: "-" }
|
|
80
|
+
},
|
|
81
|
+
setup(__props) {
|
|
82
|
+
const props = __props;
|
|
83
|
+
const formattedValue = computed(() => {
|
|
84
|
+
if (props.value === null || props.value === void 0 || props.value === "") {
|
|
85
|
+
return props.placeholder;
|
|
86
|
+
}
|
|
87
|
+
return thousandSeparator(props.value, {
|
|
88
|
+
separator: props.separator,
|
|
89
|
+
decimalPlaces: props.decimalPlaces
|
|
90
|
+
});
|
|
91
|
+
});
|
|
92
|
+
return (_ctx, _cache) => {
|
|
93
|
+
return openBlock(), createElementBlock("span", null, toDisplayString(unref(formattedValue)), 1);
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
export { _sfc_main as _ };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IThousandSeparatorProps } from './thousand-separator';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<IThousandSeparatorProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IThousandSeparatorProps> & Readonly<{}>, {
|
|
3
|
+
placeholder: string;
|
|
4
|
+
value: string | number | null;
|
|
5
|
+
separator: string;
|
|
6
|
+
decimalPlaces: number;
|
|
7
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
8
|
+
export default _default;
|
|
@@ -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_58 = /*#__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_58 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_60 = /*#__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_60 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_59 = /*#__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_59 as _ };
|
|
@@ -176,9 +176,9 @@ const cssModules = {
|
|
|
176
176
|
};
|
|
177
177
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
178
178
|
|
|
179
|
-
const
|
|
179
|
+
const __vite_glob_0_61 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
180
180
|
__proto__: null,
|
|
181
181
|
default: Component
|
|
182
182
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
183
183
|
|
|
184
|
-
export { Component as C,
|
|
184
|
+
export { Component as C, __vite_glob_0_61 as _ };
|
|
@@ -214,9 +214,9 @@ const cssModules = {
|
|
|
214
214
|
};
|
|
215
215
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
216
216
|
|
|
217
|
-
const
|
|
217
|
+
const __vite_glob_0_62 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
218
218
|
__proto__: null,
|
|
219
219
|
default: Component
|
|
220
220
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
221
221
|
|
|
222
|
-
export { Component as C,
|
|
222
|
+
export { Component as C, __vite_glob_0_62 as _ };
|
|
@@ -195,9 +195,9 @@ const cssModules = {
|
|
|
195
195
|
};
|
|
196
196
|
const Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["__cssModules", cssModules]]);
|
|
197
197
|
|
|
198
|
-
const
|
|
198
|
+
const __vite_glob_0_63 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
199
199
|
__proto__: null,
|
|
200
200
|
default: Component
|
|
201
201
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
202
202
|
|
|
203
|
-
export { Component as C,
|
|
203
|
+
export { Component as C, __vite_glob_0_63 as _ };
|
package/dist/es/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export { default as VcSyncScrollContainer } from './components/sync-scroll-conta
|
|
|
55
55
|
export { default as VcTags } from './components/tags/tags.vue';
|
|
56
56
|
export { default as VcTextEllipsis } from './components/text-ellipsis/text-ellipsis.vue';
|
|
57
57
|
export { default as VcThousandInput } from './components/thousand-input/thousand-input.vue';
|
|
58
|
+
export { default as VcThousandSeparator } from './components/thousand-separator/thousand-separator.vue';
|
|
58
59
|
export { default as VcTinymce } from './components/tinymce/tinymce.vue';
|
|
59
60
|
export { default as VcTransferPanel } from './components/transfer-panel/transfer-panel.vue';
|
|
60
61
|
export { default as VcTransfer } from './components/transfer/transfer.vue';
|
package/dist/es/index.mjs
CHANGED
|
@@ -103,17 +103,18 @@ import { _ as __vite_glob_0_55 } from './components/text-ellipsis/text-ellipsis.
|
|
|
103
103
|
export { C as VcTextEllipsis } from './components/text-ellipsis/text-ellipsis.mjs';
|
|
104
104
|
import { _ as __vite_glob_0_56 } from './components/thousand-input/thousand-input.mjs';
|
|
105
105
|
export { C as VcThousandInput } from './components/thousand-input/thousand-input.mjs';
|
|
106
|
-
import { _ as
|
|
106
|
+
import { _ as _sfc_main$9 } from './components/thousand-separator/thousand-separator.mjs';
|
|
107
|
+
import { _ as __vite_glob_0_58 } from './components/tinymce/tinymce.mjs';
|
|
107
108
|
export { C as VcTinymce } from './components/tinymce/tinymce.mjs';
|
|
108
|
-
import { _ as
|
|
109
|
+
import { _ as __vite_glob_0_59 } from './components/transfer-panel/transfer-panel.mjs';
|
|
109
110
|
export { C as VcTransferPanel } from './components/transfer-panel/transfer-panel.mjs';
|
|
110
|
-
import { _ as
|
|
111
|
+
import { _ as __vite_glob_0_60 } from './components/transfer/transfer.mjs';
|
|
111
112
|
export { C as VcTransfer } from './components/transfer/transfer.mjs';
|
|
112
|
-
import { _ as
|
|
113
|
+
import { _ as __vite_glob_0_61 } from './components/tree-picker/tree-picker.mjs';
|
|
113
114
|
export { C as VcTreePicker } from './components/tree-picker/tree-picker.mjs';
|
|
114
|
-
import { _ as
|
|
115
|
+
import { _ as __vite_glob_0_62 } from './components/tree-select/tree-select.mjs';
|
|
115
116
|
export { C as VcTreeSelect } from './components/tree-select/tree-select.mjs';
|
|
116
|
-
import { _ as
|
|
117
|
+
import { _ as __vite_glob_0_63 } from './components/upload-file/upload-file.mjs';
|
|
117
118
|
export { C as VcUploadFile } from './components/upload-file/upload-file.mjs';
|
|
118
119
|
export { c as VcVCleave } from './chunk/DRLHgORP.mjs';
|
|
119
120
|
export { v as VcVFocus } from './chunk/CL65DvCP.mjs';
|
|
@@ -164,9 +165,14 @@ const __vite_glob_0_50 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
164
165
|
default: _sfc_main$8
|
|
165
166
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
166
167
|
|
|
167
|
-
const
|
|
168
|
+
const __vite_glob_0_57 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
169
|
+
__proto__: null,
|
|
170
|
+
default: _sfc_main$9
|
|
171
|
+
}, Symbol.toStringTag, { value: 'Module' }));
|
|
172
|
+
|
|
173
|
+
const version = "1.14.1";
|
|
168
174
|
|
|
169
|
-
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":
|
|
175
|
+
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/thousand-separator/thousand-separator.vue": __vite_glob_0_57,"./components/tinymce/tinymce.vue": __vite_glob_0_58,"./components/transfer-panel/transfer-panel.vue": __vite_glob_0_59,"./components/transfer/transfer.vue": __vite_glob_0_60,"./components/tree-picker/tree-picker.vue": __vite_glob_0_61,"./components/tree-select/tree-select.vue": __vite_glob_0_62,"./components/upload-file/upload-file.vue": __vite_glob_0_63});
|
|
170
176
|
const upper = (_, letter) => letter.toUpperCase();
|
|
171
177
|
function install(Vue) {
|
|
172
178
|
Object.keys(modules).forEach((key) => {
|
|
@@ -184,4 +190,4 @@ const index = {
|
|
|
184
190
|
install
|
|
185
191
|
};
|
|
186
192
|
|
|
187
|
-
export { _sfc_main as VcAwesomeIcon, _sfc_main$1 as VcBackbottom, _sfc_main$3 as VcChoiceBoolean, _sfc_main$4 as VcConfigProvider, _sfc_main$6 as VcDaterangePicker, _sfc_main$5 as VcFlag, _sfc_main$2 as VcIcon, _sfc_main$7 as VcQrCode, _sfc_main$8 as VcSplitter, index as default };
|
|
193
|
+
export { _sfc_main as VcAwesomeIcon, _sfc_main$1 as VcBackbottom, _sfc_main$3 as VcChoiceBoolean, _sfc_main$4 as VcConfigProvider, _sfc_main$6 as VcDaterangePicker, _sfc_main$5 as VcFlag, _sfc_main$2 as VcIcon, _sfc_main$7 as VcQrCode, _sfc_main$8 as VcSplitter, _sfc_main$9 as VcThousandSeparator, index as default };
|
package/dist/global.d.ts
CHANGED
|
@@ -58,6 +58,7 @@ declare module 'vue' {
|
|
|
58
58
|
VcTags: typeof import('@wfrog/vc-ui')['VcTags']
|
|
59
59
|
VcTextEllipsis: typeof import('@wfrog/vc-ui')['VcTextEllipsis']
|
|
60
60
|
VcThousandInput: typeof import('@wfrog/vc-ui')['VcThousandInput']
|
|
61
|
+
VcThousandSeparator: typeof import('@wfrog/vc-ui')['VcThousandSeparator']
|
|
61
62
|
VcTinymce: typeof import('@wfrog/vc-ui')['VcTinymce']
|
|
62
63
|
VcTransfer: typeof import('@wfrog/vc-ui')['VcTransfer']
|
|
63
64
|
VcTransferPanel: typeof import('@wfrog/vc-ui')['VcTransferPanel']
|