nuxt-hs-ui 2.0.33 → 2.0.35

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.33",
7
+ "version": "2.0.35",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -80,7 +80,7 @@ const props = withDefaults(defineProps<Props>(), {
80
80
  image: false,
81
81
  loading: false,
82
82
  nullText: "選択してください",
83
- nullable: true,
83
+ nullable: false,
84
84
  classCol: "",
85
85
  classRow: "",
86
86
  classImg: "",
@@ -411,7 +411,11 @@ const inputClass = computed(() => {
411
411
  @keydown.right="onKeydown"
412
412
  >
413
413
  <!-- null -->
414
- <div v-if="!props.require" class="radio-col" :class="colClass">
414
+ <div
415
+ v-if="!props.require && props.nullable"
416
+ class="radio-col"
417
+ :class="colClass"
418
+ >
415
419
  <div
416
420
  class="nac-radio"
417
421
  :class="[{ disabled: props.disabled, readonly: props.readonly }]"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.0.33",
3
+ "version": "2.0.35",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",