nuxt-hs-ui 2.8.1 → 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
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "2.8.1",
7
+ "version": "2.8.2",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -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: `選択肢にない値です ID=${props.data}`,
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: `選択肢にない値です ID=${props.data}`,
183
+ text: {
184
+ ja: `無効な値が選択されています (ID=${props.data})`,
185
+ en: `Invalid value selected (ID=${props.data})`,
186
+ },
184
187
  };
185
188
  });
186
189
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.8.1",
3
+ "version": "2.8.2",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",