@saasmakers/ui 0.1.22 → 0.1.24
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/app/app.vue
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts" setup>
|
|
2
|
-
import { NuxtLinkLocale } from '#components'
|
|
3
2
|
import type { BaseText } from '../../types/bases'
|
|
3
|
+
import { NuxtLinkLocale } from '#components'
|
|
4
4
|
|
|
5
5
|
const props = withDefaults(defineProps<BaseText>(), {
|
|
6
6
|
background: '',
|
|
@@ -79,7 +79,7 @@ function onShowMore() {
|
|
|
79
79
|
'underline text-indigo-700 dark:text-indigo-300': !!to,
|
|
80
80
|
'uppercase': uppercase,
|
|
81
81
|
'whitespace-nowrap': noWrap,
|
|
82
|
-
underline,
|
|
82
|
+
'underline': underline,
|
|
83
83
|
|
|
84
84
|
'bg-gray-100 dark:bg-gray-900': background === 'gray',
|
|
85
85
|
'bg-white dark:bg-gray-900': background === 'white',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasmakers/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.24",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Reusable Nuxt UI components for SaaS Makers projects",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"@unocss/reset": "66.5.10",
|
|
34
34
|
"floating-vue": "5.2.2",
|
|
35
35
|
"motion-v": "1.7.4",
|
|
36
|
+
"unocss": "66.5.4",
|
|
36
37
|
"vue": "3.5.22",
|
|
37
38
|
"vue-router": "4.6.3"
|
|
38
39
|
},
|