nuxt-hs-ui 2.0.32 → 2.0.33

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.0.32",
7
+ "version": "2.0.33",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -40,6 +40,7 @@ type Props = {
40
40
  classRow?: ClassType;
41
41
  classImg?: ClassType;
42
42
  classImgTag?: ClassType;
43
+ nullable?: boolean;
43
44
  // ----------------------------------------------------------------------------
44
45
  data: number | null;
45
46
  diff?: number | null | undefined;
@@ -202,7 +203,7 @@ const displayList = computed<SelectItemShow[]>(() => {
202
203
  unKnownData: unKnownData.value,
203
204
  unKnownSelected: unKnownSelected.value,
204
205
  isShowHidden: isShowHidden.value,
205
- require: props.require,
206
+ require: props.require || !props.nullable,
206
207
  nullText: props.nullText,
207
208
  }).map((row) => {
208
209
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.0.32",
3
+ "version": "2.0.33",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",