vueless 0.0.590 → 0.0.591

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.590",
3
+ "version": "0.0.591",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -186,6 +186,11 @@ const { buttonAttrs, loaderAttrs, leftIconAttrs, rightIconAttrs, centerIconAttrs
186
186
  </template>
187
187
 
188
188
  <!-- This is needed to prevent changing button height -->
189
- <div v-if="!label || loading" tabindex="-1" class="invisible w-0" v-text="'invisible'" />
189
+ <div
190
+ v-if="(!label && !hasSlotContent(slots['default'])) || loading"
191
+ tabindex="-1"
192
+ class="invisible w-0"
193
+ v-text="'invisible'"
194
+ />
190
195
  </component>
191
196
  </template>
@@ -24,6 +24,7 @@ export default /*tw*/ {
24
24
  xl: "text-xl",
25
25
  "2xl": "text-2xl",
26
26
  "3xl": "text-3xl",
27
+ "4xl": "text-4xl",
27
28
  },
28
29
  planned: {
29
30
  true: "opacity-75 before:content-['('] after:content-[')']",
@@ -43,6 +44,7 @@ export default /*tw*/ {
43
44
  xl: "text-lg",
44
45
  "2xl": "text-xl",
45
46
  "3xl": "text-2xl",
47
+ "4xl": "text-3xl",
46
48
  },
47
49
  },
48
50
  },
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.590",
4
+ "version": "0.0.591",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",