@saasmakers/ui 0.1.33 → 0.1.35
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 +10 -10
- package/package.json +1 -1
package/app/types/global.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import type * as Bases from './bases'
|
|
2
2
|
|
|
3
3
|
declare global {
|
|
4
4
|
// Packages
|
|
@@ -7,15 +7,15 @@ declare global {
|
|
|
7
7
|
type RouteLocationRaw = import('vue-router').RouteLocationRaw
|
|
8
8
|
|
|
9
9
|
// Bases
|
|
10
|
-
type BaseColor =
|
|
11
|
-
type BaseSize =
|
|
12
|
-
type BaseStatus =
|
|
13
|
-
type BaseDivider =
|
|
14
|
-
type BaseDividerBorderStyle =
|
|
15
|
-
type BaseDividerSize =
|
|
16
|
-
type BaseText =
|
|
17
|
-
type BaseTextBackground =
|
|
18
|
-
type BaseTextText =
|
|
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
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
export * from './bases'
|