vueless 0.0.538 → 0.0.539

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,7 +1,5 @@
1
1
  import defaultConfig from "./config.ts";
2
2
 
3
- import type { Color } from "../types.ts";
4
-
5
3
  export type Config = Partial<typeof defaultConfig>;
6
4
 
7
5
  export interface UHeaderProps {
@@ -18,7 +16,28 @@ export interface UHeaderProps {
18
16
  /**
19
17
  * Header color.
20
18
  */
21
- color?: `${Color}`;
19
+ color?:
20
+ | "grayscale"
21
+ | "red"
22
+ | "orange"
23
+ | "amber"
24
+ | "yellow"
25
+ | "lime"
26
+ | "green"
27
+ | "emerald"
28
+ | "teal"
29
+ | "cyan"
30
+ | "sky"
31
+ | "blue"
32
+ | "indigo"
33
+ | "violet"
34
+ | "purple"
35
+ | "fuchsia"
36
+ | "pink"
37
+ | "rose"
38
+ | "gray"
39
+ | "white"
40
+ | "brand";
22
41
 
23
42
  /**
24
43
  * Allows changing HTML tag.
@@ -1,7 +1,5 @@
1
1
  import defaultConfig from "./config.ts";
2
2
 
3
- import type { Color } from "../types.ts";
4
-
5
3
  export type Config = Partial<typeof defaultConfig>;
6
4
 
7
5
  export interface UMoneyProps {
@@ -18,7 +16,28 @@ export interface UMoneyProps {
18
16
  /**
19
17
  * Money color.
20
18
  */
21
- color?: `${Color}`;
19
+ color?:
20
+ | "grayscale"
21
+ | "red"
22
+ | "orange"
23
+ | "amber"
24
+ | "yellow"
25
+ | "lime"
26
+ | "green"
27
+ | "emerald"
28
+ | "teal"
29
+ | "cyan"
30
+ | "sky"
31
+ | "blue"
32
+ | "indigo"
33
+ | "violet"
34
+ | "purple"
35
+ | "fuchsia"
36
+ | "pink"
37
+ | "rose"
38
+ | "gray"
39
+ | "white"
40
+ | "brand";
22
41
 
23
42
  /**
24
43
  * Money currency symbol.