nuance-ui 0.1.17 → 0.1.18

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": "^4.0.0"
6
6
  },
7
- "version": "0.1.17",
7
+ "version": "0.1.18",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
@@ -1,6 +1,7 @@
1
1
  <script setup>
2
2
  import ActionIcon from "../action-icon/action-icon.vue";
3
3
  import { pickLinkProps } from "../link";
4
+ defineOptions({ inheritAttrs: false });
4
5
  const {
5
6
  active = "filled",
6
7
  notActive = "default",
@@ -42,7 +43,7 @@ const { link, rest } = pickLinkProps(etc);
42
43
  <NuxtLink v-slot='{ href, navigate, isActive, ...linkProps }' v-bind='link' custom>
43
44
  <ActionIcon
44
45
  is='a'
45
- v-bind='{ ...rest, $attrs }'
46
+ v-bind='{ ...rest, ...$attrs }'
46
47
  :href
47
48
  :variant='isActive ? active : notActive'
48
49
  :mod='[{ active: isActive }, mod]'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuance-ui",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "A UI Library for Modern Web Apps, powered by Vue.",
5
5
  "repository": {
6
6
  "type": "git",