vueless 0.0.590 → 0.0.592
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/UButton.vue
CHANGED
|
@@ -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
|
|
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>
|
|
@@ -50,8 +50,8 @@ export function useUserFormat(
|
|
|
50
50
|
fromFormat = fromFormat.replace(/[Yy]/g, "");
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
const fromTitle = from ? formatDate(from, fromFormat,
|
|
54
|
-
const toTitle = to ? formatDate(to, userDateFormat,
|
|
53
|
+
const fromTitle = from ? formatDate(from, fromFormat, userFormatLocale.value) : "";
|
|
54
|
+
const toTitle = to ? formatDate(to, userDateFormat, userFormatLocale.value) : "";
|
|
55
55
|
|
|
56
56
|
title = `${fromTitle} – ${toTitle}`;
|
|
57
57
|
}
|
package/ui.text-money/config.ts
CHANGED
|
@@ -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
|
},
|