@saasmakers/ui 0.1.23 → 0.1.25

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,3 +1,3 @@
1
1
  <template>
2
- <div />
2
+ <div>Saas Makers UI</div>
3
3
  </template>
@@ -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',
@@ -0,0 +1,3 @@
1
+ import './global'
2
+
3
+ export * from './bases'
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@saasmakers/ui",
3
3
  "type": "module",
4
- "version": "0.1.23",
4
+ "version": "0.1.25",
5
5
  "private": false,
6
6
  "description": "Reusable Nuxt UI components for SaaS Makers projects",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/saasmakers/saasmakers-turborepo.git",
10
+ "url": "git+https://github.com/saasmakers/saasmakers-turborepo.git",
11
11
  "directory": "packages/ui"
12
12
  },
13
13
  "main": "nuxt.config.ts",
14
+ "types": "app/types/index.d.ts",
14
15
  "publishConfig": {
15
16
  "access": "public"
16
17
  },
@@ -18,6 +19,12 @@
18
19
  "app",
19
20
  "nuxt.config.ts"
20
21
  ],
22
+ "scripts": {
23
+ "dev": "nuxi dev",
24
+ "lint": "eslint .",
25
+ "prepare": "nuxi prepare",
26
+ "typecheck": "nuxi typecheck"
27
+ },
21
28
  "peerDependencies": {
22
29
  "nuxt": "4.2.1"
23
30
  },
@@ -33,16 +40,12 @@
33
40
  "@unocss/reset": "66.5.10",
34
41
  "floating-vue": "5.2.2",
35
42
  "motion-v": "1.7.4",
43
+ "unocss": "66.5.4",
36
44
  "vue": "3.5.22",
37
45
  "vue-router": "4.6.3"
38
46
  },
39
47
  "devDependencies": {
40
48
  "nuxt": "4.2.1",
41
49
  "typescript": "5.9.3"
42
- },
43
- "scripts": {
44
- "dev": "nuxi dev",
45
- "lint": "eslint .",
46
- "typecheck": "nuxi typecheck"
47
50
  }
48
- }
51
+ }