vueless 0.0.625 → 0.0.626
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/package.json
CHANGED
package/ui.button-link/ULink.vue
CHANGED
|
@@ -134,7 +134,7 @@ const mutatedProps = computed(() => ({
|
|
|
134
134
|
defaultSlot: hasSlotContent(slots["default"]),
|
|
135
135
|
}));
|
|
136
136
|
|
|
137
|
-
const { wrapperAttrs, linkAttrs } = useUI<Config>(defaultConfig, mutatedProps);
|
|
137
|
+
const { wrapperAttrs, linkAttrs } = useUI<Config>(defaultConfig, mutatedProps, "link");
|
|
138
138
|
</script>
|
|
139
139
|
|
|
140
140
|
<template>
|
package/ui.button-link/config.ts
CHANGED
|
@@ -56,14 +56,17 @@ export default /*tw*/ {
|
|
|
56
56
|
`,
|
|
57
57
|
white: "decoration-white text-white",
|
|
58
58
|
},
|
|
59
|
+
defaultSlot: {
|
|
60
|
+
true: "flex items-center no-underline hover:no-underline",
|
|
61
|
+
},
|
|
59
62
|
dashed: {
|
|
60
63
|
true: "hover:decoration-dashed decoration-dashed",
|
|
61
64
|
},
|
|
62
65
|
disabled: {
|
|
63
66
|
true: "text-gray-400 pointer-events-none",
|
|
64
67
|
},
|
|
65
|
-
|
|
66
|
-
true: "
|
|
68
|
+
block: {
|
|
69
|
+
true: "w-full",
|
|
67
70
|
},
|
|
68
71
|
},
|
|
69
72
|
},
|