@una-ui/nuxt 0.49.2 → 0.49.3

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "configKey": "una",
4
- "version": "0.49.2",
4
+ "version": "0.49.3",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.0.0"
7
7
  },
package/dist/module.mjs CHANGED
@@ -8,7 +8,7 @@ import 'unocss';
8
8
  import 'unocss-preset-animations';
9
9
 
10
10
  const name = "@una-ui/nuxt";
11
- const version = "0.49.2";
11
+ const version = "0.49.3";
12
12
 
13
13
  const module = defineNuxtModule({
14
14
  meta: {
@@ -2,7 +2,7 @@
2
2
  import type { NAvatarGroupProps } from '../../types'
3
3
  import { reactiveOmit } from '@vueuse/core'
4
4
  import { Primitive } from 'reka-ui'
5
- import { h } from 'vue'
5
+ import { computed, h } from 'vue'
6
6
  import { cn } from '../../utils'
7
7
  import Avatar from './avatar/Avatar.vue'
8
8
 
@@ -11,7 +11,7 @@ const props = withDefaults(defineProps<NAvatarGroupProps>(), {
11
11
  as: 'div',
12
12
  })
13
13
 
14
- const slots = useSlots()
14
+ const slots = defineSlots()
15
15
 
16
16
  const max = computed(() => typeof props.max === 'string' ? Number.parseInt(props.max, 10) : props.max)
17
17
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "type": "module",
4
- "version": "0.49.2",
4
+ "version": "0.49.3",
5
5
  "description": "Nuxt module for @una-ui",
6
6
  "author": "Phojie Rengel <phojrengel@gmail.com>",
7
7
  "license": "MIT",
@@ -59,8 +59,8 @@
59
59
  "typescript": "5.6.3",
60
60
  "unocss": "^66.0.0",
61
61
  "unocss-preset-animations": "^1.1.1",
62
- "@una-ui/extractor-vue-script": "^0.49.2",
63
- "@una-ui/preset": "^0.49.2"
62
+ "@una-ui/extractor-vue-script": "^0.49.3",
63
+ "@una-ui/preset": "^0.49.3"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@iconify-json/lucide": "^1.2.34",