nuxt-hs-ui 2.8.0 → 2.8.2
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/module.json
CHANGED
|
@@ -186,7 +186,10 @@ const unKnownData = computed(() => {
|
|
|
186
186
|
if (props.data === null) return null;
|
|
187
187
|
return {
|
|
188
188
|
id: props.data,
|
|
189
|
-
text:
|
|
189
|
+
text: {
|
|
190
|
+
ja: `無効な値が選択されています (ID=${props.data})`,
|
|
191
|
+
en: `Invalid value selected (ID=${props.data})`,
|
|
192
|
+
},
|
|
190
193
|
};
|
|
191
194
|
});
|
|
192
195
|
|
|
@@ -180,7 +180,10 @@ const unKnownData = computed(() => {
|
|
|
180
180
|
if (props.data === null) return null;
|
|
181
181
|
return {
|
|
182
182
|
id: props.data,
|
|
183
|
-
text:
|
|
183
|
+
text: {
|
|
184
|
+
ja: `無効な値が選択されています (ID=${props.data})`,
|
|
185
|
+
en: `Invalid value selected (ID=${props.data})`,
|
|
186
|
+
},
|
|
184
187
|
};
|
|
185
188
|
});
|
|
186
189
|
|
|
@@ -47,7 +47,7 @@ const classStyleUnlink = computed(() => {
|
|
|
47
47
|
theme="back"
|
|
48
48
|
variant="body"
|
|
49
49
|
>
|
|
50
|
-
<div class="flex flex-wrap gap-[2px] sm:gap-[4px]">
|
|
50
|
+
<div class="flex flex-wrap gap-[2px] sm:gap-[4px] max-w-full">
|
|
51
51
|
<template v-for="(item, index) in props.links" :key="index">
|
|
52
52
|
<div class="truncate min-w-0 w-full sm:w-auto">
|
|
53
53
|
<NuxtLink
|