@indielayer/ui 1.7.0 → 1.7.1
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/lib/components/menu/MenuItem.vue.js +2 -2
- package/lib/components/menu/MenuItem.vue2.js +5 -3
- package/lib/index.js +1 -1
- package/lib/index.umd.js +2 -2
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/src/components/menu/MenuItem.vue +4 -2
- package/src/version.ts +1 -1
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.7.
|
|
1
|
+
declare const _default: "1.7.1";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -127,9 +127,11 @@ const { styles, classes, className } = useTheme('MenuItem', {}, computedProps, {
|
|
|
127
127
|
<component
|
|
128
128
|
:is="htmlTag"
|
|
129
129
|
ref="elRef"
|
|
130
|
-
v-bind="
|
|
130
|
+
v-bind="{
|
|
131
|
+
...(computedProps.href ? { href: computedProps.href } : {}),
|
|
132
|
+
...computedProps.attrs,
|
|
133
|
+
}"
|
|
131
134
|
:to="computedProps.to"
|
|
132
|
-
:href="computedProps.href || computedProps.to || ''"
|
|
133
135
|
:target="computedProps.target"
|
|
134
136
|
:color="computedProps.color"
|
|
135
137
|
:style="styles"
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '1.7.
|
|
1
|
+
export default '1.7.1'
|