@saasmakers/ui 0.1.31 → 0.1.33
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 +14 -1
- package/package.json +2 -2
- package/app/types/index.d.ts +0 -3
package/app/types/global.d.ts
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
|
+
import type { BaseColor as _BaseColor, BaseDivider as _BaseDivider, BaseDividerBorderStyle as _BaseDividerBorderStyle, BaseDividerSize as _BaseDividerSize, BaseSize as _BaseSize, BaseStatus as _BaseStatus, BaseText as _BaseText, BaseTextBackground as _BaseTextBackground, BaseTextText as _BaseTextText } 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
|
|
13
|
+
type BaseDivider = _BaseDivider
|
|
14
|
+
type BaseDividerBorderStyle = _BaseDividerBorderStyle
|
|
15
|
+
type BaseDividerSize = _BaseDividerSize
|
|
16
|
+
type BaseText = _BaseText
|
|
17
|
+
type BaseTextBackground = _BaseTextBackground
|
|
18
|
+
type BaseTextText = _BaseTextText
|
|
6
19
|
}
|
|
7
20
|
|
|
8
|
-
export
|
|
21
|
+
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.33",
|
|
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