vueless 0.0.537 → 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.
- package/directives/clickOutside/vClickOutside.ts +1 -1
- package/package.json +1 -1
- package/types.ts +0 -25
- package/ui.button/types.ts +22 -3
- package/ui.button-link/types.ts +22 -2
- package/ui.container-group/UGroup.vue +0 -1
- package/ui.container-group/config.ts +1 -14
- package/ui.container-group/types.ts +0 -5
- package/ui.container-groups/UGroups.vue +25 -0
- package/ui.container-groups/config.ts +18 -0
- package/ui.container-groups/constants.ts +5 -0
- package/ui.container-groups/storybook/Docs.mdx +16 -0
- package/ui.container-groups/storybook/stories.ts +59 -0
- package/ui.container-groups/types.ts +20 -0
- package/ui.container-groups/useAttrs.ts +18 -0
- package/ui.dropdown-badge/types.ts +27 -8
- package/ui.dropdown-badge/useAttrs.ts +1 -1
- package/ui.dropdown-button/types.ts +27 -8
- package/ui.dropdown-button/useAttrs.ts +1 -1
- package/ui.dropdown-link/types.ts +27 -8
- package/ui.dropdown-list/UDropdownList.vue +1 -1
- package/ui.form-date-picker-range/UDatePickerRangeInputs.vue +1 -1
- package/ui.image-avatar/types.ts +22 -3
- package/ui.image-icon/types.ts +23 -2
- package/ui.loader/types.ts +23 -3
- package/ui.loader-overlay/types.ts +23 -3
- package/ui.loader-progress/types.ts +22 -3
- package/ui.navigation-progress/types.ts +22 -3
- package/ui.other-dot/types.ts +22 -3
- package/ui.text-alert/types.ts +22 -3
- package/ui.text-badge/types.ts +22 -3
- package/ui.text-header/types.ts +22 -3
- package/ui.text-money/types.ts +22 -3
- package/web-types.json +462 -68
|
@@ -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 ULoaderOverlayProps {
|
|
@@ -13,7 +11,29 @@ export interface ULoaderOverlayProps {
|
|
|
13
11
|
/**
|
|
14
12
|
* Loader color.
|
|
15
13
|
*/
|
|
16
|
-
color?:
|
|
14
|
+
color?:
|
|
15
|
+
| "grayscale"
|
|
16
|
+
| "red"
|
|
17
|
+
| "orange"
|
|
18
|
+
| "amber"
|
|
19
|
+
| "yellow"
|
|
20
|
+
| "lime"
|
|
21
|
+
| "green"
|
|
22
|
+
| "emerald"
|
|
23
|
+
| "teal"
|
|
24
|
+
| "cyan"
|
|
25
|
+
| "sky"
|
|
26
|
+
| "blue"
|
|
27
|
+
| "indigo"
|
|
28
|
+
| "violet"
|
|
29
|
+
| "purple"
|
|
30
|
+
| "fuchsia"
|
|
31
|
+
| "pink"
|
|
32
|
+
| "rose"
|
|
33
|
+
| "gray"
|
|
34
|
+
| "black"
|
|
35
|
+
| "white"
|
|
36
|
+
| "brand";
|
|
17
37
|
|
|
18
38
|
/**
|
|
19
39
|
* Component config object.
|
|
@@ -1,14 +1,33 @@
|
|
|
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 ULoaderProgressProps {
|
|
8
6
|
/**
|
|
9
7
|
* Loader stripe color.
|
|
10
8
|
*/
|
|
11
|
-
color?:
|
|
9
|
+
color?:
|
|
10
|
+
| "grayscale"
|
|
11
|
+
| "red"
|
|
12
|
+
| "orange"
|
|
13
|
+
| "amber"
|
|
14
|
+
| "yellow"
|
|
15
|
+
| "lime"
|
|
16
|
+
| "green"
|
|
17
|
+
| "emerald"
|
|
18
|
+
| "teal"
|
|
19
|
+
| "cyan"
|
|
20
|
+
| "sky"
|
|
21
|
+
| "blue"
|
|
22
|
+
| "indigo"
|
|
23
|
+
| "violet"
|
|
24
|
+
| "purple"
|
|
25
|
+
| "fuchsia"
|
|
26
|
+
| "pink"
|
|
27
|
+
| "rose"
|
|
28
|
+
| "gray"
|
|
29
|
+
| "white"
|
|
30
|
+
| "brand";
|
|
12
31
|
|
|
13
32
|
/**
|
|
14
33
|
* API resource names (endpoint URIs).
|
|
@@ -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 UProgressProps {
|
|
@@ -23,7 +21,28 @@ export interface UProgressProps {
|
|
|
23
21
|
/**
|
|
24
22
|
* Progress color.
|
|
25
23
|
*/
|
|
26
|
-
color?:
|
|
24
|
+
color?:
|
|
25
|
+
| "grayscale"
|
|
26
|
+
| "red"
|
|
27
|
+
| "orange"
|
|
28
|
+
| "amber"
|
|
29
|
+
| "yellow"
|
|
30
|
+
| "lime"
|
|
31
|
+
| "green"
|
|
32
|
+
| "emerald"
|
|
33
|
+
| "teal"
|
|
34
|
+
| "cyan"
|
|
35
|
+
| "sky"
|
|
36
|
+
| "blue"
|
|
37
|
+
| "indigo"
|
|
38
|
+
| "violet"
|
|
39
|
+
| "purple"
|
|
40
|
+
| "fuchsia"
|
|
41
|
+
| "pink"
|
|
42
|
+
| "rose"
|
|
43
|
+
| "gray"
|
|
44
|
+
| "white"
|
|
45
|
+
| "brand";
|
|
27
46
|
|
|
28
47
|
/**
|
|
29
48
|
* Progress variant.
|
package/ui.other-dot/types.ts
CHANGED
|
@@ -1,14 +1,33 @@
|
|
|
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 UDotProps {
|
|
8
6
|
/**
|
|
9
7
|
* Dot color.
|
|
10
8
|
*/
|
|
11
|
-
color?:
|
|
9
|
+
color?:
|
|
10
|
+
| "grayscale"
|
|
11
|
+
| "red"
|
|
12
|
+
| "orange"
|
|
13
|
+
| "amber"
|
|
14
|
+
| "yellow"
|
|
15
|
+
| "lime"
|
|
16
|
+
| "green"
|
|
17
|
+
| "emerald"
|
|
18
|
+
| "teal"
|
|
19
|
+
| "cyan"
|
|
20
|
+
| "sky"
|
|
21
|
+
| "blue"
|
|
22
|
+
| "indigo"
|
|
23
|
+
| "violet"
|
|
24
|
+
| "purple"
|
|
25
|
+
| "fuchsia"
|
|
26
|
+
| "pink"
|
|
27
|
+
| "rose"
|
|
28
|
+
| "gray"
|
|
29
|
+
| "white"
|
|
30
|
+
| "brand";
|
|
12
31
|
|
|
13
32
|
/**
|
|
14
33
|
* Dot size.
|
package/ui.text-alert/types.ts
CHANGED
|
@@ -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 UAlertProps {
|
|
@@ -33,7 +31,28 @@ export interface UAlertProps {
|
|
|
33
31
|
/**
|
|
34
32
|
* Alert color.
|
|
35
33
|
*/
|
|
36
|
-
color?:
|
|
34
|
+
color?:
|
|
35
|
+
| "grayscale"
|
|
36
|
+
| "red"
|
|
37
|
+
| "orange"
|
|
38
|
+
| "amber"
|
|
39
|
+
| "yellow"
|
|
40
|
+
| "lime"
|
|
41
|
+
| "green"
|
|
42
|
+
| "emerald"
|
|
43
|
+
| "teal"
|
|
44
|
+
| "cyan"
|
|
45
|
+
| "sky"
|
|
46
|
+
| "blue"
|
|
47
|
+
| "indigo"
|
|
48
|
+
| "violet"
|
|
49
|
+
| "purple"
|
|
50
|
+
| "fuchsia"
|
|
51
|
+
| "pink"
|
|
52
|
+
| "rose"
|
|
53
|
+
| "gray"
|
|
54
|
+
| "white"
|
|
55
|
+
| "brand";
|
|
37
56
|
|
|
38
57
|
/**
|
|
39
58
|
* Alert timeout.
|
package/ui.text-badge/types.ts
CHANGED
|
@@ -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 UBadgeProps {
|
|
@@ -28,7 +26,28 @@ export interface UBadgeProps {
|
|
|
28
26
|
/**
|
|
29
27
|
* Badge color.
|
|
30
28
|
*/
|
|
31
|
-
color?:
|
|
29
|
+
color?:
|
|
30
|
+
| "grayscale"
|
|
31
|
+
| "red"
|
|
32
|
+
| "orange"
|
|
33
|
+
| "amber"
|
|
34
|
+
| "yellow"
|
|
35
|
+
| "lime"
|
|
36
|
+
| "green"
|
|
37
|
+
| "emerald"
|
|
38
|
+
| "teal"
|
|
39
|
+
| "cyan"
|
|
40
|
+
| "sky"
|
|
41
|
+
| "blue"
|
|
42
|
+
| "indigo"
|
|
43
|
+
| "violet"
|
|
44
|
+
| "purple"
|
|
45
|
+
| "fuchsia"
|
|
46
|
+
| "pink"
|
|
47
|
+
| "rose"
|
|
48
|
+
| "gray"
|
|
49
|
+
| "white"
|
|
50
|
+
| "brand";
|
|
32
51
|
|
|
33
52
|
/**
|
|
34
53
|
* Icon name (appears instead of label).
|
package/ui.text-header/types.ts
CHANGED
|
@@ -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?:
|
|
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.
|
package/ui.text-money/types.ts
CHANGED
|
@@ -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?:
|
|
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.
|