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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.625",
3
+ "version": "0.0.626",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -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>
@@ -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
- defaultSlot: {
66
- true: "flex items-center no-underline hover:no-underline",
68
+ block: {
69
+ true: "w-full",
67
70
  },
68
71
  },
69
72
  },
@@ -78,7 +78,7 @@ const {
78
78
  footerLeftAttrs,
79
79
  footerRightAttrs,
80
80
  rightRoundingWrapperAttrs,
81
- } = useUI<Config>(defaultConfig);
81
+ } = useUI<Config>(defaultConfig, undefined, "wrapper");
82
82
  </script>
83
83
 
84
84
  <template>
@@ -1,6 +1,5 @@
1
1
  export default /*tw*/ {
2
2
  htmlBody: "bg-gray-50 group/body-gray",
3
- wrapperMobile: "overflow-x-hidden",
4
3
  wrapper: {
5
4
  base: "min-h-screen UNotifyPage",
6
5
  variants: {
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.625",
4
+ "version": "0.0.626",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",