@saasmakers/ui 0.1.17 → 0.1.18

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/ui",
3
3
  "type": "module",
4
- "version": "0.1.17",
4
+ "version": "0.1.18",
5
5
  "private": false,
6
6
  "description": "Reusable Nuxt UI components for SaaS Makers projects",
7
7
  "license": "MIT",
package/types/bases.d.ts CHANGED
@@ -36,7 +36,7 @@ declare global {
36
36
  size?: BaseSize
37
37
  skeleton?: boolean
38
38
  text?: BaseTextText
39
- to?: RawLocation
39
+ to?: RouteLocationRaw
40
40
  truncate?: boolean
41
41
  underline?: boolean
42
42
  uppercase?: boolean
package/types/index.d.ts CHANGED
@@ -2,7 +2,9 @@ import './bases'
2
2
 
3
3
  declare global {
4
4
  // Packages
5
- type RawLocation = import('@intlify/vue-router-bridge').RawLocation
5
+ type LocationQuery = import('vue-router').LocationQuery
6
+ type RouteLocation = import('vue-router').RouteLocation
7
+ type RouteLocationRaw = import('vue-router').RouteLocationRaw
6
8
  }
7
9
 
8
10
  export {}