@ramathibodi/nuxt-commons 0.1.43 → 0.1.44

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.0.0"
6
6
  },
7
- "version": "0.1.43",
7
+ "version": "0.1.44",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.3",
10
10
  "unbuild": "2.0.0"
@@ -13,7 +13,9 @@ interface Props extends /* @vue-ignore */ InstanceType<typeof VCheckbox['$props'
13
13
  inline? : boolean
14
14
  rules?: typeof import('vuetify/components')['VCheckbox']['rules']
15
15
  }
16
- const props =defineProps<Props>()
16
+ const props = withDefaults(defineProps<Props>(),{
17
+ inline:false
18
+ })
17
19
  const emit = defineEmits(['update:modelValue'])
18
20
  const values = ref([])
19
21
  const valuesOther = ref()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramathibodi/nuxt-commons",
3
- "version": "0.1.43",
3
+ "version": "0.1.44",
4
4
  "description": "Ramathibodi Nuxt modules for common components",
5
5
  "repository": {
6
6
  "type": "git",