@saasmakers/ui 0.1.31 → 0.1.32
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/types/global.d.ts +8 -1
- package/package.json +2 -2
- package/app/types/index.d.ts +0 -3
package/app/types/global.d.ts
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
|
+
import type { BaseColor as _BaseColor, BaseSize as _BaseSize, BaseStatus as _BaseStatus } from './bases'
|
|
2
|
+
|
|
1
3
|
declare global {
|
|
2
4
|
// Packages
|
|
3
5
|
type LocationQuery = import('vue-router').LocationQuery
|
|
4
6
|
type RouteLocation = import('vue-router').RouteLocation
|
|
5
7
|
type RouteLocationRaw = import('vue-router').RouteLocationRaw
|
|
8
|
+
|
|
9
|
+
// Bases
|
|
10
|
+
type BaseColor = _BaseColor
|
|
11
|
+
type BaseSize = _BaseSize
|
|
12
|
+
type BaseStatus = _BaseStatus
|
|
6
13
|
}
|
|
7
14
|
|
|
8
|
-
export
|
|
15
|
+
export * from './bases'
|
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.32",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Reusable Nuxt UI components for SaaS Makers projects",
|
|
7
7
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"directory": "packages/ui"
|
|
12
12
|
},
|
|
13
13
|
"main": "nuxt.config.ts",
|
|
14
|
-
"types": "app/types/
|
|
14
|
+
"types": "app/types/global.d.ts",
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
package/app/types/index.d.ts
DELETED