@fy-/fws-vue 2.3.44 → 2.3.46
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/components/ui/DefaultTagInput.vue +1 -1
- package/index.ts +6 -6
- package/package.json +1 -1
|
@@ -277,7 +277,7 @@ function handlePaste(e: ClipboardEvent) {
|
|
|
277
277
|
if (!text || !text.trim()) return
|
|
278
278
|
|
|
279
279
|
// Process the text (replace separator characters)
|
|
280
|
-
const pasteText = text.replace(
|
|
280
|
+
const pasteText = text.replace(/,/g, ',')
|
|
281
281
|
|
|
282
282
|
// Simply set the content - the most reliable approach
|
|
283
283
|
textInput.value.textContent = pasteText
|
package/index.ts
CHANGED
|
@@ -99,7 +99,7 @@ export {
|
|
|
99
99
|
CmsArticleSingle,
|
|
100
100
|
CollapseTransition,
|
|
101
101
|
createFWS,
|
|
102
|
-
cropText,
|
|
102
|
+
cropText as cropTextFunction,
|
|
103
103
|
DataTable,
|
|
104
104
|
DefaultBreadcrumb,
|
|
105
105
|
DefaultConfirm,
|
|
@@ -119,11 +119,11 @@ export {
|
|
|
119
119
|
|
|
120
120
|
FadeTransition,
|
|
121
121
|
FilterData,
|
|
122
|
-
formatBytes,
|
|
123
|
-
formatDate,
|
|
124
|
-
formatDatetime,
|
|
125
|
-
formatTimeago,
|
|
126
|
-
getContrastingTextColor,
|
|
122
|
+
formatBytes as formatBytesFunction,
|
|
123
|
+
formatDate as formatDateFunction,
|
|
124
|
+
formatDatetime as formatDatetimeFunction,
|
|
125
|
+
formatTimeago as formatTimeagoFunction,
|
|
126
|
+
getContrastingTextColor as getContrastingTextColorFunction,
|
|
127
127
|
i18nextPromise,
|
|
128
128
|
initVueClient,
|
|
129
129
|
initVueServer,
|