@saasmakers/ui 0.1.32 → 0.1.34

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.
@@ -1,4 +1,4 @@
1
- import type { BaseColor as _BaseColor, BaseSize as _BaseSize, BaseStatus as _BaseStatus } from './bases'
1
+ import type * as Bases from './bases'
2
2
 
3
3
  declare global {
4
4
  // Packages
@@ -7,9 +7,15 @@ declare global {
7
7
  type RouteLocationRaw = import('vue-router').RouteLocationRaw
8
8
 
9
9
  // Bases
10
- type BaseColor = _BaseColor
11
- type BaseSize = _BaseSize
12
- type BaseStatus = _BaseStatus
10
+ type BaseColor = Bases.BaseColor
11
+ type BaseSize = Bases.BaseSize
12
+ type BaseStatus = Bases.BaseStatus
13
+ type BaseDivider = Bases.BaseDivider
14
+ type BaseDividerBorderStyle = Bases.BaseDividerBorderStyle
15
+ type BaseDividerSize = Bases.BaseDividerSize
16
+ type BaseText = Bases.BaseText
17
+ type BaseTextBackground = Bases.BaseTextBackground
18
+ type BaseTextText = Bases.BaseTextText
13
19
  }
14
20
 
15
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.32",
4
+ "version": "0.1.34",
5
5
  "private": false,
6
6
  "description": "Reusable Nuxt UI components for SaaS Makers projects",
7
7
  "license": "MIT",